/* ==========================================================================
   Variáveis e Reset
   ========================================================================== */
:root {
    /* Paleta de Cores */
    --primary: #038C65;
    --primary-dark: #027353;
    --primary-light: #038C5A;
    --accent: #73BFA3;
    --bg-light: #F1F2E9;
    --bg-white: #ffffff;

    /* Cores de Texto */
    --text-dark: #1a202c;
    --text-gray: #4a5568;
    --text-light: #718096;

    /* Tipografia */
    --font-body: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Sombras e Raios */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-primary: 0 10px 20px rgba(3, 140, 101, 0.3);
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    /* Previne overflow horizontal em mobile */
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-gray);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Prevent images from overflowing */
img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   Tipografia Global
   ========================================================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 28px;
    font-weight: 700;
    padding: 0 4px;
}

/* ==========================================================================
   Botões (CTAs)
   ========================================================================== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    line-height: 1.3;
}

.cta-button:active { transform: scale(0.98); }

.primary-cta {
    background-color: var(--primary);
    color: var(--bg-white);
    box-shadow: var(--shadow-primary);
}

.primary-cta:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(3, 140, 101, 0.4);
}

.secondary-cta {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.secondary-cta:hover {
    background-color: rgba(3, 140, 101, 0.05);
}

.large-cta {
    font-size: 17px;
    padding: 16px 24px;
}

@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(3, 140, 101, 0.4); }
    70%  { box-shadow: 0 0 0 15px rgba(3, 140, 101, 0); }
    100% { box-shadow: 0 0 0 0 rgba(3, 140, 101, 0); }
}

.pulse-anim { animation: pulse 2s infinite; }

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 100;
    word-wrap: break-word;
}

#countdown { color: var(--accent); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   Header (removido)
   ========================================================================== */

/* ==========================================================================
   SEÇÃO 1 — Hero "Revelando o Segredo"
   ========================================================================== */
.hero-secret {
    padding: 20px 0 40px;
    text-align: center;
    background: linear-gradient(160deg, #0a2e22 0%, #027353 50%, #038C65 100%);
    position: relative;
    overflow: hidden;
}

.hero-secret::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(115,191,163,0.08) 0%, transparent 60%);
    pointer-events: none;
}

.secret-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    color: #73BFA3;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    border: 1px solid rgba(115,191,163,0.3);
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-secret-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 20px;
    padding: 0 8px;
}

.hero-secret-title em {
    font-style: normal;
    color: #73BFA3;
}

.hero-secret-sub {
    font-size: 19px;
    color: rgba(255,255,255,0.8);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 0 12px;
}

/* Animação de revelação linha por linha */
.reveal-line {
    opacity: 0;
    transform: translateY(20px);
    animation: revealUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.35s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.85s; }
.delay-5 { animation-delay: 1.1s; }

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Efeito de revelação estilo "desfoque → nitidez" */
.secret-blur {
    animation: revealBlur 0.9s ease forwards !important;
}

@keyframes revealBlur {
    from {
        opacity: 0;
        filter: blur(10px);
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        filter: blur(0px);
        transform: translateY(0);
    }
}


/* ==========================================================================
   SEÇÃO 2 — VSL
   ========================================================================== */
.vsl-section {
    padding: 32px 0;
    background: linear-gradient(180deg, #027353 0%, #1a202c 100%);
    text-align: center;
}

.vsl-section .container {
    padding: 0 8px; /* Margem mínima nas laterais no celular */
}

.vsl-wrapper {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.vsl-inner {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 horizontal */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 2px solid var(--primary);
    background: #000;
}

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

#unmute-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    gap: 10px;
    padding: 20px;
}

#unmute-overlay i {
    font-size: 44px;
    color: var(--primary);
}

#unmute-overlay h3 {
    color: #fff;
    font-size: 18px;
    margin: 0;
    text-align: center;
}

#unmute-overlay p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin: 0;
    text-align: center;
}

/* ==========================================================================
   SEÇÃO 3 — CTA Principal
   ========================================================================== */
.cta-section {
    padding: 36px 0 40px;
    background: #1a202c;
    text-align: center;
}

.cta-section .container {
    max-width: 600px;
}

.cta-urgency-text {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
    font-weight: 500;
    padding: 0 8px;
}

