/* General Styles & Color Palette */
:root {
    --primary-color: #00698f; /* Deep Blue */
    --secondary-color: #4ea8de; /* Light Blue */
    --accent-color: #ff7f50; /* Coral/Orange for CTA */
    --text-color: #333;
    --bg-color: #ffffff;
    --light-gray-bg: #f8f9fa;
    --success-color: #28a745;
    --font-main: 'Roboto', sans-serif;
}

/* === Global Box Sizing === */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    margin: 0;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

.container {
    max-width: 1140px; /* <<<<<< ALTERADO DE 900px */
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

h1, h2, h3 {
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
}

h1 { font-size: 2.5em; margin-bottom: 15px; line-height: 1.2; }
h2 { font-size: 2em; margin-bottom: 25px; margin-top: 40px; }
h3 { font-size: 1.5em; }

p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
}

/* Header & Navigation */
.main-header {
    background-color: var(--bg-color);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 1.5em; font-weight: bold; color: var(--primary-color); text-decoration: none; }

.nav-desktop ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-desktop li {
    margin-left: 25px;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: var(--accent-color);
}

.nav-mobile { display: none; }
.hamburger { display: none; cursor: pointer; }
.hamburger div { width: 25px; height: 3px; background-color: var(--primary-color); margin: 5px 0; transition: 0.4s; }

/* Hero Section */
.hero {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.9)), url('https://coreessencelab.shop/wp-content/uploads/2025/10/protecao_corpo2.jpg') no-repeat center center/cover;
}

.gift-box {
    background-color: #e0f7fa;
    border: 2px dashed var(--secondary-color);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.gift-box h2 {
    margin-top: 0;
    color: var(--primary-color);
}

.gift-box p {
    font-size: 1.2em;
}

/* Top Form Section */
.top-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    flex-wrap: wrap;
}

.top-form-image {
    flex: 1;
    max-width: 250px;
    min-width: 200px;
    filter: drop-shadow(0 0 15px rgba(0, 105, 143, 0.4));
}

.top-form-container {
    flex: 1.5;
    min-width: 300px;
}

/* === Estilo para o Preço no Formulário do Topo === */
.price-container-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin: 20px 0;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 8px;
}
.price-container-top .price-old,
.price-container-top .price-new {
    text-align: center;
}
.price-container-top .label {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 2px;
}
.price-container-top .price-old .amount {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 20px;
}
.price-container-top .price-new .amount {
    color: #212529;
    font-weight: 700;
    font-size: 28px;
    color: var(--primary-color); /* Destaque na cor principal */
}

