/* ════════════════════════════════════════════════
   TOKENS
════════════════════════════════════════════════ */
:root {
    --blue-dark: #001F3D;
    --blue-mid: #003D6B;
    --blue-primary: #005591;
    --green: #00C800;
    --green-dim: rgba(0, 200, 0, 0.10);
    --green-border: rgba(0, 200, 0, 0.28);
    --orange: #FE4A00;
    --orange-dark: #e64400;
    --white: #FFFFFF;
    --w80: rgba(255, 255, 255, 0.80);
    --w60: rgba(255, 255, 255, 0.60);
    --w40: rgba(255, 255, 255, 0.40);
    --w20: rgba(255, 255, 255, 0.20);
    --w12: rgba(255, 255, 255, 0.12);
    --w06: rgba(255, 255, 255, 0.18);

    --ff-title: 'Archivo Black', sans-serif;
    --ff-body: 'Inter Tight', sans-serif;

    --r-sm: 8px;
    --r-md: 16px;
    --r-lg: 24px;

    --shadow-cta: 0 4px 22px rgba(254, 74, 0, 0.45);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.35);
    --t: 0.22s ease;
}

/* ════════════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--ff-body);
    background: var(--blue-dark);
    color: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

/* ════════════════════════════════════════════════
   UTILITY
════════════════════════════════════════════════ */
.bg-dark {
    background: var(--blue-dark);
}

.bg-mid {
    background: var(--blue-mid);
}

.bg-primary {
    background: var(--blue-primary);
}

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

.text-green {
    color: var(--green);
}

.container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container--narrow {
    max-width: 780px;
}

/* ════════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════════ */
.section-title {
    font-family: var(--ff-title);
    font-size: clamp(1.7rem, 4vw, 2.65rem);
    line-height: 1.18;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.section-lead {
    font-size: 1.1rem;
    color: var(--w80);
    margin-bottom: 1.75rem;
}

.body-text {
    font-size: 1.05rem;
    color: var(--w80);
    margin-bottom: 1.25rem;
    max-width: 68ch;
    line-height: 1.72;
}

.text-center .body-text {
    margin-left: auto;
    margin-right: auto;
}

/* ════════════════════════════════════════════════
   FADE-IN
════════════════════════════════════════════════ */
.fade-in {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn-cta {
    display: inline-block;
    background: var(--orange);
    color: var(--white) !important;
    font-family: var(--ff-title);
    font-size: 0.9rem;
    letter-spacing: -0.04em;
    padding: 1rem;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-cta);
    cursor: pointer;
    text-align: center;
    line-height: 1.25;
    text-decoration: none !important;
    transition: background var(--t), transform var(--t), box-shadow var(--t);
}

.btn-cta:hover,
.btn-cta:focus-visible {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(254, 74, 0, 0.55);
    outline: none;
}

.btn-cta:active {
    transform: translateY(0);
}

.btn-cta--lg {
    font-size: 1.15rem;
    padding: 1.2rem 3rem;
}

/* ════════════════════════════════════════════════
   BADGE PILL
════════════════════════════════════════════════ */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-dim);
    color: var(--green);
    border: 1px solid var(--green-border);
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    padding: 0.38rem 1rem;
    width: fit-content;
}

.badge-pill--sm {
    font-size: 0.72rem;
    padding: 0.28rem 0.9rem;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

/* ════════════════════════════════════════════════
   STICKY CTA — mobile
════════════════════════════════════════════════ */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0.75rem 1.25rem;
    background: rgba(0, 10, 22, 0.96);
    border-top: 1px solid var(--w12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.95rem 1.5rem;
}

@media (max-width: 768px) {
    .sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }
}

/* ════════════════════════════════════════════════
   TOPBAR
════════════════════════════════════════════════ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 950;
    padding: 1.1rem 0;
    background: linear-gradient(180deg, rgba(0, 10, 22, 0.55) 0%, rgba(0, 10, 22, 0.05) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-logo-link {
    display: inline-flex;
}

.topbar-logo {
    height: 48px;
    width: auto;
    display: block;
}

.topbar-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: border-color var(--t), background var(--t), color var(--t);
}

.topbar-social:hover {
    border-color: var(--green);
    color: var(--green);
    background: rgba(0, 200, 0, 0.08);
}

.topbar-social img {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .topbar {
        padding: 0.85rem 0;
    }

    .topbar-logo {
        height: 26px;
    }

    .topbar-social {
        width: 34px;
        height: 34px;
    }

    .topbar-social img {
        width: 17px;
        height: 17px;
    }
}

/* ════════════════════════════════════════════════
   SEÇÃO 1 — HERO
════════════════════════════════════════════════ */
.s-hero {
    position: relative;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 0 3rem;
    /* 5rem = altura aprox. da topbar fixa */
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(0, 15, 30, 0.3) 0%, rgba(0, 21, 42, 0.1) 45%, rgba(0, 21, 42, 0.35) 100%), url('assets/img/bg-section-01.jpg') center/cover no-repeat;
    background-color: var(--blue-dark);
    background-attachment: fixed;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.hero-title {
    font-family: var(--ff-title);
    font-size: clamp(1.85rem, 2vw, 2rem);
    line-height: 1.1;
    color: var(--white);
}

.hero-sub {
    font-family: var(--ff-title);
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: var(--green);
}

.hero-body {
    font-size: 1.05rem;
    color: var(--w80);
}

.hero-cta {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.hero-authority {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.25rem;
    color: var(--w60);
    font-size: 0.87rem;
}

.hero-authority strong {
    color: var(--w80);
}

.hero-authority p {
    text-wrap: balance;
}

.video-caption {
    margin-top: 1.1rem;
    justify-content: center;
}

.authority-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--green-border);
    flex-shrink: 0;
}

/* Hero logo (topo centralizado) */
.hero-logo-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.hero-logo {
    max-width: 380px;
    width: 100%;
    flex-shrink: 0;
}

/* Hero image side */
.hero-image {
    position: relative;
}

.hero-photo-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
    z-index: 1;
}

.hero-video-trigger {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1200 / 686;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--w12);
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.55);
    z-index: 1;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

.hero-video-trigger:hover,
.hero-video-trigger:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 22px 64px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--green-border);
    border-color: var(--green-border);
    outline: none;
}

