@font-face {
    font-family: 'Xirod';
    src: url('xirod.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg-base: #080c14;
    --bg-surface: #0d1320;
    --bg-elevated: #111827;
    --bg-card: #141d2e;

    --accent-blue: #3b82f6;
    --accent-blue-dim: rgba(59,130,246,0.12);
    --accent-blue-glow: rgba(59,130,246,0.25);

    --accent-amber: #f59e0b;
    --accent-green: #10b981;
    --accent-red: #ef4444;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #475569;
    --text-ghost: rgba(255,255,255,0.04);

    --border-subtle: rgba(255,255,255,0.06);
    --border-default: rgba(255,255,255,0.10);
    --border-accent: rgba(59,130,246,0.35);

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --font-brand: 'Xirod', sans-serif;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    
    --easing-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --easing-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Used during splash screen to hide scroll */
.hidden-body {
    overflow: hidden;
    height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-main);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.text-center { text-align: center; }
.w-full { width: 100%; }

/* --- CANVAS --- */
#bg-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* --- SPLASH SCREEN --- */
.splash-screen {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #000000;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s var(--easing-smooth), transform 0.4s var(--easing-smooth), visibility 0.4s;
}

.splash-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.splash-right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.splash-symbol {
    width: 80px; height: auto;
    transform: scale(0.6) rotate(-15deg);
    opacity: 0;
    transition: all 0.6s var(--easing-spring);
}

.splash-symbol.active {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.splash-wordmark {
    width: 260px; height: auto;
    transform: translateX(-10px);
    opacity: 0;
    transition: all 0.4s ease;
    margin-bottom: 8px;
}

.splash-wordmark.active {
    transform: translateX(0);
    opacity: 1;
}

.splash-line {
    width: 0%;
    height: 1px;
    background-color: var(--accent-blue);
    margin-bottom: 12px;
    transition: width 0.3s ease;
}
.splash-line.active { width: 100%; }

.splash-tagline {
    width: 140px; height: auto;
    margin-left: 4px;
    opacity: 0;
    transition: all 0.5s ease;
}
.splash-tagline.active {
    opacity: 1;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.4s ease;
}

.nav-container {
    background-color: rgba(10, 15, 25, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 64px;
}

.nav-left {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding-right: 24px;
}

.nav-symbol { width: 28px; height: auto; }
.mobile-center-logo { display: none; }

.nav-divider {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-status {
    padding-left: 24px;
    display: flex;
    align-items: center;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 255, 102, 0.5);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-center-logo {
    display: flex;
    align-items: center;
    padding: 0 16px;
}

.nav-wordmark-center {
    width: 100px;
    height: auto;
}

.nav-link {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    text-decoration: none;
    transition: color 0.3s;
    text-transform: uppercase;
}
.nav-link:hover { color: var(--text-primary); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav-outline {
    font-family: var(--font-main);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
}
.btn-nav-outline:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-nav, .btn-primary {
    font-family: var(--font-brand);
    font-size: 11px;
    letter-spacing: 0.1em;
    background: var(--accent-blue);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}
.btn-nav:hover, .btn-primary:hover {
    filter: brightness(0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--accent-blue-glow);
}

.btn-secondary {
    font-family: var(--font-brand);
    font-size: 11px;
    letter-spacing: 0.1em;
    background: transparent;
    color: var(--text-primary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-default);
    transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: var(--accent-blue); }

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px; height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}
.mobile-toggle span {
    width: 100%; height: 1.5px;
    background: var(--text-primary);
    transition: 0.3s ease;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* --- MAIN WRAPPER (Parallax context) --- */
#main-content {
    position: relative;
    z-index: 1;
}

/* --- HERO INTERACTIVE --- */
.hero-interactive {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: transparent;
    cursor: crosshair;
}

.hero-slogan-wrapper {
    position: relative;
    width: 80vw;
    max-width: 1200px;
    z-index: 2;
    display: grid;
    place-items: center;
}

.slogan-layer {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-huge-slogan {
    width: 100%;
    height: auto;
}

.mystery-phrase {
    font-family: var(--font-main);
    font-size: 14px;
    letter-spacing: 0.4em;
    color: var(--text-primary);
    text-transform: uppercase;
    font-weight: 300;
}

.base-dim {
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
}

.reveal-bright {
    z-index: 2;
    opacity: 1;
    pointer-events: none;
    /* Spotlight Mask */
    mask-image: radial-gradient(circle 250px at var(--mouse-x, -100%) var(--mouse-y, -100%), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 80%);
    -webkit-mask-image: radial-gradient(circle 250px at var(--mouse-x, -100%) var(--mouse-y, -100%), rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0) 80%);
    filter: drop-shadow(0 0 20px rgba(0, 255, 102, 0.4)) brightness(1.2);
    transition: mask-position 0.1s ease-out, -webkit-mask-position 0.1s ease-out;
}

/* Indicador de Scroll */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 3;
    opacity: 0.6;
    transition: opacity 0.3s;
    cursor: pointer;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-text {
    font-family: var(--font-main);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--text-primary);
    text-transform: uppercase;
    text-align: center;
    line-height: 1.6;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.8), rgba(255,255,255,0));
    animation: scroll-line-anim 2s infinite;
}

@keyframes scroll-line-anim {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.1% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- REVEAL WRAPPER (Clips up over Hero) --- */
.content-reveal-wrapper {
    position: relative;
    z-index: 10;
    background-color: var(--bg-base);
    /* Removed clip-path to prevent hiding all content */
}

/* Basic utility for common sections */
section {
    scroll-margin-top: 100px;
}

.section-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 40px;
}
.section-header { margin-bottom: 56px; }
.section-header h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; letter-spacing: -0.02em; }
.subtitle { font-weight: 300; font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.subtitle-md { font-weight: 500; font-size: 18px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }
.subtitle-italic { font-weight: 300; font-size: 16px; color: var(--text-secondary); font-style: italic; }

/* Scroll Animations */
.reveal-up {
    opacity: 0; transform: translateY(40px);
    transition: all 0.8s var(--easing-smooth);
}
.reveal-up.active { opacity: 1; transform: translateY(0); }

.reveal-slide {
    opacity: 0; transform: translateX(-24px);
    transition: all 0.8s var(--easing-smooth);
}
.reveal-slide.active { opacity: 1; transform: translateX(0); }

.reveal-card {
    opacity: 0; transform: translateX(40px);
    transition: all 0.6s var(--easing-smooth);
}
.reveal-card.active { opacity: 1; transform: translateX(0); }

.delay-0 { transition-delay: 0ms; }
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 200ms; }
.delay-3 { transition-delay: 300ms; }

/* --- DASHBOARD --- */
.dashboard { padding: 60px 0; scroll-margin-top: 100px; }
.dashboard-container { max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.dash-headings { margin-bottom: 60px; }

.dash-window {
    background: var(--bg-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.dash-top-bar {
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 16px;
    margin-bottom: 32px;
}
.mac-dots { display: flex; gap: 8px; margin-right: 16px; }
.mac-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mac-dots span:nth-child(1) { background: #ff5f56; }
.mac-dots span:nth-child(2) { background: #ffbd2e; }
.mac-dots span:nth-child(3) { background: #27c93f; }
.dash-window-title {
    font-family: var(--font-brand);
    font-size: 10px;
    color: var(--text-muted);
}

.dash-kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.kpi-box { display: flex; flex-direction: column; }
.kpi-label { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.kpi-value { font-weight: 600; font-size: 24px; color: var(--text-primary); }

.dash-chart-area {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 24px;
    background: var(--bg-surface);
}
.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.chart-header h3 { font-weight: 500; font-size: 18px; transition: color 0.3s; }
.chart-filter {
    font-size: 12px;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    display: flex; gap: 6px; align-items: center;
}
#chart-filter-label { transition: opacity 0.3s; }
#chart-filter-label.fade { opacity: 0.4; }

.chart-svg-container { position: relative; height: 200px; width: 100%; margin-bottom: 12px; }
.chart-grid { position: absolute; top:0; left:0; right:0; bottom:20px; display: flex; flex-direction: column; justify-content: space-between; }
.gl { width: 100%; height: 1px; border-top: 1px dashed rgba(255,255,255,0.05); }

.main-chart-svg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: calc(100% - 20px);
    overflow: visible;
}
#chart-line-path { stroke-linejoin: round; stroke-linecap: round; }
#chart-area-path { transition: opacity 0.4s ease; }

.chart-x-axis {
    position: absolute; bottom: 0; left: 0; width: 100%;
    display: flex; justify-content: space-between;
    font-size: 11px; color: var(--text-muted);
}

.dash-disclaimer {
    margin-top: 16px;
    font-weight: 300;
    font-size: 11px;
    color: var(--text-muted);
}

/* --- PROBLEMAS --- */
.problemas { background-color: transparent; position: relative; } /* Slightly warm dense */
.problemas .section-container { padding: 60px 40px 20px; }
.problemas .section-header { margin-bottom: 40px; }
.prob-list { max-width: 900px; margin: 0 auto; }
.prob-item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-subtle);
}
.prob-item:first-child { border-top: 1px solid var(--border-subtle); }
.prob-num {
    font-weight: 700;
    font-size: 72px;
    line-height: 0.8;
    color: var(--text-ghost);
    min-width: 100px;
}
.prob-text h3 { font-weight: 600; font-size: 18px; margin-bottom: 8px; }
.prob-text p { font-weight: 300; font-size: 14px; color: var(--text-secondary); line-height: 1.5; }

.wipe-line {
    width: 100%; height: 1.5px;
    background: transparent;
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}
.wipe-line::after {
    content: '';
    position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: var(--accent-blue);
    transition: left 1s ease;
}
.wipe-line.active::after { left: 100%; }

/* --- SOLUÇÕES --- */
.solucoes { background-color: transparent; padding-top: 40px; padding-bottom: 80px; }

.solucoes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.solucao-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Let the 3rd card span full width if desired, but 1fr 1fr naturally drops it to the next row.
   To make it centered or span, we can target it. Let's make it span 2 columns. */
.solucao-card:nth-child(3) {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.card-header { position: relative; z-index: 2; }
.bg-num {
    position: absolute; top: -30px; right: -20px;
    font-weight: 600; font-size: 120px; color: var(--accent-blue);
    opacity: 0.05; z-index: -1; line-height: 1;
}
.card-header h3 { font-weight: 600; font-size: 26px; letter-spacing: -0.01em; line-height: 1.2; }

.card-body { z-index: 2; }
.card-body .desc {
    font-weight: 300; font-size: 15px; color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}
.deliverables { list-style: none; }
.deliverables li { font-weight: 400; font-size: 14px; margin-bottom: 10px; color: var(--text-primary); }

/* --- COMO FUNCIONA --- */
.como-funciona { background: transparent; }
.timeline { position: relative; max-width: 1000px; margin: 0 auto; padding-top: 60px; }
.timeline-svg {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 120px; z-index: 1; pointer-events: none;
}
.tl-nodes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; z-index: 2; }
.tl-node { position: relative; padding-top: 60px; }
.tl-circle {
    position: absolute; top: 0; left: 0;
    width: 48px; height: 48px;
    background: var(--bg-elevated);
    border: 2px solid var(--accent-blue);
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-family: var(--font-brand); font-size: 14px;
    transition: all 0.4s var(--easing-spring);
}
.tl-node.active .tl-circle {
    transform: scale(1.08);
    box-shadow: 0 0 15px var(--accent-blue-glow);
}
.tl-node h4 { font-size: 14px; margin-bottom: 12px; letter-spacing: 0.05em; }
.tl-node p { font-weight: 300; font-size: 14px; color: var(--text-secondary); }


/* --- EQUIPE --- */
.equipe { background: transparent; padding-bottom: 0px; overflow: hidden; }
.equipe-orbit-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 500px;
    margin: 60px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.equipe-member {
    position: absolute;
    border-radius: 50%;
    background: var(--bg-elevated);
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background-size: cover;
    background-position: center;
    animation: floatTeam 6s ease-in-out infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-ghost);
    cursor: pointer;
    transition: all 0.6s var(--easing-spring);
    z-index: 1;
}
.equipe-member:hover {
    border-color: var(--accent-blue);
    z-index: 10;
}
.equipe-orbit-container.has-active .equipe-member:not(.active) {
    filter: grayscale(80%) opacity(0.6);
}
.equipe-orbit-container.has-active .equipe-member:not(.active):hover {
    filter: grayscale(0%) opacity(1);
}
.equipe-member.active {
    border-color: var(--accent-blue);
    box-shadow: 0 0 40px var(--accent-blue-glow);
    z-index: 20;
}

.equipe-details {
    position: absolute;
    width: 350px;
    text-align: left;
    pointer-events: none;
    transition: all 0.6s var(--easing-spring);
    z-index: 5;
    opacity: 0; /* Hidden initially */
    left: 55%;
    top: 50%;
    transform: translateY(-50%);
}
.equipe-details h3 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 12px;
    font-family: var(--font-brand);
}
.equipe-details p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.member-1 { top: 15%; left: 5%; animation-delay: 0s; width: 130px; height: 130px; }
.member-2 { top: 60%; left: 16%; animation-delay: 1.2s; width: 105px; height: 105px; }
.member-3 { top: 8%; left: 28%; animation-delay: 2.4s; width: 120px; height: 120px; }
.member-4 { top: 55%; left: 38%; animation-delay: 0.5s; width: 135px; height: 135px; }
.member-5 { top: 25%; left: 48%; animation-delay: 3.1s; width: 165px; height: 165px; z-index: 2; }
.member-6 { top: 70%; left: 60%; animation-delay: 1.8s; width: 110px; height: 110px; }
.member-7 { top: 15%; left: 72%; animation-delay: 0.9s; width: 130px; height: 130px; }
.member-8 { top: 65%; left: 83%; animation-delay: 2.2s; width: 100px; height: 100px; }
.member-9 { top: 25%; left: 90%; animation-delay: 1.5s; width: 120px; height: 120px; }

@keyframes floatTeam {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}


/* --- CONTATO --- */
.contato { background: transparent; }
.contato .section-container { padding-top: 20px; }
.title-xirod { font-family: var(--font-brand); font-size: 36px; letter-spacing: 0.05em; }
.contato-centered { display: flex; justify-content: center; max-width: 500px; margin: 0 auto; width: 100%; }



/* --- FOOTER --- */
.footer { background: transparent; border-top: 1px solid var(--border-subtle); padding: 60px 40px 24px; }
.footer-container { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 40px; max-width: 1440px; margin: 0 auto 60px; }
.ft-left { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.ft-logos { display: flex; justify-content: flex-start; align-items: center; gap: 10px; margin-bottom: 12px; }
.ft-sym { width: 24px; } .ft-wm { width: 64px; }
.ft-tagline { font-family: var(--font-brand); font-size: 11px; color: var(--accent-blue); margin-bottom: 0; }
.ft-contact { font-weight: 300; font-size: 12px; color: var(--text-muted); line-height: 1.8; }
.ft-center { grid-column: 2; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.ft-menu { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 32px; }
.ft-menu a { font-weight: 300; font-size: 14px; color: var(--text-secondary); }
.ft-menu a:hover { color: var(--text-primary); }
.footer-bottom { border-top: 1px solid var(--border-subtle); padding-top: 24px; font-weight: 300; font-size: 12px; color: var(--text-muted); }

/* --- MEDIA QUERIES --- */
@media (max-width: 1280px) {
    .split-grid { gap: 40px; }
}

@media (max-width: 1024px) {
    .hero-container { flex-direction: column; justify-content: center; height: auto; padding: 100px 40px; gap: 60px; }
    .hero-left, .hero-right { width: 100%; }
    .hero-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    
    .dash-kpi-grid { grid-template-columns: repeat(2, 1fr); }
    
    .split-grid, .layout-right { grid-template-columns: 1fr; }
    .layout-right .split-title-wrap { grid-column: 1; }

    .solucoes-grid { grid-template-columns: 1fr; }
    .solucao-card:nth-child(3) { grid-column: auto; grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mystery-phrase { text-align: center; line-height: 1.6; }
    .nav-container { padding: 0 16px; height: 56px; }
    .nav-status, .nav-divider, .btn-nav-outline { display: none; }
    .mobile-toggle { display: flex; }
    
    .mobile-center-logo {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }
    .mobile-center-logo img { width: 80px; height: auto; }

    .nav-menu { 
        display: flex; 
        flex-direction: column; 
        position: absolute; 
        top: calc(100% + 8px); 
        left: 0; 
        width: 100%; 
        background: rgba(10, 15, 25, 0.95); 
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.08); 
        border-radius: var(--radius-md); 
        padding: 24px 0; 
        gap: 24px; 
        align-items: center; 
        opacity: 0; 
        visibility: hidden; 
        transform: translateY(-10px); 
        transition: all 0.3s ease; 
    }
    .nav-menu.active { 
        opacity: 1; 
        visibility: visible; 
        transform: translateY(0); 
    }
    .nav-menu .nav-center-logo { display: none; }
    .navbar { width: 95%; top: 16px; }
    
    .hero-title { font-size: 40px; }
    .hero-container { padding: 80px 24px; }
    
    .section-container { padding: 80px 24px; }
    .section-header h2 { font-size: 32px; }
    
    .prob-item { flex-direction: column; gap: 16px; }
    .prob-num { font-size: 64px; }
    
    .timeline-svg { width: 2px; height: 100%; top: 0; left: 24px; }
    .tl-nodes { grid-template-columns: 1fr; gap: 40px; }
    .tl-node { padding-top: 0; padding-left: 60px; }
    .tl-circle { left: 0; top: 0; }
    
    .footer-container { grid-template-columns: 1fr; gap: 40px; }
    .ft-center { grid-column: 1; }
    .ft-left { align-items: center; text-align: center; }
    .ft-logos { justify-content: center; }
    
    .equipe-orbit-container {
        height: auto;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        margin-top: 40px;
    }
    .equipe-member {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 !important;
        animation: none;
        width: 70px !important;
        height: 70px !important;
        transition: none !important;
    }
    .equipe-member.active {
        width: 140px !important;
        height: 140px !important;
        order: -2;
    }
    .equipe-details {
        position: relative;
        order: -1;
        width: 100%;
        margin-bottom: 20px;
        text-align: center;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        opacity: 1 !important;
        display: none;
    }
    .equipe-orbit-container.has-active .equipe-details {
        display: block;
    }
}
