/* ============================================================
   Faculdade [NOME] — Landing do curso de Complementação em Teologia
   Paleta: azul-marinho #0F2A47 | dourado #C9A24B | branco | cinza claro
   Mobile-first, responsivo, sem dependências externas
   ============================================================ */

:root {
    --color-primary: #0F2A47;
    --color-primary-dark: #081a2e;
    --color-accent: #C9A24B;
    --color-accent-dark: #a4823a;
    --color-bg: #FFFFFF;
    --color-bg-soft: #F5F5F7;
    --color-bg-dark: #0F2A47;
    --color-text: #1A1A1A;
    --color-text-muted: #4a5568;
    --color-text-on-dark: #f5f5f7;
    --color-border: #e3e6ec;

    --font-serif: Georgia, "Times New Roman", "DejaVu Serif", serif;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

    --container: 1140px;
    --container-narrow: 780px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 6px rgba(15, 42, 71, 0.06);
    --shadow-md: 0 8px 24px rgba(15, 42, 71, 0.10);
    --transition: 200ms ease;
}

/* -------- Reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-accent-dark); }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 2px;
    border-radius: 4px;
}
h1, h2, h3 { font-family: var(--font-serif); color: var(--color-primary); line-height: 1.2; margin: 0 0 0.5em; }
h1 { font-size: clamp(1.9rem, 4vw + 1rem, 3rem); }
h2 { font-size: clamp(1.6rem, 2vw + 1rem, 2.25rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.25rem;
}
.container-narrow { max-width: var(--container-narrow); }

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.8rem;
    color: var(--color-accent-dark);
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.accent { color: var(--color-accent-dark); }

/* -------- Buttons -------- */
.btn {
    display: inline-block;
    padding: 0.85rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: transform var(--transition), background var(--transition), color var(--transition);
}
.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border-color: var(--color-accent);
}
.btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost {
    background: transparent;
    color: var(--color-text-on-dark);
    border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); color: #fff; }
.btn-block { width: 100%; }

/* Botao elegante (CTA secundario, fundo claro) */
.btn-elegant {
    --be-gold: var(--color-accent);
    --be-gold-dark: var(--color-accent-dark);
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: 1rem;
    padding: 0.7rem 1.25rem 0.7rem 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff 0%, #fdfaf3 100%);
    color: var(--color-primary);
    border: 1px solid rgba(201, 162, 75, 0.55);
    font-family: var(--font-serif);
    font-size: 0.95rem;
    line-height: 1.2;
    text-decoration: none;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 6px 18px rgba(15, 42, 71, 0.06),
        0 0 0 4px rgba(201, 162, 75, 0.06);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 320ms cubic-bezier(.2,.7,.2,1),
                box-shadow 320ms cubic-bezier(.2,.7,.2,1),
                color 320ms ease,
                border-color 320ms ease;
}
.btn-elegant::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--be-gold) 0%, var(--be-gold-dark) 100%);
    opacity: 0;
    transition: opacity 320ms ease;
    z-index: -1;
}
.btn-elegant::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
    transform: skewX(-20deg);
    transition: left 700ms cubic-bezier(.2,.7,.2,1);
    z-index: 1;
    pointer-events: none;
}
.btn-elegant:hover {
    color: #ffffff;
    border-color: var(--be-gold-dark);
    transform: translateY(-1px);
    box-shadow:
        0 12px 28px rgba(201, 162, 75, 0.32),
        0 0 0 4px rgba(201, 162, 75, 0.18);
}
.btn-elegant:hover::before { opacity: 1; }
.btn-elegant:hover::after { left: 130%; }
.btn-elegant-glyph {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--be-gold-dark);
    background: radial-gradient(circle at center, rgba(201, 162, 75, 0.2) 0%, rgba(201, 162, 75, 0) 70%);
    border: 1px solid rgba(201, 162, 75, 0.35);
    transition: color 320ms ease, border-color 320ms ease, background 320ms ease;
}
.btn-elegant-glyph svg { width: 16px; height: 16px; display: block; }
.btn-elegant:hover .btn-elegant-glyph {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.18);
}
.btn-elegant-text {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    flex-wrap: wrap;
}
.btn-elegant-text em {
    font-style: italic;
    font-weight: 400;
    color: var(--color-text-muted);
    letter-spacing: 0.01em;
    transition: color 320ms ease;
}
.btn-elegant-text strong {
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--be-gold-dark);
    letter-spacing: 0.04em;
    text-transform: none;
    transition: color 320ms ease;
}
.btn-elegant:hover .btn-elegant-text em,
.btn-elegant:hover .btn-elegant-text strong {
    color: #ffffff;
}
.btn-elegant-arrow {
    display: inline-flex;
    color: var(--be-gold-dark);
    transition: color 320ms ease, transform 320ms cubic-bezier(.2,.7,.2,1);
}
.btn-elegant-arrow svg { width: 18px; height: 18px; display: block; }
.btn-elegant:hover .btn-elegant-arrow {
    color: #ffffff;
    transform: translateX(4px);
}
.btn-elegant:focus-visible {
    outline: 3px solid var(--be-gold);
    outline-offset: 3px;
}
@media (max-width: 480px) {
    .btn-elegant {
        gap: 0.6rem;
        padding: 0.6rem 1rem 0.6rem 0.7rem;
        font-size: 0.88rem;
    }
    .btn-elegant-glyph { flex-basis: 28px; width: 28px; height: 28px; }
    .btn-elegant-glyph svg { width: 14px; height: 14px; }
}