.hero-video-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.hero-video-trigger:hover .hero-video-thumb {
    transform: scale(1.03);
}

.hero-photo-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 85, 145, 0.5) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* ── Hero Orbit Logos ── */
@keyframes of1 {

    0%,
    100% {
        opacity: .28;
        transform: translate(0, 0)
    }

    50% {
        opacity: .52;
        transform: translate(6px, -7px)
    }
}

@keyframes of2 {

    0%,
    100% {
        opacity: .25;
        transform: translate(0, 0)
    }

    50% {
        opacity: .48;
        transform: translate(-8px, 6px)
    }
}

@keyframes of3 {

    0%,
    100% {
        opacity: .30;
        transform: translate(0, 0)
    }

    50% {
        opacity: .54;
        transform: translate(5px, 9px)
    }
}

@keyframes of4 {

    0%,
    100% {
        opacity: .22;
        transform: translate(0, 0)
    }

    50% {
        opacity: .46;
        transform: translate(-7px, -5px)
    }
}

@keyframes of5 {

    0%,
    100% {
        opacity: .32;
        transform: translate(0, 0)
    }

    50% {
        opacity: .56;
        transform: translate(9px, -4px)
    }
}

@keyframes of6 {

    0%,
    100% {
        opacity: .26;
        transform: translate(0, 0)
    }

    50% {
        opacity: .50;
        transform: translate(-5px, -8px)
    }
}

.orbit-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
}

.orbit-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.orbit-logo img {
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.orbit-logo span {
    font-size: 0.52rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

/* ════════════════════════════════════════════════
   SEÇÃO 2 — RESULTADOS
════════════════════════════════════════════════ */
.s-resultados {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(1, 56, 98, 0.66) 0%, rgba(0, 61, 107, 0.66) 100%), url('assets/img/bg-6.jpg') center/cover no-repeat;
    box-shadow: inset 0 60px 50px -50px rgba(0, 0, 0, 0.4), inset 0 -60px 50px -50px rgba(0, 0, 0, 0.4);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: var(--w06);
    border: 1px solid var(--w12);
    border-radius: var(--r-md);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: border-color var(--t), transform var(--t), box-shadow var(--t);
}

.result-card:hover {
    border-color: var(--green-border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.result-icon-wrap {
    width: 52px;
    height: 52px;
    margin: 0 auto 1.25rem;
}

.result-icon-wrap svg {
    width: 100%;
    height: 100%;
}

.result-card h3 {
    font-family: var(--ff-title);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.result-card p {
    color: var(--w80);
    font-size: 0.95rem;
}

/* ════════════════════════════════════════════════
   SEÇÃO 3 — DOR
════════════════════════════════════════════════ */
.s-dor {
    position: relative;
    padding: 5rem 0;
    background:
        linear-gradient(115deg, rgba(0, 15, 30, 0.3) 0%, rgba(0, 21, 42, 0.1) 45%, rgba(0, 21, 42, 0.35) 100%), url('assets/img/bg-section-01.jpg') center/cover no-repeat;
    background-color: var(--blue-dark);
    background-attachment: fixed;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
}

.pain-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: var(--w06);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 1rem 1.25rem;
    font-size: 1.05rem;
    color: var(--w80);
    font-style: italic;
    transition: background var(--t);
}

.pain-list li:hover {
    background: var(--w12);
}

.pain-quote-icon {
    flex-shrink: 0;
    font-family: Georgia, serif;
    font-size: 2.2rem;
    line-height: 0.9;
    color: var(--green);
    margin-top: 0.1rem;
}

.pain-highlight {
    font-family: var(--ff-title);
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    color: var(--white);
    background: linear-gradient(90deg, rgba(0, 200, 0, 0.12), rgba(0, 200, 0, 0.04));
    border: 1px solid var(--green-border);
    border-radius: var(--r-sm);
    padding: 1.25rem 1.75rem;
    text-align: center;
}

/* ════════════════════════════════════════════════
   SEÇÃO 4 — VIRADA
════════════════════════════════════════════════ */
.s-virada {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0;
    background: url('assets/img/bg-white.jpg') center / cover no-repeat;
    background-color: #f4f4f2;
    box-shadow:
        inset 0 90px 70px -55px rgba(0, 85, 145, 0.35),
        inset 0 -90px 70px -55px rgba(0, 85, 145, 0.35);
}

.s-virada .container {
    position: relative;
    z-index: 1;
}

/* ── Glass card — fundo claro ── */
.virada-card {
    position: relative;
    isolation: isolate;
    background: rgba(255, 255, 255, 0.38);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-radius: 16px;
    padding: 1.75rem 1.25rem 2rem;
    text-align: center;
    box-shadow:
        0 8px 40px rgba(0, 31, 61, 0.18),
        0 2px 0 rgba(255, 255, 255, 0.7) inset;
    margin: 0 0.25rem;
}

@media (min-width: 600px) {
    .virada-card {
        padding: 2.25rem 2.5rem 2.5rem;
        border-radius: 20px;
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .virada-card {
        padding: 3rem 3.5rem 3.25rem;
    }
}

/* borda azul-clara via gradient mask */
.virada-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.9) 0%,
            rgba(0, 85, 145, 0.45) 35%,
            rgba(255, 255, 255, 0.25) 65%,
            rgba(0, 85, 145, 0.3) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* shimmer no topo */
.virada-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 85, 145, 0.35), transparent);
    pointer-events: none;
}

/* textos — azul sobre glass claro */
.virada-card .section-title {
    color: var(--blue-dark);
    font-size: clamp(1.35rem, 5.5vw, 2.65rem);
    margin-bottom: 1.1rem;
}

.virada-card .section-title .text-green {
    color: #008800;
}

.virada-card .body-text {
    color: rgba(0, 31, 61, 0.78);
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    margin-left: auto;
    margin-right: auto;
}

.virada-card .green-blockquote {
    background: rgba(0, 150, 0, 0.08);
    border-left-color: #008800;
    text-align: left;
    margin-top: 1.25rem;
}

.virada-card .green-blockquote p {
    color: #006600;
    font-style: italic;
    font-size: clamp(0.88rem, 3vw, 1rem);
}