/* Storytelling / Pain Section */
.story-section { padding: 40px 0; }
.story-content { text-align: center; }
.story-content .subtitle { font-size: 1.5em; color: var(--text-color); margin-bottom: 20px; }
.pain-point { font-size: 1.2em; font-weight: bold; color: #d9534f; margin-top: 20px; padding: 15px; background: #f9e4e4; border-left: 5px solid #d9534f; border-radius: 5px; }
.parasite-images { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 15px; margin: 30px 0; }
.parasite-images img { box-shadow: 0 4px 10px rgba(0,0,0,0.15); transition: transform 0.3s, box-shadow 0.3s; }
.parasite-images img:hover { transform: scale(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }

/* === Estilo FINAL para a Seção: Fontes de Infecção === */
section.infection-section {
    padding: 50px 20px;
    background-color: #d8d8d8 !important;
}

.infection-section h2 {
    margin-bottom: 15px;
}

.infection-section .subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.2em;
    color: var(--text-color);
}

.infection-list {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 25px;
}

.infection-list li {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 15px;
    padding-left: 10px;
}

/* Solution Section */
.solution-section { background-color: var(--bg-color); padding: 0px 0; }
.solution-grid { display: flex; align-items: center; gap: 40px; }
.solution-image { flex: 1; }
.solution-text { flex: 1.5; }
.solution-text ul { list-style: none; padding: 0; }
.solution-text li { padding-left: 30px; position: relative; margin-bottom: 15px; font-size: 1.1em; }
.solution-text li::before { content: '✔'; position: absolute; left: 0; color: var(--success-color); font-weight: bold; font-size: 1.2em; }

/* Ingredients Section */
.ingredients-section { padding: 50px 0; text-align: center; }
.ingredients-list { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 30px; }
.ingredient-item { background: var(--light-gray-bg); padding: 20px; border-radius: 10px; width: 200px; box-shadow: 0 2px 8px rgba(0,0,0,0.08); text-align: center; }
.ingredient-item h3 { margin-top: 0; font-size: 1.2em; }

/* Certificate & Social Proof */
.certificate-section, .social-proof-section { padding: 20px 0; text-align: center; }
.certificate-section.light-gray-bg { background-color: var(--light-gray-bg); }
.certificate-section img { max-width: 370px; border: 1px solid #ddd; padding: 5px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }
.social-proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-top: 30px; }
.proof-card { background: var(--bg-color); border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); overflow: hidden; }
.proof-card img { border-radius: 0; }
.proof-card p { padding: 15px; font-style: italic; color: #555; margin: 0; }
.proof-card span { display: block; padding: 0 15px 15px; font-weight: bold; color: var(--primary-color); }

/* FAQ Section */
.faq-section { padding: 50px 0; background-color: var(--light-gray-bg); }
.faq-item { margin-bottom: 15px; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.faq-question { width: 100%; background-color: var(--primary-color); color: white; border: none; padding: 15px 20px; text-align: left; font-size: 1.1em; cursor: pointer; position: relative; }
.faq-question::after { content: '+'; position: absolute; right: 20px; font-size: 1.5em; transition: transform 0.3s; }
.faq-question.active::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; background: var(--bg-color); padding: 0 20px; transition: max-height 0.5s ease-out, padding 0.5s ease-out; }
.faq-answer p { margin-top: 15px; }

/* Final Form Section */
.final-call-section { padding: 50px 20px; text-align: center; }
.final-call-section h2 { font-size: 2.2em; }
.final-call-section p { font-size: 1.3em; color: var(--text-color); }
.final-form-container { max-width: 460px; margin: 20px auto; }

/* Footer */
footer { background-color: var(--text-color); color: white; text-align: center; padding: 20px; font-size: 0.9em; }

/* === Form Styles (Global) === */
.form-frame { width: 100%; max-width: 460px; margin: 0 auto; padding: 0; background: transparent; }
.form-card { background: #fff; border: 2px solid var(--secondary-color); border-radius: 12px; padding: 20px; position: relative; box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); }
.form-header h2 { margin: 0; font-weight: 600; font-size: 22px; color: #333; text-align: center; }
.timer { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 15px 0 20px; font-weight: 600; font-size: 14px; }
.timer-box { background: #dc3545; color: #fff; padding: 8px 10px; border-radius: 4px; min-width: 35px; text-align: center; font-weight: 700; font-size: 16px; }
.price-container { margin: 20px 0; padding: 0 10px; display: flex; align-items: center; gap: 15px; }
.price-side-image { width: 100px; height: 100px; object-fit: contain; border-radius: 6px; flex-shrink: 0; }
.price-content { display: flex; justify-content: space-between; align-items: center; flex: 1; }
.price-old .label, .price-new .label { color: #6c757d; font-size: 12px; margin-bottom: 2px; }
.price-old .amount { color: #6c757d; text-decoration: line-through; font-size: 16px; }
.price-new .amount { color: #212529; font-weight: 700; font-size: 24px; }
.social-proof-form { margin: 20px 0; font-size: 12px; color: #6c757d; }
.social-item { display: flex; align-items: center; margin: 4px 0; }
.social-icon { width: 12px; height: 12px; margin-right: 6px; border-radius: 50%; }
.icon-people { background: #007bff; }
.icon-time { background: #28a745; }
.social-number { color: #212529; font-weight: 600; }
.online-dot { color: #28a745; margin-left: auto; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }
.form-group { margin: 15px 0; }
input[type="text"], input[type="tel"] { width: 100%; height: 50px; padding: 12px 16px; background: #fff; border: 1px solid #ced4da; border-radius: 6px; font-size: 16px; outline: none; color: #6c757d; }
input::placeholder { color: #adb5bd; }
input:focus { border-color: #80bdff; box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, .25); }
.btn-submit { width: 100%; height: 50px; margin: 20px 0 15px; border: none; border-radius: 25px; background: var(--accent-color); color: #fff; font-size: 16px; font-weight: 700; cursor: pointer; text-transform: uppercase; letter-spacing: 0.5px; transition: background-color 0.3s; }
.btn-submit:hover { background: color-mix(in srgb, var(--accent-color) 90%, black); }
.footer-note, .footer-disclaimer { text-align: center; color: #6c757d; font-size: 11px; }
.footer-note { margin: 15px 0 5px; }
.footer-disclaimer { margin-top: 10px; }

/* === Top Horizontal Form (Desktop) === */
#top-form .orderForm {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
#top-form .form-group {
    flex: 1;
    margin: 0;
}
#top-form .btn-submit {
    flex: 1 1 auto;
    margin: 0;
    height: 50px;
    padding: 0 15px;
    white-space: nowrap;
}

/* === Estilo para a Nova Seção: Doenças === */
.diseases-section {
    padding: 50px 20px;
    background-color: #ffffff; /* Fundo branco para contrastar com a seção anterior */
}

.diseases-section .subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 1.2em;
    color: var(--text-color);
}

.diseases-grid {
    display: grid;
    /* Cria 3 colunas no desktop, 2 no tablet e 1 no mobile */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Espaço entre os cards */
}

.disease-card {
    background: #cfcfcf;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden; /* Garante que a imagem não saia dos cantos arredondados */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.disease-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.disease-card img {
    width: 100%;
    height: 200px; /* Altura fixa para todas as imagens */
    object-fit: cover; /* Garante que a imagem preencha o espaço sem distorcer */
    border-radius: 0; /* Remove o border-radius da imagem para que ela se ajuste ao card */
}

.disease-card-content {
    padding: 25px;
    flex-grow: 1; /* Faz o conteúdo textual ocupar o espaço restante */
}

.disease-card h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
    text-align: center;
    color: var(--primary-color);
}

.disease-card p {
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.6;
    text-align: left;
}
/* === Estilo para a Nova Seção: O Que é Detoxil Water === */
.product-intro {
    background: #d8d8d8;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 40px; /* Espaço entre a imagem e o texto */
    margin-bottom: 60px; /* Espaço antes da próxima grade de benefícios */
    padding: 20px 0;
}

.product-intro-image {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.product-intro-image img {
    /* Efeito de sombra sutil para destacar o produto */
    filter: drop-shadow(0 5px 15px rgba(0, 105, 143, 0.2));
}

.product-intro-text {
    flex: 1.5; /* Dá mais espaço para o texto */
    text-align: left;
}

.product-intro-text h3 {
    text-align: left;
    font-size: 1.8em;
    margin-top: 0;
    margin-bottom: 15px;
}

.product-intro-text p {
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Estilos para os Novos Depoimentos de Texto */
.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
    text-align: left;
}

.testimonial-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #eee;
}

.testimonial-header {
    margin-bottom: 15px;
}

.user-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
}

.user-info strong {
    font-size: 1.1em;
    color: var(--primary-color);
}

.verified-status {
    display: flex;
    align-items: center;
    font-size: 0.85em;
    color: #28a745; /* Verde para compra verificada */
    font-weight: 600;
    margin-top: 3px;
}

.check-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.stars {
    color: #ffc107; /* Cor dourada para as estrelas */
    font-size: 1.1em;
    letter-spacing: 2px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.5;
    font-size: 0.95em;
    margin: 0;
}

/* Ajuste mobile */
@media (max-width: 768px) {
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

/* === Responsive Section === */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.7em; }
    .nav-desktop { display: none; }
    .hamburger { display: block; }
    .nav-mobile { display: block; position: absolute; top: 60px; right: 0; background-color: white; width: 100%; max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; box-shadow: 0 8px 16px rgba(0,0,0,0.1); }
    .nav-mobile.open { max-height: 300px; }
    .nav-mobile ul { list-style: none; padding: 0; margin: 0; flex-direction: column; }
    .nav-mobile li { text-align: center; border-bottom: 1px solid #f0f0f0; }
    .nav-mobile a { display: block; padding: 15px; text-decoration: none; color: var(--primary-color); }
    .open .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .open .line2 { opacity: 0; }
    .open .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    .top-form-section { flex-direction: column; }
    .solution-grid { flex-direction: column; }

    /* === Top Form (Mobile) === */
    #top-form .orderForm {
        flex-direction: column;
        gap: 12px;
    }
    #top-form .form-group,
    #top-form .btn-submit {
        width: 100%;
        margin: 0 !important;
    }

        .product-intro {
        flex-direction: column; /* Coloca a imagem em cima do texto */
        text-align: center;
        gap: 30px;
    }

    .product-intro-text h3,
    .product-intro-text p {
        text-align: center;
    }

    .product-intro-text h3 {
        font-size: 1.6em;
    }

        .social-proof-grid {
        /* Centraliza os cards quando houver espaço sobrando */
        justify-items: center;
    }

    .proof-card {
        /* Define a largura máxima que cada card pode ter */
        max-width: 320px;
    }
/* === Ajuste para os Cards de Doenças no Mobile === */
    .diseases-grid {
        /* Centraliza os cards na tela */
        justify-items: center;
    }

    .disease-card {
        /* Define a largura máxima para o card não esticar demais */
        max-width: 340px;
    }
}