/* CSS de emergencia para centrar hero section */
.hero-section {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: 70vh !important;
}

.hero-container {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 4rem 2rem !important;
}

.hero-title {
    text-align: center !important;
    font-size: 4rem !important;
    font-weight: 700 !important;
    margin: 0 auto 2rem auto !important;
    color: white !important;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7) !important;
}

.hero-subtitle {
    text-align: center !important;
    font-size: 1.6rem !important;
    margin: 0 auto 3rem auto !important;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
}

.hero-stats {
    margin: 0 auto !important;
    text-align: center !important;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem !important;
    }
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
}
