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

:root {
    --gold: #D4AF37;
    --gold-light: #E5C76B;
    --gold-dark: #A8851F;
    --black: #0A0A0A;
    --black-soft: #161616;
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F4F4F4;
    --gray-200: #E5E5E5;
    --gray-500: #737373;
    --gray-700: #404040;
    --gray-900: #171717;
    --radius: 7px;
    --radius-lg: 14px;
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-card-dark: 0 4px 24px rgba(0, 0, 0, 0.4);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.gold {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

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

/* ============ HERO ============ */
.hero {
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #000;
}

.hero-bg-blur {
    display: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, #000 0%, #000 25%, transparent 60%),
        url('hero-img.webp');
    background-size: auto, auto 100%;
    background-position: left center, right center;
    background-repeat: no-repeat, no-repeat;
    background-color: #000;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
}

.hero-fade {
    display: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}

.hero-pattern {
    position: absolute;
    top: 50%;
    left: 18%;
    transform: translate(-50%, -50%);
    width: 460px;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 700' preserveAspectRatio='xMidYMid meet'><g stroke='%23D4AF37' stroke-width='1' fill='none' opacity='0.1'><line x1='30' y1='20' x2='30' y2='680'/><line x1='60' y1='20' x2='60' y2='680'/><line x1='90' y1='20' x2='90' y2='680'/><line x1='120' y1='20' x2='120' y2='680'/><line x1='150' y1='20' x2='150' y2='680'/><line x1='180' y1='20' x2='180' y2='680'/></g><g stroke='%23D4AF37' stroke-width='1' fill='none' opacity='0.06'><line x1='20' y1='60' x2='190' y2='60'/><line x1='20' y1='140' x2='190' y2='140'/><line x1='20' y1='220' x2='190' y2='220'/><line x1='20' y1='300' x2='190' y2='300'/><line x1='20' y1='380' x2='190' y2='380'/><line x1='20' y1='460' x2='190' y2='460'/><line x1='20' y1='540' x2='190' y2='540'/><line x1='20' y1='620' x2='190' y2='620'/></g><g stroke='%23D4AF37' stroke-width='1.5' fill='none' opacity='0.15'><line x1='20' y1='60' x2='190' y2='60'/></g><g fill='%23D4AF37' opacity='0.22'><circle cx='60' cy='100' r='3.5'/><circle cx='150' cy='100' r='3.5'/><circle cx='90' cy='180' r='3.5'/><circle cx='180' cy='180' r='3.5'/><circle cx='120' cy='260' r='3.5'/><circle cx='30' cy='340' r='3.5'/><circle cx='90' cy='340' r='3.5'/><circle cx='150' cy='420' r='3.5'/><circle cx='60' cy='500' r='3.5'/><circle cx='120' cy='500' r='3.5'/><circle cx='90' cy='580' r='3.5'/></g></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 100%);
    mask-image: linear-gradient(to right, #000 0%, #000 70%, transparent 100%);
}

@media (max-width: 980px) {
    .hero-pattern { display: none; }
}

.hero-content {
    max-width: 560px;
    position: relative;
}

.tag {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--gold);
    font-weight: 600;
}

.vsl-wrapper {
    margin: 40px 0;
    width: 100%;
    max-width: 760px;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.vsl-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: #000;
}

.vsl-video iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Área de clique transparente sobre o vídeo mudo (isca).
   O único indicador visual é um pequeno ícone de som no canto. */
.vsl-unmute {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: opacity 0.4s ease;
}

/* Pílula discreta no canto inferior esquerdo: ícone + texto */
.vsl-unmute-pill {
    position: absolute;
    bottom: 14px;
    left: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    border-radius: 100px;
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.vsl-unmute-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.vsl-unmute-circle svg {
    width: 18px;
    height: 18px;
}

.vsl-unmute-text {
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.vsl-unmute:hover .vsl-unmute-pill {
    background: rgba(10, 10, 10, 0.8);
    border-color: rgba(255, 255, 255, 0.4);
}

.vsl-unmute.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Barra de progresso do vídeo (não-linear: corre no início, desacelera no fim) */
.vsl-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vsl-progress.visible {
    opacity: 1;
}

.vsl-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
    transition: width 0.25s linear;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 18px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.05em;
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.cta-large {
    padding: 22px 40px;
    font-size: 16px;
    width: 100%;
    justify-content: center;
}

.hero-trust {
    margin-top: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.trust-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 2px;
}


/* ============ DIVIDERS ============ */
.divider {
    display: block;
    line-height: 0;
    margin-top: -1px;
    margin-bottom: -1px;
    width: 100%;
    height: 100px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
}

/* ---- Variante 1: Wave suave (preto → branco) ---- */
.divider-to-white {
    background-color: var(--black);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,40 C360,100 1080,0 1440,60 L1440,100 L0,100 Z' fill='%23ffffff'/></svg>");
}

/* ---- Variante 2: Wave suave invertida (branco → preto) ---- */
.divider-to-black {
    background-color: var(--white);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,40 C360,100 1080,0 1440,60 L1440,100 L0,100 Z' fill='%230A0A0A'/></svg>");
}

.divider-to-white.wave-double {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,50 C240,10 480,90 720,50 C960,10 1200,90 1440,50 L1440,100 L0,100 Z' fill='%23ffffff'/></svg>");
}

.divider-to-black.wave-double {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,50 C240,10 480,90 720,50 C960,10 1200,90 1440,50 L1440,100 L0,100 Z' fill='%230A0A0A'/></svg>");
}

.divider-to-white.wave-deep {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,20 C480,120 960,-20 1440,40 L1440,100 L0,100 Z' fill='%23ffffff'/></svg>");
}

.divider-to-black.wave-deep {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,20 C480,120 960,-20 1440,40 L1440,100 L0,100 Z' fill='%230A0A0A'/></svg>");
}

.divider-to-white.wave-tilt {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,20 Q720,100 1440,20 L1440,100 L0,100 Z' fill='%23ffffff'/></svg>");
}

.divider-to-black.wave-tilt {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100' preserveAspectRatio='none'><path d='M0,20 Q720,100 1440,20 L1440,100 L0,100 Z' fill='%230A0A0A'/></svg>");
}

/* ============ SECTIONS ============ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-white {
    background: var(--white);
    color: var(--black);
}

.section-black {
    background: var(--black);
    color: var(--white);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 0, 0, 0.06);
    color: var(--gray-700);
    padding: 6px 14px;
    border-radius: var(--radius);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.section-tag.gold-tag {
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-desc {
    font-size: 1.125rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.section-desc.light { color: rgba(255, 255, 255, 0.7); }

/* ============ PROBLEMAS ============ */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.problem-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.problem-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.problem-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ BENEFÍCIOS ============ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
}

.benefit-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============ SLIDER ============ */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider {
    overflow: hidden;
    flex: 1;
}

.slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 24px;
}

.slide {
    flex: 0 0 calc((100% - 48px) / 3);
}

/* ============ MÓDULOS: TEXTO + SLIDER ============ */
.modules-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}

.modules-text .section-tag { margin-bottom: 20px; }
.modules-text .section-title { margin-bottom: 16px; }
.modules-text .section-desc { margin-bottom: 0; }

/* Slider de imagens (1 por vez) */
.modules-slider {
    width: 100%;
}

.mod-slider-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mod-slider-viewport {
    flex: 1;
    max-width: 300px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.mod-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.mod-slide-img {
    flex: 0 0 100%;
}

.mod-slide-img img {
    width: 100%;
    aspect-ratio: 320 / 480;
    object-fit: cover;
    display: block;
    background: #1a1a1a;
    user-select: none;
    -webkit-user-drag: none;
}

/* Setas fora da imagem, nas laterais — sem círculo, só o ícone */
.slider-btn.light.mod-arrow {
    flex-shrink: 0;
    width: auto;
    height: auto;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px;
}

.slider-btn.light.mod-arrow:hover {
    background: none;
    border: none;
    color: var(--gold);
    transform: scale(1.15);
}

.mod-arrow svg {
    width: 22px;
    height: 22px;
}

.modules-slider .slider-dots {
    margin-top: 20px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: var(--shadow-card);
    z-index: 5;
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.08);
}

.slider-btn.light {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.slider-btn.light:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.slider-dots .dot {
    /* área de toque de 24px (acessibilidade) com o ponto visual pequeno por dentro */
    width: 24px;
    height: 24px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-dots .dot::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-200);
    transition: var(--transition);
}

.slider-dots .dot.active::before {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

.slider-dots.light .dot::before { background: rgba(255, 255, 255, 0.2); }
.slider-dots.light .dot.active::before { background: var(--gold); }

/* ============ TESTIMONIAL ============ */
.testimonial-slide {
    flex: 0 0 calc((100% - 48px) / 3);
}

.testimonial-card {
    background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.testimonial-author strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ============ OFERTA ============ */
/* Separador "+" entre os cards da oferta (efeito de soma) */
.offer-plus {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1;
    padding: 24px 0;
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card de destaque: Área de membros */
.members-card {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--white), #fafafa);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.members-title {
    font-size: 1.6rem;
    color: var(--black);
    margin: 16px 0 16px;
    line-height: 1.2;
}

.members-text {
    color: var(--gray-500);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.members-image img {
    width: 100%;
    display: block;
    background: transparent;
}

/* Imagem em formato pôster (retrato) — menor e centralizada */
.members-image-poster {
    display: flex;
    justify-content: center;
}

.members-image-poster img {
    width: auto;
    max-width: 240px;
    border-radius: var(--radius);
    border: 2px solid var(--gold);
}

.members-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 12px;
}

.members-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
}

.offer-card {
    max-width: 640px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--white), #fafafa);
    border: 2px solid var(--gold);
    border-radius: var(--radius);
    padding: 48px 40px;
    position: relative;
    box-shadow: var(--shadow-gold);
}

.offer-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: var(--black);
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.offer-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 8px;
    margin-top: 8px;
}

