/* =============================================
   VARS E BASE
============================================= */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --teal: #14b8a6;
    --teal-light: #2dd4bf;
    --teal-glow: rgba(20, 184, 166, 0.4);
    --text-primary: #f8fafc;
    --text-muted: #94a3b8;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* =============================================
   NAVBAR
============================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.nav-logo span {
    color: var(--teal-light);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.5rem; /* Aumenta a target area invisível */
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-cta {
    padding: 0.75rem 1.75rem; /* Ampliado para melhor click area (min 44px height) */
    border: 1px solid var(--teal);
    border-radius: 99px;
    color: var(--teal-light);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px; /* Meta de Acessibilidade (WCAG) Touch Target */
}

.nav-cta:hover {
    background: var(--teal);
    color: #0a0a0a;
    box-shadow: 0 0 24px var(--teal-glow);
}

/* =============================================
   HERO SECTION — LAYOUT SPLIT
============================================= */
.hero {
    position: relative;
    min-height: 100svh;
    /* clip-path cria um contexto de recorte: elementos fixed
       dentro do hero só aparecem dentro desta área */
    clip-path: inset(0);
}

/* Gradiente de transição preto→transparente sobre a imagem.
   Vive no .hero (não no container da imagem) para evitar
   artefatos de borda do overflow:hidden ou transform. */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    /* Começa antes da borda da imagem para cobrir qualquer lacuna */
    left: calc(50% - 60px);
    right: 0;
    background: linear-gradient(
        to right,
        var(--bg-dark) 0px,
        var(--bg-dark) 60px,
        rgba(10, 10, 10, 0.6) calc(60px + 25%),
        rgba(10, 10, 10, 0.1) 100%
    );
    z-index: 3;
    pointer-events: none;
}

/* Container interno que respeita os 1140px */
.hero-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    /* Texto ocupa 60%, imagem 40% (baseado no container de 1140px) */
    grid-template-columns: 6fr 4fr;
    min-height: 100svh;
    position: relative;
    z-index: 5;
}

/* Lado esquerdo — Texto */
.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Padding reduzido para ganhar espaço horizontal */
    padding: 8rem 2rem 5rem 0;
}

/* Imagem fixa (parallax): não sobe com a rolagem.
   clip-path no .hero garante que ela só aparece dentro do hero */
.hero-image-bg {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100svh;
    z-index: 1;
    overflow: hidden;
}

/* Overlay teal cinemático */
.hero-image-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(
        to bottom,
        rgba(20, 184, 166, 0.08) 0%,
        transparent 100%
    );
    z-index: 3;
    pointer-events: none;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.75) contrast(1.1) saturate(0.9);
    transform: scale(1.08);
    transform-origin: center center;
    transition: transform 8s ease;
}

.hero-image-bg img.loaded {
    transform: scale(1);
}

/* =============================================
   TIPOGRAFIA HERO
============================================= */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border: 1px solid rgba(20, 184, 166, 0.35);
    border-radius: 99px;
    background: rgba(20, 184, 166, 0.07);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--teal-light);
    text-transform: uppercase;
    margin-bottom: 2rem;
    width: fit-content;
    opacity: 0;
    transform: translateY(20px);
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.7);
    }
}

.hero-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2.4rem, 3.8vw, 3.8rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.04em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(30px);
    word-break: keep-all;
}

.hero-title .highlight {
    color: var(--teal-light);
    /* Efeito de texto brilhante */
    text-shadow:
        0 0 30px rgba(20, 184, 166, 0.5),
        0 0 60px rgba(20, 184, 166, 0.2);
}

.hero-subtitle {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    font-weight: 600;
    color: var(--teal-light);
    margin-bottom: 1.25rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    max-width: 52ch;
}

.hero-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75;
    color: #94a3b8;
    max-width: 48ch;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
}

.hero-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* =============================================
   CTA Button — Principal
============================================= */
.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem; /* Área confortável para click e tap */
    min-height: 56px; /* Superando marca de 44px WCAG */
    background: var(--teal);
    color: #0a0a0a;
    font-family: "Outfit", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
    box-shadow: 0 0 0 rgba(20, 184, 166, 0);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

/* Efeito de brilho interno que passa */
.btn-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(20deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-hero:hover::before {
    transform: rotate(20deg) translateX(300%);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow:
        0 6px 30px var(--teal-glow),
        0 0 60px rgba(20, 184, 166, 0.15);
}

.btn-hero:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.btn-hero:hover .btn-arrow {
    transform: translateX(4px);
}

/* =============================================
   Proof bar abaixo do CTA (social proof rápida)
============================================= */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(15px);
}

.proof-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 0.9rem;
}

.proof-text {
    font-size: 0.85rem;
    color: #64748b;
}

.proof-text strong {
    color: #94a3b8;
    font-weight: 600;
}

.proof-divider {
    width: 1px;
    height: 24px;
    background: #27272a;
}

/* =============================================
   SCROLL INDICATOR
============================================= */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: #374151;
}

.scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4b5563;
}

