:root {
    --primary: #000000;
    --secondary: #eab308; /* Amarelo Gold para o "Black" */
    --accent: #22c55e; /* Verde para Saúde/Detox */
    --text: #1f2937;
    --bg: #f9fafb;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    text-align: center;
}

.container { max-width: 800px; margin: 0 auto; padding: 0 20px; }

.header { background: #000; padding: 15px 0; border-bottom: 3px solid var(--secondary); }
.logo { color: #fff; font-size: 1.2rem; letter-spacing: 2px; }
.logo strong { color: var(--secondary); }

.main-content { padding: 40px 0; }

.badge {
    background: #dcfce7;
    color: #166534;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    display: inline-block;
    margin-bottom: 20px;
}

h1 { font-size: 2.2rem; font-weight: 900; line-height: 1.2; margin-bottom: 20px; }
.highlight { color: var(--secondary); background: #000; padding: 0 10px; border-radius: 4px; }

.subtitle { font-size: 1.1rem; color: #4b5563; margin-bottom: 30px; }

.video-container {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.product-img { max-width: 100%; border-radius: 10px; }

.benefits-simple {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
    font-weight: 700;
    font-size: 0.9rem;
}

.cta-btn {
    display: block;
    background: #22c55e;
    color: #fff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
    transition: transform 0.2s;
}

.cta-btn:hover { transform: scale(1.03); }

.stock-warning { margin-top: 15px; color: #dc2626; font-size: 0.85rem; font-weight: bold; }

.footer { background: #f3f4f6; padding: 40px 0; font-size: 0.8rem; color: #6b7280; margin-top: 60px; }
.footer-links { margin: 15px 0; }
.footer-links a { color: #6b7280; text-decoration: none; margin: 0 10px; }
.disclaimer { font-style: italic; margin-top: 15px; }

/* Animações */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
.pulse-glow { animation: pulse 2s infinite ease-in-out; }

@media (max-width: 600px) {
    h1 { font-size: 1.8rem; }
}