/* ==========================================================================
   1. Base Styles & Variáveis
   ========================================================================== */
:root {
    --primary-green: #25D366;
    --dark-green: #128C7E;
    --light-bg: #F0F2F5; /* Fundo mais próximo do WhatsApp Web */
    --text-dark: #333333;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --border-color: #dee2e6;
    --white: #ffffff;
    --gradient-hero: linear-gradient(145deg, #008069, #005C4B); /* Gradiente do Info */
    --form-header-green: #00A884; /* Verde do cabeçalho do formulário */
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 12px; /* Bordas mais arredondadas */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
}

section {
    padding: 80px 0;
}

/* ==========================================================================
   2. Cabeçalho (Header)
   ========================================================================== */
header {
    background-color: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: var(--dark-green);
    font-size: 28px;
}

.logo p {
    font-size: 14px;
    color: var(--text-muted);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-green);
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

/* ==========================================================================
   3. Seção Principal (Hero) - NOVO LAYOUT
   ========================================================================== */
#hero {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: stretch; /* Faz as colunas terem a mesma altura */
}

/* 3.1 Coluna do Formulário (Esquerda) */
.form-column {
    flex: 1;
    max-width: 550px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden; /* Garante que os cantos internos fiquem arredondados */
    display: flex;
    flex-direction: column;
}

.form-header {
    background-color: var(--form-header-green);
    color: var(--white);
    text-align: center;
    padding: 25px;
}

.form-header .promo-title {
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
}
.form-header .promo-price {
    font-size: 22px;
    margin-top: 5px;
}
.form-header .promo-price strong {
    font-weight: 700;
}
.form-header .promo-timer {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.form-body {
    padding: 30px 40px;
    flex-grow: 1;
}

.form-title {
    text-align: left;
    font-size: 28px;
    color: var(--text-dark);
}

.form-subtitle {
    text-align: left;
    color: var(--text-muted);
    margin: 5px 0 25px 0;
    font-size: 16px;
}

.form-body form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-body form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 5px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-body form input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2);
}

.email-info {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.btn-submit {
    width: 100%;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
}

.btn-submit:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

.secure-info {
    text-align: center;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 12px;
}


/* 3.2 Coluna de Informações (Direita) */
.info-column {
    flex: 1.2;
    background: var(--gradient-hero);
    color: var(--text-light);
    border-radius: var(--border-radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-image-wrapper {
    margin-bottom: 30px;
}
.hero-image-wrapper img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.offer-tag {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-block;
    align-self: flex-start; /* Alinha o tag à esquerda */
    margin-bottom: 20px;
    font-weight: 600;
}
.fire-emoji {
    font-size: 1.2em;
}

.info-column h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.info-column .highlight {
    background-color: #ffeb3b;
    color: var(--text-dark);
    padding: 2px 10px;
    border-radius: 5px;
}

.info-column p {
    font-size: 18px;
    margin-bottom: 15px;
    max-width: 500px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item strong {
    display: block;
    font-size: 24px;
    color: var(--white);
}


/* ==========================================================================
   4. Estilos Gerais das Seções (Como Funciona, FAQ, etc.)
   ========================================================================== */
section:not(#hero) {
    background-color: var(--white);
}

section:nth-of-type(even):not(#hero) {
    background-color: var(--light-bg);
}

h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--dark-green);
}

.subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

/* ==========================================================================
   5. Seção "Como Funciona"
   ========================================================================== */
#como-funciona .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.step {
    padding: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.step h3 {
    margin-bottom: 10px;
    font-size: 20px;
    color: var(--text-dark);
}

.step p {
    color: var(--text-muted);
}

/* ==========================================================================
   6. Seção de Depoimentos (Testimonials)
   ========================================================================== */
#testimonials .testimonial-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

#testimonials .card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-green);
    color: var(--text-muted);
}

#testimonials .card b {
    display: block;
    margin-top: 15px;
    color: var(--text-dark);
}

/* ==========================================================================
   7. Seção de Perguntas Frequentes (FAQ)
   ========================================================================== */
#faq .container {
    max-width: 800px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--white);
    overflow: hidden;
}

details > summary {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Esconde o marcador padrão */
    position: relative;
    transition: background-color 0.3s ease;
}

details > summary:hover {
    background-color: #f8f9fa;
}

/* Marcador customizado (+/-) */
details > summary::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

details[open] > summary::after {
    content: '−';
}

details > p {
    padding: 0 20px 20px 20px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
}

/* ==========================================================================
   8. Rodapé (Footer)
   ========================================================================== */
footer {
    background-color: #1c1c1c;
    color: #a0a0a0;
    padding-top: 60px;
}

footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li, .footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.footer-bottom p {
    margin: 5px 0;
}

.footer-bottom a {
    color: #a0a0a0;
    text-decoration: none;
}
.footer-bottom a:hover {
    color: var(--white);
}