/* =============================================
   RESPONSIVIDADE MOBILE — HERO
============================================= */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-image-bg {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 50svh;
    }

    /* No mobile, gradiente vai de baixo (escuro) para cima */
    .hero::before {
        left: 0;
        top: auto;
        bottom: 0;
        height: 60%;
        background: linear-gradient(
            to top,
            var(--bg-dark) 0%,
            rgba(10, 10, 10, 0.6) 40%,
            transparent 100%
        );
    }

    .hero-content {
        padding: 2.5rem 1.5rem 4rem;
    }

    .scroll-indicator {
        display: none;
    }

    .nav-links {
        display: none;
    }
}

/* =============================================
   REDUCED MOTION (Acessibilidade)
============================================= */
@media (prefers-reduced-motion: reduce) {
    .hero-image img {
        transform: none;
        transition: none;
    }
    .btn-hero::before {
        display: none;
    }
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* =============================================
   SEÇÃO 2 — CONEXÃO COM A DOR
============================================= */
.pain-section {
    padding: 7rem 2rem;
    position: relative;
    /* Fundo visivelmente diferente do hero */
    background-color: #111114;
}

.pain-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(20, 184, 166, 0.25),
        transparent
    );
}

.section-label {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.section-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.15;
    max-width: 40ch;
    margin: 0 auto 4rem;
}

/* Grid de cards */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1140px;
    margin: 0 auto;
    align-items: stretch;
}

.pain-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 2px; /* espaço para borda animada */
    display: flex;
    flex-direction: column;
    cursor: default;
    /* Borda rotativa (mesmo efeito da Seção 5) */
    background: conic-gradient(
        from var(--neon-angle),
        rgba(20, 184, 166, 0.5) 0%,
        transparent 12%,
        transparent 38%,
        rgba(20, 184, 166, 0.3) 50%,
        transparent 62%,
        transparent 88%,
        rgba(20, 184, 166, 0.5) 100%
    );
    animation: neon-rotate 6s linear infinite;
    /* GPU isolation */
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    contain: layout style;
    transition: box-shadow 0.4s ease;
}

/* Conteúdo interno — fundo sólido sobre a borda animada */
.pain-card__inner {
    background: #111111;
    border-radius: 14px;
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

/* Hover (desktop) + In-View (mobile): borda sólida + glow */
.pain-card:hover,
.pain-card--in-view {
    animation-play-state: paused;
    background: rgba(20, 184, 166, 0.5);
    box-shadow:
        0 0 12px rgba(20, 184, 166, 0.2),
        0 0 28px rgba(20, 184, 166, 0.1),
        0 0 56px rgba(20, 184, 166, 0.05);
}

/* Ícone do card */
.card-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    border: 1px solid rgba(20, 184, 166, 0.25);
    background: rgba(20, 184, 166, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.pain-card:hover .card-icon-wrap,
.pain-card--in-view .card-icon-wrap {
    border-color: var(--teal);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.25);
}

.card-icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: var(--teal);
}

.card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
}

.card-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
}

.card-body {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #94a3b8;
    flex: 1;
}

/* Responsivo — Seção 2 */
@media (max-width: 900px) {
    .pain-grid {
        grid-template-columns: 1fr;
        max-width: 540px;
    }
}

/* =============================================
   SEÇÃO 3 — A REVELAÇÃO (SOLUÇÃO / VSL)
============================================= */
.solution-section {
    padding: 7rem 2rem;
    position: relative;
    /* Fundo levemente diferente para separar da seção anterior */
    background: linear-gradient(180deg, #0d0d10 0%, #0a0a0f 50%, #0d0d10 100%);
}

/* Borda teal sutil no topo (padrão das seções) */
.solution-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(20, 184, 166, 0.25),
        transparent
    );
}

.solution-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Headline provocativo */
.solution-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.25;
    max-width: 1000px; /* Aumentado para comportar a frase em uma linha */
    margin: 0 auto 3.5rem;
}

.solution-title em {
    font-style: normal;
    color: var(--teal-light);
    text-shadow:
        0 0 30px rgba(20, 184, 166, 0.4),
        0 0 60px rgba(20, 184, 166, 0.15);
}

/* Container do vídeo com moldura glow */
.vsl-wrapper {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 4rem;
    border-radius: 12px;
    border: 1px solid rgba(20, 184, 166, 0.2);
    box-shadow:
        0 0 60px rgba(20, 184, 166, 0.1),
        0 0 120px rgba(20, 184, 166, 0.05),
        0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: #000;
}

/* Aspect ratio 16:9 */
.vsl-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 9/16 = 56.25% */
    background: #000;
}

.vsl-container iframe,
.vsl-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Placeholder enquanto o vídeo real não está inserido */
.vsl-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: radial-gradient(
        ellipse at center,
        rgba(20, 184, 166, 0.06) 0%,
        transparent 70%
    );
    cursor: pointer;
    transition: background 0.4s ease;
}

.vsl-placeholder:hover {
    background: radial-gradient(
        ellipse at center,
        rgba(20, 184, 166, 0.12) 0%,
        transparent 70%
    );
}

.vsl-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--teal);
    filter: drop-shadow(0 0 20px rgba(20, 184, 166, 0.4));
    transition:
        transform 0.3s ease,
        filter 0.3s ease;
}

.vsl-placeholder:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(20, 184, 166, 0.6));
}

.vsl-placeholder span {
    font-family: "Outfit", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    opacity: 0.7;
}

