/* Configurações Gerais */
:root {
    --primary-blue: #12192b;
    --secondary-blue: #1e2a4a;
    --red-accent: #e41e26;
    --white: #ffffff;
    --text-dark: #333;
    --bg-light: #f4f7f6;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif; scroll-behavior: smooth; }
body { background-color: var(--bg-light); color: #333; line-height: 1.6; overflow-x: hidden; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* NAVBAR RESPONSIVA */
.navbar { background: var(--primary-blue); padding: 15px 0; color: white; position: sticky; top: 0; z-index: 1000; }
.navbar .container { display: flex; justify-content: space-between; align-items: center; position: relative; }
.logo { font-size: 24px; font-weight: bold; }
.logo span { color: var(--red-accent); }

.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li a { color: white; text-decoration: none; margin-left: 20px; font-weight: 600; }
.btn-nav { background: var(--red-accent); padding: 10px 20px; border-radius: 5px; }

/* Menu Hambúrguer CSS */
.menu-toggle { display: none; cursor: pointer; }
.bar { display: block; width: 25px; height: 3px; margin: 5px auto; background-color: white; transition: 0.3s; }

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none; /* Escondido por padrão no mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--primary-blue);
        padding: 20px 0;
        text-align: center;
    }
    .nav-links.active { display: flex; } /* Mostra quando clicado */
    .nav-links li { margin: 15px 0; }
    .nav-links li a { margin: 0; font-size: 1.2rem; }
}

/* TIMER ESTILIZADO */
.top-bar { background: var(--red-accent); color: white; text-align: center; padding: 10px; font-weight: bold; display: flex; justify-content: center; align-items: center; gap: 15px; }
.timer { background: white; color: var(--primary-blue); padding: 2px 10px; border-radius: 4px; font-family: monospace; font-size: 1.2rem; }

/* HERO SECTION */
.hero { background: radial-gradient(circle, #2a3a5a 0%, #12192b 100%); color: white; padding-bottom: 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding-top: 40px; }
.highlight { color: var(--red-accent); }
.product-img { max-width: 250px; margin-top: 20px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }

/* FORM BOX */
.order-box { background: rgba(255, 255, 255, 0.1); border: 2px solid var(--white); padding: 30px; border-radius: 15px; text-align: center; backdrop-filter: blur(10px); }
.badge { background: var(--white); color: var(--red-accent); padding: 5px 15px; font-weight: bold; border-radius: 20px; margin-bottom: 10px; display: inline-block; }
.new-price { font-size: 2.5rem; font-weight: bold; display: block; }
.old-price { text-decoration: line-through; opacity: 0.7; }
input { width: 100%; padding: 12px; margin-bottom: 10px; border-radius: 5px; border: none; }
.btn-order { width: 100%; background: linear-gradient(to bottom, #ff3d3d, #b30000); color: white; border: none; padding: 15px; font-size: 1.3rem; font-weight: bold; border-radius: 50px; cursor: pointer; transition: 0.3s; }
.btn-order:hover { transform: scale(1.05); }

/* --- DOBRA 3: SOLUTION (CSS ADICIONADO) --- */
.solution-section { padding: 80px 0; background: #fff; }
.solution-flex { display: flex; align-items: center; gap: 50px; }
.solution-image { flex: 1; text-align: center; }
.solution-image img { max-width: 100%; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); }
.solution-text { flex: 1.2; }
.sub-title { color: var(--red-accent); font-weight: bold; text-transform: uppercase; letter-spacing: 2px; }
.solution-text h2 { font-size: 2.5rem; margin-bottom: 20px; color: var(--primary-blue); }
.solution-text p { margin-bottom: 20px; font-size: 1.1rem; color: #555; }
.btn-secondary { display: inline-block; padding: 12px 30px; border: 2px solid var(--red-accent); color: var(--red-accent); text-decoration: none; border-radius: 50px; font-weight: bold; transition: 0.3s; }
.btn-secondary:hover { background: var(--red-accent); color: white; }

/* --- DOBRA 4: HOW IT WORKS (CSS ADICIONADO) --- */
.how-works { padding: 80px 0; background: var(--primary-blue); color: white; text-align: center; }
.section-header { margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-header p { opacity: 0.8; font-size: 1.2rem; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.step-card { background: rgba(255, 255, 255, 0.05); padding: 40px 30px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); transition: 0.3s; position: relative; }
.step-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-10px); }
.step-number { width: 50px; height: 50px; background: var(--red-accent); color: white; font-size: 1.5rem; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-card h3 { margin-bottom: 15px; font-size: 1.4rem; color: var(--white); }
.step-card p { font-size: 1rem; opacity: 0.9; }

/* Pain Section */
.pain-section {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
}

.pain-section h2 {
    font-size: 28px;
    line-height: 1.4;
}

.pain-section h2 span {
    color: var(--red-accent);
}

/* Grid */
.pain-grid {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
}

/* Item */
.pain-item {
    flex: 1;
    min-width: 250px;
}

/* Círculo */
.pain-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--red-accent);
    margin: 0 auto 15px;
}

/* 🔥 CORREÇÃO PRINCIPAL */
.pain-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Texto */
.pain-item p {
    max-width: 180px;
    margin: 0 auto;
    font-size: 16px;
}

/* Responsivo */
@media (max-width: 768px) {
    .pain-grid {
        flex-direction: column;
        align-items: center;
    }

    .pain-item {
        width: 100%;
        max-width: 300px;
    }
}

/* Benefits */
.benefits { padding: 40px 0; background: #fff; display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }
.benefit-item { background: #f0f4f8; padding: 20px; border-radius: 10px; border-left: 5px solid var(--red-accent); font-size: 1rem; }

/* TESTIMONIALS NOVO */
.testimonials {
    padding: 70px 0;
    background: #12192b;
    color: #fff;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.testi-sub {
    opacity: 0.8;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* GRID */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* CARD */
.testi-card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    text-align: left;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}

.testi-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

/* DESTAQUE */
.testi-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #e41e26, #8c0000);
    color: #fff;
}

/* ESTRELAS */
.stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* TEXTO */
.testi-text {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* USUÁRIO */
.user-info {
    font-size: 0.9rem;
    opacity: 0.9;
}

.user-info strong {
    display: block;
    font-size: 1rem;
}

/* MOBILE */
@media (max-width: 768px) {
    .testi-card.featured {
        grid-column: span 1;
    }
}

/* Authority */
.authority { background: #eef2f7; padding: 60px 0; }
.doctor-flex { display: flex; align-items: center; gap: 40px; }
.doc-img { border-radius: 10px; width: 300px; }
blockquote { font-style: italic; font-size: 1.2rem; border-left: 5px solid var(--red-accent); padding-left: 20px; margin: 20px 0; }

/* --- DOBRA: PURCHASE PROCESS (MOBILE ADAPTADO) --- */
.purchase-process { padding: 60px 0; background: #f0f4f8; text-align: center; border-bottom: 1px solid #ddd; }
.process-title { margin-bottom: 40px; }
.small-logo-img { width: 100px; margin-bottom: 10px; }
.process-title h2 { font-size: 2.2rem; color: var(--primary-blue); font-weight: 800; }

.steps-wrapper { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.proc-step { flex: 1; text-align: center; z-index: 2; }
.icon-circle { 
    width: 80px; height: 80px; background: white; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 2.5rem; margin: 0 auto 15px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #fff;
    transition: 0.3s;
}
.proc-step p { font-size: 1rem; font-weight: 700; color: #12192b; line-height: 1.3; padding: 0 5px; }
.arrow-red { color: var(--red-accent); font-size: 2rem; font-weight: bold; opacity: 0.7; }

/* Estilo Mobile para Ordem de Compra */
@media (max-width: 992px) {
    .steps-wrapper { flex-direction: column; gap: 20px; }
    .arrow-red { transform: rotate(90deg); margin: 5px 0; font-size: 1.5rem; }
    .proc-step { width: 100%; max-width: 300px; background: white; padding: 20px; border-radius: 15px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); }
    .icon-circle { width: 70px; height: 70px; font-size: 2rem; margin-bottom: 10px; background: #f9f9f9; }
    .process-title h2 { font-size: 1.8rem; }
}

/* --- DOBRA 8: FINAL OFFER & FORM ADAPTADO --- */
.final-offer { padding: 60px 0; background: #eef2f7; border-top: 2px solid #ddd; }
.offer-wrapper { display: flex; align-items: center; gap: 40px; }
.offer-impact { flex: 1; }
.impact-badge { background: var(--red-accent); color: white; padding: 5px 12px; border-radius: 4px; font-weight: bold; font-size: 0.9rem; }
.offer-impact h2 { font-size: 2.5rem; margin: 15px 0; color: var(--primary-blue); }
.offer-impact h2 span { color: var(--red-accent); }
.offer-product-img img { max-width: 300px; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); }

.offer-form-box { background: white; padding: 40px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.1); flex: 1; width: 100%; }
.discount-label { text-align: center; font-weight: bold; color: var(--red-accent); margin-bottom: 10px; }
.offer-pricing { text-align: center; margin-bottom: 25px; }
.old-p { text-decoration: line-through; color: #888; font-size: 1.2rem; }
.new-p { font-size: 3rem; font-weight: bold; color: #222; display: block; line-height: 1; }
.shipping { color: #28a745; font-weight: bold; font-size: 1rem; }
.form-final { display: flex; flex-direction: column; gap: 15px; }
.input-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; text-align: left; }
.guarantee-note { margin-top: 20px; font-size: 0.9rem; text-align: center; opacity: 0.8; }

/* --- DOBRA 9: FAQ (ACORDEÃO MOBILE ADAPTADO) --- */
.faq-section { padding: 80px 0; background: #f4f7f6; }
.faq-title { text-align: center; font-size: 2.2rem; color: var(--primary-blue); margin-bottom: 40px; }
.faq-accordion { max-width: 800px; margin: 0 auto; }

details { 
    background: white; 
    margin-bottom: 15px; 
    border-radius: 10px; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
    overflow: hidden; 
    transition: 0.3s; 
    border: 1px solid #eee;
}

summary { 
    padding: 20px; 
    font-weight: 700; 
    font-size: 1.1rem; 
    cursor: pointer; 
    list-style: none; 
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    color: var(--primary-blue);
}

summary::after { 
    content: '+'; 
    color: var(--red-accent); 
    font-size: 1.5rem; 
}

details[open] summary::after { 
    content: '−'; 
}

.faq-content { padding: 0 20px 20px 20px; color: #555; font-size: 1rem; border-top: 1px solid #f9f9f9; padding-top: 15px; }

/* Mobile FAQ Adjustment */
@media (max-width: 768px) {
    .faq-title { font-size: 1.8rem; }
    summary { font-size: 1rem; padding: 15px; }
    .faq-section { padding: 50px 0; }
}

footer { background: var(--primary-blue); color: white; text-align: center; padding: 20px; font-size: 0.9rem; }

/* RESPONSIVIDADE (MOBILE FIX) */
@media (max-width: 992px) {
    .hero-grid, .offer-wrapper, .solution-flex, .doctor-flex { flex-direction: column; text-align: center; }
    .hero-grid { grid-template-columns: 1fr; }
    .offer-wrapper { gap: 30px; }
    .offer-form-box { padding: 25px; } /* Menos padding no mobile para ganhar espaço */
    .new-p { font-size: 2.5rem; }
    .offer-product-img img { max-width: 220px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none; flex-direction: column; position: absolute; top: 100%; left: 0; 
        width: 100%; background: var(--primary-blue); padding: 20px 0;
    }
    .nav-links.active { display: flex; }
    .nav-links li { margin: 10px 0; }
    .nav-links li a { margin: 0; }
}

/* OUTRAS SEÇÕES */
.pain-section { padding: 40px 0; text-align: center; }
.pain-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 20px; }
.pain-circle { width: 120px; height: 120px; border-radius: 50%; border: 4px solid var(--red-accent); overflow: hidden; margin: 0 auto 10px; }
.how-works { padding: 50px 0; background: var(--primary-blue); color: white; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; padding: 20px; }
.step-card { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 15px; }
.benefits { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; padding: 30px 0; }
.benefit-item { background: #eee; padding: 15px; border-radius: 5px; border-left: 4px solid var(--red-accent); }
.testimonials { background: var(--primary-blue); color: white; padding: 40px 0; text-align: center; }
.testi-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; margin-top: 20px; }
.testi-card { background: rgba(255,255,255,0.1); padding: 20px; border-radius: 10px; width: 300px; }
footer { background: var(--primary-blue); color: white; text-align: center; padding: 20px; }