/* -------- Header -------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--color-border);
}
.header-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
    gap: 0.75rem 1.25rem;
}
.logo {
    display: inline-flex;
    align-items: center;
    color: var(--color-primary);
    flex-shrink: 0;
}
.logo img {
    height: 52px;
    width: auto;
    display: block;
}
.logo-text { font-size: 0.95rem; font-weight: 600; }
.logo-text strong { color: var(--color-primary); }

/* -------- Courses showcase (header) -------- */
.courses-showcase {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    order: 3;
    flex-basis: 100%;
    border-top: 1px solid var(--color-border);
    padding-top: 0.75rem;
}
.courses-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 600;
    flex-shrink: 0;
}
.courses-showcase ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.course-pill {
    display: inline-block;
    padding: 0.4rem 0.95rem;
    border-radius: 999px;
    background: rgba(15, 42, 71, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
    white-space: nowrap;
}
.course-pill:hover {
    background: var(--color-primary);
    color: var(--color-accent);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px; height: 24px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: transform var(--transition), opacity var(--transition);
}

.main-nav {
    position: fixed;
    inset: 64px 0 auto 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    transform: translateY(-110%);
    transition: transform 250ms ease;
    box-shadow: var(--shadow-md);
}
.main-nav.is-open { transform: translateY(0); }
.main-nav ul {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.25rem 1.25rem;
}
.main-nav a {
    display: block;
    padding: 0.85rem 0.25rem;
    font-weight: 500;
    border-bottom: 1px solid var(--color-border);
}
.main-nav a.nav-cta {
    color: var(--color-accent-dark);
    font-weight: 700;
}

@media (min-width: 900px) {
    .menu-toggle { display: none; }
    .header-inner { flex-wrap: nowrap; }
    .main-nav {
        position: static;
        transform: none;
        background: transparent;
        border: 0;
        box-shadow: none;
        order: 4;
    }
    .main-nav ul {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
        padding: 0;
    }
    .main-nav a {
        border: 0;
        padding: 0.5rem 0.85rem;
        border-radius: var(--radius-sm);
    }
    .main-nav a:hover { background: var(--color-bg-soft); }
    .main-nav a.nav-cta {
        background: var(--color-accent);
        color: var(--color-primary-dark);
        font-size: 0.85rem;
        padding: 0.45rem 0.85rem;
        white-space: nowrap;
    }
    .main-nav a.nav-cta:hover { background: var(--color-accent-dark); color: #fff; }
    .logo-text { font-size: 1.05rem; }
    .logo img { height: 60px; }

    .courses-showcase {
        flex-basis: auto;
        flex: 1 1 auto;
        order: 2;
        border-top: 0;
        padding-top: 0;
        padding-left: 1.5rem;
        margin-left: 1.5rem;
        border-left: 1px solid var(--color-border);
        justify-content: flex-start;
    }
    .courses-showcase ul { gap: 0.6rem; }
    .course-pill { font-size: 0.9rem; padding: 0.45rem 1.1rem; }
}

/* -------- Countdown bar -------- */
.countdown-bar {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    color: var(--color-accent);
    border-top: 1px solid rgba(201, 162, 75, 0.25);
    border-bottom: 1px solid rgba(201, 162, 75, 0.25);
    padding: 0.85rem 0;
    width: 100%;
}
.countdown-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    text-align: center;
}
.countdown-label {
    margin: 0;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.countdown-timer {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}
.countdown-unit {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(201, 162, 75, 0.12);
    border: 1px solid rgba(201, 162, 75, 0.35);
    border-radius: var(--radius-sm);
    padding: 0.35rem 0.75rem;
    min-width: 58px;
}
.countdown-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.countdown-tag {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(201, 162, 75, 0.75);
    margin-top: 0.25rem;
}
.countdown-sep {
    color: var(--color-accent);
    font-size: 1.4rem;
    font-weight: 700;
    opacity: 0.5;
}
.countdown-bar.is-ended .countdown-value { color: rgba(201, 162, 75, 0.5); }
.countdown-bar.is-ended .countdown-label::after {
    content: " — encerradas";
    opacity: 0.8;
}
@media (min-width: 600px) {
    .countdown-value { font-size: 1.75rem; }
    .countdown-unit { min-width: 68px; padding: 0.4rem 0.95rem; }
}

/* -------- Hero -------- */
.hero {
    background:
        radial-gradient(circle at 80% 0%, rgba(201,162,75,0.18), transparent 55%),
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-text-on-dark);
    padding: 4rem 0 4.5rem;
}
.hero-inner { text-align: left; max-width: 820px; }
.hero-inner.hero-centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}
.hero-inner.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }
.hero-inner.hero-centered .hero-ctas { justify-content: center; }
.hero-inner.hero-centered .hero-highlights { justify-items: center; }
.hero h1 { color: #fff; }
.hero h1 .accent { color: var(--color-accent); }
.hero-sub {
    font-size: clamp(1rem, 0.4vw + 0.95rem, 1.2rem);
    color: rgba(245,245,247,0.92);
    max-width: 680px;
}
/* -------- Selo NOVO + contadores ao vivo -------- */
.hero-stamp-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.hero-stamp {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.85rem 1.85rem;
    background: linear-gradient(135deg, #e6391f 0%, #ff7a3d 100%);
    color: #fff;
    border-radius: 14px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 14px 32px rgba(216, 58, 31, 0.55),
        inset 0 0 0 4px rgba(255, 255, 255, 0.08);
    transform: rotate(-2.5deg);
    animation: stamp-bounce 2.4s ease-in-out infinite;
    text-align: center;
}
.stamp-new {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 1.5vw + 1rem, 2.2rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
}
.stamp-vagas {
    font-size: clamp(0.78rem, 0.3vw + 0.7rem, 0.95rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #fff7e3;
}
@keyframes stamp-bounce {
    0%, 100% { transform: rotate(-2.5deg) scale(1); }
    50% { transform: rotate(-2.5deg) scale(1.06); }
}

.live-counters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
}
.counter-card {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.65rem 1.25rem 0.65rem 1rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform var(--transition);
}
.counter-card:hover { transform: translateY(-2px); }

.counter-readers { border-color: rgba(34, 211, 113, 0.45); }
.counter-enrolled { border-color: rgba(201, 162, 75, 0.55); }

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22d371;
    flex-shrink: 0;
    box-shadow: 0 0 0 0 rgba(34, 211, 113, 0.7);
    animation: live-pulse 1.5s ease-out infinite;
}
.live-dot-gold {
    background: var(--color-accent);
    box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.7);
    animation-name: live-pulse-gold;
}
@keyframes live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 211, 113, 0.7); }
    70%  { box-shadow: 0 0 0 12px rgba(34, 211, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 211, 113, 0); }
}
@keyframes live-pulse-gold {
    0%   { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.75); }
    70%  { box-shadow: 0 0 0 12px rgba(201, 162, 75, 0); }
    100% { box-shadow: 0 0 0 0 rgba(201, 162, 75, 0); }
}

.counter-info {
    display: inline-flex;
    align-items: baseline;
    gap: 0.4rem;
    line-height: 1;
}
.counter-num {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
    transition: transform 250ms ease, color 250ms ease;
    display: inline-block;
}
.counter-readers .counter-num { color: #5af0a0; }
.counter-enrolled .counter-num { color: var(--color-accent); }
.counter-label {
    font-size: 0.85rem;
    color: rgba(245, 245, 247, 0.85);
    text-transform: lowercase;
    letter-spacing: 0.02em;
}
/* Flash quando o número muda */
.counter-num.flash {
    animation: counter-flash 0.55s ease;
}
@keyframes counter-flash {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18); filter: brightness(1.3); }
    100% { transform: scale(1); filter: brightness(1); }
}

.hero-kicker {
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 0.6vw + 1rem, 1.45rem);
    font-weight: 700;
    margin: 1rem 0 0.5rem;
    letter-spacing: 0.01em;
    line-height: 1.3;
}
.hero-kicker strong {
    color: var(--color-primary-dark);
    background: var(--color-accent);
    padding: 0.05em 0.5em;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(201, 162, 75, 0.35);
    font-weight: 800;
    white-space: nowrap;
}
.hero-tagline {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 700;
    font-size: clamp(0.95rem, 0.4vw + 0.85rem, 1.2rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0.5rem 0 1.25rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid rgba(201, 162, 75, 0.45);
    border-radius: 999px;
    background: rgba(201, 162, 75, 0.08);
    animation: tagline-pulse 1.8s ease-in-out infinite;
}
@keyframes tagline-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(201, 162, 75, 0.45);
        text-shadow: 0 0 0 rgba(201, 162, 75, 0);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 0 10px rgba(201, 162, 75, 0);
        text-shadow: 0 0 14px rgba(201, 162, 75, 0.7);
    }
}
.badge {
    display: inline-block;
    background: rgba(201,162,75,0.18);
    color: var(--color-accent);
    border: 1px solid rgba(201,162,75,0.5);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}
