/* =========================================
   1. VARIÁVEIS E GERAL
   ========================================= */
:root {
    --primary-color: #2e7d32; /* Verde Saúde */
    --secondary-color: #4caf50; 
    --accent-color: #ff9800; /* Laranja da embalagem */
    --text-color: #333;
    --bg-color: #ffffff;
    --light-gray-bg: #f8f9fa;
    --success-color: #28a745;
    --font-main: 'Roboto', sans-serif;
}

*, *::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;
    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;
}

/* =========================================
   2. HEADER & NAVEGAÇÃO
   ========================================= */
.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; 
}

/* =========================================
   3. HERO & FORMULÁRIO TOPO
   ========================================= */
.hero {
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.95));
}

.top-form-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-form-image {
    flex: 1;
    max-width: 250px;
    min-width: 200px;
    filter: drop-shadow(0 0 15px rgba(46, 125, 50, 0.3));
}

.top-form-container { flex: 1.5; min-width: 300px; }

/* Cards de Sintomas */
.symptoms-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 30px;
}

.symptom-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
}

.symptom-card:hover { transform: translateY(-5px); }

.symptom-img img {
    width: 130px;
    height: 150px;
    object-fit: cover;
    display: block;
}

.symptom-text { padding: 15px; text-align: center; background: #fff; }
.symptom-text p { font-size: 0.95em; color: #444; line-height: 1.4; margin: 0; }

.pain-point-v2 {
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    background: #d9534f;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}

.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 .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: var(--primary-color); font-weight: 700; font-size: 28px; }

/* Estilo do formulário */
.orderForm { display: flex; flex-direction: column; gap: 10px; max-width: 400px; }

#top-form .orderForm { flex-direction: row; flex-wrap: wrap; align-items: center; max-width: 100%; }
#top-form .form-group { flex: 1; margin: 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; 
}

.btn-submit { 
    width: 100%; 
    height: 50px; 
    border: none; 
    border-radius: 25px; 
    background: var(--accent-color); 
    color: #fff; 
    font-size: 16px; 
    font-weight: 700; 
    cursor: pointer; 
    text-transform: uppercase; 
    transition: background-color 0.3s, transform 0.2s; 
}

#top-form .btn-submit { flex: 1 1 auto; white-space: nowrap; padding: 0 20px; }

.btn-submit:hover { 
    background: #e68a00;
    transform: scale(1.03);
}

/* =========================================
   4. SEÇÕES DE CONTEÚDO
   ========================================= */
.story-section { padding: 40px 0; }
.story-content { text-align: center; }

.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; 
}

.diseases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.disease-card { 
    background: #fff; 
    border-radius: 12px; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
    overflow: hidden; 
    display: flex; 
    flex-direction: column; 
    transition: transform 0.3s; 
}
.disease-card:hover { transform: translateY(-5px); }
.disease-card-content { padding: 25px; flex-grow: 1; text-align: center; }

.solution-section { background-color: var(--bg-color); padding: 40px 0; }
.solution-grid { display: flex; align-items: center; gap: 40px; }

.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; }

.product-intro { background: var(--light-gray-bg); border-radius: 15px; display: flex; align-items: center; gap: 40px; margin-bottom: 60px; padding: 40px; }
.product-intro-image { flex: 1; max-width: 300px; text-align: center; }
.product-intro-text { flex: 1.5; text-align: left; }

.ingredients-section { padding: 50px 0; text-align: center; background-color: var(--light-gray-bg); }
/* Ajuste na lista para os itens não ficarem colados */
.ingredients-list {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Estilo do Card do Ingrediente */
.ingredient-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    width: 220px; /* Largura fixa para manter o padrão */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.ingredient-item:hover {
    transform: translateY(-5px);
}


/* =========================================
   5. SEÇÕES DE CONVERSÃO & EXPERT
   ========================================= */
.expert-section { padding: 60px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.expert-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #fdfdfd;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
}

.expert-image-container { flex: 1; max-width: 250px; }
.expert-photo { border-radius: 10px; width: 100%; object-fit: cover; }
.expert-content { flex: 2; position: relative; }

.steps-section { padding: 60px 0; background-color: #fff; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; margin-top: 40px; }
.step-icon { font-size: 40px; color: var(--primary-color); margin-bottom: 20px; height: 70px; width: 70px; line-height: 70px; border-radius: 50%; background: #f0f8ff; margin: 0 auto 20px; }

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.proof-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: left;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
}

.proof-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--secondary-color);
}

.review-author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    margin: 0;
    font-size: 1.1em;
    font-weight: 700;
    color: var(--primary-color);
}

.verified-purchase {
    margin: 0;
    font-size: 0.85em;
    color: #555;
}

.verified-purchase .checkmark {
    color: #28a745;
    font-weight: bold;
}

.review-rating {
    color: #ffc107; /* Cor amarela das estrelas */
    font-size: 1.2em;
    margin-bottom: 10px;
}

.review-text {
    font-style: italic;
    color: #444;
    line-height: 1.5;
    margin: 0;
}
/* FAQ */
.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; cursor: pointer; }

/* Footer */
footer { background-color: var(--text-color); color: white; text-align: center; padding: 20px; font-size: 0.9em; }

/* =========================================
   6. FORMULÁRIO FINAL & TIMER
   ========================================= */
.final-call-section { padding: 50px 20px; text-align: center; }
.final-form-container { max-width: 460px; margin: 20px auto; }

.form-card { background: #fff; border: 2px solid var(--secondary-color); border-radius: 12px; padding: 20px; box-shadow: 2px 2px 10px rgba(0,0,0,0.1); }
.timer { display: flex; justify-content: center; align-items: center; gap: 8px; margin: 15px 0 20px; font-weight: 600; }
.timer-box { background: #dc3545; color: #fff; padding: 8px 10px; border-radius: 4px; min-width: 35px; font-size: 16px; }

.price-container { margin: 20px 0; display: flex; align-items: center; gap: 15px; }
.price-side-image { width: 100px; height: 100px; object-fit: contain; }

/* =========================================
   7. RESPONSIVIDADE (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.7em; }
    
    .nav-desktop { display: none; }
    .hamburger { display: block; }
    
    .nav-mobile { 
        display: block; 
        background-color: white; 
        width: 100%; 
        max-height: 0; 
        overflow: hidden; 
        transition: max-height 0.5s ease-out; 
    }
    
    .nav-mobile.open { max-height: 350px; }
    .nav-mobile ul { list-style: none; padding: 0; margin: 0; }
    .nav-mobile a { display: block; padding: 15px; border-bottom: 1px solid #f0f0f0; text-decoration: none; color: var(--primary-color); text-align: center;}
    
    .top-form-section { flex-direction: column; }
    #top-form .orderForm { flex-direction: column; width: 100%; }
    
    .product-intro, .expert-grid, .solution-grid { flex-direction: column; text-align: center; }
    .product-intro-text, .expert-content { text-align: center; }
    
    .symptoms-cards-grid { grid-template-columns: 1fr; }

        .ingredient-item {
        width: 100%; /* No celular, os ingredientes ocupam a largura toda */
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .symptoms-cards-grid { grid-template-columns: 1fr; }
}