/* Reset e Variáveis */
:root {
    --bg-color: #0a0a0c;
    --section-bg: #111114;
    --text-color: #ffffff;
    --text-muted: #a1a1aa;
    --primary-green: #16a34a;
    --primary-green-hover: #15803d;
    --accent-red: #dc2626;
    --accent-blue: #3b82f6;
    --font-main: 'Inter', system-ui, -apple-system, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* Utilitários */
.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }

/* Barra de Urgência */
.urgency-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--accent-red);
    color: white;
    text-align: center;
    padding: 10px 0;
    z-index: 1000;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Hero Section */
.hero {
    padding: 100px 20px 60px;
    position: relative;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero h1 span { color: var(--accent-red); }

.hero p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.product-img-container {
    max-width: 280px;
    margin: 0 auto 30px;
    position: relative;
}

.product-img-container img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.2));
}

/* Botões */
.btn-green {
    display: inline-block;
    background-color: var(--primary-green);
    color: white;
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 0 30px rgba(22, 163, 74, 0.3);
    width: 100%;
    max-width: 500px;
}

.btn-green:hover {
    background-color: var(--primary-green-hover);
    transform: scale(1.05);
}

.trust-badges {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: bold;
}

/* Seções Gerais */
section {
    padding: 60px 20px;
}

.bg-alt { background-color: var(--section-bg); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

.section-tag {
    color: var(--accent-red);
    font-size: 0.6rem;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Grid de Benefícios */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    background: rgba(0,0,0,0.4);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: left;
}

.benefit-card h3 { font-size: 0.9rem; margin-bottom: 10px; }
.benefit-card p { font-size: 0.7rem; color: var(--text-muted); }

.quote-box {
    margin-top: 50px;
    padding: 25px;
    border-left: 4px solid var(--accent-blue);
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), transparent);
    font-size: 1.2rem;
}

/* Bônus */
.bonus-card {
    background: var(--section-bg);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.bonus-card h4 { font-size: 1.1rem; }
.bonus-card p { font-size: 0.75rem; color: var(--text-muted); }
.bonus-highlight { color: var(--accent-blue); font-weight: bold; font-size: 0.75rem; }

/* Oferta */
.offer-box {
    background: var(--section-bg);
    border: 2px solid rgba(22, 163, 74, 0.3);
    border-radius: 30px;
    padding: 40px 20px;
    box-shadow: 0 0 80px rgba(22, 163, 74, 0.1);
}

.price-old { text-decoration: line-through; color: #555; font-size: 1.2rem; }
.price-new-label { font-size: 1rem; font-weight: bold; margin-top: 10px; }
.price-new-value { font-size: 4rem; font-weight: 900; display: block; }

.timer-box {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 15px;
    border-radius: 15px;
    margin: 30px 0;
}

.timer-box p { font-size: 0.7rem; color: var(--accent-red); font-weight: bold; margin-bottom: 5px; }
.timer-display { font-family: monospace; font-size: 2rem; font-weight: 900; color: var(--accent-red); letter-spacing: 4px; }

/* FAQ */
.faq-item {
    background: var(--section-bg);
    border-radius: 12px;
    margin-bottom: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-question {
    padding: 15px 20px;
    font-weight: bold;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    padding: 0 20px 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    display: none;
}

/* Garantia */
.guarantee-box {
    border: 2px solid rgba(59, 130, 246, 0.2);
    padding: 40px 20px;
    border-radius: 40px;
    background: rgba(59, 130, 246, 0.05);
}

.guarantee-box h2 { font-size: 1.5rem; margin-bottom: 20px; }
.guarantee-box p { font-size: 1rem; font-weight: bold; }

/* Footer */
footer { padding: 60px 20px; background: black; }
.footer-timer { font-size: 2.5rem; color: var(--accent-red); font-weight: 900; margin-bottom: 20px; }

@media (min-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .hero p { font-size: 1.1rem; }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .bonus-card { flex-direction: row; text-align: left; }
    .price-new-value { font-size: 6rem; }
    .section-title { font-size: 2rem; }
}