.hero-diploma {
    position: relative;
    margin: 2.5rem auto 2rem;
    max-width: 540px;
    text-align: center;
    perspective: 1200px;
}
.hero-diploma::before {
    content: "";
    position: absolute;
    inset: -18px;
    background: radial-gradient(ellipse at center, rgba(201, 162, 75, 0.35) 0%, rgba(201, 162, 75, 0.08) 45%, transparent 70%);
    filter: blur(18px);
    z-index: 0;
    pointer-events: none;
    animation: diploma-glow 4s ease-in-out infinite;
}
@keyframes diploma-glow {
    0%, 100% { opacity: 0.85; }
    50% { opacity: 1; }
}
.hero-diploma img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(201, 162, 75, 0.45);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.55),
        0 12px 24px rgba(0, 0, 0, 0.35),
        0 0 0 6px rgba(255, 255, 255, 0.04),
        0 0 40px rgba(201, 162, 75, 0.18);
    transform: rotateX(2deg);
    transition: transform 400ms ease, box-shadow 400ms ease;
}
.hero-diploma img:hover {
    transform: rotateX(0deg) translateY(-4px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.65),
        0 16px 32px rgba(0, 0, 0, 0.4),
        0 0 0 6px rgba(255, 255, 255, 0.06),
        0 0 60px rgba(201, 162, 75, 0.30);
}
/* Reflexo abaixo do diploma */
.hero-diploma::after {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    bottom: -28px;
    height: 36px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(8px);
    z-index: 0;
    pointer-events: none;
}
.hero-offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin: 0.5rem 0 1rem;
}
.hero-offer-installment {
    margin: 0;
    color: rgba(245, 245, 247, 0.92);
    font-size: 1.05rem;
    letter-spacing: 0.02em;
}
.hero-offer-installment strong {
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 800;
    margin-left: 0.25rem;
}
.btn-offer {
    font-size: clamp(1.05rem, 0.5vw + 1rem, 1.25rem);
    padding: 1rem 2rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(201, 162, 75, 0.35);
    animation: offer-pulse 2s ease-in-out infinite;
}
@keyframes offer-pulse {
    0%, 100% { box-shadow: 0 10px 24px rgba(201, 162, 75, 0.35); }
    50% { box-shadow: 0 10px 30px rgba(201, 162, 75, 0.65); }
}
.hero-offer-old {
    margin: 0;
    color: rgba(245, 245, 247, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.02em;
}
.hero-offer-old s { color: rgba(245, 245, 247, 0.55); }

/* -------- Preços da oferta (PIX + Cartão) -------- */
.offer-prices {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0.85rem;
    margin: 0.25rem 0 0.4rem;
    padding: 0;
}
.offer-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    min-width: 180px;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 75, 0.28);
}
.offer-price--pix {
    background: linear-gradient(180deg, rgba(201, 162, 75, 0.18), rgba(201, 162, 75, 0.08));
    border-color: rgba(201, 162, 75, 0.6);
    box-shadow: 0 6px 18px rgba(201, 162, 75, 0.18);
}
.offer-method {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(245, 245, 247, 0.75);
}
.offer-price--pix .offer-method { color: var(--color-accent); }
.offer-amount {
    font-family: var(--font-serif);
    color: #ffffff;
    font-size: clamp(1.25rem, 1vw + 1rem, 1.65rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0.1rem;
}
.offer-price--pix .offer-amount { color: var(--color-accent); }
.offer-discount {
    font-size: 0.78rem;
    color: rgba(245, 245, 247, 0.78);
    margin-top: 0.15rem;
    letter-spacing: 0.02em;
}
.offer-or {
    align-self: center;
    color: rgba(245, 245, 247, 0.55);
    font-size: 0.95rem;
    font-style: italic;
    text-transform: lowercase;
    letter-spacing: 0.04em;
}
@media (max-width: 540px) {
    .offer-or { display: none; }
}

/* -------- Checkout horizontal: opcoes + QR -------- */
.checkout-box {
    margin: 1.25rem auto 1.5rem;
    max-width: 820px;
    padding: 1.75rem 1.5rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(201, 162, 75, 0.32);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(2px);
    color: rgba(245, 245, 247, 0.95);
    scroll-margin-top: 24px;
}
.checkout-title {
    text-align: center;
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: clamp(1rem, 0.4vw + 0.95rem, 1.2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1.25rem;
}
/* -------- Bloco de oferta de lançamento -------- */
.checkout-box--launch { padding-top: 1.4rem; }
.checkout-launch {
    margin: -0.25rem auto 1.25rem;
    text-align: center;
    padding: 1.1rem 1.1rem 1rem;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(201, 162, 75, 0.22), rgba(15, 42, 71, 0.45));
    border: 1px solid rgba(201, 162, 75, 0.5);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 10px 28px rgba(0, 0, 0, 0.25);
    color: rgba(245, 245, 247, 0.95);
}
.checkout-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #f0cb74, #C9A24B);
    color: #0F2A47;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 6px 16px rgba(201, 162, 75, 0.4);
    margin-bottom: 0.7rem;
    animation: launch-pulse 2.4s ease-in-out infinite;
}
.checkout-launch-badge svg { width: 14px; height: 14px; flex: 0 0 14px; }
@keyframes launch-pulse {
    0%, 100% { box-shadow: 0 6px 16px rgba(201, 162, 75, 0.4); transform: translateY(0); }
    50% { box-shadow: 0 10px 24px rgba(201, 162, 75, 0.65); transform: translateY(-1px); }
}
.checkout-launch-headline {
    margin: 0 0 0.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.35rem 0.9rem;
    font-family: var(--font-serif);
    line-height: 1.2;
}
.checkout-launch-from {
    color: rgba(245, 245, 247, 0.72);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}
.checkout-launch-from s {
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 110, 110, 0.85);
}
.checkout-launch-to {
    color: rgba(245, 245, 247, 0.95);
    font-size: 1rem;
    letter-spacing: 0.02em;
}
.checkout-launch-to strong {
    color: var(--color-accent);
    font-size: clamp(1.55rem, 1.6vw + 1rem, 2.15rem);
    font-weight: 800;
    margin-left: 0.4rem;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 12px rgba(201, 162, 75, 0.35);
}
.checkout-launch-savings {
    margin: 0 0 0.5rem;
    font-size: 0.95rem;
    color: rgba(245, 245, 247, 0.92);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
    justify-content: center;
}
.checkout-launch-savings strong { color: #ffd680; font-weight: 800; }
.checkout-launch-percent {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    background: rgba(46, 125, 50, 0.22);
    border: 1px solid rgba(120, 220, 140, 0.55);
    color: #c9f5d3;
    font-family: var(--font-sans);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}
.checkout-launch-urgency {
    margin: 0;
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 245, 247, 0.75);
}
.checkout-old {
    display: block;
    color: rgba(245, 245, 247, 0.55);
    text-decoration: line-through;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    margin-top: 0.2rem;
}
.checkout-option--pix .checkout-old { color: rgba(245, 245, 247, 0.6); }
@media (max-width: 640px) {
    .checkout-launch { padding: 0.95rem 0.85rem 0.9rem; }
    .checkout-launch-headline { gap: 0.15rem; }
    .checkout-launch-to { display: block; width: 100%; }
    .checkout-launch-to strong { display: block; margin: 0.2rem 0 0; }
}
.checkout-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.checkout-options {
    flex: 1 1 320px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.checkout-option {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 1.1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--color-accent);
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.checkout-option:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 22px rgba(201, 162, 75, 0.18);
}
.checkout-option--pix {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    text-align: left;
    background: linear-gradient(180deg, rgba(201, 162, 75, 0.16), rgba(201, 162, 75, 0.04));
    box-shadow: 0 6px 18px rgba(201, 162, 75, 0.16);
    /* reset de button */
    font: inherit;
    color: inherit;
    width: 100%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.checkout-option--pix:hover {
    box-shadow: 0 10px 26px rgba(201, 162, 75, 0.28);
    border-color: var(--color-accent);
}
.checkout-option--pix.is-copied {
    background: linear-gradient(180deg, rgba(46, 125, 50, 0.22), rgba(46, 125, 50, 0.08));
    border-color: rgba(46, 125, 50, 0.7);
    box-shadow: 0 8px 22px rgba(46, 125, 50, 0.22);
}
.pix-card-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--color-accent);
    background: radial-gradient(circle at center, rgba(201, 162, 75, 0.32) 0%, rgba(201, 162, 75, 0) 70%);
    filter: drop-shadow(0 0 12px rgba(201, 162, 75, 0.55)) drop-shadow(0 0 4px rgba(201, 162, 75, 0.4));
}
.pix-card-icon svg {
    width: 30px;
    height: 30px;
    display: block;
}
.pix-card-info {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    min-width: 0;
}
.pix-card-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.checkout-option--pix .checkout-method {
    color: var(--color-accent);
    font-size: 0.82rem;
    letter-spacing: 0.18em;
}
.pix-card-badge {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(245, 245, 247, 0.92);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
}
.checkout-option--pix .checkout-amount {
    color: #ffffff;
    font-size: clamp(1.4rem, 1vw + 1.1rem, 1.85rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0.05rem;
}
.pix-card-hint {
    flex: 0 0 auto;
    max-width: 110px;
    font-size: 0.78rem;
    font-style: italic;
    color: rgba(245, 245, 247, 0.55);
    letter-spacing: 0.01em;
    text-align: right;
    line-height: 1.3;
    transition: color var(--transition);
}
.checkout-option--pix.is-copied .pix-card-hint {
    color: #b9efc1;
    font-style: normal;
    font-weight: 700;
}
@media (max-width: 480px) {
    .pix-card-hint { display: none; }
    .checkout-option--pix { padding: 0.85rem 0.95rem; }
    .pix-card-icon { flex-basis: 44px; width: 44px; height: 44px; }
    .pix-card-icon svg { width: 24px; height: 24px; }
}
.checkout-method {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--color-accent);
}
.checkout-option--card .checkout-method { color: rgba(245, 245, 247, 0.85); }
.checkout-amount {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 1vw + 1.1rem, 1.85rem);
    color: #ffffff;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0.15rem;
}
.checkout-option--pix .checkout-amount { color: var(--color-accent); }
.checkout-discount {
    font-size: 0.82rem;
    color: rgba(245, 245, 247, 0.82);
    margin-top: 0.1rem;
    letter-spacing: 0.02em;
}
.checkout-qr {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}
.checkout-qr-img {
    background: #ffffff;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
}
.checkout-qr-img img,
.checkout-qr-img canvas {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
}
.checkout-qr-label {
    margin: 0;
    color: var(--color-accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    text-align: center;
}
@media (max-width: 640px) {
    .checkout-box { padding: 1.25rem 1rem; }
    .checkout-grid { flex-direction: column; align-items: center; gap: 1.25rem; }
    .checkout-options { width: 100%; flex: 1 1 auto; }
    .checkout-qr-img { width: 200px; height: 200px; }
}

/* Bloco do programa (logo abaixo da oferta) */
.hero-program {
    margin: 1.75rem auto 0;
    max-width: 720px;
    padding: 1.5rem 1.5rem 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 162, 75, 0.35);
    text-align: center;
    backdrop-filter: blur(2px);
}
.hero-program p { margin: 0; }
.program-main {
    color: rgba(245, 245, 247, 0.95);
    font-size: clamp(0.95rem, 0.4vw + 0.9rem, 1.1rem);
    line-height: 1.55;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    font-weight: 600;
}
.program-main strong { color: var(--color-accent); font-weight: 800; }
.program-or {
    margin-top: 0.85rem !important;
    padding-top: 0.85rem;
    border-top: 1px dashed rgba(201, 162, 75, 0.35);
    color: rgba(245, 245, 247, 0.95);
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 0.5vw + 1rem, 1.3rem);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.gold-highlight {
    color: var(--color-accent);
    font-weight: 800;
    text-shadow: 0 0 14px rgba(201, 162, 75, 0.45);
}
.program-cta {
    margin-top: 0.85rem !important;
    color: rgba(245, 245, 247, 0.78);
    font-size: 0.92rem;
    font-weight: 400;
    font-style: italic;
}

