/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
body { font-family: 'Roboto', sans-serif; color: #333; line-height: 1.5; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.highlight { color: #f04e6e; }
.blue-text { color: #1a3a8a; }

/* --- NAVBAR --- */
.navbar { background: #fff; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; color: #1a3a8a; font-weight: 900; }
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { text-decoration: none; color: #555; font-weight: bold; }
.nav-btn { background: #f04e6e; color: #fff; padding: 10px 20px; border-radius: 20px; text-decoration: none; font-weight: bold; }

/* --- 1ª DOBRA: HERO COM FORM DESTAQUE --- */
.hero { background: linear-gradient(135deg, #fff 0%, #eef4ff 100%); padding: 60px 0; }
.hero-content { display: grid; grid-template-columns: 1.2fr 0.8fr 1.1fr; gap: 30px; align-items: center; }
.hero-text h1 { font-size: 2.5rem; color: #1a3a8a; line-height: 1.1; margin-bottom: 20px; }
.hero-list { list-style: none; margin: 20px 0; font-weight: bold; }
.badge { background: #f04e6e; color: #fff; padding: 5px 15px; border-radius: 5px; font-weight: bold; display: inline-block; margin-bottom: 10px; }
.hero-image img { width: 100%; max-width: 280px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }

/* CAIXA DO FORMULÁRIO DESTAQUE */
.form-box-hero-highlight { background: #fff; padding: 35px; border-radius: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); text-align: center; border: 2px solid #eef4ff; }
.form-box-hero-highlight h3 { font-size: 1.8rem; color: #1a3a8a; margin-bottom: 5px; font-weight: 900; }
.sub-form { color: #666; font-size: 0.9rem; margin-bottom: 15px; }

/* PREÇO NO FORMULÁRIO */
.hero-price-tag { margin: 15px 0; padding: 10px; background: #f9fbfd; border-radius: 10px; }
.hero-price-tag .old-price { font-size: 1.3rem; text-decoration: line-through; color: #999; margin-right: 10px; font-weight: bold; }
.hero-price-tag .new-price { font-size: 3rem; color: #f04e6e; font-weight: 900; }

.form-box-hero-highlight input { width: 100%; padding: 15px; margin-bottom: 15px; border: 1.5px solid #d1d9e6; border-radius: 10px; font-size: 1rem; background: #fcfdfe; }
.cta-pulse-main { width: 100%; background: #f04e6e; color: #fff; padding: 20px; border: none; font-weight: 900; font-size: 1.3rem; border-radius: 10px; cursor: pointer; animation: pulse 2s infinite; box-shadow: 0 10px 20px rgba(240,78,110,0.3); }
.security-text { font-size: 0.75rem; color: #99a; margin-top: 15px; }

/* --- 2ª DOBRA: PAIN SECTION REESTRUTURADA --- */
.pain-section {
    padding: 100px 0;
    background-color: #fff;
}

.pain-header {
    text-align: center;
    margin-bottom: 50px;
}

.warning-label {
    background: #ffeded;
    color: #e63946;
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 15px;
    border: 1px solid #ffcccc;
}

.pain-section h2 {
    font-size: 2.5rem;
    color: #1a3a8a;
    max-width: 800px;
    margin: 0 auto 15px;
    line-height: 1.2;
}

.subtitle {
    color: #666;
    font-size: 1.1rem;
}

.pain-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.pain-image-side {
    flex: 1;
    position: relative;
}

.pain-image-side .img-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pain-badge-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(26, 58, 138, 0.95);
    color: white;
    padding: 15px;
    border-radius: 12px;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.pain-list-side {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pain-card {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: #fdfdfd;
    border-radius: 15px;
    border-left: 5px solid #d1d9e6;
    transition: 0.3s;
}

.pain-card:hover {
    transform: translateX(10px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.pain-card.danger-alert {
    background: #fff5f5;
    border-left: 5px solid #f04e6e;
}

.pain-icon {
    font-size: 2rem;
}

.pain-info h3 {
    color: #1a3a8a;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.pain-info p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
}

.pain-footer {
    text-align: center;
    margin-top: 50px;
}

.pain-footer p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.scroll-link-btn {
    display: inline-block;
    background: #f04e6e;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(240,78,110,0.3);
    transition: 0.3s;
}

.scroll-link-btn:hover {
    background: #d43f5e;
    transform: translateY(-3px);
}

/* Responsividade */
@media (max-width: 992px) {
    .pain-content-wrapper {
        flex-direction: column;
    }
    .pain-section h2 {
        font-size: 1.8rem;
    }
    .pain-image-side {
        order: 1;
    }
}

/* 3ª DOBRA: SOLUTION */
.solution-section { padding: 80px 0; background: #f9fbfd; }
.flex-row { display: flex; align-items: center; gap: 50px; }
.solution-image img { width: 100%; max-width: 400px; }
.solution-bullets { list-style: none; margin-top: 20px; font-weight: bold; }

/* --- CLINICAL STUDY SECTION --- */
.clinical-study {
    padding: 100px 0;
    background-color: #ffffff;
}

.study-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.study-text {
    flex: 1;
}

.study-badge {
    background: #eef4ff;
    color: #1a3a8a;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.clinical-study h2 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #333;
}

.stats-container {
    margin: 30px 0;
}

.stat-bar {
    margin-bottom: 20px;
}

.stat-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1a3a8a;
}

.bar-bg {
    background: #e0e7f1;
    height: 12px;
    border-radius: 10px;
    overflow: hidden;
}

.bar-fill {
    background: linear-gradient(90deg, #1a3a8a, #f04e6e);
    height: 100%;
    border-radius: 10px;
}

.study-footer {
    font-size: 0.8rem;
    color: #888;
    font-style: italic;
}

.study-image {
    flex: 1;
    position: relative;
}

.study-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.certification-seal {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #f04e6e;
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(240,78,110,0.4);
    border: 4px solid white;
}

/* Responsividade para o Estudo Clínico */
@media (max-width: 992px) {
    .study-flex {
        flex-direction: column;
        text-align: center;
    }
    .study-image {
        order: -1; /* Imagem aparece antes do texto no mobile */
        margin-bottom: 40px;
    }
    .stat-info {
        font-size: 0.9rem;
    }
    .certification-seal {
        right: 10px;
        bottom: 10px;
        width: 100px;
        height: 100px;
        font-size: 0.7rem;
    }
}

/* 4ª DOBRA: SCIENCE (DESTAQUE) */
.science-section.highlight-bg { background: #0a1931; padding: 100px 0; position: relative; }
.sub-science { color: #ccd6f6; text-align: center; font-size: 1.2rem; margin-bottom: 50px; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 20px; }
.step-card { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 20px; border: 1px solid rgba(240,78,110,0.3); text-align: left; transition: 0.3s; }
.step-card:hover { transform: translateY(-10px); background: rgba(255,255,255,0.08); border-color: #f04e6e; }
.step-icon { font-size: 2rem; font-weight: 900; color: #f04e6e; margin-bottom: 15px; display: block; border-bottom: 2px solid #f04e6e; width: 50px; }
.step-card h4 { color: #fff; font-size: 1.5rem; margin-bottom: 15px; }
.step-card p { color: #a8b2d1; font-size: 1rem; }

/* 5ª DOBRA: INGREDIENTS */
.ingredients { padding: 80px 0; text-align: center; }
.ingredients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.ing-card { background: #fff; padding: 15px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.ing-card img { object-fit: cover; border-radius: 8px; margin-bottom: 10px; }

/* --- 6ª DOBRA: TESTIMONIALS (AJUSTADA) --- */
.testimonials { 
    padding: 100px 0; 
    background: #f4f7f9; 
}

.test-header-top {
    text-align: center;
    margin-bottom: 50px;
}

.test-header-top h2 {
    font-size: 2.2rem;
    color: #1a3a8a;
    margin-bottom: 10px;
}

.test-header-top p {
    color: #666;
    font-size: 1.1rem;
}

.test-grid { 
    display: grid; 
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px; 
    margin-top: 30px; 
}

.test-item { 
    background: #fff; 
    padding: 30px; 
    border-radius: 20px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    transition: 0.3s; 
    border: 1px solid #eee;
}

.test-item:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Informações do Usuário (Foto + Nome) */
.test-user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.user-img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f04e6e;
}

.user-details {
    display: flex;
    flex-direction: column;
}

.user-details strong {
    color: #1a3a8a;
    font-size: 1.1rem;
}

.location {
    font-size: 0.85rem;
    color: #888;
}

.verified-tag {
    font-size: 0.75rem;
    color: #28a745; /* Verde para confiança */
    font-weight: bold;
    margin-top: 2px;
}

.stars { 
    color: #ffcc00; 
    font-size: 1rem; 
    margin-bottom: 15px; 
}

.test-text { 
    font-style: italic; 
    color: #444; 
    line-height: 1.6; 
    font-size: 1rem;
}

.test-summary {
    text-align: center;
    margin-top: 40px;
    color: #1a3a8a;
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 850px) {
    .test-grid { 
        grid-template-columns: 1fr; 
    }
    
    .test-item {
        padding: 20px;
    }

    .test-header-top h2 {
        font-size: 1.8rem;
    }
}

/* 7ª DOBRA: OFERTA FINAL (CORRIGIDA) */
.offer-final { background: radial-gradient(circle, #fff 0%, #eef4ff 100%); padding: 80px 0; }
.offer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: center; }

.impact-title { font-size: 2.4rem; color: #1a3a8a; line-height: 1.1; margin-bottom: 20px; }
.impact-list { list-style: none; margin-bottom: 25px; }
.impact-list li { font-size: 1.1rem; color: #1a3a8a; margin-bottom: 8px; }

/* TIMER STYLE */
.timer-container { background: #1a3a8a; color: #fff; padding: 15px; border-radius: 10px; display: inline-block; text-align: center; }
#timer { font-size: 2.5rem; font-weight: 900; color: #f04e6e; }

/* IMAGES IN FOLD 7 */
.image-stack { text-align: center; }
.final-prod-img { width: 100%; max-width: 280px; margin-bottom: 20px; }
.google-review-img { width: 100%; max-width: 220px; display: block; margin: 0 auto; }

/* FORM CARD */
.form-card { background: #fff; padding: 35px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.card-pricing { text-align: right; margin-bottom: 20px; }
.old-price { display: block; font-size: 1.4rem; text-decoration: line-through; color: #f04e6e; font-weight: bold; }
.new-price { font-size: 3.5rem; color: #f04e6e; font-weight: 900; line-height: 1; }
.group { margin-bottom: 15px; text-align: left; }
.group label { display: block; font-size: 0.8rem; color: #99a; margin-bottom: 5px; }
.group input { width: 100%; padding: 12px; background: #edf2f9; border: 1px solid #d1d9e6; border-radius: 5px; }
.ordina-btn { width: 100%; background: #f04e6e; color: #fff; border: none; padding: 15px; font-size: 1.4rem; font-weight: bold; border-radius: 30px; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 10px; }

/* --- SEÇÕES FINAIS (CONFORME IMAGEM) --- */
.bottom-sections { padding-bottom: 80px; }
.guarantee { padding: 80px 0 40px; }
.guarantee-img { width: 80px; margin-bottom: 20px; }
.guarantee h2 { font-size: 1.8rem; color: #333; }

.cod-banner { background: #e8f4fd; border: 2px dashed #1a3a8a; padding: 40px; border-radius: 15px; text-align: center; margin: 40px 0; }
.cod-banner h2 { color: #1a3a8a; font-size: 2rem; margin-bottom: 10px; }
.cod-banner p { font-size: 1.1rem; color: #555; }

.faq { margin-top: 60px; }
.faq h2 { margin-bottom: 40px; font-size: 2rem; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-card { background: #f9fbfd; padding: 30px; border-radius: 10px; text-align: left; }
.faq-card strong { font-size: 1.1rem; color: #1a3a8a; display: block; margin-bottom: 10px; }

/* --- FOOTER AJUSTADO --- */
.site-footer {
    background-color: #1a1a1a; /* Um cinza quase preto, mais moderno que o #222 */
    color: #b0b0b0; /* Texto cinza claro para não cansar a vista */
    padding: 60px 0 30px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.site-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Links Legais */
.footer-links {
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #f04e6e; /* Cor de destaque do produto */
}

.separator {
    color: #444;
    display: inline-block;
}

/* Divisor */
.footer-divider {
    width: 100%;
    max-width: 800px;
    border: 0;
    border-top: 1px solid #333;
    margin-bottom: 30px;
}

/* Disclaimer Médico */
.footer-disclaimer {
    max-width: 900px;
    margin-bottom: 40px;
}

.medical-disclaimer {
    font-size: 0.8rem;
    color: #888;
    text-align: justify; /* Melhora a estética de textos longos */
}

.medical-disclaimer strong {
    color: #bbb;
}

/* Parte Inferior (Copyright) */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    width: 100%;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.eu-notice {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsividade para Mobile */
@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .separator {
        display: none; /* Esconde o separador vertical no mobile */
    }
    
    .site-footer {
        padding: 40px 20px 20px;
    }
}

/* RESPONSIVIDADE */
@media (max-width: 992px) {
    .hero-content, .offer-grid, .flex-row { grid-template-columns: 1fr; text-align: center; }
    .hero-image, .nav-links { display: none; }
    .ingredients-grid { grid-template-columns: 1fr 1fr; }
    .test-grid, .faq-grid { grid-template-columns: 1fr; }
}