/* Estilos para la imagen de fondo del hero en móviles */

.hero-mobile-bg {
    background-image: url('/assets/imgs/hero/hero-1/man.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    opacity: 0.25;
    z-index: 1;
    filter: grayscale(20%);
    transition: opacity 0.3s ease;
}

/* Ajustes responsive para diferentes tamaños de móvil */
@media (max-width: 767px) {
    .hero-mobile-bg {
        background-position: center center;
        background-size: cover;
        opacity: 0.20;
    }
}

@media (max-width: 575px) {
    .hero-mobile-bg {
        background-position: center bottom;
        background-size: 120%;
        opacity: 0.18;
    }
}

/* Asegurar que el texto esté por encima */
.section-hero-1 .container {
    position: relative;
    z-index: 3;
}

/* Efecto sutil de overlay para mejor legibilidad */
.hero-mobile-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

/* Solo en móviles - mejorar contraste del texto */
@media (max-width: 767px) {
    .section-hero-1 h1 {
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .section-hero-1 p {
        text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
}