.cta-urgency-text strong { color: #fff; }

.cta-microtrust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.cta-microtrust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
}

.cta-microtrust i {
    color: var(--accent);
}

/* ==========================================================================
   SEÇÃO 4 — Prova Social Rápida
   ========================================================================== */
.quick-proof-section {
    padding: 48px 0;
    background: var(--bg-white);
}

.proof-badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 16px 12px;
    flex-wrap: wrap;
}

.proof-badge {
    text-align: center;
    padding: 8px 16px;
    color: white;
    flex: 1;
    min-width: 90px;
}

.proof-badge span {
    display: block;
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.proof-badge small {
    font-size: 11px;
    opacity: 0.85;
    margin-top: 4px;
    display: block;
}

.proof-divider {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

.quick-proof-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: #fafafa;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #f0f0f0;
}

.print-img {
    width: 100%;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    object-fit: cover;
    border: 1px solid #eaeaea;
}

.stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 10px;
}

.testimonial-text p {
    color: var(--text-dark);
    font-weight: 500;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.5;
}

.testimonial-text span {
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--primary);
    font-size: 14px;
}

/* ==========================================================================
   SEÇÃO 5 — Quebra de Objeções
   ========================================================================== */
.objections-section {
    padding: 56px 0;
    background: var(--bg-light);
}

.objections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.objection-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.objection-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.objection-icon {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.objection-q {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-style: italic;
}

.objection-a {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* ==========================================================================
   SEÇÃO 6 — Bônus
   ========================================================================== */
.bonus-section {
    padding: 56px 0;
    background: linear-gradient(135deg, #027353 0%, #038C65 60%, #0aa87a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.bonus-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1px solid rgba(255,255,255,0.25);
}

.bonus-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    margin: 0 auto 16px;
    max-width: 700px;
    text-align: center;
    transition: transform 0.2s ease;
}

.bonus-card:hover { transform: translateY(-2px); }

.bonus-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.bonus-tag {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 4px;
}

.bonus-card-content h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 6px;
}

.bonus-card-content p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.bonus-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bonus-original {
    font-size: 13px;
    text-decoration: line-through;
    color: rgba(255,255,255,0.5);
}

.bonus-free {
    background: #FFB800;
    color: #1a202c;
    font-weight: 800;
    font-size: 13px;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.bonus-total {
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
}

.bonus-total strong { color: #FFD700; }

/* ==========================================================================
   SEÇÃO 7 — Dores Frequentes
   ========================================================================== */
.pain-section {
    padding: 56px 0;
    background: var(--bg-white);
}

.pain-subtitle {
    text-align: center;
    margin-bottom: 28px;
    font-size: 16px;
    color: var(--text-gray);
    padding: 0 8px;
}

.pain-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto 32px;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fafafa;
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid #f0f0f0;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.pain-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.pain-emoji {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1.3;
}

.pain-item p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.5;
}

.pain-cta-wrap {
    max-width: 500px;
    margin: 0 auto;
}

/* ==========================================================================
   SEÇÃO 8 — Como Usar (Facilidade)
   ========================================================================== */
.how-section {
    padding: 56px 0;
    background: var(--bg-light);
}

.how-header {
    text-align: center;
    margin-bottom: 36px;
}

.how-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.how-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

.how-step {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    flex: 1;
    width: 100%;
    max-width: 100%;
    position: relative;
    border: 1px solid #eaeaea;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.how-step-number {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
}

.how-step-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
    margin-top: 8px;
}

.how-step h4 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.how-step p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.5;
}

.how-step-time {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(3,140,101,0.08);
    padding: 4px 12px;
    border-radius: 20px;
}

.how-step-arrow {
    font-size: 20px;
    color: var(--primary);
    opacity: 0.4;
    transform: rotate(90deg);
}

.how-also {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
}

.how-also h3 {
    font-size: 18px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.how-also-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.how-also-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    padding: 10px 14px;
    background: #f8faf9;
    border-radius: var(--radius-md);
}

.how-also-item i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

/* ==========================================================================
   SEÇÃO 9 — Oferta / Compra
   ========================================================================== */
.offer-section {
    padding: 56px 0;
    background-color: var(--bg-light);
    scroll-margin-top: 10px;
}