/* -------- Mensagem persuasiva (substitui o VSL) -------- */
.hero-message {
    margin: 1.75rem auto 1.5rem;
    max-width: 760px;
    text-align: center;
}
.hero-message p {
    color: rgba(245, 245, 247, 0.95);
    font-size: clamp(1rem, 0.5vw + 0.95rem, 1.2rem);
    line-height: 1.7;
    margin: 0;
}
.hero-message strong { color: var(--color-accent); font-weight: 700; }

/* -------- Perks (SEM MENSALIDADES / SEM TAXA) -------- */
.hero-perks {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 760px;
    margin: 0.5rem auto 1.5rem;
}
@media (min-width: 600px) {
    .hero-perks { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
.perk {
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(209, 154, 32, 0.3);
    border-radius: 14px;
    padding: 1.5rem 1.25rem 1.25rem;
}
.perk-title {
    color: #d19a20;
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 1vw + 1.1rem, 2rem);
    letter-spacing: 0.04em;
    margin: 0 0 1rem;
    line-height: 1.15;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(209, 154, 32, 0.35);
}
.perk-title strong {
    color: #d19a20;
    font-weight: 800;
}
.perk-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 220px;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

/* -------- Bloco de urgência / histórico do MEC -------- */
.hero-warning {
    margin: 2.5rem auto 1.5rem;
    max-width: 900px;
    padding: 2rem 1.5rem 1.75rem;
    background:
        linear-gradient(135deg, rgba(60, 10, 10, 0.55) 0%, rgba(20, 10, 30, 0.45) 100%);
    border: 1px solid rgba(255, 90, 60, 0.35);
    border-left: 5px solid #d83a1f;
    border-radius: 14px;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.55),
        inset 0 0 80px rgba(216, 58, 31, 0.06);
    text-align: center;
    position: relative;
}
.warning-flag {
    display: inline-block;
    background: rgba(216, 58, 31, 0.18);
    border: 1px solid rgba(216, 58, 31, 0.55);
    color: #ffb38a;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 700;
    margin-bottom: 0.85rem;
}
.warning-title {
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 1.8vw + 1rem, 2.2rem);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0 0 1.5rem;
    text-shadow: 0 0 20px rgba(255, 100, 60, 0.25);
}
.warning-emphasis {
    color: #ff8a3c;
    display: inline-block;
    animation: warning-pulse 2.2s ease-in-out infinite;
}
@keyframes warning-pulse {
    0%, 100% {
        text-shadow: 0 0 12px rgba(255, 138, 60, 0.45);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 26px rgba(255, 138, 60, 0.85), 0 0 50px rgba(255, 138, 60, 0.4);
        transform: scale(1.02);
    }
}
.hero-warning p {
    color: rgba(245, 245, 247, 0.94);
    font-size: clamp(0.97rem, 0.4vw + 0.92rem, 1.1rem);
    line-height: 1.7;
    margin: 0 auto 1.25rem;
    max-width: 760px;
    text-align: left;
}
.hero-warning p strong { color: var(--color-accent); font-weight: 700; }

.warning-prints {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.75rem 0;
}
@media (min-width: 700px) {
    .warning-prints { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
.warning-prints figure { margin: 0; }
.warning-prints img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 75, 0.35);
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.55),
        0 0 0 4px rgba(255, 255, 255, 0.04);
    transition: transform var(--transition), box-shadow var(--transition);
    background: #fff;
}
.warning-prints img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 18px 36px rgba(0, 0, 0, 0.65),
        0 0 0 4px rgba(201, 162, 75, 0.25);
}

.warning-final {
    color: #fff !important;
    font-family: var(--font-serif);
    font-size: clamp(1.05rem, 0.6vw + 1rem, 1.35rem);
    font-weight: 700;
    text-align: center !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 1rem 1.25rem;
    margin: 1.5rem auto 0 !important;
    max-width: 760px;
    background: linear-gradient(90deg, rgba(201, 162, 75, 0.18) 0%, rgba(201, 162, 75, 0.06) 100%);
    border: 1px solid rgba(201, 162, 75, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(201, 162, 75, 0.18);
}

/* -------- CTA final + selos de confiança -------- */
.hero-cta-final {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    margin: 1.25rem auto 0;
}
.btn-offer-final {
    max-width: 620px;
    width: 100%;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: clamp(0.95rem, 0.5vw + 0.9rem, 1.2rem);
    padding: 1.05rem 1.5rem;
    white-space: normal;
}
.cta-cash {
    margin: 0;
    color: rgba(245, 245, 247, 0.88);
    font-size: 0.98rem;
    letter-spacing: 0.02em;
}
.cta-cash strong {
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-weight: 800;
    font-size: 1.1rem;
}
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1.5rem;
    margin-top: 0.85rem;
    padding: 0;
}
.trust-badges li { display: flex; }
.trust-badges img {
    max-height: 60px;
    width: auto;
    opacity: 0.95;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
    transition: opacity var(--transition), transform var(--transition);
}
.trust-badges img:hover {
    opacity: 1;
    transform: translateY(-2px);
}
/* (hero-highlights removido — substituído por .feature-showcase abaixo do hero) */
@media (min-width: 768px) {
    .hero { padding: 6rem 0 6.5rem; }
    .hero-highlights { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

/* -------- Sections -------- */
.section { padding: 4rem 0; }
.section-light { background: var(--color-bg-soft); }
.section-dark {
    background: var(--color-primary);
    color: var(--color-text-on-dark);
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .eyebrow { color: var(--color-accent); }

.section-header { max-width: 760px; margin-bottom: 2.5rem; }
.section-lead {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 0.4vw + 0.95rem, 1.15rem);
    line-height: 1.65;
    margin: 0.85rem 0 0;
    font-style: italic;
}
.section-lead strong {
    color: var(--color-primary);
    font-style: normal;
    font-weight: 700;
}
.como-funciona-header {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.two-col {
    display: grid;
    gap: 2rem;
}
@media (min-width: 900px) {
    .two-col {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: start;
    }
}

/* -------- Feature showcase (3 grandes cards com ícones) -------- */
.feature-showcase {
    background:
        radial-gradient(circle at 15% 20%, rgba(201, 162, 75, 0.10), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(15, 42, 71, 0.06), transparent 45%),
        var(--color-bg);
    padding: 5rem 0 5.5rem;
    position: relative;
}
.showcase-header { text-align: center; max-width: 720px; margin-left: auto; margin-right: auto; margin-bottom: 3rem; }
.showcase-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .showcase-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.showcase-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 6rem 1.75rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition), box-shadow var(--transition);
    margin-top: 110px; /* espaço para o ícone "flutuar" pra fora do topo */
    overflow: visible;
}
.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 42, 71, 0.18);
}
.showcase-card h3 {
    font-size: 1.3rem;
    margin: 0 0 0.6rem;
}
.showcase-card p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.55;
}
.showcase-icon-wrap {
    position: absolute;
    top: -110px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition);
}
.showcase-icon-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    z-index: 0;
}
.showcase-icon {
    position: relative;
    z-index: 1;
    width: 76%;
    height: 76%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(15, 42, 71, 0.25));
}
.showcase-card:hover .showcase-icon-wrap { transform: translateX(-50%) scale(1.05); }