.offer-subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.offer-list {
    list-style: none;
    margin-bottom: 32px;
}

.offer-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.95rem;
}

.offer-list li:last-child { border-bottom: none; }

.check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.offer-price {
    text-align: center;
    padding: 24px 0;
    margin-bottom: 24px;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.price-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 6px;
}

.price-old {
    color: var(--gray-500);
    text-decoration: line-through;
    font-size: 1.05rem;
    font-weight: 600;
}

.price-discount {
    display: inline-block;
    text-decoration: none;
    background: #dc2626;
    color: var(--white);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    padding: 3px 10px;
    border-radius: var(--radius);
}

.price-label {
    display: block;
    color: var(--gray-500);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-700);
}

.price-value {
    font-size: 4rem;
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    letter-spacing: -0.04em;
}

.price-cents {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-700);
}

.price-installment {
    display: block;
    color: var(--gray-500);
    font-size: 0.95rem;
}

.price-installment strong { color: var(--black); }

.price-save {
    display: inline-block;
    margin-top: 14px;
    background: rgba(34, 197, 94, 0.12);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius);
    padding: 8px 18px;
    font-size: 0.95rem;
    font-weight: 600;
}

.price-save strong {
    font-weight: 800;
}

/* ---- Gatilho de escassez ---- */
.offer-scarcity {
    margin-top: 20px;
    padding: 16px;
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--radius);
}

