<style>
    .hero-section {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('/api/placeholder/1920/1080');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
    }
    
    .whatsapp-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: #25d366;
        color: white;
        text-decoration: none;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s;
        margin: 2rem 0;
    }
    
    .whatsapp-button:hover {
        background: #128c7e;
        color: white;
        transform: translateY(-2px);
    }
    
    .whatsapp-button svg {
        fill: currentColor;
    }
    
    .quiz-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .button-outline {
        display: block;
        text-align: center;
        padding: 1rem 2rem;
        border: 2px solid #dc3545;
        color: #dc3545;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: all 0.3s;
        background: rgba(255,255,255,0.1);
    }
    
    .button-outline:hover {
        background: #dc3545;
        color: white;
        transform: translateY(-2px);
    }
    
    .modal-content {
        border-radius: 15px;
        border: none;
    }
    
    .step-indicator {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .step {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #e9ecef;
        color: #6c757d;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
    }
    
    .step.active {
        background: #dc3545;
        color: white;
    }
    
    .step-connector {
        width: 50px;
        height: 2px;
        background: #e9ecef;
        margin: 0 10px;
    }
    
    .option-card {
        border: 2px solid #e9ecef;
        padding: 1.5rem;
        border-radius: 10px;
        margin-bottom: 1rem;
        cursor: pointer;
        transition: all 0.3s;
    }
    
    .option-card:hover,
    .option-card.selected {
        border-color: #dc3545;
        background: rgba(0,212,170,0.1);
    }
    
    .form-step {
        display: none;
    }
    
    .form-step.active {
        display: block;
    }
    
    .hero-digits {
        display: flex;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .hero-digits-block {
        text-align: center;
    }
    
    .block-digit h2 {
        color: #dc3545;
        margin-bottom: 0.5rem;
    }
    
    .statistic-number span {
        font-size: 0.7em;
    }
    
    @media (max-width: 768px) {
        .hero-digits {
            flex-direction: column;
            gap: 1rem;
        }
        
        #hero-8-form {
            margin-top: 2rem;
        }
    }
</style>