/* --- RESET E CONFIGURAÇÕES GERAIS --- */
:root {
    --primary-color: #2c3e50;
    --background-color: #fdfdfd;
    --cta-color: #f39c12;
    --cta-hover-color: #e67e22;
    --guarantee-bg: #f1f8e9;
    --guarantee-border: #c5e1a5;
    --headline-top-spacing: 30px;
    --headline-bottom-spacing: 60px;
    --page-background: #4097B2;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    line-height: 1.6;
    background-color: var(--page-background);
}

.vsl-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* --- ESTILOS DAS SEÇÕES --- */
section {
    padding: 40px 0;
    text-align: center;
}

.section-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 20px;
}

/* --- PARTE 1: PRIMEIRA DOBRA --- */
.fold {
    padding-top: var(--headline-top-spacing);
    padding-bottom: var(--headline-bottom-spacing);
    color: white;
}

/* Removemos a sombra do texto já que o fundo é sólido */
.fold .headline, .fold .subheadline, .fold .video-instruction {
    text-shadow: none;
}

.fold .headline {
    font-size: 2.5em;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
}

.fold .subheadline {
    font-size: 1.2em;
    font-weight: 400;
    margin-bottom: 20px;
    opacity: 0.95;
}

/* Wrapper do vídeo */
.vturb-wrapper {
    margin: 0 auto 25px auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    border-radius: 8px; 
    overflow: hidden; 
    max-width: 400px;
}

/* --- CAIXA DE PREÇO --- */
.price-box-fold {
    background-color: rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 25px;
    margin: 30px auto 0 auto;
    max-width: 500px;
    text-align: center;
}

.price-box-fold .price-text {
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.price-box-fold .main-price {
    font-size: 3em;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 5px;
    color: #fff;
}

.price-box-fold .sub-price {
    font-size: 1.1em;
    margin-bottom: 20px;
    opacity: 0.9;
}

.price-box-fold .cta-button {
    font-size: 1.2em;
    margin-top: 0;
}

/* --- BOTÃO DE COMPRA (CTA) --- */
.cta-container {
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--cta-color);
    color: white;
    font-size: 1.5em;
    font-weight: 900;
    text-decoration: none;
    padding: 20px 40px;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-align: center;
}

.cta-button:hover {
    background-color: var(--cta-hover-color);
    transform: translateY(-3px);
}

.secure-info {
    font-size: 0.8em;
    margin-top: 10px;
    opacity: 0.8;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Classes para o JS controlar a visibilidade */
.hidden {
    display: none;
}

.visible {
    display: block;
    animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- SEÇÕES DE CONTEÚDO (OFERTA, PROVA SOCIAL, ETC.) --- */
/* Transformamos as outras seções em "cartões" para garantir a legibilidade */
.offer-summary,
.social-proof,
.testimonials,
.guarantee-box,
.faq,
.final-cta,
footer {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* --- PARTE 2: RESUMO DA OFERTA --- */
.offer-summary p {
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.offer-stack {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.offer-stack li {
    margin-bottom: 15px;
    font-size: 1.1em;
}
.offer-stack .value {
    color: #555;
}

.price-anchor {
    margin: 40px 0;
    font-size: 1.2em;
}
.price-anchor .strikethrough {
    text-decoration: line-through;
    color: #999;
}
.price-anchor .special-offer {
    font-size: 1.8em;
    font-weight: 900;
    color: #27ae60;
    margin: 5px 0;
}

/* --- PARTE 3: PROVA SOCIAL --- */
.testimonials {
    margin-bottom: 40px;
}

.testimonial-card {
    background-color: #f9f9f9;
    border-left: 5px solid var(--cta-color);
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
}
.testimonial-card p {
    font-style: italic;
    margin-bottom: 10px;
}
.testimonial-card span {
    font-weight: 700;
}

.guarantee-box {
    background-color: var(--guarantee-bg);
    border: 2px dashed var(--guarantee-border);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}
.guarantee-seal {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.faq {
    max-width: 700px;
    margin: 40px auto;
    text-align: left;
}

.faq details {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.faq summary {
    padding: 15px;
    font-weight: 700;
    cursor: pointer;
    outline: none;
}

.faq details[open] summary {
    border-bottom: 1px solid #ddd;
}

.faq p {
    padding: 15px;
    line-height: 1.5;
}

.final-cta .last-call-title {
    font-size: 1.5em;
    margin-bottom: 20px;
}

/* --- RODAPÉ --- */
footer {
    text-align: center;
    padding: 30px 10px;
    border-top: 1px solid #eee;
    font-size: 0.8em;
    opacity: 0.9;
}

footer a {
    color: var(--primary-color);
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 600px) {
    .fold .headline {
        font-size: 1.8em;
    }
    .fold .subheadline, .cta-button {
        font-size: 1.1em;
    }
    .cta-button {
        padding: 15px 25px;
    }
    .section-title {
        font-size: 1.5em;
    }
}