:root {
    --primary: #0a0a2c;
    --secondary: #e63946;
    --accent: #ffcc00;
    --success: #28a745;
    --gray-bg: #f8f9fa;
    --white: #ffffff;
    --black: #111111;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { 
    font-family: 'Roboto', sans-serif; 
    color: #333; 
    line-height: 1.6; 
    background: #fff;
    overflow-x: hidden;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; }
.section-title { 
    font-size: 2.5rem; 
    text-align: center; 
    font-weight: 900; 
    margin-bottom: 50px; 
    color: var(--primary);
    text-transform: uppercase;
}

/* Urgency Bar */
.top-bar { 
    background: var(--secondary); 
    color: #fff; 
    text-align: center; 
    padding: 12px; 
    font-size: 14px; 
    position: relative;
    z-index: 1001;
}

/* Header */
.main-header { 
    background: var(--black); 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 900; font-size: 1.6rem; color: #fff; letter-spacing: -1px; }
.logo span { color: var(--secondary); }
.btn-nav { 
    background: var(--secondary); 
    color: #fff; 
    text-decoration: none; 
    padding: 8px 20px; 
    border-radius: 50px; 
    font-weight: bold;
    font-size: 14px;
    transition: 0.3s;
}

/* Hero Section */
.hero { padding: 80px 0; background: linear-gradient(135deg, #fff 0%, #f4f7f6 100%); }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; align-items: center; }
.top-tag { color: var(--secondary); font-weight: bold; font-size: 14px; letter-spacing: 1px; display: block; margin-bottom: 10px; }
.hero h1 { font-size: 3.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 25px; color: var(--primary); }
.highlight { color: var(--secondary); position: relative; }
.hero-description { font-size: 1.2rem; color: #555; margin-bottom: 30px; }
.check-list { list-style: none; margin-bottom: 40px; }
.check-list li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 500; }
.btn-cta { 
    display: inline-block; 
    background: var(--success); 
    color: #fff; 
    padding: 22px 45px; 
    border-radius: 8px; 
    text-decoration: none; 
    font-weight: 900; 
    font-size: 1.3rem; 
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}
.secure-buy-icon { margin-top: 20px; font-size: 12px; opacity: 0.7; display: flex; align-items: center; gap: 5px; }
.hero-img img { width: 100%; filter: drop-shadow(0 30px 50px rgba(0,0,0,0.15)); transition: 0.5s; }
.hero-img img:hover { transform: translateY(-10px); }

/* Black Bar */
.black-info-bar { background: var(--black); color: #fff; padding: 40px 0; }
.info-bar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.info-item { font-size: 0.95rem; font-weight: 400; opacity: 0.9; }
.info-item img { margin-bottom: 10px; }

/* Stats */
.stats-section { padding: 100px 0; background: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.stat-img-wrapper { border-radius: 15px; overflow: hidden; margin-bottom: 20px; height: 200px; }
.stat-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.stat-item h3 { font-size: 3rem; color: var(--secondary); margin-bottom: 5px; }
.stat-item p { font-size: 0.9rem; color: #666; font-weight: 500; }

/* How it works */
.how-it-works { padding: 100px 0; background: var(--primary); color: #fff; }
.how-it-works .section-title { color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.step-card { background: rgba(255,255,255,0.05); padding: 40px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }
.step-num { font-size: 3rem; font-weight: 900; color: var(--secondary); opacity: 0.5; margin-bottom: 10px; }
.step-card h3 { margin-bottom: 15px; }

/* Ingredients Grid */
.ingredients { padding: 100px 0; background: var(--gray-bg); }
.ing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ing-card { background: #fff; border-radius: 15px; overflow: hidden; display: flex; align-items: center; padding: 15px; box-shadow: var(--shadow); transition: 0.3s; }
.ing-card:hover { transform: scale(1.03); }
.ing-card img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; margin-right: 15px; }
.ing-info h4 { font-size: 1rem; margin-bottom: 5px; color: var(--primary); }
.ing-info p { font-size: 0.85rem; color: #777; }

/* Pricing */
.pricing { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: flex-end; }
.price-card { 
    background: #fff; 
    padding: 40px 30px; 
    border-radius: 20px; 
    text-align: center; 
    border: 1px solid #eee; 
    box-shadow: var(--shadow);
    position: relative;
    transition: 0.3s;
}
.price-card img { width: 100%; max-width: 200px; margin: 20px 0; }
.price-card.featured { border: 3px solid var(--secondary); transform: scale(1.05); z-index: 2; }
.popular { 
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); 
    background: var(--secondary); color: #fff; padding: 8px 25px; border-radius: 50px; 
    font-size: 12px; font-weight: 900; white-space: nowrap;
}
.price { margin-bottom: 10px; font-weight: 700; color: #555; }
.price span { font-size: 2.5rem; color: var(--primary); display: block; line-height: 1; }
.vista { font-size: 14px; color: #888; margin-bottom: 20px; }
.btn-buy { 
    display: block; background: var(--success); color: #fff; text-decoration: none; 
    padding: 18px; border-radius: 10px; font-weight: 900; font-size: 1.1rem;
    transition: 0.3s;
}
.btn-buy:hover { background: #218838; transform: translateY(-3px); }
.frete-gratis { display: block; margin-top: 15px; font-size: 12px; font-weight: 900; color: var(--success); }

/* Guarantee */
.guarantee-trust { padding: 80px 0; background: var(--gray-bg); text-align: center; }
.guarantee-badge img { width: 150px; margin-bottom: 30px; }
.guarantee-desc { max-width: 800px; margin: 0 auto; font-size: 1.1rem; color: #666; }

/* FAQ Accordion */
.faq { padding: 100px 0; }
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: #fff; margin-bottom: 15px; border-radius: 10px; border: 1px solid #eee; transition: 0.3s; }
details[open] { border-color: var(--secondary); box-shadow: var(--shadow); }
summary { padding: 20px; font-weight: 700; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::after { content: '→'; color: var(--secondary); transition: 0.3s; }
details[open] summary::after { transform: rotate(90deg); }
details p { padding: 0 20px 20px; color: #666; font-size: 0.95rem; }

/* Mobile Sticky Footer */
.mobile-cta { 
    position: fixed; bottom: 0; left: 0; right: 0; background: #fff; padding: 15px; 
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1); display: none; z-index: 999;
}

/* Footer */
footer { background: var(--black); color: #fff; padding: 80px 0 40px; text-align: center; }
footer .logo { margin-bottom: 20px; display: block; }
footer p { opacity: 0.6; font-size: 14px; }

/* Animations */
@keyframes pulse { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } }
.pulse { animation: pulse 2s infinite ease-in-out; }

/* Mobile View */
@media (max-width: 768px) {
    .hero-grid, .stats-grid, .steps-grid, .ing-grid, .pricing-grid, .info-bar-grid { grid-template-columns: 1fr; }
    .hero { text-align: center; padding: 40px 0; }
    .hero h1 { font-size: 2.5rem; }
    .check-list li { justify-content: center; }
    .price-card.featured { transform: scale(1); }
    .mobile-cta { display: block; }
    body { padding-bottom: 80px; }
    .section-title { font-size: 1.8rem; }
    .main-header .btn-nav { display: none; }
}

.step-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    overflow: hidden; /* Garante que a imagem não saia da borda do card */
}

.step-image {
    width: 100%;
    height: 180px; /* Ajuste a altura conforme necessário */
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 8px;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
    transition: transform 0.3s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.05); /* Efeito de zoom ao passar o mouse */
}