.green-blockquote {
    background: var(--green-dim);
    border-left: 4px solid var(--green);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 1.25rem 1.75rem;
    margin-top: 1.75rem;
}

.green-blockquote p {
    font-family: var(--ff-title);
    font-size: clamp(1.05rem, 2.2vw, 1.4rem);
    color: var(--green);
    line-height: 1.4;
}

/* ════════════════════════════════════════════════
   SEÇÃO 5 — NÃO É / É
════════════════════════════════════════════════ */
.s-naoe {
    padding: 5rem 0;
    background: linear-gradient(180deg, rgba(1, 56, 98, 0.66) 0%, rgba(0, 61, 107, 0.66) 100%), url('assets/img/bg-6.jpg') center/cover no-repeat;
    box-shadow: inset 0 60px 50px -50px rgba(0, 0, 0, 0.4), inset 0 -60px 50px -50px rgba(0, 0, 0, 0.4);
}

.naoe-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.naoe-divider {
    width: 1px;
    background: var(--w12);
    align-self: stretch;
    margin-top: 2.5rem;
}

.naoe-heading {
    font-family: var(--ff-title);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.naoe-heading svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.naoe-heading--nao {
    color: #e53e3e;
}

.naoe-heading--e {
    color: var(--green);
}

.naoe-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.naoe-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: var(--w80);
    font-size: 1rem;
    line-height: 1.55;
}

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

.naoe-list--e li {
    color: var(--white);
}

/* ════════════════════════════════════════════════
   SEÇÃO 6 — TRANSFORMAÇÃO
════════════════════════════════════════════════ */
.s-transformacao {
    padding: 5.5rem 0 6rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 50%, rgba(0, 200, 0, 0.18) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(56, 160, 255, 0.22) 0%, transparent 50%),
        linear-gradient(135deg, var(--blue-mid) 0%, var(--blue-primary) 100%);
    background-size: 200% 200%, 200% 200%, 100% 100%;
    background-position: 0% 0%, 100% 100%, 0% 0%;
    animation: virada-glow 14s ease-in-out infinite alternate;
}

/* dot-grid decorativo */
.tf-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.transform-cols {
    display: grid;
    grid-template-columns: 1fr 96px 1fr;
    gap: 0;
    align-items: stretch;
    margin: 2.75rem 0 3rem;
    position: relative;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2.75rem;
    margin-bottom: 3rem;
}

/* ── Cards ── */
.transform-block {
    border-radius: var(--r-md);
    padding: 0;
    font-size: 1rem;
    line-height: 1.65;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.transform-hoje {
    background: rgba(0, 5, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-right: none;
    border-radius: var(--r-md) 0 0 var(--r-md);
    color: var(--w60);
}

.transform-depois {
    background: linear-gradient(155deg, rgba(0, 200, 0, 0.14) 0%, rgba(0, 200, 0, 0.04) 100%);
    border: 1px solid rgba(0, 200, 0, 0.35);
    border-left: none;
    border-radius: 0 var(--r-md) var(--r-md) 0;
    color: var(--white);
    box-shadow: 0 0 56px rgba(0, 200, 0, 0.13), inset 0 1px 0 rgba(0, 200, 0, 0.18);
}

/* glow blob */
.tf-depois-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 200, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    from {
        opacity: 0.6;
        transform: scale(1);
    }

    to {
        opacity: 1;
        transform: scale(1.15);
    }
}

/* ── Header faixa ── */
.transform-label-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.transform-hoje .transform-label-row {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--r-md) 0 0 0;
}

.transform-depois .transform-label-row {
    background: rgba(0, 200, 0, 0.12);
    border-bottom-color: rgba(0, 200, 0, 0.22);
    border-radius: 0;
}

.transform-label {
    font-family: var(--ff-title);
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
}

.transform-hoje .transform-label {
    color: var(--w60);
}

.transform-depois .transform-label {
    color: var(--green);
}

/* ── Icons ── */
.tf-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.tf-icon--x {
    color: rgba(255, 255, 255, 0.35);
}

.tf-icon--check {
    color: var(--green);
}

/* ── Corpo do card ── */
.transform-body {
    padding: 1.75rem 1.75rem 2rem;
    flex: 1;
}

/* ── Lista ── */
.transform-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.transform-hoje .transform-list li {
    padding-left: 1.25rem;
    position: relative;
    color: var(--w60);
    font-size: 0.97rem;
}

.transform-hoje .transform-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.58em;
    width: 7px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
}

.transform-depois .transform-list li {
    padding-left: 1.5rem;
    position: relative;
    font-weight: 500;
    font-size: 0.97rem;
}

.transform-depois .transform-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.38em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(0, 200, 0, 0.7);
}

/* ── Coluna central ── */
.transform-mid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
    padding: 1rem 0;
}

.tf-days-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00e000, #00a000);
    box-shadow: 0 0 0 6px rgba(0, 200, 0, 0.12), 0 0 28px rgba(0, 200, 0, 0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    animation: days-pulse 2.4s ease-in-out infinite;
}

@keyframes days-pulse {

    0%,
    100% {
        box-shadow: 0 0 0 6px rgba(0, 200, 0, 0.12), 0 0 28px rgba(0, 200, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(0, 200, 0, 0.07), 0 0 44px rgba(0, 200, 0, 0.55);
    }
}

.tf-days-num {
    font-family: var(--ff-title);
    font-size: 1.5rem;
    color: #001F3D;
    line-height: 1;
}

.tf-days-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #001F3D;
    line-height: 1.2;
}