.scarcity-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #b91c1c;
    margin-bottom: 12px;
}

.scarcity-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #dc2626;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5);
    animation: scarcity-pulse 1.6s ease-out infinite;
}

@keyframes scarcity-pulse {
    0% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(220, 38, 38, 0); }
    100% { box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.scarcity-note {
    display: block;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 8px;
}

.offer-secure {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-top: 16px;
}

/* ============ SOBRE O PROFESSOR ============ */
#sobre {
    /* fica acima dos Depoimentos (também preto); reduz o vão entre as duas */
    padding-bottom: 40px;
}

.glass-box {
    max-width: 1040px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    padding: 48px;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: center;
}

.about-photo {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    box-shadow: var(--shadow-card-dark);
}

.about-photo-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius);
    padding: 10px 16px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.about-photo-badge .trust-stars {
    font-size: 15px;
}

.about-content .section-tag {
    margin-bottom: 16px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-text strong {
    color: var(--gold);
    font-weight: 600;
}

.about-sign {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
    margin-top: 24px;
}

/* ============ GARANTIA ============ */
.guarantee-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 48px;
    align-items: center;
}

.guarantee-seal {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
    position: relative;
    flex-shrink: 0;
}

.guarantee-seal::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 2px dashed var(--black);
    border-radius: 50%;
    opacity: 0.4;
}

.seal-inner {
    text-align: center;
    color: var(--black);
}

.seal-number {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.seal-text {
    display: block;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.3em;
    margin-top: 4px;
}

.guarantee-title {
    font-size: 2.25rem;
    color: var(--white);
    margin: 16px 0 20px;
}

.guarantee-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.guarantee-text strong { color: var(--gold); }

.guarantee-sign {
    color: var(--gold);
    font-style: italic;
    font-weight: 600;
}

/* ============ FAQ ============ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item[open] {
    border-color: var(--gold);
    box-shadow: var(--shadow-card);
}

.faq-item summary {
    padding: 20px 24px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    transition: var(--transition);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item summary:hover { color: var(--gold); }

.faq-answer {
    padding: 0 24px 20px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============ FOOTER ============ */
.footer {
    background: #050505;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-desc {
    line-height: 1.7;
    max-width: 380px;
    font-size: 0.95rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-col a {
    transition: var(--transition);
}

.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
    .problems-grid, .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide, .testimonial-slide { flex: 0 0 calc((100% - 24px) / 2); }

    .modules-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .glass-box {
        padding: 32px 24px;
        max-width: 560px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .members-card {
        padding: 32px 24px;
    }

    .guarantee-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 24px;
        gap: 32px;
    }

    .guarantee-seal { margin: 0 auto; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .section { padding: 70px 0; }
    .section-header { margin-bottom: 48px; }
    .hero-container { padding-top: 60px; padding-bottom: 60px; }
    .hero-title { font-size: 2.25rem; }

    .problems-grid, .benefits-grid {
        grid-template-columns: 1fr;
    }

    .slide, .testimonial-slide { flex: 0 0 100%; }

    .offer-card { padding: 36px 24px; }
    .price-value { font-size: 3rem; }

    .guarantee-seal { width: 140px; height: 140px; }
    .seal-number { font-size: 3rem; }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .divider { height: 50px; }
}