/* =============================================
   TL;DR BOX (GEO OPTIMIZATION)
============================================= */
.tldr-box {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 3.5rem;
    padding: 1.75rem 2rem;
    background: rgba(20, 184, 166, 0.05); /* Fundo sutil */
    border-left: 4px solid var(--teal);
    border-radius: 0 8px 8px 0;
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
}

.tldr-box strong {
    font-family: "Outfit", sans-serif;
    color: var(--teal-light);
    font-size: 1.15rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* Bloco de texto rico abaixo do vídeo */
.solution-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.solution-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #94a3b8;
    margin-bottom: 1.75rem;
}

.solution-text p:last-child {
    margin-bottom: 0;
}

.solution-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* H3 destaque — filosofia */
.solution-highlight {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--teal-light);
    line-height: 1.4;
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    border-left: 3px solid var(--teal);
    border-right: 3px solid var(--teal);
    border-radius: 4px;
    background: rgba(20, 184, 166, 0.04);
    text-shadow: 0 0 40px rgba(20, 184, 166, 0.2);
    text-align: center;
}

/* Responsivo — Seção 3 */
@media (max-width: 900px) {
    .solution-section {
        padding: 5rem 1.25rem;
    }

    .vsl-wrapper {
        border-radius: 8px;
        margin-bottom: 3rem;
    }

    .solution-text {
        text-align: left;
    }

    .solution-text p {
        font-size: 1rem;
    }

    .solution-highlight {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
        text-align: left;
    }
}

/* =============================================
   SEÇÃO 4 — A AUTORIDADE DO MENTOR
============================================= */
.mentor-section {
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
    /* Fundo premium escuro com gradiente sutil */
    background: linear-gradient(180deg, #111114 0%, #0e0e12 40%, #0c0c10 100%);
}

/* Borda teal sutil no topo (padrão das seções) */
.mentor-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(20, 184, 166, 0.25),
        transparent
    );
}

/* Textura de fundo radial sutil */
.mentor-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            ellipse 80% 60% at 20% 50%,
            rgba(20, 184, 166, 0.03) 0%,
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 50% at 80% 30%,
            rgba(20, 184, 166, 0.02) 0%,
            transparent 60%
        );
    pointer-events: none;
}

/* Container interno: Grid 2 colunas */
.mentor-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* =========================
   COLUNA DA IMAGEM
========================= */
.mentor-image-col {
    display: flex;
    justify-content: center;
}

.mentor-image-frame {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    overflow: hidden;
}

/* Glow decorativo na borda da imagem */
.mentor-image-glow {
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        rgba(20, 184, 166, 0.3) 0%,
        rgba(20, 184, 166, 0.15) 50%,
        rgba(20, 184, 166, 0.2) 100%
    );
    z-index: 0;
    filter: blur(0px);
    animation: mentor-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes mentor-glow-pulse {
    0% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
    }
}

.mentor-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    filter: brightness(0.85) contrast(1.05) saturate(0.95);
    transition:
        filter 0.5s ease,
        transform 0.6s ease;
}

.mentor-image-frame:hover .mentor-photo {
    filter: brightness(0.92) contrast(1.08) saturate(1);
    transform: scale(1.02);
}

/* Badge sobreposto na imagem */
.mentor-badge-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(20, 184, 166, 0.3);
    border-radius: 12px;
    line-height: 1.2;
}

.mentor-badge-overlay span {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal-light);
    letter-spacing: -0.02em;
}

.mentor-badge-overlay small {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #94a3b8;
}

/* =========================
   COLUNA DO TEXTO
========================= */
.mentor-text-col {
    display: flex;
    flex-direction: column;
}

.mentor-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.mentor-intro {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.mentor-intro strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Nome do mentor em destaque especial */
.mentor-name-highlight {
    color: var(--teal-light) !important;
    font-weight: 700 !important;
}

/* =========================
   LISTA DE CONQUISTAS
========================= */
.mentor-achievements {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.02);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.achievement-item:hover {
    background: rgba(20, 184, 166, 0.04);
    border-color: rgba(20, 184, 166, 0.15);
    transform: translateX(4px);
}

.achievement-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(20, 184, 166, 0.08);
    border: 1px solid rgba(20, 184, 166, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.achievement-item:hover .achievement-icon {
    background: rgba(20, 184, 166, 0.12);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.15);
}

.achievement-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--teal);
    transition: stroke 0.3s ease;
}

.achievement-item:hover .achievement-icon svg {
    stroke: var(--teal-light);
}

.achievement-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #94a3b8;
    padding-top: 0.15rem;
}

.achievement-text strong {
    color: var(--text-primary);
    font-weight: 700;
}

/* =========================
   FECHAMENTO (BLOCKQUOTE)
========================= */
.mentor-closing {
    position: relative;
    padding: 1.5rem 2rem;
    margin: 0;
    border-left: 3px solid var(--teal);
    border-radius: 0 8px 8px 0;
    background: linear-gradient(
        90deg,
        rgba(20, 184, 166, 0.06) 0%,
        rgba(20, 184, 166, 0.01) 100%
    );
}

.mentor-closing p {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 500;
    font-style: italic;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0;
}

.mentor-closing em {
    font-style: normal;
    color: var(--teal-light);
    font-weight: 700;
}