.tf-arrow-line {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.tf-arrow-line svg {
    display: block;
    margin: 0 auto;
    height: 56px;
    width: 24px;
}

/* ── CTA area ── */
.tf-cta-wrap {
    text-align: center;
    position: relative;
}

.tf-cta-btn {
    position: relative;
    box-shadow: var(--shadow-cta), 0 0 40px rgba(254, 74, 0, 0.3);
}

.tf-cta-btn:hover {
    box-shadow: 0 8px 30px rgba(254, 74, 0, 0.55), 0 0 60px rgba(254, 74, 0, 0.25);
}

.tf-cta-micro {
    margin-top: 0.85rem;
    font-size: 0.82rem;
    color: var(--w40);
    letter-spacing: 0.03em;
}

/* ════════════════════════════════════════════════
   SEÇÃO 7 — JORNADA
════════════════════════════════════════════════ */
.s-jornada {
    padding: 5rem 0;
    background:
        linear-gradient(115deg, rgba(0, 15, 30, 0.3) 0%, rgba(0, 21, 42, 0.1) 45%, rgba(0, 21, 42, 0.35) 100%), url('assets/img/bg-section-01.jpg') center/cover no-repeat;
    background-color: var(--blue-dark);
    background-attachment: fixed;
}

.timeline {
    position: relative;
    margin: 3rem 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(to bottom, var(--green) 0%, rgba(0, 200, 0, 0.15) 100%);
}

.timeline-item {
    display: flex;
    gap: 1.75rem;
    padding-bottom: 2.75rem;
    position: relative;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--green);
    color: var(--blue-dark);
    font-family: var(--ff-title);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 0 5px var(--blue-dark), 0 0 0 7px rgba(0, 200, 0, 0.22);
}

.timeline-content {
    padding-top: 0.9rem;
}

.timeline-title {
    font-family: var(--ff-title);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.38;
}

.timeline-sai {
    color: var(--w80);
    font-size: 0.95rem;
}

.sai-label {
    color: var(--green);
    font-weight: 600;
}

.timeline-fecho {
    text-align: center;
    color: var(--w80);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* ════════════════════════════════════════════════
   SEÇÃO 8 — BÔNUS
════════════════════════════════════════════════ */
.s-bonus {
    padding: 5rem 0;
}

.bonus-ia-img {
    width: 72px;
    height: auto;
    margin: 0 auto 1rem;
    opacity: 0.85;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 2.25rem 0;
}

.bonus-card {
    background: var(--w06);
    border: 1px solid var(--w12);
    border-radius: var(--r-md);
    padding: 1.5rem 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    transition: border-color var(--t), transform var(--t), background var(--t);
}

.bonus-card:hover {
    border-color: var(--green-border);
    transform: translateY(-3px);
    background: var(--w12);
}

.bonus-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.bonus-icon svg {
    width: 100%;
    height: 100%;
}

.bonus-card p {
    font-size: 0.95rem;
    color: var(--white);
    line-height: 1.4;
}

.bonus-note {
    text-align: center;
    color: var(--w80);
    font-size: 1rem;
    background: var(--green-dim);
    border: 1px solid var(--green-border);
    border-radius: var(--r-sm);
    padding: 1rem 1.5rem;
}

/* ════════════════════════════════════════════════
   SEÇÃO 9 — PARA QUEM É
════════════════════════════════════════════════ */
.bg-white-tex {
    background: url('assets/img/bg-white.jpg') center/cover no-repeat;
    background-color: #f4f4f2;
}

.s-paraquem {
    position: relative;
    padding: 5rem 0;
    box-shadow:
        inset 0 90px 70px -55px rgba(0, 85, 145, 0.35),
        inset 0 -90px 70px -55px rgba(0, 85, 145, 0.35);
}

.s-paraquem .section-title {
    color: var(--blue-primary);
}

.s-paraquem .section-lead {
    color: var(--blue-mid);
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.persona-card {
    background: var(--blue-primary);
    border: 1px solid transparent;
    border-radius: var(--r-md);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 28px rgba(0, 31, 61, 0.18);
    transition: border-color var(--t), transform var(--t);
}

.persona-card:hover {
    border-color: var(--green);
    transform: translateY(-5px);
}

.persona-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.persona-icon svg {
    width: 24px;
    height: 24px;
}

.persona-card h3 {
    font-family: var(--ff-title);
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.55rem;
}

.persona-card p {
    color: var(--w80);
    font-size: 0.95rem;
}

.paraquem-nota {
    text-align: center;
    color: var(--blue-mid);
    font-size: 0.92rem;
    margin-bottom: 2rem;
}

.paraquem-nota strong {
    color: var(--blue-primary);
}

/* ════════════════════════════════════════════════
   SEÇÃO 10 — AUTORIDADE
════════════════════════════════════════════════ */
.s-autoridade {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    background: var(--blue-primary);
}

.autoridade-bg {
    position: absolute;
    inset: 0;
    background: url('assets/img/bg-congresso.png') center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.autoridade-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 4rem;
    align-items: center;
}

.autoridade-foto {
    position: relative;
}

.rodrigo-auth-photo {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    border-radius: var(--r-lg);
    object-fit: cover;
    object-position: top;
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--w12);
}

.auth-quote {
    background: rgba(0, 31, 61, 0.5);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 1.75rem;
    font-size: 1rem;
    color: var(--white);
    font-style: italic;
    line-height: 1.6;
}

/* ════════════════════════════════════════════════
   SEÇÃO 10 — SOBRE O INSTRUTOR
════════════════════════════════════════════════ */
.s-instrutor {
    position: relative;
    padding: 5rem 0 0;
    overflow: hidden;
    background: var(--blue-dark);
}

.instrutor-bg {
    position: absolute;
    inset: 0;
    background: url('assets/img/bg-instrutor.jpg') center/cover no-repeat;
    pointer-events: none;
}

.instrutor-label {
    font-family: var(--ff-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--w60);
    letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.instrutor-inner {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3.5rem;
    align-items: flex-end;
    position: relative;
}

.instrutor-nome {
    font-family: var(--ff-title);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    color: var(--white);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.instrutor-bio {
    font-size: 0.97rem;
    color: var(--w80);
    line-height: 1.72;
    margin-bottom: 1rem;
    max-width: 60ch;
}

.instrutor-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1.25rem 2rem;
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--w12);
}

.instrutor-logo {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(0.75);
    transition: filter var(--t);
}

.instrutor-logo:hover {
    filter: brightness(0) invert(1);
}

.instrutor-foto {
    position: relative;
    align-self: flex-end;
}

.instrutor-photo {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 -8px 40px rgba(0, 0, 0, 0.5));
    margin: 0 auto;
}

/* Marquee galeria full-width */
.g-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 3rem;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.g-marquee-track {
    display: flex;
    gap: 6px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
    will-change: transform;
}

.g-marquee:hover .g-marquee-track {
    animation-play-state: paused;
}

.g-item {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    overflow: hidden;
    border-radius: 4px;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
    filter: brightness(0.85) saturate(0.9);
}