/* Variante dourada (Certificação, Avaliação) */
.showcase-gold .showcase-icon-wrap::before {
    background: radial-gradient(circle, #fff7e3 0%, #f3d98c 60%, #c9a24b 100%);
    box-shadow:
        0 12px 30px rgba(201, 162, 75, 0.45),
        inset 0 0 0 6px rgba(255, 255, 255, 0.45);
}
.showcase-gold {
    border-top: 4px solid var(--color-accent);
}

/* Variante azul-marinho (Ambiente Virtual) */
.showcase-navy .showcase-icon-wrap::before {
    background: radial-gradient(circle, #1d4a7a 0%, #0F2A47 65%, #081a2e 100%);
    box-shadow:
        0 12px 30px rgba(15, 42, 71, 0.55),
        inset 0 0 0 6px rgba(201, 162, 75, 0.35);
}
.showcase-navy {
    border-top: 4px solid var(--color-primary);
}

@media (max-width: 767px) {
    .showcase-icon-wrap { width: 150px; height: 150px; top: -95px; }
    .showcase-card { margin-top: 95px; padding-top: 5.25rem; }
}

/* -------- Sobre (texto centralizado) -------- */
.sobre-text { text-align: center; }
.sobre-text p { font-size: 1.05rem; color: var(--color-text-muted); }
.sobre-text strong { color: var(--color-text); }
.sobre-hint { margin-top: 1.5rem; }
.badge-light {
    background: var(--color-accent);
    color: var(--color-primary-dark);
    border: 0;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-right: 0.5rem;
}

/* -------- Logo wall de instituições -------- */
.institutions {
    background:
        radial-gradient(circle at 10% 0%, rgba(201, 162, 75, 0.08), transparent 45%),
        radial-gradient(circle at 90% 100%, rgba(15, 42, 71, 0.05), transparent 45%),
        var(--color-bg);
    padding: 5rem 0 5.5rem;
    position: relative;
}
.institutions::before,
.institutions::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}
.institutions::before { top: 0; }
.institutions::after { bottom: 0; }

.institutions-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 3rem;
}
.institutions-header h2 .accent {
    display: inline-block;
    border-bottom: 3px solid var(--color-accent);
    padding-bottom: 0.1em;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 1080px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .institutions-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

.institution-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 1.75rem 1.25rem;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 4px 12px rgba(15, 42, 71, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.institution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(201, 162, 75, 0.10) 0%, transparent 65%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}
.institution-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
    transform: scaleX(0);
    transition: transform 350ms ease;
    transform-origin: center;
}
.institution-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 75, 0.55);
    box-shadow:
        0 18px 40px rgba(15, 42, 71, 0.18),
        0 0 0 4px rgba(201, 162, 75, 0.12);
}
.institution-card:hover::before { opacity: 1; }
.institution-card:hover::after { transform: scaleX(1); }

.institution-card img {
    position: relative;
    z-index: 1;
    max-width: 82%;
    max-height: 95px;
    width: auto;
    height: auto;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: bicubic;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
    transition: transform var(--transition), filter var(--transition);
    user-select: none;
    -webkit-user-drag: none;
}
.institution-card:hover img {
    transform: scale(1.06);
    filter: drop-shadow(0 6px 14px rgba(15, 42, 71, 0.25));
}

@media (min-width: 768px) {
    .institution-card { height: 170px; padding: 2rem 1.5rem; }
    .institution-card img { max-height: 105px; }
}

/* -------- Requisites list -------- */
.requisites {
    display: grid;
    gap: 1.25rem;
}
.requisites li {
    display: flex;
    gap: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow-sm);
    align-items: flex-start;
}
.req-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 25%, #fff7e3 0%, #f3d98c 35%, #c9a24b 90%);
    box-shadow:
        0 8px 18px rgba(201, 162, 75, 0.35),
        inset 0 0 0 4px rgba(255, 255, 255, 0.55),
        inset 0 -3px 6px rgba(164, 130, 58, 0.35);
    color: var(--color-primary-dark);
    transition: transform var(--transition), box-shadow var(--transition);
}
.req-icon svg {
    width: 36px;
    height: 36px;
    display: block;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.15));
}
.requisites li:hover .req-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow:
        0 12px 24px rgba(201, 162, 75, 0.5),
        inset 0 0 0 4px rgba(255, 255, 255, 0.7),
        inset 0 -3px 6px rgba(164, 130, 58, 0.4);
}
.requisites h3 { margin: 0 0 0.25rem; }
.requisites p { margin: 0; color: var(--color-text-muted); }
@media (min-width: 768px) {
    .requisites { grid-template-columns: repeat(3, 1fr); }
}

/* -------- Steps timeline -------- */
.steps {
    display: grid;
    gap: 1.25rem;
    counter-reset: step;
}
.steps li {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.5rem 1.25rem 1.25rem;
    position: relative;
    box-shadow: var(--shadow-sm);
}
.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-primary-dark);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.steps h3 { margin-bottom: 0.35rem; }
.steps p { color: var(--color-text-muted); margin: 0; }
@media (min-width: 768px) {
    .steps { grid-template-columns: repeat(4, 1fr); }
}

/* -------- Pricing -------- */
.pricing {
    display: flex;
    justify-content: center;
}
.price-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 460px;
    width: 100%;
    box-shadow: var(--shadow-md);
    text-align: center;
}
.price-card.highlight {
    border-top: 6px solid var(--color-accent);
}
.price-card .price {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--color-primary);
    margin: 0.25rem 0 1rem;
}
.price-card .price span { font-size: 1.1rem; vertical-align: top; margin-right: 0.25rem; }
.price-card .price small { font-size: 1.4rem; color: var(--color-primary); font-weight: 700; }
.price-card .price-pix {
    margin: -0.5rem 0 1.25rem;
    color: var(--color-text-muted);
    font-size: 1rem;
}
.price-card .price-pix strong {
    color: var(--color-accent-dark);
    font-weight: 800;
    letter-spacing: 0.04em;
}
.price-card ul {
    text-align: left;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.4rem;
}
.price-card ul li::before {
    content: "✓ ";
    color: var(--color-accent-dark);
    font-weight: 700;
    margin-right: 0.25rem;
}
.payments { margin-top: 1rem; color: var(--color-text-muted); }