/* =========================
   RESPONSIVIDADE — SEÇÃO 4
========================= */
@media (max-width: 900px) {
    .mentor-section {
        padding: 5rem 1.25rem;
    }

    .mentor-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Imagem no topo em mobile */
    .mentor-image-col {
        order: -1;
    }

    .mentor-image-frame {
        max-width: 320px;
    }

    .mentor-title {
        text-align: center;
    }

    .mentor-intro {
        text-align: center;
    }

    .achievement-item:hover {
        transform: none;
    }

    .mentor-closing {
        padding: 1.25rem 1.5rem;
    }
}

/* =============================================
   SEÇÃO 5 — A TRANSFORMAÇÃO (NARRATIVE NEON)
   Cards com borda animada rotativa,
   grain texture, 3D tilt, narrative flow.
============================================= */

/* Custom property para animar ângulo do gradiente */
@property --neon-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.transform-d {
    padding: 7rem 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #08080c 0%, #0b0b10 50%, #08080c 100%);
}

/* Borda teal topo */
.transform-d::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(20, 184, 166, 0.25),
        transparent
    );
}

/* ========================
   GRAIN TEXTURE (Cinema)
======================== */
.transform-d__grain {
    position: absolute;
    inset: 0;
    opacity: 0.035;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
    z-index: 1;
    mix-blend-mode: overlay;
}

.transform-d__inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Itálico neon no "só" */
.transform-d .section-title em {
    font-style: italic;
    color: var(--teal-light);
    text-shadow:
        0 0 30px rgba(20, 184, 166, 0.4),
        0 0 60px rgba(20, 184, 166, 0.15);
}

/* Grid: 3 colunas para os cards */
.transform-d__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

/* ========================
   CARD — Borda Neon Rotativa
======================== */
.transform-d__card {
    position: relative;
    border-radius: 12px;
    overflow: hidden; /* impede vazamento do gradiente */
    padding: 2px; /* espaço para a borda animada */
    display: flex;
    flex-direction: column;
    background: conic-gradient(
        from var(--neon-angle),
        rgba(20, 184, 166, 0.5) 0%,
        transparent 12%,
        transparent 38%,
        rgba(20, 184, 166, 0.3) 50%,
        transparent 62%,
        transparent 88%,
        rgba(20, 184, 166, 0.5) 100%
    );
    animation: neon-rotate 6s linear infinite;
    /* GPU isolation — evita repaint nos cards vizinhos */
    will-change: transform, box-shadow;
    backface-visibility: hidden;
    contain: layout style;
    /* Transição suave para o hover */
    transition: box-shadow 0.4s ease;
}

@keyframes neon-rotate {
    to {
        --neon-angle: 360deg;
    }
}

/* Estado de repouso: borda sutil */
.transform-d__card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 50%,
        rgba(255, 255, 255, 0.06) 100%
    );
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    pointer-events: none;
    z-index: 3;
}

/* Container interno (fundo sólido sobre a borda animada) */
.transform-d__card > *:not(.transform-d__bg-number) {
    position: relative;
    z-index: 2;
}

.transform-d__header,
.transform-d__body {
    background: #0c0c11;
}

.transform-d__header {
    border-radius: 10px 10px 0 0;
}

.transform-d__body {
    border-radius: 0 0 10px 10px;
    flex: 1; /* expande para preencher o card inteiro */
}

/* Hover (desktop) + In-View (mobile): borda sólida + glow externo */
.transform-d__card:hover,
.transform-d__card--in-view {
    animation-play-state: paused; /* congela a rotação */
    /* Borda sólida teal (substitui o conic-gradient rotativo) */
    background: rgba(20, 184, 166, 0.5);
    /* Glow externo envolvente */
    box-shadow:
        0 0 12px rgba(20, 184, 166, 0.2),
        0 0 28px rgba(20, 184, 166, 0.1),
        0 0 56px rgba(20, 184, 166, 0.05);
}

/* ========================
   NÚMERO DECORATIVO GIGANTE
======================== */
.transform-d__bg-number {
    position: absolute;
    top: -0.3rem;
    right: 0.5rem;
    font-family: "Outfit", sans-serif;
    font-size: 7rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: -0.06em;
    line-height: 1;
    pointer-events: none;
    z-index: 1;
    user-select: none;
    transition: color 0.5s ease;
}

.transform-d__card:hover .transform-d__bg-number,
.transform-d__card--in-view .transform-d__bg-number {
    color: rgba(20, 184, 166, 0.05);
}

/* ========================
   HEADER & PERSONA
======================== */
.transform-d__header {
    padding: 1.5rem 1.75rem 1rem;
}

.transform-d__persona {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.transform-d__persona-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.06);
    border: 1.5px solid rgba(20, 184, 166, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition:
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.transform-d__card:hover .transform-d__persona-icon,
.transform-d__card--in-view .transform-d__persona-icon {
    border-color: var(--teal);
    box-shadow: 0 0 20px rgba(20, 184, 166, 0.25);
}

.transform-d__persona-icon svg {
    color: var(--teal);
}

.transform-d__persona span {
    font-family: "Outfit", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--text-primary);
}