.g-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1.1);
}

/* Lightbox */
.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 10, 20, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1.5rem;
}

.lb-overlay[hidden] {
    display: none;
}

.lb-img {
    max-width: min(90vw, 960px);
    max-height: 80vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    display: block;
    animation: lbIn 0.25s ease;
}

@keyframes lbIn {
    from {
        opacity: 0;
        transform: scale(0.93);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lb-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--w12);
    border: 1px solid var(--w20);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t);
    z-index: 10;
}

.lb-close:hover {
    background: var(--w20);
}

.lb-close svg {
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.lb-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--w12);
    border: 1px solid var(--w20);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--t);
    z-index: 10;
}

.lb-arrow--prev {
    left: 1.25rem;
}

.lb-arrow--next {
    right: 1.25rem;
}

.lb-arrow:hover {
    background: var(--w20);
}

.lb-arrow svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
}

/* ════════════════════════════════════════════════
   SEÇÃO 11 — DIFERENCIAIS
════════════════════════════════════════════════ */
.s-diferenciais {
    padding: 5rem 0;
    background:
        linear-gradient(115deg, rgba(0, 15, 30, 0.3) 0%, rgba(0, 21, 42, 0.1) 45%, rgba(0, 21, 42, 0.35) 100%), url('assets/img/bg-section-01.jpg') center/cover no-repeat;
    background-color: var(--blue-dark);
    background-attachment: fixed;
}

.dif-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2.5rem;
}

.dif-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--w06);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    padding: 1.1rem 1.35rem;
    color: var(--w80);
    font-size: 1rem;
    transition: background var(--t);
}

.dif-item:hover {
    background: var(--w12);
}

.dif-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    margin-top: 2px;
}

.dif-icon svg {
    width: 100%;
    height: 100%;
}

.dif-item strong {
    color: var(--white);
}

/* ════════════════════════════════════════════════
   SEÇÃO 12 — AGENDA
════════════════════════════════════════════════ */
.s-agenda {
    padding: 5rem 0 5.5rem;
    background:
        radial-gradient(circle at 10% 80%, rgba(0, 200, 0, 0.10) 0%, transparent 45%),
        radial-gradient(circle at 90% 20%, rgba(56, 160, 255, 0.14) 0%, transparent 45%);
    background-color: var(--blue-mid);
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
    align-items: start;
}

/* ── Cards base ── */
.agenda-block {
    background: rgba(0, 10, 25, 0.45);
    border: 1px solid var(--w12);
    border-radius: var(--r-lg);
    padding: 2rem 1.75rem 2.25rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: transform var(--t), box-shadow var(--t);
}

.agenda-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

/* reflexo sutil no topo de cada card */
.agenda-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--w20), transparent);
    pointer-events: none;
}

/* ── Card destaque (presencial) ── */
.agenda-block--destaque {
    background: rgba(0, 30, 10, 0.55);
    border-color: rgba(0, 200, 0, 0.4);
    box-shadow:
        0 0 0 1px rgba(0, 200, 0, 0.12),
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 200, 0, 0.08);
}

/* borda animada tipo "moving gradient" no destaque */
.agenda-block--destaque::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(0, 200, 0, 0.6) 0%,
            rgba(255, 255, 255, 0.15) 40%,
            rgba(0, 200, 0, 0.6) 70%,
            rgba(255, 255, 255, 0.08) 100%);
    background-size: 300% 300%;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderMove 4s linear infinite;
    pointer-events: none;
}

@keyframes borderMove {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

/* ── Ícone com glow ── */
.agenda-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 0, 0.1);
    border-radius: var(--r-sm);
    border: 1px solid rgba(0, 200, 0, 0.2);
    box-shadow: 0 0 16px rgba(0, 200, 0, 0.15);
}

.agenda-icon svg {
    width: 22px;
    height: 22px;
}

/* ── Título do card com shine ── */
.agenda-block h3 {
    font-family: var(--ff-title);
    font-size: 1.05rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg,
            #ffffff 0%, rgba(160, 220, 255, 0.9) 40%,
            #ffffff 65%, rgba(200, 235, 255, 0.8) 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 4.5s linear infinite;
}

.agenda-block--destaque h3 {
    background: linear-gradient(90deg,
            #00C800 0%, #80FF80 38%,
            #00E800 60%, #00C800 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3.5s linear infinite;
}

/* ── Datas ── */
.agenda-dates {
    color: var(--w80);
    font-size: 0.95rem;
    margin-bottom: 0.85rem;
    border-left: 2px solid rgba(0, 200, 0, 0.3);
    padding-left: 0.75rem;
}

.agenda-dates li {
    padding: 0.28rem 0;
}

.agenda-dates li strong {
    color: var(--white);
    font-feature-settings: 'tnum';
}

.agenda-hora {
    color: var(--w60);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--w12);
}

.agenda-data-destaque {
    font-family: var(--ff-title);
    font-size: 1.5rem;
    color: var(--green);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 16px rgba(0, 200, 0, 0.4);
}

.agenda-block p {
    color: var(--w80);
    font-size: 0.95rem;
    line-height: 1.6;
}

.agenda-local {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--white);
    font-size: 0.88rem;
    margin-top: 0.75rem;
    padding: 0.4rem 0.75rem;
    background: rgba(0, 200, 0, 0.12);
    border: 1px solid rgba(0, 200, 0, 0.25);
    border-radius: 100px;
    font-weight: 600;
}

/* ════════════════════════════════════════════════
   SEÇÃO 12 — TURMA 1
════════════════════════════════════════════════ */
.s-turma {
    padding: 5.5rem 0 6rem;
    background:
        radial-gradient(circle at 8% 70%, rgba(0, 200, 0, 0.13) 0%, transparent 42%),
        radial-gradient(circle at 92% 25%, rgba(56, 160, 255, 0.16) 0%, transparent 42%),
        radial-gradient(circle at 60% 90%, rgba(0, 85, 145, 0.25) 0%, transparent 50%);
    background-color: var(--blue-dark);
}

.turma-inner {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 3.5rem;
    align-items: center;
}

/* ── Coluna texto ── */
.turma-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.turma-logo {
    width: clamp(150px, 24vw, 220px);
    height: auto;
}

