* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Roboto', sans-serif; 
    background: #000; 
    color: #fff; 
    line-height: 1.6; 
    overflow-x: hidden; 
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h1, h2 { 
    font-family: 'Montserrat', sans-serif; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    color: #ff0000 !important; 
}
h1 { font-size: 4em; margin-bottom: 20px; }
h2 { font-size: 3em; margin-bottom: 40px; }
.btn { 
    display: inline-block; 
    background: #ff0000; 
    color: #fff; 
    padding: 20px 40px; 
    font-size: 20px; 
    font-weight: bold; 
    text-decoration: none; 
    border-radius: 10px; 
    transition: all 0.3s; 
    text-transform: uppercase; 
    border: none; 
    cursor: pointer;
}
.btn:hover { background: #cc0000; transform: scale(1.05); }
.buy-btn { font-size: 24px; padding: 25px 60px; }
section { padding: 80px 0; text-align: center; }
#hero { 
    background: linear-gradient(45deg, #ff0000, #cc0000, #ff0000); 
    min-height: 100vh; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    flex-direction: column; 
}
#hero p { font-size: 1.5em; margin-bottom: 40px; max-width: 800px; }
.list { 
    list-style: none; 
    max-width: 600px; 
    margin: 40px auto; 
}
.list li { 
    background: rgba(255,0,0,0.2); 
    margin: 15px 0; 
    padding: 20px; 
    border-radius: 10px; 
    font-size: 1.2em; 
    border-left: 5px solid #ff0000;
}
.bonus { 
    background: rgba(0,255,0,0.1); 
    padding: 40px; 
    margin: 40px 0; 
    border-left: 5px solid #00ff00; 
    max-width: 600px; 
    margin-left: auto; 
    margin-right: auto;
}
.total-bonus { font-size: 1.5em; color: #00ff00; font-weight: bold; margin-top: 20px; }
.price { font-size: 4em; margin: 40px 0; }
.old-price { text-decoration: line-through; color: #ccc; font-size: 0.5em; }
.urgency { font-size: 1.5em; color: #ffff00; font-weight: bold; margin-bottom: 20px; }
.countdown { font-size: 2em; color: #ffff00; font-weight: bold; margin: 20px 0; animation: pulse 1s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.exemplos-grid, .depoimentos-grid { 
    display: flex; 
    flex-wrap: wrap; 
    justify-content: center; 
    gap: 20px; 
    margin-top: 40px; 
}
.exemplo-card, .depo { 
    background: rgba(255,0,0,0.2); 
    padding: 30px; 
    border-radius: 15px; 
    width: 300px; 
    border-left: 5px solid #ff0000;
    font-size: 1.1em;
}
#garantia { background: rgba(0,255,0,0.1); }
#garantia h2 { color: #00ff00 !important; }
.faq-item { 
    background: rgba(255,0,0,0.1); 
    margin: 20px 0; 
    padding: 25px; 
    border-radius: 10px; 
    cursor: pointer; 
    border-left: 5px solid #ff0000;
    text-align: left;
    transition: all 0.3s;
}
.faq-item:hover { background: rgba(255,0,0,0.3); }
.faq-answer { 
    margin-top: 15px; 
    font-style: italic; 
    display: none; 
}
footer { 
    background: #111; 
    padding: 30px 0; 
    font-size: 0.9em; 
    border-top: 3px solid #ff0000;
}
@media (max-width: 768px) { 
    h1 { font-size: 2.5em; } 
    h2 { font-size: 2em; }
    .btn { padding: 15px 30px; font-size: 16px; }
    .buy-btn { font-size: 20px; padding: 20px 40px; }
    .exemplos-grid, .depoimentos-grid { flex-direction: column; align-items: center; }
}