/* ========================
   BODY — Narrativa Vertical
======================== */
.transform-d__body {
    padding: 0 1.75rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* ========================
   BLOCO "DE" (DOR) — TEXTO RISCADO
======================== */
.transform-d__from {
    padding: 1rem 0;
}

.transform-d__crossed {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #65707f;
    margin: 0;
    font-style: italic;
    transition: color 0.4s ease;
}

.transform-d__card:hover .transform-d__crossed,
.transform-d__card--in-view .transform-d__crossed {
    color: #4b5563;
}

/* ========================
   DIVIDER LUMINOSO
======================== */
.transform-d__divider {
    position: relative;
    height: 2px;
    margin: 0.25rem 0;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.transform-d__divider-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--teal) 50%,
        transparent 100%
    );
    border-radius: 999px;
    animation: divider-sweep 3s ease-in-out infinite;
}

@keyframes divider-sweep {
    0% {
        left: -60%;
        opacity: 0;
    }
    30% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

/* ========================
   BLOCO "PARA" (GLÓRIA) — TEXTO ILUMINADO
======================== */
.transform-d__to {
    padding: 1rem 0 0;
}

.transform-d__glow-text {
    font-size: 1rem;
    line-height: 1.75;
    color: #cbd5e1;
    margin: 0;
    transition: color 0.4s ease;
}

.transform-d__card:hover .transform-d__glow-text,
.transform-d__card--in-view .transform-d__glow-text {
    color: #e2e8f0;
}

.transform-d__glow-text strong {
    color: var(--text-primary);
    font-weight: 800;
    text-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
    transition: text-shadow 0.4s ease;
}

.transform-d__card:hover .transform-d__glow-text strong,
.transform-d__card--in-view .transform-d__glow-text strong {
    text-shadow:
        0 0 20px rgba(20, 184, 166, 0.5),
        0 0 40px rgba(20, 184, 166, 0.2);
}

/* ========================
   TAGS (ANTES / DEPOIS)
======================== */
.transform-d__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.transform-d__tag--from {
    color: #4b5563;
}

.transform-d__tag--from svg {
    color: rgba(239, 68, 68, 0.5);
}

.transform-d__tag--to {
    color: var(--teal-light);
}

.transform-d__tag--to svg {
    color: var(--teal);
    filter: drop-shadow(0 0 4px rgba(20, 184, 166, 0.5));
}

/* ========================
   RESPONSIVIDADE — SEÇÃO 5D
======================== */
@media (max-width: 1100px) {
    .transform-d__grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Terceiro card centralizado */
    .transform-d__card:last-child {
        grid-column: 1 / -1;
        max-width: 480px;
        justify-self: center;
    }
}

@media (max-width: 700px) {
    .transform-d {
        padding: 5rem 1.25rem;
    }

    .transform-d__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .transform-d__card:last-child {
        max-width: none;
    }

    .transform-d__header {
        padding: 1.25rem 1.5rem 0.75rem;
    }

    .transform-d__body {
        padding: 0 1.5rem 1.5rem;
    }

    .transform-d__bg-number {
        font-size: 5rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .transform-d__card,
    .pain-card {
        animation: none;
        background: rgba(20, 184, 166, 0.08);
    }

    .transform-d__divider-glow {
        animation: none;
        left: 20%;
        opacity: 0.7;
    }
}

/* =============================================
   UTILITÁRIOS GLOBAIS
============================================= */

/* Reveal animation classes (scroll reveal) */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   SEÇÃO 6 — PROVA SOCIAL
============================================= */
.social-proof-section {
    padding: 7rem 2rem;
    position: relative;
    background: #0d0d10; /* Fundo diferente do principal para destacar */
}

/* Borda teal sutil no topo */
.social-proof-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(20, 184, 166, 0.25),
        transparent
    );
}