/* ==========================================================================
   9. Estilos Responsivos
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column-reverse; /* Coloca o info-column em cima */
    }
    .form-column {
        max-width: 100%;
    }
    .info-column {
        text-align: center;
        align-items: center;
    }
    .info-column h1 {
        font-size: 42px;
    }
    #como-funciona .steps,
    #testimonials .testimonial-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1, .info-column h1 {
        font-size: 38px !important;
    }
    h2 {
        font-size: 30px;
    }
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 25px;
    }
    .form-body {
        padding: 30px 20px;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    #como-funciona .steps,
    #testimonials .testimonial-cards {
        grid-template-columns: 1fr;
    }
}
/* ==========================================================================
   1. Base Styles & Variáveis
   ========================================================================== */
:root {
    --primary-green: #25D366;
    --dark-green: #128C7E;
    --light-green-bg: #E6F8F2;
    --light-bg: #F0F2F5;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --border-color: #dee2e6;
    --white: #ffffff;
    --danger-red: #e74c3c;
    --gradient-hero: linear-gradient(145deg, #008069, #005C4B);
    --form-header-green: #00A884;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; background-color: var(--white); color: var(--text-dark); line-height: 1.6; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2, h3 { font-weight: 700; }
section { padding: 80px 0; }

/* ==========================================================================
   2. Cabeçalho (Header)
   ========================================================================== */
header { background-color: var(--white); padding: 15px 0; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo h1 { color: var(--dark-green); font-size: 28px; }
.logo p { font-size: 14px; color: var(--text-muted); }
nav ul { list-style: none; display: flex; gap: 30px; }
nav a { text-decoration: none; color: var(--text-dark); font-weight: 600; transition: color 0.3s ease; }
nav a:hover { color: var(--primary-green); }
.btn-primary { background-color: var(--primary-green); color: var(--white); padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: background-color 0.3s ease, transform 0.2s ease; }
.btn-primary:hover { background-color: var(--dark-green); transform: translateY(-2px); }

/* ==========================================================================
   3. Seção Principal (Hero) - VISUAL ATUALIZADO
   ========================================================================== */
#hero { background-color: var(--light-bg); padding: 60px 0; }
.hero-content { display: flex; gap: 40px; align-items: stretch; }

/* 3.1 Coluna do Formulário (Esquerda) */
.form-column { flex: 1; max-width: 550px; background-color: var(--white); border-radius: var(--border-radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; }
.form-header { background-color: var(--form-header-green); color: var(--white); text-align: center; padding: 25px; }
.form-header .promo-title { font-size: 16px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.form-header .promo-price { font-size: 22px; margin-top: 5px; font-weight: 500; }
.form-header .promo-price strong { font-weight: 700; }
.form-header .promo-timer { font-size: 14px; opacity: 0.9; margin-top: 5px; }
.form-body { padding: 30px 40px; flex-grow: 1; }
.form-title { text-align: left; font-size: 28px; color: var(--text-dark); }
.form-subtitle { text-align: left; color: var(--text-muted); margin: 5px 0 30px 0; font-size: 16px; }
.form-body form label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 14px; }
.form-body form input { width: 100%; padding: 12px 15px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 16px; font-family: 'Poppins', sans-serif; transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.form-body form input:focus { outline: none; border-color: var(--primary-green); box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.2); }
.input-info { font-size: 12px; color: var(--text-muted); margin: 5px 0 20px 0; display: flex; align-items: center; gap: 5px; }

/* Novo Bloco de Preço Dentro do Formulário */
.promo-price-box { display: flex; justify-content: space-between; align-items: center; background-color: var(--light-green-bg); border: 1px solid var(--primary-green); border-radius: 8px; padding: 15px; margin: 25px 0; }
.price-details .old-price { text-decoration: line-through; color: var(--text-muted); font-size: 14px; }
.price-details .new-price { font-size: 22px; color: var(--dark-green); font-weight: 700; }
.price-details .guarantee { font-size: 14px; color: var(--dark-green); font-weight: 500; }
.discount-tag { text-align: center; }
.discount-tag .off-value { background-color: var(--danger-red); color: var(--white); padding: 4px 10px; border-radius: 5px; font-weight: 700; font-size: 14px; }
.discount-tag .units-left { font-size: 12px; color: var(--text-muted); margin-top: 5px; display: block; }

/* Botão e Badges de Segurança */
.btn-submit { width: 100%; background-color: var(--primary-green); color: var(--white); padding: 15px; border: none; border-radius: 8px; font-size: 18px; font-weight: 700; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; display: flex; align-items: center; justify-content: center; gap: 10px; text-transform: uppercase; letter-spacing: 1px; }
.btn-submit:hover { background-color: var(--dark-green); transform: translateY(-2px); }
.security-badges { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 20px; font-size: 12px; color: var(--text-muted); }
.security-badges span { display: flex; align-items: center; gap: 5px; }
.secure-info { text-align: center; margin-top: 15px; color: var(--text-muted); font-size: 11px; line-height: 1.5; }

/* 3.2 Coluna de Informações (Direita) */
.info-column { flex: 1.2; background: var(--gradient-hero); color: var(--text-light); border-radius: var(--border-radius); padding: 40px; display: flex; flex-direction: column; justify-content: center; }
.hero-image-wrapper { margin-bottom: 30px; }
.hero-image-wrapper img { max-width: 100%; border-radius: var(--border-radius); box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
.offer-tag { background-color: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--white); padding: 8px 16px; border-radius: 50px; display: inline-block; align-self: flex-start; margin-bottom: 20px; font-weight: 600; }
.fire-emoji { font-size: 1.2em; }
.info-column h1 { font-size: 52px; line-height: 1.2; margin-bottom: 20px; }
.info-column .highlight { background-color: #ffeb3b; color: var(--text-dark); padding: 2px 10px; border-radius: 5px; }
.info-column p { font-size: 18px; margin-bottom: 15px; max-width: 500px; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.stat-item { background-color: rgba(255, 255, 255, 0.1); padding: 15px; border-radius: var(--border-radius); text-align: center; border: 1px solid rgba(255, 255, 255, 0.2); }
.stat-item strong { display: block; font-size: 24px; color: var(--white); }

/* ==========================================================================
   4. Estilos Gerais das Seções (Como Funciona, FAQ, etc.)
   ========================================================================== */
section:not(#hero) { background-color: var(--white); }
section:nth-of-type(even):not(#hero) { background-color: var(--light-bg); }
h2 { text-align: center; font-size: 36px; margin-bottom: 15px; color: var(--dark-green); }
.subtitle { text-align: center; color: var(--text-muted); font-size: 18px; max-width: 700px; margin: 0 auto 60px auto; }

/* ... (O CSS das seções "Como Funciona", "Depoimentos", "FAQ" e "Footer" continua aqui) ... */
/* Se você não alterou o CSS anterior que eu enviei para essas seções, ele funcionará perfeitamente. */
/* Colei ele aqui novamente para garantir que seu arquivo fique completo. */

/* 5. Seção "Como Funciona" */
#como-funciona .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.step { padding: 20px; }
.step-icon { width: 60px; height: 60px; background-color: var(--primary-green); color: var(--white); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; margin-bottom: 20px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4); }
.step h3 { margin-bottom: 10px; font-size: 20px; color: var(--text-dark); }
.step p { color: var(--text-muted); }

/* 6. Seção de Depoimentos (Testimonials) */
#testimonials .testimonial-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
#testimonials .card { background: var(--white); padding: 30px; border-radius: var(--border-radius); box-shadow: var(--shadow); border-top: 4px solid var(--primary-green); color: var(--text-muted); }
#testimonials .card b { display: block; margin-top: 15px; color: var(--text-dark); }

/* 7. Seção de Perguntas Frequentes (FAQ) */
#faq .container { max-width: 800px; }
.faq-item { margin-bottom: 15px; border: 1px solid var(--border-color); border-radius: var(--border-radius); background-color: var(--white); overflow: hidden; }
details > summary { padding: 20px; font-weight: 600; cursor: pointer; list-style: none; position: relative; transition: background-color 0.3s ease; }
details > summary:hover { background-color: #f8f9fa; }
details > summary::after { content: '+'; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 24px; font-weight: 400; color: var(--primary-green); transition: transform 0.3s ease;}
details[open] > summary::after { content: '−'; }
details > p { padding: 0 20px 20px 20px; color: var(--text-muted); border-top: 1px solid var(--border-color); }

/* 8. Rodapé (Footer) */
footer { background-color: #1c1c1c; color: #a0a0a0; padding-top: 60px; }
footer .container { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; }
.footer-col h3 { color: var(--white); margin-bottom: 20px; font-size: 18px; }
.footer-col ul { list-style: none; }
.footer-col li, .footer-col p { margin-bottom: 10px; font-size: 14px; }
.footer-col a { color: #a0a0a0; text-decoration: none; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--primary-green); }
.footer-bottom { text-align: center; padding: 20px 0; margin-top: 40px; border-top: 1px solid #333; font-size: 14px; }
.footer-bottom p { margin: 5px 0; }
.footer-bottom a { color: #a0a0a0; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ==========================================================================
   9. Estilos Responsivos
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content { flex-direction: column-reverse; }
    .form-column { max-width: 100%; }
    .info-column { text-align: center; align-items: center; }
    .info-column h1 { font-size: 42px; }
    #como-funciona .steps, #testimonials .testimonial-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    h1, .info-column h1 { font-size: 38px !important; }
    h2 { font-size: 30px; }
    header .container { flex-direction: column; gap: 20px; }
    header nav ul { flex-wrap: wrap; justify-content: center; gap: 15px 25px; }
    .form-body { padding: 30px 20px; }
    .stats { grid-template-columns: 1fr; }
    #como-funciona .steps, #testimonials .testimonial-cards { grid-template-columns: 1fr; }
}