.hero-section {
    background-color: #F7F5F4;
    overflow: hidden;
}

/* Configuración del texto gigante (Escritorio) */
.hero-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(8rem, 20vw, 22rem); 
    line-height: 0.85;
    color: #000000;
    z-index: 1; 
    user-select: none;
    letter-spacing: 2px;
}

/* Espaciador central (Escritorio) */
.hero-text .spacer {
    display: inline-block;
    width: 1.2em; 
}

/* Configuración de la imagen (Escritorio) */
.hero-img {
    z-index: 2; 
    max-height: 85vh;
    max-width: 90%;
    object-fit: contain;
    animation: floatDesktop 6s ease-in-out infinite;
}

/* Animación estándar para escritorio */
@keyframes floatDesktop {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* ========================================= */
/* AJUSTES PARA DISPOSITIVOS MÓVILES         */
/* ========================================= */
@media (max-width: 768px) {
    .hero-text {
        /* AUMENTADO: Escala agresiva para que el texto sea mucho más grande */
        font-size: clamp(7rem, 28vw, 14rem); 
        line-height: 0.9;
    }
    
    .hero-text .spacer {
        width: 1.2em; 
    }

    .hero-img {
        /* AUMENTADO: Permitimos que la imagen ocupe hasta el 75% de la altura de la pantalla */
        max-height: 75vh; 
        max-width: 100%;
        animation: floatMobile 6s ease-in-out infinite; 
    }
}

/* Animación suave para celulares */
@keyframes floatMobile {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}