/* -------- Pricing Card Premium (azul-marinho + dourado) -------- */
.price-card--premium {
    max-width: 1080px;
    width: 100%;
    background: linear-gradient(180deg, #0c2440 0%, var(--color-primary) 60%, #0c2440 100%);
    border: 1px solid rgba(201, 162, 75, 0.6);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: rgba(245, 245, 247, 0.95);
    text-align: left;
    box-shadow:
        0 28px 60px rgba(8, 26, 46, 0.45),
        0 0 0 1px rgba(201, 162, 75, 0.18) inset;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.price-card--premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(700px circle at 0% 0%, rgba(201, 162, 75, 0.12), transparent 55%),
        radial-gradient(560px circle at 100% 100%, rgba(201, 162, 75, 0.08), transparent 55%);
    pointer-events: none;
    z-index: -1;
}
.premium-card-head {
    text-align: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201, 162, 75, 0.22);
}
.premium-card-head h3 {
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 0.4vw + 0.9rem, 1.15rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin: 0 0 0.35rem;
}
.premium-price {
    margin: 0;
    line-height: 1;
    font-family: var(--font-serif);
    color: #ffffff;
}
.premium-currency {
    font-size: clamp(1.1rem, 0.4vw + 1rem, 1.4rem);
    color: var(--color-accent);
    font-weight: 700;
    margin-right: 0.25rem;
    vertical-align: top;
}
.premium-amount {
    font-size: clamp(3.2rem, 4vw + 1.5rem, 5rem);
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 24px rgba(201, 162, 75, 0.18);
}
.premium-cents {
    font-size: clamp(1.4rem, 0.5vw + 1.2rem, 1.8rem);
    color: var(--color-accent);
    font-weight: 700;
    margin-left: 0.1rem;
    vertical-align: top;
}
.premium-subhead {
    margin: 0.6rem 0 0;
    font-size: 0.92rem;
    color: rgba(245, 245, 247, 0.78);
    letter-spacing: 0.02em;
}
.premium-subhead strong {
    color: var(--color-accent);
    font-weight: 800;
    letter-spacing: 0.04em;
}
.premium-card-body {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.05fr);
    gap: 2.25rem;
    align-items: stretch;
}
.premium-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    text-align: left;
    align-self: center;
}
.premium-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(245, 245, 247, 0.95);
    font-size: 1rem;
    line-height: 1.4;
}
.price-card .premium-benefits li::before { content: none; margin: 0; }
.premium-benefits li strong {
    color: var(--color-accent);
    font-weight: 800;
    margin-left: 0.2rem;
}
.premium-check {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(201, 162, 75, 0.32) 0%, rgba(201, 162, 75, 0.1) 70%);
    border: 1px solid rgba(201, 162, 75, 0.55);
    color: var(--color-accent);
    margin-top: 0.1rem;
    box-shadow: 0 0 12px rgba(201, 162, 75, 0.25);
}
.premium-check svg { width: 14px; height: 14px; display: block; }

.premium-checkout {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    align-items: stretch;
    justify-content: center;
}
.premium-checkout-options {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.premium-checkout .checkout-option--card.checkout-option--horizontal {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1.1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(201, 162, 75, 0.55);
}
.premium-checkout .checkout-option--horizontal:hover {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 8px 22px rgba(201, 162, 75, 0.18);
}
.pix-card-icon--card {
    color: rgba(245, 245, 247, 0.9);
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    filter: none;
}
.checkout-option--horizontal .checkout-method {
    color: rgba(245, 245, 247, 0.92);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
}
.checkout-option--horizontal .checkout-amount {
    color: #ffffff;
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 1vw + 1rem, 1.6rem);
    font-weight: 800;
    line-height: 1.1;
}
.pix-card-hint--muted {
    color: rgba(245, 245, 247, 0.5);
}
.premium-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding-top: 0.25rem;
}
.premium-qr .checkout-qr-img {
    width: 200px;
    height: 200px;
}

@media (max-width: 820px) {
    .premium-card-body { grid-template-columns: 1fr; gap: 1.75rem; }
    .premium-benefits { align-self: stretch; }
}
@media (max-width: 480px) {
    .price-card--premium { padding: 1.75rem 1.25rem; }
    .premium-checkout .checkout-option--horizontal { padding: 0.85rem 0.95rem; }
    .premium-qr .checkout-qr-img { width: 180px; height: 180px; }
}

/* -------- CTA "Ainda tenho Dúvidas" (WhatsApp) -------- */
.doubts-cta {
    text-align: center;
    margin: 2.5rem auto 0;
}
.doubts-text {
    margin: 0 0 1rem;
    color: var(--color-text-muted);
    font-size: 0.98rem;
    font-style: italic;
}
.btn-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 1rem 1.85rem;
    background: linear-gradient(135deg, #25D366 0%, #1faa54 100%);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow:
        0 10px 24px rgba(37, 211, 102, 0.45),
        0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition), box-shadow var(--transition);
    z-index: 1;
    isolation: isolate;
}
.btn-whatsapp:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow:
        0 16px 32px rgba(37, 211, 102, 0.55),
        0 6px 12px rgba(0, 0, 0, 0.12);
}
.btn-whatsapp .wa-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}
/* Ondas pulsantes saindo de trás do botão */
.btn-whatsapp::before,
.btn-whatsapp::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(37, 211, 102, 0.55);
    z-index: -1;
    animation: wa-ripple 2.2s ease-out infinite;
    pointer-events: none;
}
.btn-whatsapp::after {
    animation-delay: 1.1s;
    background: rgba(37, 211, 102, 0.35);
}
@keyframes wa-ripple {
    0% { transform: scale(1); opacity: 0.65; }
    70% { transform: scale(1.35); opacity: 0; }
    100% { transform: scale(1.45); opacity: 0; }
}

/* -------- Testimonials (depoimentos reais) -------- */
.testimonials-section { padding: 5rem 0 5.5rem; }
.testimonials-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}
.testimonials-header h2 { color: #fff; }

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

.testimonial-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 162, 75, 0.28);
    border-radius: 18px;
    padding: 2.75rem 1.85rem 1.75rem;
    margin: 0;
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    overflow: hidden;
}
.testimonial-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
    opacity: 0.6;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 75, 0.6);
    box-shadow:
        0 26px 50px rgba(0, 0, 0, 0.45),
        0 0 0 4px rgba(201, 162, 75, 0.10);
}

.testimonial-card .quote-mark {
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    font-family: var(--font-serif);
    font-size: 5.5rem;
    line-height: 1;
    color: var(--color-accent);
    opacity: 0.55;
    pointer-events: none;
    user-select: none;
}

.testimonial-card blockquote {
    margin: 0 0 1.25rem;
    flex: 1;
    position: relative;
    z-index: 1;
}
.testimonial-card blockquote p {
    color: rgba(245, 245, 247, 0.95);
    font-size: 1rem;
    line-height: 1.75;
    margin: 0 0 0.85rem;
    font-style: italic;
}
.testimonial-card blockquote p:last-child { margin-bottom: 0; }

.testimonial-card figcaption {
    color: var(--color-accent);
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(201, 162, 75, 0.3);
    letter-spacing: 0.02em;
}
.testimonial-card figcaption::before {
    content: "— ";
    opacity: 0.7;
}

