/* ===== CORREÇÕES ESPECÍFICAS PARA HERO NO MODO MOBILE ===== */

/* Corrigir hero overlay no mobile para não criar espaçamento */
@media (max-width: 768px) {
    .hero {
        margin-top: 70px !important;
        padding-top: 0 !important;
        position: relative;
        overflow: hidden;
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-overlay {
        position: absolute;
        top: 0 !important;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-slider {
        position: absolute;
        top: 0 !important;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .hero-slider .slide {
        position: absolute;
        top: 0 !important;
        left: 0;
        width: 100%;
        height: 100%;
        margin: 0 !important;
        padding: 0 !important;
    }
}

/* Remover sombra do título no mobile */
@media (max-width: 768px) {
    .hero-title {
        text-shadow: none !important;
        font-size: 1.8rem !important;
        line-height: 1.1;
        margin-bottom: 12px;
        font-weight: 700;
    }
    
    .hero-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 15px;
        opacity: 0.9;
        line-height: 1.3;
    }
    
    /* Reduzir tamanho dos textos dos slides */
    .hero-slide h2 {
        font-size: 1.1rem !important;
        margin-bottom: 8px;
        text-shadow: none !important;
        font-weight: 600;
    }
    
    .hero-slide p {
        font-size: 0.75rem !important;
        line-height: 1.3;
        opacity: 0.9;
        max-width: 100%;
    }
    
    /* Ajustar espaçamento dos slides */
    .hero-slides {
        margin-bottom: 25px;
    }
    
    /* Reduzir tamanho dos stats */
    .hero-stats {
        gap: 12px !important;
        margin-top: 15px;
        flex-wrap: wrap;
    }
    
    .stat-item {
        text-align: center;
        min-width: 70px;
    }
    
    .stat-number {
        font-size: 1.2rem !important;
        font-weight: 700;
        display: block;
        margin-bottom: 2px;
    }
    
    .stat-label {
        font-size: 0.65rem !important;
        opacity: 0.8;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
}

/* Ajustes ainda menores para telas muito pequenas */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem !important;
        margin-bottom: 10px;
    }
    
    .hero-subtitle {
        font-size: 0.8rem !important;
        margin-bottom: 12px;
    }
    
    .hero-slide h2 {
        font-size: 1rem !important;
        margin-bottom: 6px;
    }
    
    .hero-slide p {
        font-size: 0.7rem !important;
        line-height: 1.2;
    }
    
    .hero-slides {
        margin-bottom: 15px;
    }
    
    .hero-stats {
        gap: 10px !important;
        margin-top: 12px;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 60px;
    }
    
    .stat-number {
        font-size: 1rem !important;
    }
    
    .stat-label {
        font-size: 0.6rem !important;
    }
}

/* Garantir que não haja sombras em nenhum elemento do hero no mobile */
@media (max-width: 768px) {
    .hero * {
        text-shadow: none !important;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-slide h2,
    .hero-slide p,
    .stat-number,
    .stat-label {
        text-shadow: none !important;
    }
}