.price-anchor {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 28px;
}

.anchor-text {
    font-size: 14px;
    color: #856404;
    line-height: 1.6;
}

.anchor-text strong { color: #7d5a00; }

.offer-urgency {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 10px 16px;
    text-align: center;
    margin-bottom: 28px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    color: #856404;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.offer-urgency i { color: #e67e22; }

.offer-subtitle {
    text-align: center;
    margin-bottom: 32px;
    font-size: 15px;
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}

.pricing-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 28px 20px;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #eaeaea;
    width: 100%;
    max-width: 400px;
}

.pricing-card.recommended {
    border: 4px solid var(--primary);
    box-shadow: var(--shadow-xl);
}

.badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 1px;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    text-align: center;
}

.price {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.price .currency {
    font-size: 20px;
    font-weight: 700;
    vertical-align: top;
    margin-top: 6px;
    display: inline-block;
}

.price .value {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -2px;
}

.price .period {
    font-size: 15px;
    color: var(--text-gray);
}

.total-price {
    text-align: center;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.features {
    list-style: none;
    margin-bottom: 24px;
}

.features li {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    align-items: flex-start;
}

.features i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ==========================================================================
   SEÇÃO 10 — Garantia
   ========================================================================== */
.guarantee-section {
    padding: 44px 0;
    background: var(--bg-white);
}

.guarantee-box {
    border: 2px dashed var(--primary);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    background: #f0faf6;
    max-width: 780px;
    margin: 0 auto;
}

.guarantee-img {
    width: 72px;
    flex-shrink: 0;
}

.guarantee-text strong {
    font-size: 18px;
    color: #027353;
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.guarantee-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 14px;
}

.guarantee-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    background: rgba(3,140,101,0.08);
    padding: 5px 10px;
    border-radius: 20px;
}

/* ==========================================================================
   SEÇÃO 11 — Histórias de Sucesso
   ========================================================================== */
.success-section {
    padding: 56px 0;
    background: var(--bg-light);
}

.success-header {
    text-align: center;
    margin-bottom: 32px;
}

.success-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.success-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
    padding: 0 8px;
}

.success-stories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.success-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 24px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid #eaeaea;
    position: relative;
}

.success-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.success-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.success-card-header strong {
    font-size: 15px;
    color: var(--text-dark);
    display: block;
}

.success-result {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(3,140,101,0.08);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.success-result i { color: var(--primary); }

.success-card > p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
    font-style: italic;
}

/* ==========================================================================
   SEÇÃO 12 — FAQ
   ========================================================================== */
.faq-section {
    padding: 56px 0;
    background-color: var(--bg-white);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover { box-shadow: var(--shadow-sm); }

.faq-question {
    width: 100%;
    text-align: left;
    padding: 16px 18px;
    background-color: var(--bg-white);
    border: none;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background-color: #f8fafc;
}

.faq-answer p {
    padding: 0 18px 18px;
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #1a202c;
    color: var(--text-light);
    text-align: center;
    padding: 32px 0;
}

.footer-logo {
    height: 28px;
    opacity: 0.5;
    margin-bottom: 16px;
}

footer p {
    font-size: 13px;
}

.footer-links {
    margin-top: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 13px;
}

/* ==========================================================================
   Sticky Bottom CTA (mobile)
   ========================================================================== */
#sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    border-top: 2px solid var(--primary);
}

/* ==========================================================================
   MOBILE FIX — Telas muito pequenas (< 375px)
   ========================================================================== */