.social-proof-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.social-proof-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.25;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.social-proof-card {
    position: relative;
    background: #141418;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform 0.4s ease,
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.social-proof-card:hover {
    transform: translateY(-6px);
    border-color: rgba(20, 184, 166, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(20, 184, 166, 0.08);
}

.video-thumbnail {
    width: 100%;
    padding-top: 56.25%; /* Aspect ratio 16:9 padrão */
    position: relative;
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

/* Aspect ratio vertical para YouTube Shorts (9:16) */
.video-thumbnail--vertical {
    padding-top: 177.78%; /* 16/9 = 1.7778 → 9:16 vertical */
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.card-bottom {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-stars {
    color: #ffb800;
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.card-bottom p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #cbd5e1;
    margin: 0 0 0.75rem 0;
    flex: 1;
}

.card-bottom em {
    font-style: italic;
    color: var(--text-primary);
}

.student-info {
    display: flex;
    flex-direction: column;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.student-info h4 {
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.2rem 0;
}

.student-info span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Responsividade Prova Social */
@media (max-width: 900px) {
    .social-proof-section {
        padding: 5rem 1.25rem;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
        gap: 2rem;
    }

    .card-bottom {
        padding: 1.75rem;
    }
}

/* =============================================
   SEÇÃO 7 — O ARSENAL (OPÇÃO B - STACK MAGNÉTICO)
============================================= */
.bonus-section {
    padding: 8rem 2rem 2rem;
    position: relative;
    background: #0d0d10; /* Flat dark, allow glowing cards to shine */
    overflow: visible; /* Prevent sticky from clipping, mas container global pode dar handle */
}

/* Light beam from top */
.bonus-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(20, 184, 166, 0.4),
        transparent
    );
    box-shadow: 0 0 30px 2px var(--teal-glow);
}

.bonus-inner {
    max-width: 1140px;
    margin: 0 auto;
}

/* Layout com scroll duplo/sticky na esquerda (desktop) */
.bonus-layout-split {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: -150vh;
}

@media (max-width: 992px) {
    .bonus-layout-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.bonus-header-sticky {
    position: sticky;
    top: 120px;
    padding-bottom: 2rem;
    z-index: 10;
}

.bonus-subtitle-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #94a3b8;
}

.bonus-subtitle-box strong {
    color: var(--teal-light);
}

.pulse-indicator {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--teal);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--teal);
    animation: pulse-dot 1.5s infinite alternate ease-in-out;
}

@keyframes pulse-dot {
    from {
        opacity: 0.4;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1.2);
        box-shadow: 0 0 20px var(--teal);
    }
}

/* O Track onde os cards ficam */
.bonus-stack-track {
    position: relative;
    display: block; /* 'block' tem melhor compatibilidade que flex para sticky na vertical */
}

/* Pista extra invisível gigante: garante que as sub-sessões não espremam os cards antes de serem cobertos pela cortina */
.bonus-stack-track::after {
    content: "";
    display: block;
    height: 150vh;
}

/* O Card em si e seu efeito Sticky */
.stack-card {
    position: sticky;
    /* top é setado via custom property inline no HTML para cascade */
    top: var(--card-top, 100px);

    background: #111114;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 4rem; /* Spacing until it hits sticky point */
    min-height: 220px;
    display: flex;
    overflow: hidden;

    /* Criação de profundidade forte com sombra sob o card de cima */
    box-shadow:
        0 -15px 40px rgba(0, 0, 0, 0.6),
        0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: top center;
}

/* Para o último não ter margin tão grande no final (o container absorve o espaço via padding) */
.stack-card:last-child {
    margin-bottom: 0;
}

/* Glowing edge on absolute top of the card */
.card-glow-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(20, 184, 166, 0.3),
        transparent
    );
    opacity: 0.5;
    transition: opacity 0.4s ease;
}

.stack-card:hover .card-glow-edge,
.stack-card.is-stuck .card-glow-edge {
    opacity: 1;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    box-shadow: 0 2px 20px var(--teal-glow);
}

.stack-card:hover,
.stack-card.is-stuck {
    transform: translateY(-5px) scale(1.02); /* Efeito tátil de salto */
}

/* Ícone/Número à esquerda (Technical HUD feel reforçado) */
.bonus-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 2rem;
    background: rgba(20, 184, 166, 0.02);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 120px;
    position: relative;
    transition: background 0.4s ease;
}

.bonus-num {
    font-family: "Outfit", sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    line-height: 1;
    transition: all 0.4s ease;
}

.stack-card:hover .bonus-num,
.stack-card.is-stuck .bonus-num {
    -webkit-text-stroke: 1px var(--teal);
    color: rgba(20, 184, 166, 0.1);
}

/* Conteúdo do Card */
.bonus-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.bonus-value-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-strikethrough {
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.2);
}

.value-included {
    background: rgba(20, 184, 166, 0.15);
    color: var(--teal-light);
    border: 1px solid rgba(20, 184, 166, 0.4);
    font-family: "Outfit", sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(20, 184, 166, 0.1);
    transition: all 0.4s ease;
}

.stack-card:hover .value-included,
.stack-card.is-stuck .value-included {
    background: rgba(20, 184, 166, 0.25);
    border-color: rgba(20, 184, 166, 0.8);
    box-shadow: 0 0 20px var(--teal-glow);
}

/* O ícone de cadeado que abre no hover */
.unlock-icon {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.stack-card:hover .unlock-icon,
.stack-card.is-stuck .unlock-icon {
    color: var(--teal);
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--teal));
}

.bonus-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.bonus-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #94a3b8;
    margin: 0;
}

/* Transição para a Oferta (Efeito Cortina que sobrepõe o Deck de cards) */
.bonus-transition {
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative;
    z-index: 20;
    text-align: center;
    width: 100%;
}

.bonus-transition::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 120vh; /* Escudo cobrindo os cards atrás enquanto desce */
    background: #0d0d10; /* Mesma cor do background da section */
    z-index: -1;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.transition-title,
.transition-text,
.transition-arrow {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.transition-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.transition-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 2.5rem;
}

.transition-text strong {
    color: var(--teal-light);
}

.transition-arrow {
    width: 56px;
    height: 56px;
    margin: 0 auto;
    border-radius: 50%;
    background: rgba(20, 184, 166, 0.1);
    color: var(--teal);
    border: 1px solid rgba(20, 184, 166, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce-subtle 2s infinite ease-in-out;
}

.transition-arrow svg {
    width: 28px;
    height: 28px;
}

@keyframes bounce-subtle {
    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 0 0 rgba(20, 184, 166, 0);
    }
    50% {
        transform: translateY(10px);
        box-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
    }
}

