/* ============================================================
   NEXAN CAPITAL — DESIGN SYSTEM
   Paleta derivada da logo: navy profundo + verde Nexan
   ============================================================ */

:root {
    --navy-900: #0a1220;
    --navy-800: #0e1a2e;
    --navy-700: #14243d;
    --navy-600: #1c3252;
    --navy-100: #e8edf5;
    --green-500: #2fbf71;
    --green-400: #4bce8c;
    --green-300: #7adfa9;
    --green-glow: rgba(75, 206, 140, 0.35);
    --ink: #16233a;
    --ink-soft: #4a5a72;
    --paper: #f7f9fc;
    --white: #ffffff;
    --line: #e2e8f2;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow-sm: 0 2px 12px rgba(14, 26, 46, 0.06);
    --shadow-md: 0 10px 40px rgba(14, 26, 46, 0.10);
    --shadow-lg: 0 24px 80px rgba(14, 26, 46, 0.16);
    --font-head: 'Sora', system-ui, sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip; /* nenhum elemento decorativo pode gerar scroll lateral */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4, h5 { font-family: var(--font-head); line-height: 1.2; color: var(--navy-800); }

.container { width: min(1180px, 92%); margin-inline: auto; }

.skip-link {
    position: absolute; left: -9999px; top: 0;
    background: var(--green-500); color: #fff; padding: 10px 18px; z-index: 999;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------
   BOTÕES
------------------------------------------------------------ */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-head); font-weight: 600; font-size: 15px;
    padding: 14px 28px; border-radius: 100px; border: 2px solid transparent;
    cursor: pointer; transition: all .25s ease; white-space: nowrap;
}
.btn-sm { padding: 9px 20px; font-size: 13.5px; }
.btn-primary {
    background: linear-gradient(135deg, var(--green-500), var(--green-400));
    color: var(--navy-900);
    box-shadow: 0 8px 24px var(--green-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px var(--green-glow); }
.btn-outline { border-color: var(--green-400); color: var(--green-500); background: transparent; }
.btn-outline:hover { background: var(--green-500); border-color: var(--green-500); color: var(--navy-900); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; background: rgba(255,255,255,.06); }
.btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }

/* ------------------------------------------------------------
   HEADER
------------------------------------------------------------ */
.header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; height: var(--header-h);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 34px; width: auto; max-width: none; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
    font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
    padding: 6px 0; position: relative; transition: color .2s;
}
.nav a::after {
    content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
    background: var(--green-500); border-radius: 2px; transition: width .25s ease;
}
.nav a:hover, .nav a.active { color: var(--navy-800); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.lang-switch {
    display: flex; gap: 2px; background: var(--navy-100);
    border-radius: 100px; padding: 4px;
}
.lang-switch a {
    font-size: 12px; font-weight: 600; padding: 5px 10px; border-radius: 100px;
    color: var(--ink-soft); transition: all .2s;
}
.lang-switch a.active { background: var(--navy-800); color: #fff; }
.lang-switch a:not(.active):hover { color: var(--navy-800); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: var(--navy-800);
    margin: 5px 0; border-radius: 2px; transition: all .3s;
}

/* ------------------------------------------------------------
   HERO
------------------------------------------------------------ */
.hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(900px 500px at 85% -10%, rgba(75, 206, 140, .18), transparent 60%),
        radial-gradient(700px 500px at -10% 110%, rgba(47, 191, 113, .12), transparent 55%),
        linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
    color: #fff;
    padding: 96px 0 80px;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(800px 600px at 70% 30%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(800px 600px at 70% 30%, #000 30%, transparent 75%);
    pointer-events: none;
}
.hero-grid {
    position: relative; display: grid; grid-template-columns: 1.15fr .85fr;
    gap: 64px; align-items: center;
}
.hero-kicker {
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 12.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
    color: var(--green-300); margin-bottom: 22px;
}
.hero-kicker::before { content: ''; width: 34px; height: 2px; background: var(--green-400); border-radius: 2px; }
.hero h1 {
    color: #fff; font-size: clamp(34px, 4.6vw, 56px); font-weight: 800;
    letter-spacing: -0.02em; margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--green-400); }
.hero-text { font-size: 17.5px; color: rgba(232, 237, 245, .82); max-width: 560px; margin-bottom: 34px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* Widget do hero — mini-dashboard animado */
.hero-widget { position: relative; }
.hw-main {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-lg);
    padding: 26px 26px 22px; backdrop-filter: blur(10px);
    box-shadow: var(--shadow-lg);
    animation: hw-rise .8s cubic-bezier(.22,.8,.3,1) both;
}
@keyframes hw-rise { from { opacity: 0; transform: translateY(24px); } }

.hw-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; flex-wrap: wrap; }
.hw-live {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(232,237,245,.75);
}
.hw-dot {
    width: 8px; height: 8px; border-radius: 50%; background: var(--green-400);
    box-shadow: 0 0 0 0 rgba(75,206,140,.6); animation: hw-blink 2s ease-out infinite;
}
@keyframes hw-blink {
    0%   { box-shadow: 0 0 0 0 rgba(75,206,140,.55); }
    70%  { box-shadow: 0 0 0 9px rgba(75,206,140,0); }
    100% { box-shadow: 0 0 0 0 rgba(75,206,140,0); }
}
.hw-badge {
    font-size: 12.5px; font-weight: 700; color: var(--green-300);
    background: rgba(75,206,140,.14); border: 1px solid rgba(75,206,140,.3);
    border-radius: 100px; padding: 5px 13px;
}
.hw-aum { font-size: 12px; color: rgba(232,237,245,.55); }
.hw-value {
    font-family: var(--font-head); font-size: 36px; font-weight: 800;
    color: #fff; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 12px;
}

.hw-chart { width: 100%; height: 96px; display: block; margin-bottom: 18px; }
.hw-line { stroke-dasharray: 620; stroke-dashoffset: 620; animation: hw-draw 1.8s .3s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes hw-draw { to { stroke-dashoffset: 0; } }
.hw-area { opacity: 0; animation: hw-fade 1s 1.3s ease forwards; }
.hw-point { opacity: 0; animation: hw-fade .4s 1.9s ease forwards; }
@keyframes hw-fade { to { opacity: 1; } }
.hw-pulse { opacity: 0; transform-origin: 308px 16px; animation: hw-ring 2.2s 2.1s ease-out infinite; }
@keyframes hw-ring {
    0%   { opacity: .8; transform: scale(1); }
    70%  { opacity: 0; transform: scale(3); }
    100% { opacity: 0; transform: scale(3); }
}

.hw-alloc-title {
    font-size: 11.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
    color: rgba(232,237,245,.55); margin-bottom: 10px;
}
.hw-stack {
    display: flex; gap: 2px; height: 10px; border-radius: 100px;
    overflow: hidden; margin-bottom: 12px; background: rgba(255,255,255,.06);
}
.hw-seg { height: 100%; transform-origin: left; animation: hw-grow .9s .6s cubic-bezier(.22,.8,.3,1) both; }
@keyframes hw-grow { from { transform: scaleX(0); } }
.hw-c1 { background: #4BCE8C; }
.hw-c2 { background: #5BA8F5; }
.hw-c3 { background: #F5B85B; }
.hw-c4 { background: #C08BF0; }

.hw-legend { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.hw-key {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; color: rgba(232,237,245,.72);
}
.hw-key strong { color: #fff; font-weight: 600; }
.hw-swatch { width: 9px; height: 9px; border-radius: 3px; flex-shrink: 0; }

.hw-note { font-size: 10.5px; color: rgba(232,237,245,.4); margin-top: 16px; line-height: 1.5; }

/* Cartão flutuante sobreposto */
.hw-float {
    position: absolute; right: -18px; bottom: -24px;
    display: grid; gap: 3px;
    background: linear-gradient(150deg, var(--navy-700), var(--navy-600));
    border: 1px solid rgba(75,206,140,.35);
    border-radius: 14px; padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    animation: hw-hover 5s 1.5s ease-in-out infinite, hw-rise .8s .5s cubic-bezier(.22,.8,.3,1) both;
}
@keyframes hw-hover {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.hw-float-tag { font-family: var(--font-head); font-size: 13.5px; font-weight: 700; color: var(--green-300); }
.hw-float-text { font-size: 12px; color: rgba(232,237,245,.65); }

/* ------------------------------------------------------------
   TICKER
------------------------------------------------------------ */
.ticker { background: var(--navy-900); border-top: 1px solid rgba(255,255,255,.06); overflow: hidden; }
.ticker-track {
    display: flex; gap: 48px; width: max-content;
    padding: 13px 0; animation: ticker 42s linear infinite;
}
.ticker-track span {
    font-size: 12.5px; font-weight: 500; letter-spacing: .06em;
    color: rgba(232,237,245,.55); white-space: nowrap;
    display: inline-flex; align-items: center; gap: 10px;
}
.ticker-track span::before { content: '▲'; font-size: 9px; color: var(--green-400); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ------------------------------------------------------------
   MÉTRICAS
------------------------------------------------------------ */
.metrics { background: var(--white); border-bottom: 1px solid var(--line); }
.metrics-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    padding: 44px 0 36px; gap: 24px;
}
.metric { text-align: center; }
.metric strong {
    display: block; font-family: var(--font-head); font-size: clamp(26px, 3vw, 38px);
    font-weight: 800; color: var(--navy-800); letter-spacing: -0.02em;
}
.metric span { font-size: 13.5px; color: var(--ink-soft); }
.metrics-note { text-align: center; font-size: 11.5px; color: #9aa7ba; padding-bottom: 18px; }

/* ------------------------------------------------------------
   SEÇÕES
------------------------------------------------------------ */
.section { padding: 88px 0; }
.section.alt { background: var(--white); }
.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-kicker {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .16em;
    text-transform: uppercase; color: var(--green-500); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.section-head p { color: var(--ink-soft); font-size: 16.5px; }

/* ------------------------------------------------------------
   CARDS (pilares / porquês / soluções)
------------------------------------------------------------ */
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cards-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 26px;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green-300); }
.card-tag {
    display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--green-500);
    background: rgba(75, 206, 140, .12); border-radius: 100px;
    padding: 5px 12px; margin-bottom: 16px;
}
.card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.card p { font-size: 14.5px; color: var(--ink-soft); }
.card-icon {
    width: 46px; height: 46px; border-radius: 12px; margin-bottom: 18px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    display: flex; align-items: center; justify-content: center;
    color: var(--green-400); font-family: var(--font-head); font-weight: 800; font-size: 18px;
}

/* Lista de features nas soluções */
.card-features { margin-top: 18px; display: grid; gap: 9px; }
.card-features li {
    font-size: 13.5px; color: var(--ink-soft);
    display: flex; gap: 10px; align-items: baseline;
}
.card-features li::before { content: '✓'; color: var(--green-500); font-weight: 700; }

/* ------------------------------------------------------------
   FAIXA ESCURA (global / CTA)
------------------------------------------------------------ */
.band {
    position: relative; overflow: hidden; color: #fff;
    background:
        radial-gradient(700px 400px at 15% 20%, rgba(75, 206, 140, .16), transparent 60%),
        linear-gradient(150deg, var(--navy-900), var(--navy-700));
    border-radius: var(--radius-lg);
    padding: 64px 56px;
}
.band h2 { color: #fff; font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
.band p { color: rgba(232,237,245,.78); font-size: 16.5px; max-width: 620px; }
.band .btn { margin-top: 28px; }
.band-flags { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.band-flags span {
    font-size: 13px; font-weight: 600; color: var(--green-300);
    border: 1px solid rgba(75,206,140,.35); border-radius: 100px; padding: 7px 16px;
}

/* ------------------------------------------------------------
   INSIGHTS
------------------------------------------------------------ */
.insight-card {
    background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; display: flex; flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.insight-visual {
    height: 130px; position: relative;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
}
.insight-visual::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(240px 130px at 80% 20%, rgba(75,206,140,.35), transparent 70%);
}
.insight-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.insight-meta { display: flex; gap: 12px; align-items: center; font-size: 12px; color: #9aa7ba; }
.insight-meta .cat { color: var(--green-500); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.insight-body h3 { font-size: 17px; font-weight: 700; }
.insight-body p { font-size: 14px; color: var(--ink-soft); flex: 1; }
.insight-link { font-size: 13.5px; font-weight: 600; color: var(--green-500); }
.insight-link:hover { text-decoration: underline; }

/* Newsletter */
.newsletter {
    display: flex; gap: 14px; max-width: 520px; margin-top: 26px; flex-wrap: wrap;
}
.newsletter input {
    flex: 1; min-width: 220px; padding: 14px 20px; font-size: 15px;
    border: 1px solid rgba(255,255,255,.2); border-radius: 100px;
    background: rgba(255,255,255,.08); color: #fff; outline: none;
    font-family: var(--font-body);
}
.newsletter input::placeholder { color: rgba(232,237,245,.5); }
.newsletter input:focus { border-color: var(--green-400); }

/* ------------------------------------------------------------
   PROCESSO (passos numerados)
------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step {
    position: relative; background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 30px 24px 26px;
}
.step::before {
    counter-increment: step; content: counter(step, decimal-leading-zero);
    font-family: var(--font-head); font-size: 30px; font-weight: 800;
    color: var(--green-400); display: block; margin-bottom: 12px;
}
.step h3 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-soft); }
.steps.cols-3 { grid-template-columns: repeat(3, 1fr); }

/* Depoimentos */
.testimonial { display: flex; flex-direction: column; gap: 20px; }
.testimonial blockquote {
    font-size: 15px; color: var(--ink-soft); line-height: 1.75; flex: 1;
    border: 0; margin: 0; font-style: italic;
}
.testimonial figcaption { display: grid; gap: 2px; border-top: 1px solid var(--line); padding-top: 16px; }
.testimonial figcaption strong { font-family: var(--font-head); font-size: 14.5px; color: var(--navy-800); }
.testimonial figcaption span { font-size: 12.5px; color: var(--green-500); font-weight: 600; }

/* ------------------------------------------------------------
   SOBRE: valores / timeline / equipe
------------------------------------------------------------ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 22px; }
.mv-card {
    background: linear-gradient(150deg, var(--navy-900), var(--navy-700));
    color: #fff; border-radius: var(--radius); padding: 36px 32px;
}
.mv-card h3 { color: var(--green-400); font-size: 14px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 12px; }
.mv-card p { font-size: 18px; font-family: var(--font-head); font-weight: 600; line-height: 1.5; }

.timeline { position: relative; margin-top: 10px; }
.timeline-item {
    position: relative; padding: 0 0 34px 42px; border-left: 2px solid var(--line);
    margin-left: 10px;
}
.timeline-item:last-child { padding-bottom: 4px; }
.timeline-item::before {
    content: ''; position: absolute; left: -8px; top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--green-400); border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--green-400);
}
.timeline-item strong {
    font-family: var(--font-head); color: var(--green-500);
    display: block; margin-bottom: 4px; font-size: 15px;
}
.timeline-item p { color: var(--ink-soft); font-size: 15px; }

.team-avatar {
    width: 74px; height: 74px; border-radius: 50%; margin-bottom: 18px;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    display: flex; align-items: center; justify-content: center;
    color: var(--green-400); font-family: var(--font-head); font-weight: 800; font-size: 24px;
}
.team-card h3 { font-size: 16.5px; }
.team-role { font-size: 13px; font-weight: 600; color: var(--green-500); margin: 4px 0 10px; }
.team-card p { font-size: 13.5px; }

.office-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--green-500); }
.office-card p { font-size: 14.5px; }

/* ------------------------------------------------------------
   FAQ
------------------------------------------------------------ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); overflow: hidden;
}
.faq-q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    font-family: var(--font-head); font-size: 16px; font-weight: 600; color: var(--navy-800);
    padding: 22px 56px 22px 26px; position: relative;
}
.faq-q::after {
    content: '+'; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
    font-size: 24px; font-weight: 400; color: var(--green-500); transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 26px 24px; font-size: 15px; color: var(--ink-soft); }

/* ------------------------------------------------------------
   CONTATO
------------------------------------------------------------ */
.contact-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
.form-card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm);
}
.form-card h3 { margin-bottom: 24px; font-size: 20px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 13px; font-weight: 600; color: var(--navy-800); }
.form-field input, .form-field select, .form-field textarea {
    font-family: var(--font-body); font-size: 15px; color: var(--ink);
    padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
    background: var(--paper); outline: none; transition: border-color .2s; width: 100%;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green-400); }
.form-note { font-size: 12px; color: #9aa7ba; margin-top: 14px; }
.form-success {
    display: none; background: rgba(75,206,140,.12); border: 1px solid var(--green-400);
    color: #1e7a4c; border-radius: 12px; padding: 14px 18px; font-size: 14px; margin-top: 18px;
}
.form-success.show { display: block; }
.form-error {
    display: none; background: rgba(220, 76, 76, .10); border: 1px solid #dc4c4c;
    color: #a33030; border-radius: 12px; padding: 14px 18px; font-size: 14px; margin-top: 18px;
}
.form-error.show { display: block; }

/* Filtro por categoria (blog) */
.filter-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }
.chip {
    font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 100px;
    border: 1.5px solid var(--line); background: var(--white); color: var(--ink-soft);
    transition: all .2s;
}
.chip:hover { border-color: var(--green-400); color: var(--green-500); }
.chip.active { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }

.channel-card {
    background: var(--white); border: 1px solid var(--line);
    border-radius: var(--radius); padding: 22px 24px; margin-bottom: 14px;
}
.channel-card h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--green-500); margin-bottom: 6px; }
.channel-card p { font-size: 15px; color: var(--ink); }

/* ------------------------------------------------------------
   PÁGINAS INTERNAS / LEGAIS
------------------------------------------------------------ */
.page-hero {
    background:
        radial-gradient(700px 380px at 80% -20%, rgba(75, 206, 140, .16), transparent 60%),
        linear-gradient(155deg, var(--navy-900), var(--navy-700));
    color: #fff; padding: 72px 0 60px;
}
.page-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.page-hero p { color: rgba(232,237,245,.8); font-size: 17px; max-width: 680px; }
.page-hero .updated { font-size: 13px; color: var(--green-300); margin-top: 14px; }

.legal-body { max-width: 820px; margin-inline: auto; padding: 64px 0 80px; }
.legal-body .intro {
    font-size: 16px; color: var(--ink-soft);
    background: rgba(75,206,140,.08); border-left: 4px solid var(--green-400);
    border-radius: 0 12px 12px 0; padding: 20px 24px; margin-bottom: 42px;
}
.legal-section { margin-bottom: 34px; }
.legal-section h2 { font-size: 19px; margin-bottom: 10px; }
.legal-section p { font-size: 15.5px; color: var(--ink-soft); }
.licenses-list { display: grid; gap: 12px; margin: 20px 0 42px; }
.licenses-list li {
    background: var(--white); border: 1px solid var(--line); border-radius: 12px;
    padding: 14px 20px; font-size: 14.5px; color: var(--ink-soft);
    display: flex; gap: 12px; align-items: baseline;
}
.licenses-list li::before { content: '◆'; color: var(--green-400); font-size: 11px; }

/* ------------------------------------------------------------
   FOOTER
------------------------------------------------------------ */
.footer {
    background: var(--navy-900); color: rgba(232,237,245,.75);
    padding: 72px 0 36px;
}
.footer-grid {
    display: grid; grid-template-columns: 1.6fr 1fr 1.1fr 1.2fr 1.4fr;
    gap: 40px; padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo { height: 30px; width: auto; max-width: none; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 18px; }
.footer-about { font-size: 14px; line-height: 1.7; color: rgba(232,237,245,.6); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700; color: rgba(232,237,245,.7);
    transition: all .25s;
}
.footer-social a:hover { background: var(--green-500); border-color: var(--green-500); color: var(--navy-900); }

.footer-col h4 {
    color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
    margin-bottom: 18px; font-weight: 700;
}
.footer-col a, .footer-col p { display: block; font-size: 14px; color: rgba(232,237,245,.62); margin-bottom: 10px; }
.footer-col a:hover { color: var(--green-400); }
.footer-address { font-size: 13px !important; line-height: 1.7; margin-top: 14px; }

.footer-licenses, .footer-risk { padding: 28px 0 0; }
.footer-licenses h5, .footer-risk h5 {
    color: var(--green-400); font-size: 12px; letter-spacing: .12em;
    text-transform: uppercase; margin-bottom: 12px;
}
.footer-licenses ul { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 32px; }
.footer-licenses li { font-size: 12px; color: rgba(232,237,245,.45); }
.footer-risk p { font-size: 12px; line-height: 1.8; color: rgba(232,237,245,.5); max-width: 100%; }

.footer-bottom {
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 32px; padding-top: 24px;
}
.footer-bottom p { font-size: 12px; color: rgba(232,237,245,.45); }

/* ------------------------------------------------------------
   ANIMAÇÕES DE ENTRADA
------------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ------------------------------------------------------------
   RESPONSIVO
------------------------------------------------------------ */
@media (max-width: 1180px) {
    .nav { gap: 14px; }
    .nav a { font-size: 13px; }
    .header-inner { gap: 12px; }
    .lang-switch a { padding: 5px 8px; }
    .brand-logo { height: 28px; }
    .header-actions .btn-sm { padding: 8px 14px; font-size: 12.5px; }
}

/* Menu mobile ativa mais cedo para caber os 4 idiomas + nav completo */
@media (max-width: 1024px) {
    .nav {
        position: fixed; inset: var(--header-h) 0 auto 0;
        background: var(--white); flex-direction: column; align-items: flex-start;
        gap: 0; padding: 12px 6%; border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow-md);
        transform: translateY(-130%); transition: transform .35s ease;
        z-index: 90;
    }
    .nav.open { transform: none; }
    .nav a { width: 100%; padding: 14px 0; font-size: 16px; border-bottom: 1px solid var(--paper); }
    .nav a::after { display: none; }
    .nav-toggle { display: block; }
}

@media (max-width: 1080px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .cards-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 860px) {
    .nav-toggle { padding: 6px; }
    .header-actions .btn { display: none; }
    .header-inner { gap: 10px; }
    .header-actions { gap: 8px; }
    .brand-logo { height: 26px; }

    .metrics-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .steps.cols-3 { grid-template-columns: 1fr; }
    .hw-float { position: static; margin-top: 14px; animation: hw-rise .8s .5s cubic-bezier(.22,.8,.3,1) both; }
    .mv-grid { grid-template-columns: 1fr; }
    .band { padding: 44px 30px; }
    .form-grid { grid-template-columns: 1fr; }
    .section { padding: 64px 0; }
    .hero { padding: 64px 0 56px; }
}

@media (max-width: 560px) {
    .cards-grid, .cards-grid.cols-3, .cards-grid.cols-2, .steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-licenses ul { grid-template-columns: 1fr; }
    .lang-switch a { padding: 4px 7px; font-size: 11px; }
    .container { width: 94%; }
}

@media (max-width: 400px) {
    .brand-logo { height: 21px; }
    .lang-switch { padding: 3px; }
    .lang-switch a { padding: 3px 5.5px; font-size: 10.5px; }
    .header-inner { gap: 6px; }
}
.d-none{
    display: none!important;
}