@media (max-width: 374px) {
    .container {
        padding: 0 14px;
    }

    .hero-secret-title {
        font-size: 20px;
    }

    .hero-secret-sub {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    .cta-button {
        font-size: 14px;
        padding: 12px 16px;
    }

    .large-cta {
        font-size: 15px;
        padding: 14px 18px;
    }

    .proof-badge span {
        font-size: 18px;
    }

    .proof-badge small {
        font-size: 10px;
    }

    .price .value {
        font-size: 40px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .top-bar {
        font-size: 12px;
        padding: 8px 12px;
    }

    .vsl-wrapper {
        max-width: 100%;
    }
}

/* ==========================================================================
   Responsivo — Tablet e Desktop (768px+)
   ========================================================================== */
@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .cta-button {
        font-size: 18px;
        padding: 16px 24px;
    }

    .large-cta {
        font-size: 20px;
        padding: 20px 32px;
    }

    /* Hero */
    .hero-secret {
        padding: 60px 0 50px;
    }

    .hero-secret-title {
        font-size: 34px;
    }

    .hero-secret-sub {
        font-size: 18px;
    }

    .secret-label {
        font-size: 14px;
    }

    /* VSL */
    .vsl-wrapper {
        max-width: 800px;
    }

    #unmute-overlay i {
        font-size: 52px;
    }

    #unmute-overlay h3 {
        font-size: 22px;
    }

    /* CTA */
    .cta-urgency-text {
        font-size: 14px;
    }

    .cta-microtrust span {
        font-size: 13px;
    }

    /* Prova Social */
    .quick-proof-section {
        padding: 60px 0;
    }

    .proof-badge span {
        font-size: 28px;
    }

    .proof-badge small {
        font-size: 12px;
    }

    .proof-badge {
        padding: 0 24px;
    }

    .proof-divider {
        height: 40px;
    }

    .quick-proof-grid {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    .testimonial-card {
        width: 300px;
        padding: 24px;
    }

    /* Objeções */
    .objections-section {
        padding: 70px 0;
    }

    .objections-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .objection-card { padding: 24px; }

    .objection-icon { font-size: 32px; }

    .objection-q { font-size: 15px; }

    .objection-a { font-size: 14px; }

    /* Bônus */
    .bonus-section { padding: 70px 0; }

    .bonus-card {
        flex-direction: row;
        text-align: left;
        padding: 28px 24px;
        gap: 20px;
    }

    .bonus-card-content h3 { font-size: 20px; }

    .bonus-card-content p { font-size: 14px; }

    .bonus-price-row {
        justify-content: flex-start;
    }

    /* Dores */
    .pain-section { padding: 70px 0; }

    .pain-list { grid-template-columns: repeat(2, 1fr); gap: 16px; }

    .pain-item { padding: 18px 20px; }

    .pain-item p { font-size: 15px; }

    /* Como usar */
    .how-section { padding: 70px 0; }

    .how-header { margin-bottom: 48px; }

    .how-steps {
        flex-direction: row;
        align-items: flex-start;
        justify-content: center;
    }
    .how-step {
        max-width: 280px;
        padding: 28px 24px;
    }
    .how-step-arrow { transform: rotate(0deg); }

    .how-step h4 { font-size: 18px; }
    .how-step p { font-size: 14px; }

    .how-also {
        padding: 32px 28px;
    }
    .how-also h3 { font-size: 20px; }
    .how-also-grid { grid-template-columns: repeat(2, 1fr); }
    .how-also-item { font-size: 15px; }

    /* Oferta */
    .offer-section { padding: 80px 0; }

    .price-anchor {
        padding: 20px 28px;
    }

    .anchor-text { font-size: 15px; }

    .pricing-cards {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
    }
    .pricing-card {
        width: 100%;
        max-width: 360px;
        padding: 32px 24px;
    }

    .pricing-card h3 { font-size: 24px; }

    .price .currency { font-size: 24px; }
    .price .value { font-size: 56px; }
    .price .period { font-size: 16px; }

    .total-price { font-size: 14px; }

    .features li { font-size: 15px; }
    .features i { font-size: 18px; }

    /* Garantia */
    .guarantee-section { padding: 50px 0; }

    .guarantee-box {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 32px 28px;
        gap: 24px;
    }

    .guarantee-img { width: 80px; }

    .guarantee-text strong { font-size: 20px; }
    .guarantee-text p { font-size: 15px; }

    .guarantee-badges {
        justify-content: flex-start;
    }

    .guarantee-badges span {
        font-size: 13px;
        padding: 5px 12px;
    }

    /* Histórias */
    .success-section { padding: 70px 0; }

    .success-stories {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .success-card {
        padding: 28px 24px;
    }

    /* FAQ */
    .faq-section { padding: 70px 0; }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 15px;
    }

    /* Footer */
    footer { padding: 40px 0; }

    .footer-logo { height: 32px; }
}

@media (min-width: 1024px) {
    .hero-secret-title { font-size: 42px; }
    .section-title { font-size: 36px; }
}