.turma-title {
    font-family: var(--ff-title);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    color: var(--white);
    line-height: 1.15;
    margin: 0;
}

.turma-title .text-green {
    display: block;
}

.turma-sub {
    font-family: var(--ff-title);
    font-size: clamp(1.6rem, 3.8vw, 2.6rem);
    color: var(--white);
    margin: 0;
    line-height: 1.2;
}

.turma-highlight {
    display: inline-block;
    background: var(--green);
    color: var(--blue-dark);
    padding: 0.06em 0.4em 0.12em;
    border-radius: 8px;
    font-family: var(--ff-title);
    box-shadow: 0 0 24px rgba(0, 200, 0, 0.45);
}

.turma-body {
    color: var(--w80);
    font-size: clamp(0.95rem, 2vw, 1.08rem);
    line-height: 1.65;
    max-width: 40ch;
    margin: 0;
    border-left: 3px solid rgba(0, 200, 0, 0.4);
    padding-left: 0.9rem;
}

.turma-body strong {
    color: var(--white);
}

.turma-cta {
    align-self: flex-start;
    margin-top: 0.25rem;
}


/* ── Colagem de fotos ── */
.turma-collage {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.55rem;
}

/* glow decorativo atrás do collage */
.turma-collage::before {
    content: '';
    position: absolute;
    inset: -30px;
    background: radial-gradient(ellipse at center, rgba(0, 85, 145, 0.35) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.collage-main {
    grid-column: 1 / 3;
    grid-row: 1;
    position: relative;
    z-index: 1;
}

.collage-side {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    position: relative;
    z-index: 1;
}

.collage-strip {
    grid-column: 1 / 4;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.55rem;
    position: relative;
    z-index: 1;
}

.collage-main img,
.collage-side img,
.collage-strip img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--r-md);
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collage-main img:hover,
.collage-side img:hover,
.collage-strip img:hover {
    transform: scale(1.025);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 200, 0, 0.2);
}

.collage-main {
    height: 295px;
}

.collage-side img {
    height: 141px;
}

.collage-strip {
    height: 135px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .turma-inner {
        grid-template-columns: 1fr;
        max-width: 640px;
    }

    .turma-body {
        max-width: 100%;
    }

    .turma-cta {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .s-turma {
        padding: 2.5rem 0 3rem;
    }

    .turma-inner {
        gap: 1.5rem;
    }

    .turma-text {
        gap: 0.75rem;
    }

    .turma-logo {
        width: 130px;
    }

    .turma-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .turma-sub {
        font-size: 1.25rem;
    }

    .turma-body {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .turma-collage {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 0.35rem;
    }

    .collage-main {
        grid-column: 1 / 3;
        grid-row: 1;
        height: 155px;
    }

    .collage-side {
        grid-column: 1 / 3;
        grid-row: 2;
        flex-direction: row;
        gap: 0.35rem;
    }

    .collage-side img {
        flex: 1;
        height: 90px;
    }

    .collage-strip {
        grid-column: 1 / 3;
        grid-row: 3;
        height: 75px;
        gap: 0.35rem;
    }
}

/* ════════════════════════════════════════════════
   SEÇÃO 13 — DEPOIMENTOS
════════════════════════════════════════════════ */
.s-depoimentos {
    padding: 5rem 0;
    background: url('assets/img/bg-white.jpg') center/cover no-repeat;
    background-color: rgba(0, 0, 0, 0);
    background-color: #f4f4f2;
    box-shadow: inset 0 90px 70px -55px rgba(0, 85, 145, 0.35), inset 0 -90px 70px -55px rgba(0, 85, 145, 0.35);
}

.carousel-outer {
    margin-top: 2.5rem;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.c-slide {
    display: none;
    animation: cFade 0.4s ease;
}

.c-slide.active {
    display: block;
}

@keyframes cFade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.s-depoimentos .section-title {
    color: var(--blue-dark);
}

.testimonial-card {
    max-width: 640px;
    margin: 0 auto;
    background: rgba(0, 85, 145, 0.06);
    border: 1px solid rgba(0, 85, 145, 0.18);
    border-radius: var(--r-lg);
    padding: 2.25rem 2rem;
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--green-border);
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--ff-title);
    font-size: 1rem;
    color: var(--blue-dark);
}

.testimonial-biz {
    font-size: 0.85rem;
    color: var(--blue-mid);
    margin-top: 2px;
}

.testimonial-text {
    font-size: 1.03rem;
    color: var(--blue-primary);
    font-style: italic;
    line-height: 1.7;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.c-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 85, 145, 0.08);
    border: 1px solid rgba(0, 85, 145, 0.25);
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t), border-color var(--t);
}

.c-btn:hover {
    background: rgba(0, 85, 145, 0.15);
    border-color: var(--green-border);
}

.c-btn svg {
    width: 18px;
    height: 18px;
}

.c-dots {
    display: flex;
    gap: 8px;
}

.c-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 85, 145, 0.25);
    border: 1px solid rgba(0, 85, 145, 0.35);
    transition: background var(--t), border-color var(--t);
}

.c-dot.active {
    background: var(--green);
    border-color: var(--green);
}

/* ════════════════════════════════════════════════
   SEÇÃO 14 — OFERTA
════════════════════════════════════════════════ */
.s-oferta {
    padding: 5rem 0;
    background: linear-gradient(115deg, rgba(0, 15, 30, 0.3) 0%, rgba(0, 21, 42, 0.1) 45%, rgba(0, 21, 42, 0.35) 100%), url('assets/img/bg-section-01.jpg') center/cover no-repeat;
    background-color: rgba(0, 0, 0, 0);
    background-attachment: scroll, scroll;
    background-color: var(--blue-dark);
    background-attachment: fixed;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
    align-items: stretch;
}

.pricing-card {
    background: var(--w06);
    border: 1px solid var(--w12);
    border-radius: var(--r-lg);
    padding: 2.25rem 1.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: border-color var(--t), transform var(--t);
}

.pricing-card:hover {
    border-color: var(--green-border);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border-color: var(--green);
    background: linear-gradient(160deg, rgba(0, 200, 0, 0.07), var(--w06));
    transform: translateY(-10px);
    box-shadow: 0 10px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px var(--green);
}