/* Responsivo Mobile */
@media (max-width: 768px) {
    .bonus-section {
        padding: 5rem 1.25rem 2rem;
    }

    .bonus-layout-split {
        margin-bottom: 0;
    }

    .bonus-header-sticky {
        position: static; /* Header normal no mobile */
        padding-bottom: 0;
    }

    .bonus-stack-track::after {
        display: none; /* No mobile volta ao fluxo normal, sem pista invisível */
    }

    .stack-card {
        flex-direction: column;
        /* Disable sticky behavior on very small screens to avoid frustration unless there's room */
        position: relative;
        top: auto;
        margin-bottom: 2rem;
    }

    .stack-card:last-child {
        margin-bottom: 0; /* No mobile ele não precisa daquela margem gigante */
    }

    .bonus-icon-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 1.5rem;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }

    .bonus-num {
        font-size: 2rem;
        margin-right: 1rem;
    }

    .bonus-content {
        padding: 1.5rem;
    }

    .bonus-title {
        font-size: 1.25rem;
    }

    .pulse-indicator {
        display: none; /* Só faz sentido se for split-screen */
    }

    .bonus-transition {
        margin-top: 6rem;
        padding-top: 4rem;
    }

    .bonus-transition::before {
        display: none; /* Desativa a cortina bloqueadora */
        border-top: none;
    }

    .bonus-transition {
        border-top: 1px dashed rgba(255, 255, 255, 0.1);
    }
}

/* =============================================
   SEÇÃO 8 — A OFERTA IRRECUSÁVEL
============================================= */
.offer-section {
    padding: 4rem 2rem 8rem;
    position: relative;
    background: linear-gradient(180deg, #0a0a0a 0%, #111114 100%);
    overflow: hidden;
    z-index: 30;
}

.offer-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.offer-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.offer-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #94a3b8;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.pricing-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition:
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        box-shadow 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.premium {
    background: #16161a;
    border: 1px solid rgba(255, 184, 0, 0.4);
    box-shadow: 0 0 60px rgba(255, 184, 0, 0.08); /* Glow suave */
    transform: scale(1.05); /* Ligeiramente maior nativamente */
    padding: 3.5rem 2.5rem;
    z-index: 10;
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 184, 0, 0.15);
}

/* Badge Destaque */
.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #000;
    font-family: "Outfit", sans-serif;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    z-index: 2;
}

.pricing-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.pricing-card.premium .pricing-title {
    font-size: 1.6rem;
    color: #fbbf24;
}

