/* ======== 1. VARIÁVEIS E RESET GLOBAL ======== */
:root {
    --color-black: #0D0D0D;
    --color-gray-dark: #121212;
    --color-gray-medium: #1A1A1A;
    --color-gray-light: #AAAAAA;
    --color-red: #E5001E;
    --color-white: #FFFFFF;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease-in-out;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; background-color: var(--color-black); }
body { font-family: var(--font-body); color: var(--color-gray-light); line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 900; color: var(--color-white); line-height: 1.2; margin-bottom: 1rem; }
h1 { font-size: 3.5rem; text-transform: uppercase; }
h2 { font-size: 2.5rem; text-align: center; margin-bottom: 3rem; }
p { margin-bottom: 1.5rem; font-size: 1.1rem; }
a { color: var(--color-red); text-decoration: none; }
section { padding: 2rem 0; background-color: var(--color-black); border-bottom: 1px solid #222; }

/* ======== 2. ESTILOS DAS SEÇÕES ======== */

/* --- 1. HERO --- */
.hero-section {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(13, 13, 13, 0.8) 0%, #0D0D0D 100%), var(--color-black);
}
.hero-image {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 40px rgba(229, 0, 30, 0.2);
}
.hero-section .subtitle { font-size: 1.25rem; max-width: 700px; margin: 0 auto 2.5rem auto; color: var(--color-white); }
.garantia { font-size: 0.9rem; opacity: 0.7; margin-top: 1rem; }

/* --- 2. PROBLEM (AGITAÇÃO) --- */
.problem-section { background-color: var(--color-gray-dark); }
.problem-section h2 { color: var(--color-red); }
.problem-section p { text-align: center; max-width: 800px; margin: 0 auto 3rem auto; }
.problem-list { list-style: none; max-width: 600px; margin: 0 auto; }
.problem-list li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    background: var(--color-gray-medium);
    padding: 1rem;
    border-radius: 5px;
    border-left: 3px solid var(--color-red);
}
.problem-list li span { font-size: 1.5rem; margin-right: 1rem; }

/* --- 3. SOLUTION (PRODUTO) --- */
.solution-section { background-color: var(--color-black); }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.solution-text { text-align: left; }
.solution-text .eyebrow { font-family: var(--font-heading); font-weight: 700; color: var(--color-red); letter-spacing: 1px; }
.product-cover { width: 100%; max-width: 450px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); }

/* --- 4. FEATURES (BENEFÍCIOS) --- */
.features-section { background-color: var(--color-gray-dark); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.feature-card {
    background: var(--color-black);
    padding: 2.5rem 2rem;
    border-radius: 8px;
    border: 1px solid #222;
    transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); border-color: var(--color-red); }
.feature-card h3 { color: var(--color-red); margin-bottom: 0.5rem; }

/* --- 5. TESTIMONIALS (DEPOIMENTOS) --- */
.testimonials-section { background-color: var(--color-black); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
    background: var(--color-gray-dark);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-red);
    text-align: left;
}
.testimonial-card img { width: 60px; height: 60px; border-radius: 50%; margin-bottom: 1rem; }
.testimonial-card p { font-style: italic; color: var(--color-white); opacity: 0.9; }
.testimonial-card .rating { color: #f39c12; font-size: 1.2rem; }
.testimonial-card h4 { color: var(--color-gray-light); margin-top: 1rem; margin-bottom: 0; }

/* --- 6. OFFER STACK --- */
.offer-stack-section { background-color: var(--color-gray-dark); }
.stack-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-black);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 3rem;
}
.stack-box h3 { text-align: center; }
.stack-box ul { list-style: none; margin: 2rem 0; }
.stack-box li { font-size: 1.2rem; color: var(--color-white); margin-bottom: 1rem; }
.stack-box .valor-total { text-align: center; font-size: 1.5rem; margin-top: 2rem; }
.stack-box .riscado { text-decoration: line-through; color: var(--color-gray-light); opacity: 0.7; }

/* --- 7. CTA (OFERTA FINAL) --- */
.cta-section {
    background: var(--color-gray-dark);
    text-align: center;
    border-bottom: none;
}
.cta-section p { font-size: 1.2rem; }
.price-box {
    background: var(--color-black);
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    margin: 1.5rem auto 2.5rem auto;
    border: 1px solid var(--color-red);
}
.price-new {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-red);
    display: block;
    line-height: 1;
}
.price-info { font-size: 1rem; color: var(--color-white); }
.secure-badge { margin-top: 2rem; max-width: 300px; opacity: 0.7; }

/* --- 8. GUARANTEE --- */
.guarantee-section { background-color: var(--color-black); }
.guarantee-grid { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; align-items: center; }
.guarantee-icon { text-align: center; }
.selo-garantia { width: 100%; max-width: 250px; }
.guarantee-text { text-align: left; }
.guarantee-text h2 { color: var(--color-red); }

/* --- 9. FAQ --- */
.faq-section { background-color: var(--color-gray-dark); border-bottom: none; }
.faq-grid { max-width: 800px; margin: 0 auto; text-align: left; }
details {
    background: var(--color-black);
    border: 1px solid #222;
    border-radius: 5px;
    margin-bottom: 1rem;
}
summary {
    padding: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-white);
    cursor: pointer;
    position: relative;
}
summary::after { /* Cria a seta 'v' */
    content: '▼';
    position: absolute;
    right: 1.5rem;
    transition: var(--transition);
}
details[open] summary::after { transform: rotate(180deg); }
details p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* --- 10. FOOTER --- */
footer {
    text-align: center;
    padding: 3rem;
    background: var(--color-black);
    font-size: 0.9rem;
    color: var(--color-gray-light);
    opacity: 0.5;
}
footer p { margin: 0.25rem 0; font-size: 0.9rem; }

/* ======== 3. BOTÃO DE CTA (O Dinheiro) ======== */
.cta-button {
    display: inline-block;
    background-color: var(--color-red);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(229, 0, 30, 0.4);
}
.cta-button:hover {
    transform: scale(1.05);
    background-color: #ff0021;
    box-shadow: 0 8px 25px rgba(229, 0, 30, 0.6);
}
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 5px 20px rgba(229, 0, 30, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 8px 25px rgba(229, 0, 30, 0.6); }
    100% { transform: scale(1); box-shadow: 0 5px 20px rgba(229, 0, 30, 0.4); }
}

/* ======== 4. RESPONSIVIDADE (Mobile) ======== */
@media (max-width: 800px) {
    h1 { font-size: 1.9rem; }
    h2 { font-size: 2rem; }
    
    .solution-grid { grid-template-columns: 1fr; text-align: center; }
    .solution-image { order: -1; } /* Joga a imagem para cima */
    .solution-text { text-align: center; }
    
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .guarantee-grid { grid-template-columns: 1fr; text-align: center; }
    .guarantee-text { text-align: center; }
}

/* ======== 5. ANIMAÇÃO DE SCROLL ======== */
.hidden-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.show-scroll { opacity: 1; transform: translateY(0); }