:root {
    --ink: #0A0E1A;
    --panel-dark-2: #16224A;
    --teal: #E91E63;
    --teal-hover: #C2185B;
    --amber: #FFB020;
    --danger: #F87171;
    --paper: #F7F8FA;
    --text-dark: #111827;
    --text-muted: #6B7280;
    --border: #E5E7EB;
    --success: #34d399;
    --font-title: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    --radius: 14px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--ink);
    color: #e7ecf5;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
svg { flex-shrink: 0; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; }

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    padding: 12px 22px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-lg { padding: 15px 30px; font-size: 16px; border-radius: 12px; }
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary { background: linear-gradient(135deg, var(--teal), #C2185B); color: #04121a; box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(233, 30, 99, 0.45); }

.btn-ghost { background: transparent; color: #e7ecf5; border-color: rgba(231, 236, 245, 0.25); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

.btn-outline { background: transparent; color: #e7ecf5; border-color: var(--panel-dark-2); }
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo-img { height: 40px; width: auto; object-fit: contain; }
.logo-mark {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 10px;
    color: var(--teal);
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.15), rgba(233, 30, 99, 0.05));
    border: 1px solid rgba(233, 30, 99, 0.3);
}
.logo-text { font-family: var(--font-title); font-weight: 600; font-size: 19px; color: #fff; }
.logo-text strong { color: var(--teal); font-weight: 700; }

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a:not(.btn) { font-size: 14px; font-weight: 500; color: #c3cbd9; transition: var(--transition); }
.nav-menu a:not(.btn):hover { color: var(--teal); }
.nav-menu .nav-cta { margin-left: 6px; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: #e7ecf5;
    border-radius: 2px;
    transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    padding: 150px 0 110px;
    background:
        radial-gradient(900px 480px at 85% -10%, rgba(233, 30, 99, 0.18), transparent 60%),
        radial-gradient(700px 420px at 0% 20%, rgba(255, 176, 32, 0.12), transparent 60%),
        var(--ink);
}
.hero-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.25);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.hero h1 {
    font-family: var(--font-title);
    font-size: clamp(28px, 4.4vw, 50px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--teal); }
.hero-content p {
    font-size: 17px;
    color: #b9c1d4;
    max-width: 540px;
    margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 26px;
}
.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #b9c1d4;
}
.hero-features li::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 10px var(--teal);
}

/* ===== MOCKUPS (visual) ===== */
.hero-visual-frame {
    position: relative;
    background: transparent;
}
.hero-visual-img {
    width: 100%;
    height: auto;
    display: block;
}

.mockup {
    background: linear-gradient(160deg, #121b33, #0d1525);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.mockup-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}
.mockup-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--panel-dark-2); }
.mockup-dot:nth-child(1) { background: var(--danger); }
.mockup-dot:nth-child(2) { background: var(--amber); }
.mockup-dot:nth-child(3) { background: var(--success); }
.mockup-title {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 11px;
    color: #8b94ab;
}
.mockup-body { padding: 20px; }
.mockup-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.mockup-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 14px;
}
.mc-label { display: block; font-size: 11px; color: #8b94ab; margin-bottom: 4px; }
.mc-value { font-family: var(--font-mono); font-size: 24px; font-weight: 600; color: var(--teal); }

.mockup-list { display: flex; flex-direction: column; gap: 10px; }
.ml-item { display: flex; align-items: center; gap: 10px; }
.ml-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.ml-dot.online { background: var(--success); box-shadow: 0 0 8px rgba(52, 211, 153, 0.6); }
.ml-dot.offline { background: var(--danger); }
.ml-name { font-size: 13px; color: #cfd6e4; margin-right: auto; }
.ml-pill {
    font-size: 10px;
    font-weight: 600;
    color: var(--teal);
    background: rgba(233, 30, 99, 0.12);
    padding: 3px 8px;
    border-radius: 999px;
}
.ml-pill.pago { color: var(--success); background: rgba(52, 211, 153, 0.12); }
.ml-pill.pendente { color: var(--amber); background: rgba(255, 176, 32, 0.12); }
.ml-pill.vencido { color: var(--danger); background: rgba(248, 113, 113, 0.12); }

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 110px;
    margin-top: 18px;
}
.mockup-chart span {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(180deg, var(--teal), rgba(233, 30, 99, 0.2));
    transition: var(--transition);
}

/* ===== SECTION COMUM ===== */
.section { padding: 96px 0; }
.section-alt { background: #0d1426; }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
    background: rgba(233, 30, 99, 0.08);
    border: 1px solid rgba(233, 30, 99, 0.2);
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}
.section-head h2 {
    font-family: var(--font-title);
    font-size: clamp(26px, 3.6vw, 40px);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}
.section-head p { font-size: 16px; color: #aab2c6; }

/* ===== COMO FUNCIONA ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}
.step:hover { transform: translateY(-4px); border-color: rgba(233, 30, 99, 0.4); }
.step-num {
    font-family: var(--font-title);
    font-size: 34px;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--teal);
    margin-bottom: 14px;
    line-height: 1;
}
.step h3 { font-family: var(--font-title); font-size: 18px; color: #fff; margin-bottom: 8px; }
.step p { font-size: 14px; color: #aab0c6; }

/* ===== BENEFÍCIOS ===== */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.benefit {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: var(--transition);
}
.benefit:hover { transform: translateY(-4px); border-color: rgba(233, 30, 99, 0.4); background: rgba(233, 30, 99, 0.03); }
.benefit-icon {
    display: grid; place-items: center;
    width: 46px; height: 46px;
    border-radius: 12px;
    color: var(--teal);
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.25);
    margin-bottom: 18px;
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit h3 { font-family: var(--font-title); font-size: 18px; color: #fff; margin-bottom: 8px; }
.benefit p { font-size: 14px; color: #aab0c6; }

/* ===== DESTAQUES / FEATURE ROWS ===== */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-visual { order: -1; }
.feature-text h3 { font-family: var(--font-title); font-size: 26px; color: #fff; margin-bottom: 14px; line-height: 1.25; }
.feature-text > p { font-size: 15px; color: #aab0c6; margin-bottom: 20px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #cfd6e4;
}
.feature-list li::before {
    content: '';
    margin-top: 6px;
    width: 8px; height: 8px;
    border-radius: 2px;
    background: var(--teal);
    flex-shrink: 0;
}

.feature-visual { position: relative; }
.mockup.mini .mockup-chart { height: 130px; }
.mockup.phone {
    max-width: 300px;
    margin: 0 auto;
    border-radius: 28px;
    padding: 14px;
    background: linear-gradient(160deg, #141e3a, #0b1222);
}
.phone-top { text-align: center; padding: 18px 0 20px; }
.phone-wifi {
    display: grid; place-items: center;
    width: 52px; height: 52px;
    margin: 0 auto 10px;
    border-radius: 50%;
    color: var(--teal);
    background: rgba(233, 30, 99, 0.12);
    border: 1px solid rgba(233, 30, 99, 0.3);
}
.phone-wifi svg { width: 26px; height: 26px; }
.phone-top strong { font-family: var(--font-title); font-size: 17px; color: #fff; }
.phone-field, .phone-btn {
    height: 42px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-size: 13px;
}
.phone-field {
    display: flex; align-items: center;
    padding: 0 12px;
    color: #8b94ab;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.phone-btn {
    display: flex; align-items: center; justify-content: center;
    font-weight: 600;
    color: #06131a;
    background: linear-gradient(135deg, var(--teal), #C2185B);
}
.mockup-legend { display: flex; gap: 20px; margin-top: 14px; justify-content: center; }
.mockup-legend span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #8b94ab; }
.mockup-legend i { width: 10px; height: 10px; border-radius: 2px; display: inline-block; }
.lg-download { background: var(--teal); }
.lg-upload { background: var(--amber); }

/* ===== SETORES ===== */
.setores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.setor {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 32px 24px;
    transition: var(--transition);
}
.setor:hover { transform: translateY(-4px); border-color: rgba(255, 176, 32, 0.4); }
.setor-emoji { font-size: 40px; line-height: 1; margin-bottom: 16px; }
.setor h3 { font-family: var(--font-title); font-size: 19px; color: #fff; margin-bottom: 8px; }
.setor p { font-size: 14px; color: #aab0c6; }

/* ===== PLANOS ===== */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 34px 28px;
    transition: var(--transition);
}
.plan:hover { transform: translateY(-4px); }
.plan.featured {
    background: linear-gradient(160deg, rgba(233, 30, 99, 0.12), rgba(10, 14, 26, 0.9));
    border-color: rgba(233, 30, 99, 0.5);
    box-shadow: 0 0 40px rgba(233, 30, 99, 0.12);
}
.plan-badge {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--teal), #C2185B);
    color: #04121a;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    white-space: nowrap;
}
.plan-badge.soon {
    background: rgba(255, 255, 255, 0.1);
    color: #aab0c6;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.plan-promo.time {
    background: linear-gradient(135deg, #FFB020, #E91E63);
}
.plan-note {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
    color: #8b94ab;
}
.plan-placa {
    margin-top: 28px;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFB020;
    background: repeating-linear-gradient(45deg, rgba(255, 176, 32, 0.12) 0 8px, rgba(10, 14, 26, 0.9) 8px 16px);
    border: 1px solid rgba(255, 176, 32, 0.4);
    border-radius: 6px;
    padding: 10px 14px;
}
.plan h3 { font-family: var(--font-title); font-size: 22px; color: #fff; margin-bottom: 6px; }
.plan-desc { font-size: 14px; color: #aab0c6; margin-bottom: 20px; }
.plan-price { display: flex; flex-direction: column; margin-bottom: 22px; }
.plan-price strong { font-family: var(--font-title); font-size: 38px; color: var(--teal); line-height: 1.1; }
.plan-price strong.plan-price-promo { color: #fff; text-shadow: 0 0 24px rgba(233, 30, 99, 0.6); }
.plan-promo {
    display: block;
    width: fit-content;
    margin: 0 auto 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #fff;
    background: linear-gradient(135deg, #E91E63, #C2185B);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 4px 12px;
    border-radius: 999px;
}
.plan-price span { font-size: 13px; color: #8b94ab; }
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.plan-list li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #cfd6e4;
}
.plan-list li::before {
    content: '';
    margin-top: 6px;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    flex-shrink: 0;
}
.plan .btn { margin-top: auto; }

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background:
        radial-gradient(700px 300px at 50% 0%, rgba(233, 30, 99, 0.15), transparent 60%),
        var(--ink);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.cta-inner { text-align: center; max-width: 640px; }
.cta h2 { font-family: var(--font-title); font-size: clamp(24px, 3.4vw, 36px); line-height: 1.2; color: #fff; margin-bottom: 14px; }
.cta p { font-size: 16px; color: #aab0c6; margin-bottom: 28px; }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item[open] { border-color: rgba(233, 30, 99, 0.4); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    font-family: var(--font-title);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 400;
    color: var(--teal);
    transition: var(--transition);
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 22px 20px; font-size: 15px; color: #aab0c6; }

/* ===== CONTATO ===== */
.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
/* ===== ANIMAÇÃO REVEAL ===== */
.step, .benefit, .setor, .plan, .feature-row, .contact-card, .section-head {
    opacity: 0;
    transform: translateY(24px);
}
.revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
    .step, .benefit, .setor, .plan, .feature-row, .contact-card, .section-head {
        opacity: 1;
        transform: none;
    }
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 24px;
    transition: var(--transition);
}
.contact-card:hover { transform: translateY(-4px); border-color: rgba(233, 30, 99, 0.4); }
.contact-icon {
    display: grid; place-items: center;
    width: 54px; height: 54px;
    border-radius: 14px;
    color: var(--teal);
    background: rgba(233, 30, 99, 0.1);
    border: 1px solid rgba(233, 30, 99, 0.25);
    margin-bottom: 8px;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-card strong { font-family: var(--font-title); font-size: 18px; color: #fff; }
.contact-card span:last-child { font-size: 14px; color: #aab0c6; }

/* ===== VÍDEOS / TUTORIAIS ===== */
.videos-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 340px)); gap: 18px; max-width: 1080px; margin: 0 auto 26px; justify-content: center; }
.video-card-l {
    background: #fff;
    border: 1px solid rgba(10, 14, 26, 0.12);
    border-radius: 14px;
    overflow: hidden;
    display: flex; flex-direction: column; min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.video-card-l:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(233, 30, 99, 0.18); transform: translateY(-3px); }
.video-thumb { position: relative; display: block; aspect-ratio: 16/9; overflow: hidden; background: #0a0e1a; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.9; transition: transform 0.3s ease, opacity 0.3s ease; }
.video-thumb img.hidden { display: none; }
.video-card-l:hover .video-thumb img { transform: scale(1.04); opacity: 1; }
.video-play { position: absolute; inset: 0; display: grid; place-items: center; }
.video-play svg { width: 46px; height: 46px; filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.5)); transition: transform 0.2s ease; }
.video-card-l:hover .video-play svg { transform: scale(1.12); }
.video-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.video-nome { font-family: var(--font-title); font-size: 15px; font-weight: 600; margin: 0; color: #111827; }
.video-txt { font-size: 13px; color: #52586b; margin: 0; line-height: 1.55; }
.video-link { margin-top: auto; padding-top: 8px; font-size: 13px; color: var(--teal); font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.video-link:hover { text-decoration: underline; }
.video-canal { text-align: center; }
.video-canal a { font-size: 13px; color: var(--teal); font-weight: 500; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; }
.video-canal a:hover { text-decoration: underline; }
.cf-video { text-align: center; margin: 26px 0 0; }
.cf-video a {
    font-size: 14px; color: var(--teal); font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.cf-video a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer { background: #070b14; border-top: 1px solid rgba(255, 255, 255, 0.06); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: #8b94ab; max-width: 320px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-family: var(--font-title); font-size: 14px; color: #fff; margin-bottom: 6px; }
.footer-col a { font-size: 14px; color: #8b94ab; transition: var(--transition); }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom p { font-size: 13px; color: #5c6478; }

/* ===== RESPONSIVO ===== */
@media (max-width: 960px) {
    .nav-menu { gap: 18px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-features { justify-content: center; }
    .hero-visual { max-width: 560px; margin: 0 auto; }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .benefits { grid-template-columns: repeat(2, 1fr); }
    .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 36px; }
    .feature-row.reverse .feature-visual { order: 0; }
    .setores { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .plan.featured { order: -1; }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .section { padding: 64px 0; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 72px; left: 0; right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: rgba(10, 14, 26, 0.97);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 16px 24px 24px;
        transform: translateY(-120%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    .nav-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-menu a:not(.btn) { padding: 12px 0; font-size: 16px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .nav-menu .nav-cta { margin: 12px 0 0; }
    .steps, .benefits, .setores { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .contact { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .hero { padding: 120px 0 64px; }
}