.pricing-sub {
    font-size: 0.85rem;
    color: var(--teal);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.pricing-card.premium .pricing-sub {
    color: #fcd34d;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.5;
}

.pricing-card.premium .pricing-features li {
    color: #e2e8f0;
}

.pricing-features li.bonus-item {
    font-weight: 600;
    color: #fbbf24;
    background: rgba(
        245,
        158,
        11,
        0.05
    ); /* Fundo sutil pra destacar o bônus na lista */
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px dashed rgba(245, 158, 11, 0.2);
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Preço */
.pricing-price-wrap {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.price-de {
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #94a3b8;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.price-de s {
    text-decoration: line-through;
    color: #ef4444; /* Vermelho claro pro corte */
    font-size: 1.25rem;
    opacity: 1;
}

.price-parcelas {
    font-family: "Outfit", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.2rem;
}

/* No combo destaque (premium), o preço ganha um glow leve */
.pricing-card.premium .price-parcelas {
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.4);
}

.price-parcelas span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--teal-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-avist {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.price-economy {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 700;
    margin-top: 0.5rem;
    padding: 0.25rem 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

/* Botões */
.btn-pricing {
    width: 100%;
    padding: 1.1rem 1rem;
    text-align: center;
    border-radius: 8px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary {
    background: transparent;
    color: var(--teal-light);
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.btn-secondary:hover {
    background: rgba(20, 184, 166, 0.1);
    border-color: var(--teal);
    transform: translateY(-2px);
}

.btn-primary-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
    animation: gold-pulse 2s infinite;
}

/* Efeito interno brilhante */
.btn-primary-gold::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(20deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary-gold:hover::before {
    transform: rotate(20deg) translateX(300%);
}

@keyframes gold-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.btn-primary-gold:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.offer-footer {
    text-align: center;
    margin-top: 4rem;
    background: rgba(20, 184, 166, 0.05);
    border: 1px solid rgba(20, 184, 166, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.offer-footer-text {
    font-family: "Outfit", sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: #e2e8f0;
}

.offer-footer-text strong {
    color: var(--teal-light);
    font-weight: 700;
    font-size: 1.3rem;
}

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        gap: 3rem;
    }
    .pricing-card.premium {
        transform: scale(1);
    }
    .pricing-card.premium:hover {
        transform: scale(1) translateY(-8px);
    }
    .pricing-card.premium {
        order: -1; /* Traz o combo pro topo no mobile */
    }
}

/* =============================================
   SEÇÃO 9 — GARANTIA INCONDICIONAL
============================================= */
.guarantee-section {
    padding: 6rem 2rem;
    background: #0d0d10; /* Fundo levemente mais claro que a oferta */
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03); /* Separador sutil da tabela de preços */
    z-index: 20;
}

.guarantee-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    background: rgba(24, 24, 27, 0.4); /* Zinc-900 com transparência */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 24px;
    padding: 3rem 4rem;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(245, 158, 11, 0.05); /* Brilho interno mais sutil pro dourado */
}

.guarantee-badge {
    flex-shrink: 0;
}

.badge-placeholder {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    /* Gradiente premium metálizao Dourado */
    background: radial-gradient(
        circle at 30% 30%,
        #fde68a 0%,
        #f59e0b 40%,
        #92400e 90%
    );
    border: 6px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 15px 35px rgba(245, 158, 11, 0.25),
        inset 0 0 20px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.05em;
    text-align: center;
    line-height: 1;
    position: relative;
    animation: gold-float 4s ease-in-out infinite;
}

.badge-placeholder::before {
    content: "GARANTIA";
    position: absolute;
    top: 40px;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.badge-placeholder::after {
    content: "INCONDICIONAL";
    position: absolute;
    bottom: 40px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.85;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes gold-float {
    0%,
    100% {
        transform: translateY(0);
        box-shadow:
            0 15px 35px rgba(245, 158, 11, 0.25),
            inset 0 0 20px rgba(0, 0, 0, 0.4);
    }
    50% {
        transform: translateY(-10px);
        box-shadow:
            0 25px 45px rgba(245, 158, 11, 0.35),
            inset 0 0 20px rgba(0, 0, 0, 0.4);
    }
}

.guarantee-content {
    flex: 1;
}

.guarantee-title {
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.guarantee-text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #cbd5e1;
    margin-bottom: 1.25rem;
}

.guarantee-highlight {
    background: rgba(20, 184, 166, 0.06);
    border-left: 4px solid var(--teal);
    padding: 1.5rem 1.75rem;
    border-radius: 0 8px 8px 0;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.guarantee-highlight p {
    font-family: "Outfit", sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.6;
}

.btn-guarantee {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.15rem 2.25rem;
    background: linear-gradient(
        135deg,
        #f59e0b,
        #d97706
    ); /* Dourado/Âmbar da Tabela Premium */
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.35); /* Glow Dourado */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Efeito interno brilhante similar ao do CTA principal */
.btn-guarantee::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(20deg) translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-guarantee:hover::before {
    transform: rotate(20deg) translateX(300%);
}

.btn-guarantee:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.5);
}

.btn-guarantee svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

/* Seta desliza um pouco para cima ao passar o mouse (chamando pra voltar à tabela) */
.btn-guarantee:hover svg {
    transform: translateY(-4px);
}

@media (max-width: 900px) {
    .guarantee-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 2.5rem;
    }

    .badge-placeholder {
        width: 180px;
        height: 180px;
        font-size: 2.8rem;
    }

    .badge-placeholder::before {
        top: 30px;
        font-size: 1rem;
    }

    .badge-placeholder::after {
        bottom: 30px;
        font-size: 0.75rem;
    }

    .guarantee-highlight {
        text-align: left;
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .btn-guarantee {
        width: 100%;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.1rem;
    }

    .btn-guarantee svg {
        transform: rotate(0deg);
    }
}

/* =============================================
   SEÇÃO 10 — FAQ
============================================= */
.faq-section {
    padding: 7rem 2rem;
    background-color: #0d0d10; /* Fundo mais escuro */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 3.5rem;
    color: var(--text-primary);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #1a1a20; /* Fundo levemente mais claro que o section */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition:
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.faq-item:hover {
    background-color: #1e1e24;
    border-color: rgba(20, 184, 166, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.15rem;
    font-weight: 600;
    gap: 1.5rem;
    transition: color 0.3s ease;
}

.faq-question-text {
    flex: 1;
}

.faq-item.active .faq-question {
    color: var(--teal-light);
}

.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background-color: var(--teal);
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

/* Linha horizontal do + */
.faq-icon::before {
    top: 11px;
    left: 4px;
    width: 16px;
    height: 2px;
}

/* Linha vertical do + */
.faq-icon::after {
    top: 4px;
    left: 11px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::before,
.faq-item.active .faq-icon::after {
    background-color: var(--teal-light);
}

/* Vira um - virando a linha vertical horizontalmente */
.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
}

.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
    padding: 0 1.5rem; /* Margem horizontal apenas, padding vertical dentro dos elementos */
}

/* Evita que margin interfira no calculo do grid height:0 */
.faq-answer-inner > *:first-child {
    padding-top: 0;
    margin-top: 0;
}

.faq-answer-inner > *:last-child {
    padding-bottom: 1.5rem;
    margin-bottom: 0;
}

.faq-answer p,
.faq-answer .faq-list {
    color: #cbd5e1; /* Texto claro */
    line-height: 1.6;
    font-size: 1rem;
}

.faq-list {
    list-style: none;
    margin-top: 1rem;
    padding-left: 0;
}

.faq-list li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.25rem;
}

.faq-list li::before {
    content: "•";
    color: var(--teal);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: bold;
}

/* =============================================
   RODAPÉ (FOOTER)
============================================= */
.footer {
    padding: 3rem 2rem;
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    font-family: "Outfit", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.footer-logo span {
    color: var(--teal-light);
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-separator {
    color: #475569;
}

.footer-copy {
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 1.05rem;
        padding: 1.25rem;
    }
    .faq-answer-inner {
        padding: 0 1.25rem;
    }
    .faq-answer-inner > *:last-child {
        padding-bottom: 1.25rem;
    }
}