.pricing-card--featured:hover {
    transform: translateY(-14px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--blue-dark);
    font-family: var(--ff-title);
    font-size: 0.74rem;
    letter-spacing: 0.07em;
    padding: 0.3rem 1.1rem;
    border-radius: 100px;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: 1.25rem;
    position: relative;
    overflow: hidden;
}

.pricing-stars {
    font-size: 1rem;
    letter-spacing: 0.2em;
    margin-bottom: 0.4rem;
    position: relative;
    z-index: 1;
}

.pricing-header--individual .pricing-stars {
    color: var(--w40);
}

.pricing-header--duplo .pricing-stars {
    color: var(--green);
}

.pricing-header--vip .pricing-stars {
    color: var(--orange);
    text-shadow: 0 0 10px rgba(254, 74, 0, 0.6), 0 0 24px rgba(254, 74, 0, 0.3);
}

/* ghost text decora o espaço à direita */
.pricing-header--individual::before {
    content: 'IND';
}

.pricing-header--duplo::before {
    content: 'DUPLO';
}

.pricing-header--vip::before {
    content: 'VIP';
}

.pricing-header::before {
    position: absolute;
    right: -0.08em;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--ff-title);
    font-size: 5.5rem;
    line-height: 1;
    color: transparent;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.pricing-header--individual::before {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.1);
    font-size: 3.8rem;
}

.pricing-header--duplo::before {
    -webkit-text-stroke: 1.5px rgba(0, 200, 0, 0.15);
    font-size: 3.4rem;
}

.pricing-header--vip::before {
    -webkit-text-stroke: 2px rgba(254, 74, 0, 0.22);
}

/* shine animation */
@keyframes titleShine {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.pricing-plan {
    font-family: var(--ff-title);
    font-size: clamp(1.7rem, 5vw, 2.2rem);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* Individual — branco com reflexo azul */
.pricing-header--individual .pricing-plan {
    background: linear-gradient(90deg,
            #ffffff 0%, rgba(160, 220, 255, 0.9) 40%,
            #ffffff 60%, rgba(200, 235, 255, 0.85) 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 4s linear infinite;
}

/* Duplo — verde com reflexo claro */
.pricing-header--duplo .pricing-plan {
    background: linear-gradient(90deg,
            #00C800 0%, #80FF80 38%,
            #00E800 60%, #00C800 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 3.5s linear infinite;
}

/* VIP — gold/laranja com reflexo amarelo */
.pricing-header--vip .pricing-plan {
    font-size: clamp(2rem, 6vw, 2.8rem);
    background: linear-gradient(90deg,
            #FE4A00 0%, #FFB800 30%,
            #FFD060 50%, #FE7A00 70%,
            #FE4A00 100%);
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 2.8s linear infinite;
    filter: drop-shadow(0 0 8px rgba(254, 74, 0, 0.45));
}

.pricing-features {
    color: var(--w80);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
    flex: 1;
}

.pricing-features li {
    padding-left: 1.2rem;
    position: relative;
}

.pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.pricing-feature--plus {
    padding-left: 1.3rem !important;
    color: var(--green);
    font-weight: 600;
}

.pricing-feature--plus::before {
    content: '+' !important;
    width: auto !important;
    height: auto !important;
    border-radius: 0 !important;
    background: none !important;
    top: -0.08em !important;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--green);
}

.pricing-card--featured .pricing-feature--plus,
.pricing-card--featured .pricing-feature--plus::before {
    color: var(--green);
}

.pricing-card:not(.pricing-card--featured) .pricing-feature--plus,
.pricing-card:not(.pricing-card--featured) .pricing-feature--plus::before {
    color: var(--orange);
}

.pricing-de {
    text-align: center;
    color: var(--w60);
    font-size: 0.92rem;
    margin-bottom: 0.15rem;
}

.pricing-de s {
    color: #ff5c5c;
    text-decoration-color: #ff5c5c;
    text-decoration-thickness: 2px;
    opacity: 1;
}

.pricing-por {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--w40);
    margin-bottom: 0.4rem;
}

.pricing-installment {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.45rem;
    margin-bottom: 0.5rem;
}

.installment-x {
    font-family: var(--ff-title);
    font-size: 1.15rem;
    color: var(--white);
}

.installment-value {
    font-family: var(--ff-title);
    font-size: 2.75rem;
    color: var(--white);
    line-height: 1;
}

.installment-value small {
    font-size: 1.5rem;
}

.pricing-vista {
    text-align: center;
    color: var(--w60);
    font-size: 0.88rem;
    margin-bottom: 1.5rem;
}

.pricing-cta {
    display: block;
    text-align: center;
    margin-top: auto;
}

.pricing-escassez {
    text-align: center;
    color: var(--w60);
    font-size: 0.9rem;
    font-style: italic;
}

/* ════════════════════════════════════════════════
   SEÇÃO 15 — GARANTIA
════════════════════════════════════════════════ */
.s-garantia {
    padding: 4.5rem 0;
    background: linear-gradient(180deg, rgba(1, 56, 98, 0.66) 0%, rgba(0, 61, 107, 0.66) 100%), url('assets/img/bg-6.jpg') center/cover no-repeat;
    box-shadow: inset 0 60px 50px -50px rgba(0, 0, 0, 0.4), inset 0 -60px 50px -50px rgba(0, 0, 0, 0.4);
}

.garantia-inner {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    max-width: 720px;
    margin: 0 auto;
    background: rgba(0, 31, 61, 0.35);
    border: 1px solid #d6b36b;
    border-radius: var(--r-lg);
    padding: 2.5rem;
}

.garantia-badge {
    width: 220px;
    height: auto;
    flex-shrink: 0;
}

.garantia-text h2 {
    font-family: var(--ff-title);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--white);
    margin-bottom: 0.65rem;
}

.garantia-text p {
    color: var(--w80);
    font-size: 1rem;
}

/* ════════════════════════════════════════════════
   SEÇÃO 16 — FAQ
════════════════════════════════════════════════ */
.s-faq {
    padding: 5rem 0;
}

.faq-item {
    border-bottom: 1px solid var(--w12);
    transition: border-color var(--t);
}

.faq-item.open {
    border-color: var(--green);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    transition: color var(--t);
}

.faq-item.open .faq-q {
    color: var(--green);
}

.faq-arrow {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--w60);
    transition: transform var(--t), color var(--t);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--green);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding var(--t);
}