/* -------- FAQ -------- */
.faq details {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 0.25rem 1.25rem;
    margin-bottom: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.faq details[open] { box-shadow: var(--shadow-md); border-color: var(--color-accent); }
.faq summary {
    cursor: pointer;
    font-weight: 600;
    font-family: var(--font-serif);
    color: var(--color-primary);
    padding: 1rem 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--color-accent-dark);
    transition: transform var(--transition);
    line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq p { color: var(--color-text-muted); padding-bottom: 1rem; margin: 0; }

/* -------- Inscrição (CTA WhatsApp) -------- */
.section-cta {
    background: linear-gradient(135deg, #fff 0%, var(--color-bg-soft) 100%);
}
.enrollment-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    border: 1px solid var(--color-border);
    border-top: 6px solid var(--color-accent);
    border-radius: 18px;
    padding: 2.75rem 1.75rem 2.5rem;
    box-shadow: 0 22px 50px rgba(15, 42, 71, 0.10);
}
.enrollment-card .eyebrow { margin-bottom: 0.4rem; }
.enrollment-card h2 { margin-bottom: 1rem; }
.enrollment-lead {
    color: var(--color-text-muted);
    font-size: clamp(1rem, 0.4vw + 0.95rem, 1.15rem);
    line-height: 1.65;
    max-width: 600px;
    margin: 0 auto 1rem;
}
.enrollment-lead strong { color: var(--color-primary); font-weight: 700; }
.enrollment-fast { margin: 0 0 1.75rem; }
.enrollment-fast .badge-light {
    margin: 0;
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
    box-shadow: 0 6px 16px rgba(201, 162, 75, 0.3);
}

.btn-whatsapp-large {
    font-size: clamp(1rem, 0.5vw + 0.95rem, 1.2rem);
    padding: 1.15rem 2rem;
    max-width: 540px;
    line-height: 1.3;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
}
.btn-whatsapp-large .wa-icon {
    width: 26px;
    height: 26px;
}

/* -------- Footer -------- */
.site-footer {
    background: var(--color-primary-dark);
    color: rgba(245,245,247,0.85);
    padding: 3rem 0 1.5rem;
    margin-top: 0;
}
.site-footer h2, .site-footer p, .site-footer strong { color: #fff; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--color-accent); }
.footer-inner {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-inner p { margin: 0 0 0.35rem; font-size: 0.95rem; }
.socials { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.socials a {
    color: var(--color-accent);
    border: 1px solid rgba(201,162,75,0.4);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
}
.socials a:hover { background: var(--color-accent); color: var(--color-primary-dark); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    text-align: center;
    font-size: 0.85rem;
}
.footer-legal {
    margin: 0.75rem auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 1.1rem;
    font-size: 0.8rem;
    color: rgba(245, 245, 247, 0.55);
    letter-spacing: 0.04em;
}
.footer-legal a {
    color: rgba(245, 245, 247, 0.7);
    text-decoration: none;
    padding: 0.15rem 0.1rem;
    transition: color var(--transition);
}
.footer-legal a:hover,
.footer-legal a:focus-visible { color: #C5A059; }
.footer-legal span {
    color: rgba(245, 245, 247, 0.3);
    font-size: 0.7rem;
    line-height: 1;
}
.grecaptcha-badge { display: none !important; }
@media (min-width: 768px) {
    .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

/* -------- Reduced motion -------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* ============================================================
   PALETA PREMIUM — vinho profundo + dourado + marfim
   Aplicada ao final para sobrescrever as cores anteriores.
   ============================================================ */
:root {
    --color-primary: #C5A059;
    --color-primary-dark: #A88242;
    --color-accent: #C5A059;
    --color-accent-dark: #A88242;
    --color-bg: #2A0810;
    --color-bg-soft: #21070C;
    --color-bg-dark: #110405;
    --color-text: #F4F1EA;
    --color-text-muted: #C8BFA8;
    --color-text-on-dark: #F4F1EA;
    --color-border: rgba(197, 160, 89, 0.28);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 14px 38px rgba(0, 0, 0, 0.55);
    --wine-card: #2A0810;
    --wine-card-soft: #340A14;
    --gold: #C5A059;
    --gold-soft: #D9BD7A;
    --ivory: #F4F1EA;
    --ivory-muted: #C8BFA8;
}

body {
    background: radial-gradient(circle at center, #3A0B10 0%, #110405 100%);
    background-attachment: fixed;
    color: var(--ivory);
}

p { color: var(--ivory); }

h1, h2, h3 {
    color: var(--gold);
    font-family: var(--font-serif);
}

.accent { color: var(--gold-soft); }
.eyebrow { color: var(--gold-soft); }

a { color: var(--gold-soft); }
a:hover { color: var(--gold); }

strong, b { color: var(--gold-soft); }

/* Header / nav */
.site-header {
    background: rgba(17, 4, 5, 0.85);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.main-nav a { color: var(--ivory); }
.main-nav a:hover { color: var(--gold); }
.nav-cta {
    background: var(--gold);
    color: #110405 !important;
    border-radius: 999px;
    padding: 0.55rem 1rem;
}
.nav-cta:hover { background: var(--gold-soft); color: #110405 !important; }

.courses-label { color: var(--ivory-muted); }
.course-pill {
    color: var(--gold);
    border: 1px solid var(--color-border);
    background: rgba(197, 160, 89, 0.06);
}
.course-pill:hover { background: rgba(197, 160, 89, 0.16); color: var(--gold-soft); }

/* Countdown */
.countdown-bar {
    background: linear-gradient(180deg, #1A0508 0%, #110405 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    color: var(--ivory);
}
.countdown-label { color: var(--ivory-muted); }
.countdown-value { color: var(--gold); }
.countdown-tag { color: var(--ivory-muted); }
.countdown-sep { color: var(--gold); }

/* Sections — fundo transparente para o gradiente do body aparecer */
.section, .section-light, .section-dark, .section-cta, .feature-showcase {
    background: transparent;
    color: var(--ivory);
}
.section-light { background: rgba(197, 160, 89, 0.03); }
.section-dark { background: rgba(0, 0, 0, 0.25); }

/* Hero */
.hero {
    background: transparent;
    color: var(--ivory);
}
.hero-tagline, .hero-sub, .hero-kicker { color: var(--ivory); }
.hero-stamp {
    background: linear-gradient(135deg, #3A0B10 0%, #1A0508 100%);
    border: 1px solid var(--gold);
    color: var(--gold);
    box-shadow: 0 0 24px rgba(197, 160, 89, 0.18), inset 0 0 0 1px rgba(197, 160, 89, 0.18);
}
.stamp-new { color: var(--gold-soft); }
.stamp-vagas { color: var(--ivory); }

.live-counters .counter-card {
    background: var(--wine-card);
    border: 1px solid var(--color-border);
    color: var(--ivory);
}
.live-dot { background: #ff6b6b; box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.18); }
.live-dot-gold { background: var(--gold); box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.22); }
.counter-num { color: var(--gold); }
.counter-label { color: var(--ivory-muted); }

.badge {
    background: rgba(197, 160, 89, 0.12);
    color: var(--gold);
    border: 1px solid var(--color-border);
}
.badge-light, .badge.badge-light {
    background: rgba(244, 241, 234, 0.08);
    color: var(--ivory);
    border: 1px solid var(--color-border);
}

/* Checkout box / PIX */
.checkout-box,
#pix-pagamento.checkout-box {
    background: linear-gradient(180deg, var(--wine-card-soft) 0%, var(--wine-card) 100%);
    border: 1px solid var(--gold);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(197, 160, 89, 0.15);
    color: var(--ivory);
}
.checkout-title { color: var(--gold); }
.checkout-option {
    background: rgba(17, 4, 5, 0.6);
    border: 1px solid var(--color-border);
    color: var(--ivory);
}
.checkout-option:hover { border-color: var(--gold); }
.checkout-option--pix { color: var(--ivory); }
.checkout-method { color: var(--gold-soft); }
.checkout-amount { color: var(--ivory); }
.pix-card-badge {
    background: rgba(197, 160, 89, 0.18);
    color: var(--gold-soft);
    border: 1px solid rgba(197, 160, 89, 0.4);
}
.pix-card-icon { color: var(--gold); }
.pix-card-hint { color: var(--ivory-muted); }
.checkout-qr {
    background: rgba(244, 241, 234, 0.04);
    border: 1px dashed var(--color-border);
}
.checkout-qr-img { background: #F4F1EA; }
.checkout-qr-label { color: var(--ivory-muted); }

/* Hero diploma frame */
.hero-diploma {
    border: 1px solid var(--color-border);
    background: rgba(17, 4, 5, 0.4);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    border-radius: 14px;
}

/* Programa / aviso */
.hero-program {
    background: linear-gradient(180deg, var(--wine-card-soft) 0%, var(--wine-card) 100%);
    border: 1px solid var(--gold);
    color: var(--ivory);
}
.program-main, .program-or { color: var(--ivory); }
.gold-highlight { color: var(--gold); }

.hero-message, .hero-warning {
    background: rgba(17, 4, 5, 0.55);
    border: 1px solid var(--color-border);
    color: var(--ivory);
    border-left: 3px solid var(--gold);
}
.warning-flag { color: var(--gold-soft); }
.warning-title, .warning-emphasis { color: var(--gold); }
.warning-final { color: var(--ivory); font-weight: 600; }

.hero-perks .perk {
    background: var(--wine-card);
    border: 1px solid var(--color-border);
    color: var(--ivory);
}
.perk-title { color: var(--gold); }

.cta-cash { color: var(--ivory-muted); }
.trust-badges img { filter: brightness(0.95) contrast(1.05); }

/* Showcase */
.showcase-card {
    background: var(--wine-card);
    border: 1px solid var(--color-border);
    color: var(--ivory);
    box-shadow: var(--shadow-md);
}
.showcase-card.showcase-gold {
    background: linear-gradient(180deg, var(--wine-card-soft) 0%, var(--wine-card) 100%);
    border-color: var(--gold);
}
.showcase-card.showcase-navy {
    background: var(--wine-card);
    border-color: var(--color-border);
}
.showcase-card h3 { color: var(--gold); }
.showcase-card p { color: var(--ivory); }
.showcase-icon-wrap {
    background: rgba(197, 160, 89, 0.1);
    border: 1px solid var(--color-border);
}

/* Sobre / requisitos / steps */
.sobre-text p { color: var(--ivory); }
.sobre-hint { color: var(--ivory-muted); }
.requisites li {
    background: var(--wine-card);
    border: 1px solid var(--color-border);
    color: var(--ivory);
}
.requisites li h3 { color: var(--gold); }
.requisites li p { color: var(--ivory); }
.req-icon { color: var(--gold); }

.steps li {
    background: var(--wine-card);
    border: 1px solid var(--color-border);
    color: var(--ivory);
}
.steps li h3 { color: var(--gold); }
.steps li p { color: var(--ivory); }
.step-num {
    background: var(--gold);
    color: #110405;
}

/* Botão elegante */
.btn-elegant {
    background: linear-gradient(135deg, var(--wine-card-soft) 0%, var(--wine-card) 100%);
    color: var(--ivory);
    border: 1px solid var(--gold);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}
.btn-elegant:hover { border-color: var(--gold-soft); color: var(--gold-soft); }
.btn-elegant em { color: var(--ivory-muted); }
.btn-elegant strong { color: var(--gold); }
.btn-elegant-glyph, .btn-elegant-arrow { color: var(--gold); }

/* Instituições */
.institution-card {
    background: rgba(244, 241, 234, 0.96);
    border: 1px solid var(--gold);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}

/* Depoimentos */
.testimonial-card {
    background: var(--wine-card);
    border: 1px solid var(--color-border);
    color: var(--ivory);
}
.testimonial-card blockquote p { color: var(--ivory); }
.testimonial-card figcaption { color: var(--gold); }
.quote-mark { color: var(--gold); }
.testimonial-role {
    display: block;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--gold-soft);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    margin: 0.25rem 0 0.85rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

/* Pricing — card premium vinho com borda dourada */
.pricing { color: var(--ivory); }
.price-card,
.price-card--premium {
    background: linear-gradient(180deg, var(--wine-card-soft) 0%, var(--wine-card) 60%, #1A0508 100%);
    border: 1px solid var(--gold);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(197, 160, 89, 0.18);
    color: var(--ivory);
}
.premium-card-head {
    background: transparent;
    border-bottom: 1px solid var(--color-border);
}
.premium-card-head h3 { color: var(--gold); }
.premium-price { color: var(--gold); }
.premium-currency, .premium-amount, .premium-cents { color: var(--gold); }
.premium-subhead { color: var(--ivory); }
.premium-card-body { background: transparent; color: var(--ivory); }
.premium-benefits li { color: var(--ivory); }
.premium-benefits li strong { color: var(--gold); }
.premium-check {
    background: rgba(197, 160, 89, 0.18);
    color: var(--gold);
    border: 1px solid var(--gold);
}
.premium-checkout {
    background: rgba(17, 4, 5, 0.4);
    border: 1px solid var(--color-border);
}
.premium-qr { background: rgba(244, 241, 234, 0.04); border: 1px dashed var(--color-border); }

.doubts-text { color: var(--ivory); }

/* Botões */
.btn-primary,
.btn.btn-primary,
.btn-offer,
.btn-offer-final {
    background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 60%, var(--color-accent-dark) 100%);
    color: #110405;
    border-color: var(--gold);
    box-shadow: 0 12px 28px rgba(197, 160, 89, 0.28);
}
.btn-primary:hover,
.btn-offer:hover,
.btn-offer-final:hover {
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: #110405;
    border-color: var(--gold-soft);
}

.btn-whatsapp {
    background: #1F4E2E;
    color: #F4F1EA;
    border: 1px solid var(--gold);
}
.btn-whatsapp:hover { background: #256038; color: #fff; }
.btn-whatsapp-large { box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5); }

/* FAQ */
.faq details {
    background: var(--wine-card);
    border: 1px solid var(--color-border);
    color: var(--ivory);
}
.faq details[open] { border-color: var(--gold); }
.faq summary { color: var(--gold); }
.faq details p { color: var(--ivory); }

/* Enrollment / CTA */
.enrollment-card {
    background: linear-gradient(180deg, var(--wine-card-soft) 0%, var(--wine-card) 100%);
    border: 1px solid var(--gold);
    color: var(--ivory);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}
.enrollment-card h2 { color: var(--gold); }
.enrollment-lead, .enrollment-fast { color: var(--ivory); }

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #110405 0%, #080102 100%);
    color: var(--ivory);
    border-top: 1px solid var(--color-border);
}
.site-footer p, .site-footer a { color: var(--ivory); }
.site-footer a:hover { color: var(--gold); }
.logo-text strong { color: var(--gold); }
.socials a {
    color: var(--gold);
    border: 1px solid var(--color-border);
    background: rgba(197, 160, 89, 0.06);
}
.socials a:hover { background: var(--gold); color: #110405; }
.footer-bottom { border-top: 1px solid var(--color-border); color: var(--ivory-muted); }

/* Foco acessível */
:focus-visible { outline-color: var(--gold) !important; }

/* Selection */
::selection { background: var(--gold); color: #110405; }

/* Badge "Curso novo" — destaque premium com shimmer dourado */
.badge.badge-curso-novo,
.badge-light.badge-curso-novo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.95rem;
    background: linear-gradient(135deg, #3A0B10 0%, #1A0508 100%);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
    box-shadow:
        0 0 0 1px rgba(197, 160, 89, 0.18) inset,
        0 6px 18px rgba(197, 160, 89, 0.25),
        0 0 22px rgba(197, 160, 89, 0.18);
    overflow: hidden;
    isolation: isolate;
    animation: cursoNovoPulse 2.6s ease-in-out infinite;
}
.badge-curso-novo::before {
    content: "✦";
    color: var(--gold-soft);
    font-size: 0.85rem;
    line-height: 1;
    text-shadow: 0 0 8px rgba(217, 189, 122, 0.6);
}
.badge-curso-novo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
        transparent 25%,
        rgba(244, 241, 234, 0.45) 50%,
        transparent 75%);
    transform: translateX(-120%);
    z-index: -1;
    animation: cursoNovoShimmer 3.2s ease-in-out infinite;
}

@keyframes cursoNovoPulse {
    0%, 100% {
        box-shadow:
            0 0 0 1px rgba(197, 160, 89, 0.18) inset,
            0 6px 18px rgba(197, 160, 89, 0.25),
            0 0 22px rgba(197, 160, 89, 0.18);
    }
    50% {
        box-shadow:
            0 0 0 1px rgba(217, 189, 122, 0.35) inset,
            0 8px 22px rgba(197, 160, 89, 0.45),
            0 0 32px rgba(217, 189, 122, 0.35);
    }
}

@keyframes cursoNovoShimmer {
    0%   { transform: translateX(-120%); }
    55%  { transform: translateX(120%); }
    100% { transform: translateX(120%); }
}

@media (prefers-reduced-motion: reduce) {
    .badge-curso-novo,
    .badge-curso-novo::after { animation: none !important; }
}