.faq-item.open .faq-a {
    max-height: 320px;
    padding-bottom: 1.25rem;
}

.faq-a p {
    color: var(--w80);
    font-size: 0.97rem;
    line-height: 1.68;
}

/* ════════════════════════════════════════════════
   SEÇÃO 17 — FECHAMENTO
════════════════════════════════════════════════ */
.s-fechamento {
    padding: 6rem 1.5rem;
    background: linear-gradient(175deg, var(--blue-dark) 0%, #000810 100%);
    position: relative;
    overflow: hidden;
}

.s-fechamento::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 80%, rgba(0, 85, 145, 0.25), transparent);
    pointer-events: none;
}

.fechamento-title {
    font-family: var(--ff-title);
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    line-height: 1.16;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.s-fechamento .body-text {
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.s-fechamento .btn-cta--lg {
    margin: 2rem auto 1.25rem;
    display: block;
    width: fit-content;
    position: relative;
}

.fechamento-nota {
    color: var(--w40);
    font-size: 0.87rem;
    position: relative;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer {
    background: #000A14;
    border-top: 1px solid var(--w06);
    padding: 3.5rem 0 0;
}

.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--w06);
}

.footer-col-title {
    font-family: var(--ff-title);
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.85rem;
    letter-spacing: 0.03em;
}

.footer-col-text {
    color: var(--w60);
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--w60);
    font-size: 0.88rem;
}

.footer-contact li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--w40);
}

.footer-contact a {
    color: var(--w60);
    transition: color var(--t);
}

.footer-contact a:hover {
    color: var(--green);
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--w12);
    color: var(--w60);
    transition: border-color var(--t), color var(--t);
}

.footer-social:hover {
    border-color: var(--green);
    color: var(--green);
}

.footer-social img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    padding: 1.25rem 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--w40);
    font-size: 0.82rem;
}

/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        max-width: 600px;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

    .hero-cta {
        align-self: center;
    }

    .hero-authority {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2.5rem;
    }

    .instrutor-inner {
        grid-template-columns: 1fr;
    }

    .instrutor-foto {
        max-width: 260px;
        margin: 0 auto;
    }

    .instrutor-logos {
        justify-items: center;
    }

    .g-item {
        width: 200px;
        height: 150px;
    }

    .footer-cols {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card--featured {
        transform: none;
    }

    .pricing-card--featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 900px) {
    .results-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .persona-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2.5rem auto;
    }

    .agenda-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 2.5rem auto;
    }

    .naoe-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .naoe-divider {
        display: none;
    }

    .transform-cols {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        max-width: 100%;
        margin: 2rem 0 2.5rem;
        gap: 0;
        /* necessário para z-index dos filhos funcionar */
        position: relative;
    }

    /* HOJE — sem borda inferior, espaço p/ badge sobrepor */
    .transform-hoje {
        border-right: 1px solid rgba(255, 255, 255, 0.09);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        border-radius: var(--r-md) var(--r-md) 0 0;
        padding-bottom: 2.5rem;
        z-index: 1;
    }

    .transform-hoje .transform-label-row {
        border-radius: var(--r-md) var(--r-md) 0 0;
    }

    /* coluna central flutua sobre as duas bordas */
    .transform-mid {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        gap: 0;
        background: transparent;
        border: none;
        /* sobe 33px (metade do badge 66px) → badge sobrepõe HOJE */
        margin-top: -33px;
        z-index: 3;
    }

    .tf-arrow-line {
        flex: none;
    }

    /* seta aponta para baixo no mobile — sem rotação */
    .tf-arrow-line svg {
        transform: none;
        height: 44px;
        width: 24px;
    }

    /* DEPOIS — sobe para a seta invadir seu topo */
    .transform-depois {
        border-left: 1px solid rgba(0, 200, 0, 0.35);
        border-top: 1px solid rgba(0, 200, 0, 0.15);
        border-radius: 0 0 var(--r-md) var(--r-md);
        margin-top: -20px;
        padding-top: calc(1.75rem + 20px);
        z-index: 2;
    }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════════════════════════ */
@media (max-width: 600px) {
    .s-hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }

    .orbit-side {
        display: none;
    }

    .hero-logo-wrap {
        gap: 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .garantia-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
    }

    .garantia-badge {
        width: 90px;
    }

    .s-dor,
    .s-naoe,
    .s-transformacao,
    .s-jornada,
    .s-bonus,
    .s-paraquem,
    .s-instrutor,
    .s-diferenciais,
    .s-agenda,
    .s-depoimentos,
    .s-oferta,
    .s-garantia,
    .s-faq,
    .s-resultados {
        padding: 3.5rem 0;
    }

    .s-instrutor {
        padding-bottom: 0;
    }

    .lb-arrow--prev {
        left: 0.5rem;
    }

    .lb-arrow--next {
        right: 0.5rem;
    }

    .s-fechamento {
        padding: 4rem 1.25rem;
    }

    .timeline::before {
        left: 22px;
    }

    .timeline-num {
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.25rem;
    }
}

/* ════════════════════════════════════════════════
   MODAL DE VÍDEO (hero)
════════════════════════════════════════════════ */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.video-modal[hidden] {
    display: none;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 8, 16, 0.88);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.video-modal-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 920px;
}

.video-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--r-md);
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--w12);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t), border-color var(--t);
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--green-border);
}

.video-modal-close svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 600px) {
    .video-modal-close {
        top: -40px;
        right: 0;
    }
}

/* ════════════════════════════════════════════════
   WHATSAPP FLUTUANTE
════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 24px;
    z-index: 980;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
    transition: transform var(--t), box-shadow var(--t);
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
    position: relative;
    z-index: 1;
}

.whatsapp-float-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.55;
    animation: wa-pulse 2.2s ease-out infinite;
}

@keyframes wa-pulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }

    100% {
        transform: scale(1.9);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 92px;
        right: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .whatsapp-float-pulse {
        animation: none;
        opacity: 0.25;
    }

    .hw-item,
    .hw-logo {
        animation: none;
    }
}

/* ════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {

    .fade-in,
    .badge-dot,
    .c-slide,
    .orbit-logo {
        transition: none !important;
        animation: none !important;
    }
}