/* ============================================
   HERO / PORTADA - MEJORAS Y AJUSTES
   Diseño mejorado y responsive
   ============================================ */

/* ==================== HERO SECTION GENERAL ==================== */

.hero {
    position: relative !important;
    width: 100% !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #FFF0F5 0%, #FFF8FA 30%, #FFE4E9 70%, #FFF0F5 100%) !important;
    padding: 120px 0 80px !important;
    overflow: hidden !important;
}

/* ==================== IMAGEN DE FONDO DEL CASTILLO ==================== */

.hero-background-image {
    position: absolute !important;
    top: -10% !important;
    left: -10% !important;
    width: 120% !important;
    height: 120% !important;
    background-image: url('imagenes/Castillo-inflable-portadas.png') !important;
    background-size: contain !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 0 !important;
    opacity: 0.15 !important;
    filter: blur(3px) brightness(1.2) saturate(0.9) !important;
    transform: scale(1.1) !important;
}

/* ==================== OVERLAY TIPO VIDRIO (GLASSMORPHISM) ==================== */

.hero-glass-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(255, 240, 245, 0.92) !important;
    backdrop-filter: blur(5px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(5px) saturate(120%) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Partículas de fondo - Más visibles detrás del texto */
.hero-particles-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    pointer-events: none !important;
    z-index: 2 !important;
    opacity: 1 !important;
    overflow: visible !important;
    filter: blur(0px) !important; /* Sin blur para ver mejor el movimiento */
}

/* Hacer las partículas más visibles y animadas detrás del texto */
.hero-particle {
    opacity: 0.9 !important;
    visibility: visible !important;
    display: block !important;
    animation: floatHeroParticle 15s infinite linear !important;
    filter: drop-shadow(0 0 8px rgba(255, 182, 193, 0.6)) !important;
    will-change: transform, opacity !important; /* Optimización para animaciones */
}

/* Asegurar que la animación muestre las partículas con mejor visibilidad */
@keyframes floatHeroParticle {
    0% {
        transform: translateY(100vh) rotate(0deg) scale(0.6) !important;
        opacity: 0.5 !important;
    }
    10% {
        opacity: 0.85 !important;
    }
    50% {
        opacity: 0.95 !important;
        transform: translateY(50vh) rotate(180deg) scale(1.1) !important;
    }
    90% {
        opacity: 0.85 !important;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg) scale(0.6) !important;
        opacity: 0.5 !important;
    }
}

.hero-particle.ball {
    opacity: 0.95 !important;
    background: radial-gradient(circle at 30% 30%, 
        rgba(255, 182, 193, 1) 0%, 
        rgba(255, 192, 203, 0.85) 40%, 
        rgba(255, 182, 193, 0.7) 70%, 
        transparent 100%) !important;
    border: 3px solid rgba(255, 182, 193, 0.8) !important;
    box-shadow: 0 0 25px rgba(255, 182, 193, 0.6), 
                0 0 50px rgba(255, 182, 193, 0.3) !important;
}

.hero-particle.castle {
    opacity: 0.95 !important;
    background: linear-gradient(45deg, 
        rgba(255, 182, 193, 0.95) 0%, 
        rgba(255, 218, 224, 0.85) 50%, 
        rgba(255, 192, 203, 0.7) 100%) !important;
    border: 2px solid rgba(255, 182, 193, 0.8) !important;
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.5), 
                0 0 40px rgba(255, 182, 193, 0.3) !important;
}

.hero-particle.heart {
    opacity: 0.95 !important;
    background: rgba(255, 182, 193, 0.95) !important;
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.6), 
                0 0 40px rgba(255, 182, 193, 0.3) !important;
}

.hero-particle.heart:before,
.hero-particle.heart:after {
    background: rgba(255, 182, 193, 0.95) !important;
    box-shadow: 0 0 15px rgba(255, 182, 193, 0.5) !important;
}

.hero-particle.star {
    opacity: 0.95 !important;
    background: rgba(255, 182, 193, 0.95) !important;
    border: 2px solid rgba(255, 182, 193, 0.8) !important;
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.6), 
                0 0 40px rgba(255, 182, 193, 0.3) !important;
}

.hero-particle.block {
    opacity: 0.95 !important;
    background: rgba(255, 182, 193, 0.95) !important;
    border: 2px solid rgba(255, 182, 193, 0.8) !important;
    box-shadow: 0 0 20px rgba(255, 182, 193, 0.6), 
                0 0 40px rgba(255, 182, 193, 0.3) !important;
}

/* ==================== CONTENIDO DEL HERO ==================== */

.hero-content {
    display: grid !important;
    grid-template-columns: 1.15fr 1fr !important;
    gap: 5rem !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    z-index: 3 !important;
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 3rem !important;
}

.hero-text {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 2.5rem !important;
    position: relative !important;
    z-index: 4 !important;
    width: 100% !important;
    text-align: left !important;
    padding-right: 2rem !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
}

.hero-welcome,
.hero-brand,
.hero-subtitle-main {
    width: 100% !important;
    text-align: left !important;
}

.hero-buttons {
    justify-content: flex-start !important;
}

/* ==================== BIENVENIDOS ==================== */

.hero-welcome {
    margin-bottom: 0.5rem !important;
    position: relative !important;
    z-index: 4 !important;
}

.hero-welcome-text {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: clamp(1.3rem, 2.8vw, 2rem) !important;
    font-weight: 600 !important;
    color: #B84D7A !important;
    letter-spacing: 0.08em !important;
    text-shadow: 0 2px 12px rgba(255, 255, 255, 0.95) !important;
    opacity: 0.95 !important;
}

/* ==================== BADGE DE LOGRO ==================== */

.hero-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    background: linear-gradient(135deg, #4A90E2, #5BA3F5) !important;
    color: white !important;
    padding: 0.5rem 1rem !important;
    border-radius: 50px !important;
    font-size: clamp(0.75rem, 1.2vw, 0.9rem) !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3) !important;
    letter-spacing: 0.5px !important;
}

.hero-badge i {
    font-size: 1rem !important;
}

/* ==================== MARCA ALMA KIDS - PRINCIPAL ==================== */

.hero-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 1rem 0 2rem !important;
    position: relative !important;
    z-index: 4 !important;
    width: 100% !important;
}

.hero-brand-name-alma {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: clamp(4.5rem, 13vw, 9rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    background: linear-gradient(135deg, #E91E63 0%, #FF6B9D 50%, #FF4081 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 50px rgba(233, 30, 99, 0.6),
                 0 0 100px rgba(233, 30, 99, 0.4),
                 0 4px 25px rgba(233, 30, 99, 0.5) !important;
    display: block !important;
    line-height: 0.95 !important;
    margin-bottom: 0.15rem !important;
    filter: drop-shadow(0 0 25px rgba(233, 30, 99, 0.5)) !important;
    animation: glowPulse 3s ease-in-out infinite !important;
}

.hero-brand-name-kids {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: clamp(3.2rem, 10vw, 7rem) !important;
    font-weight: 900 !important;
    letter-spacing: -0.02em !important;
    background: linear-gradient(135deg, #E91E63 0%, #FF6B9D 50%, #FF4081 100%) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    text-shadow: 0 0 50px rgba(233, 30, 99, 0.6),
                 0 0 100px rgba(233, 30, 99, 0.4),
                 0 4px 25px rgba(233, 30, 99, 0.5) !important;
    display: block !important;
    line-height: 0.95 !important;
    filter: drop-shadow(0 0 25px rgba(233, 30, 99, 0.5)) !important;
    animation: glowPulse 3s ease-in-out infinite 0.5s !important;
}

@keyframes glowPulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(233, 30, 99, 0.4)) brightness(1) !important;
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(233, 30, 99, 0.6)) brightness(1.1) !important;
    }
}

/* ==================== SUBTÍTULO PRINCIPAL ==================== */

.hero-subtitle-main {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.3rem !important;
    margin: 1.5rem 0 1.2rem !important;
    position: relative !important;
    z-index: 4 !important;
}

.hero-subtitle-line-1,
.hero-subtitle-line-2 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: clamp(1.9rem, 4.5vw, 3.2rem) !important;
    font-weight: 700 !important;
    color: #2C2C2C !important;
    letter-spacing: 0.02em !important;
    text-shadow: 0 2px 18px rgba(255, 255, 255, 0.95),
                 0 1px 5px rgba(255, 255, 255, 0.8) !important;
    display: block !important;
    line-height: 1.3 !important;
}

/* ==================== TAGLINE DE ESENCIA ==================== */

.hero-tagline {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.8rem !important;
    margin: 1.5rem 0 1.2rem !important;
    padding: 0.8rem 1.5rem !important;
    background: linear-gradient(135deg, rgba(255, 182, 193, 0.15) 0%, rgba(255, 192, 203, 0.1) 100%) !important;
    border-radius: 50px !important;
    border: 1.5px solid rgba(233, 30, 99, 0.2) !important;
    position: relative !important;
    z-index: 4 !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.1) !important;
}

.hero-tagline-icon {
    font-size: 1.5rem !important;
    animation: sparkle 2s ease-in-out infinite !important;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6)) !important;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg) !important;
        opacity: 1 !important;
    }
    50% {
        transform: scale(1.15) rotate(180deg) !important;
        opacity: 0.9 !important;
    }
}

.hero-tagline-text {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: clamp(1rem, 1.8vw, 1.3rem) !important;
    font-weight: 600 !important;
    color: #C2185B !important;
    letter-spacing: 0.02em !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8) !important;
    font-style: italic !important;
}

/* ==================== MENSAJE INSPIRACIONAL ==================== */

.hero-message {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: clamp(1rem, 1.5vw, 1.15rem) !important;
    font-weight: 400 !important;
    color: #4A4A4A !important;
    line-height: 1.7 !important;
    text-align: center !important;
    max-width: 600px !important;
    margin: 0 auto 2rem !important;
    padding: 0 1rem !important;
    position: relative !important;
    z-index: 4 !important;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9) !important;
}

/* ==================== BOTONES DEL HERO ==================== */

.hero-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-top: 1.5rem !important;
}

.hero-buttons .btn {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem) !important;
    padding: 1rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #E91E63 0%, #FF6B9D 100%) !important;
    color: white !important;
    box-shadow: 0 5px 20px rgba(233, 30, 99, 0.35),
                0 2px 8px rgba(233, 30, 99, 0.2) !important;
    border: none !important;
    font-weight: 700 !important;
    padding: 1.1rem 2.5rem !important;
    border-radius: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    letter-spacing: 0.3px !important;
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, #C2185B 0%, #E91E63 100%) !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 8px 25px rgba(233, 30, 99, 0.45),
                0 4px 12px rgba(233, 30, 99, 0.3) !important;
}

.hero-buttons .btn-primary i {
    font-size: 0.9rem !important;
}

.hero-buttons .btn-secondary {
    background: white !important;
    color: #E91E63 !important;
    border: 2.5px solid #E91E63 !important;
    box-shadow: 0 3px 12px rgba(233, 30, 99, 0.15),
                0 1px 5px rgba(233, 30, 99, 0.1) !important;
    font-weight: 700 !important;
    padding: 1.1rem 2.5rem !important;
    border-radius: 50px !important;
    letter-spacing: 0.3px !important;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(233, 30, 99, 0.08) !important;
    transform: translateY(-3px) scale(1.03) !important;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.25),
                0 3px 10px rgba(233, 30, 99, 0.15) !important;
    border-color: #C2185B !important;
}

.hero-buttons .btn-outline {
    background: transparent !important;
    color: #E91E63 !important;
    border: 2px solid #E91E63 !important;
}

.hero-buttons .btn-outline:hover {
    background: #E91E63 !important;
    color: white !important;
    transform: translateY(-3px) scale(1.05) !important;
}

/* ==================== IMÁGENES DEL HERO ==================== */

.hero-image {
    position: relative !important;
    z-index: 4 !important;
    display: block !important;
    width: 100% !important;
}

.hero-images-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem !important;
    width: 100% !important;
}

.hero-image-item {
    position: relative !important;
    background: white !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 4px 15px rgba(233, 30, 99, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
}

.hero-image-item:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15),
                0 8px 20px rgba(233, 30, 99, 0.12) !important;
}

.hero-image-item img,
.hero-image-item .hero-img {
    width: 100% !important;
    height: 220px !important;
    border-radius: 24px 24px 0 0 !important;
    object-fit: cover !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.hero-image-item:hover img,
.hero-image-item:hover .hero-img {
    transform: scale(1.05) !important;
}

.hero-image-item p {
    margin: 1.2rem 0 !important;
    padding: 0 1.25rem 1.25rem !important;
    text-align: left !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #2C2C2C !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    letter-spacing: 0.01em !important;
}

/* ==================== RESPONSIVE - TABLET ==================== */

@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        min-height: 75vh !important;
        padding: 80px 0 60px !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .hero-images-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 600px !important;
        margin: 0 auto !important;
    }
}

/* ==================== RESPONSIVE - MÓVIL ==================== */

/* ==================== ELEMENTOS GRÁFICOS DECORATIVOS ==================== */

.hero::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 300px !important;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(173, 255, 47, 0.15) 50%, 
        rgba(255, 182, 193, 0.1) 100%) !important;
    clip-path: polygon(0 40%, 100% 20%, 100% 100%, 0 100%) !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.hero::before {
    content: '' !important;
    position: absolute !important;
    bottom: -50px !important;
    right: -50px !important;
    width: 400px !important;
    height: 400px !important;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.2) 0%, transparent 70%) !important;
    border-radius: 50% !important;
    z-index: 0 !important;
    pointer-events: none !important;
    filter: blur(40px) !important;
}

@media (max-width: 1024px) {
    .hero {
        min-height: 90vh !important;
        padding: 100px 0 60px !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 4rem !important;
        padding: 0 2.5rem !important;
    }
    
    .hero-text {
        align-items: center !important;
        text-align: center !important;
        padding-right: 0 !important;
    }
    
    .hero-welcome,
    .hero-brand,
    .hero-subtitle-main {
        text-align: center !important;
    }
    
    .hero-buttons {
        justify-content: center !important;
    }
    
    .hero-brand-name-alma {
        font-size: clamp(3.8rem, 11vw, 6.5rem) !important;
    }
    
    .hero-brand-name-kids {
        font-size: clamp(2.8rem, 8vw, 5rem) !important;
    }
    
    .hero-subtitle-line-1,
    .hero-subtitle-line-2 {
        font-size: clamp(1.6rem, 4vw, 2.8rem) !important;
    }
    
    .hero-tagline {
        margin: 1.2rem 0 1rem !important;
        padding: 0.7rem 1.3rem !important;
    }
    
    .hero-tagline-text {
        font-size: clamp(0.95rem, 1.7vw, 1.2rem) !important;
    }
    
    .hero-message {
        font-size: clamp(0.95rem, 1.4vw, 1.1rem) !important;
        margin: 0 auto 1.8rem !important;
    }
    
    .hero-images-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        max-width: 650px !important;
        margin: 0 auto !important;
        gap: 1.8rem !important;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 85vh !important;
        padding: 80px 0 50px !important;
        background: linear-gradient(135deg, #FFF0F5 0%, #FFF8FA 30%, #FFE4E9 70%, #FFF0F5 100%) !important;
    }
    
    .hero-background-image {
        top: -8% !important;
        left: -8% !important;
        width: 116% !important;
        height: 116% !important;
        opacity: 0.1 !important;
        filter: blur(5px) brightness(1.3) saturate(0.8) !important;
        transform: scale(1.08) !important;
    }
    
    .hero-glass-overlay {
        background: rgba(255, 240, 245, 0.88) !important;
        backdrop-filter: blur(7px) saturate(115%) !important;
        -webkit-backdrop-filter: blur(7px) saturate(115%) !important;
    }
    
    .hero-content {
        padding: 0 2rem !important;
        gap: 3.5rem !important;
    }
    
    .hero-text {
        gap: 2rem !important;
    }
    
    .hero-welcome-text {
        font-size: clamp(1.1rem, 2.5vw, 1.5rem) !important;
    }
    
    .hero-brand {
        margin: 0.5rem 0 1.8rem !important;
    }
    
    .hero-brand-name-alma {
        font-size: clamp(3.2rem, 13vw, 5.5rem) !important;
    }
    
    .hero-brand-name-kids {
        font-size: clamp(2.4rem, 10vw, 4.2rem) !important;
    }
    
    .hero-subtitle-main {
        margin: 1.2rem 0 2.2rem !important;
    }
    
    .hero-subtitle-line-1,
    .hero-subtitle-line-2 {
        font-size: clamp(1.4rem, 4.5vw, 2.2rem) !important;
    }
    
    .hero-subtitle-main {
        margin: 1rem 0 1rem !important;
    }
    
    .hero-tagline {
        margin: 1rem 0 0.9rem !important;
        padding: 0.7rem 1.2rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .hero-tagline-icon {
        font-size: 1.3rem !important;
    }
    
    .hero-tagline-text {
        font-size: clamp(0.9rem, 1.6vw, 1.15rem) !important;
    }
    
    .hero-message {
        font-size: clamp(0.9rem, 1.3vw, 1.05rem) !important;
        margin: 0 auto 1.5rem !important;
        line-height: 1.6 !important;
        padding: 0 0.5rem !important;
    }
    
    .hero-images-grid {
        grid-template-columns: 1fr !important;
        gap: 1.8rem !important;
        max-width: 100% !important;
    }
    
    .hero-image-item img,
    .hero-image-item .hero-img {
        height: 200px !important;
    }
    
    .hero-image-item {
        border-radius: 20px !important;
    }
    
    .hero-image-item img,
    .hero-image-item .hero-img {
        border-radius: 20px 20px 0 0 !important;
    }
    
    /* Mostrar partículas también en móvil */
    .hero-particles-bg {
        display: block !important;
        opacity: 0.7 !important;
    }
    
    .hero-particle {
        opacity: 0.8 !important;
    }
    
    .hero-buttons {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1rem !important;
        width: 100% !important;
        margin-top: 2rem !important;
    }
    
    .hero-buttons .btn {
        flex: 1 1 auto !important;
        min-width: 145px !important;
        max-width: 210px !important;
        justify-content: center !important;
        padding: 1rem 1.8rem !important;
        font-size: 0.98rem !important;
    }
}

/* ==================== MÓVIL PEQUEÑO ==================== */

@media (max-width: 480px) {
    .hero {
        min-height: 80vh !important;
        padding: 70px 0 40px !important;
    }
    
    .hero-content {
        padding: 0 1.5rem !important;
        gap: 3rem !important;
    }
    
    .hero-text {
        gap: 1.8rem !important;
    }
    
    .hero-welcome-text {
        font-size: clamp(1rem, 2.2vw, 1.3rem) !important;
    }
    
    .hero-brand {
        margin: 0.3rem 0 1.5rem !important;
    }
    
    .hero-brand-name-alma {
        font-size: clamp(2.8rem, 16vw, 4.5rem) !important;
    }
    
    .hero-brand-name-kids {
        font-size: clamp(2rem, 13vw, 3.5rem) !important;
    }
    
    .hero-subtitle-main {
        margin: 1rem 0 2rem !important;
    }
    
    .hero-subtitle-line-1,
    .hero-subtitle-line-2 {
        font-size: clamp(1.2rem, 5.5vw, 1.8rem) !important;
    }
    
    .hero-subtitle-main {
        margin: 0.8rem 0 0.9rem !important;
    }
    
    .hero-tagline {
        margin: 0.9rem 0 0.8rem !important;
        padding: 0.6rem 1rem !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
    
    .hero-tagline-icon {
        font-size: 1.2rem !important;
    }
    
    .hero-tagline-text {
        font-size: clamp(0.85rem, 1.5vw, 1rem) !important;
    }
    
    .hero-message {
        font-size: clamp(0.85rem, 1.2vw, 0.95rem) !important;
        margin: 0 auto 1.3rem !important;
        line-height: 1.5 !important;
        padding: 0 !important;
    }
    
    .hero-images-grid {
        gap: 1.5rem !important;
    }
    
    .hero-image-item img,
    .hero-image-item .hero-img {
        height: 180px !important;
    }
    
    .hero-image-item p {
        font-size: 0.95rem !important;
        padding: 0 1rem 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.9rem !important;
    }
    
    .hero-buttons .btn {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.95rem !important;
        padding: 1rem 1.8rem !important;
    }
}

/* ==================== ASEGURAR VISIBILIDAD ==================== */

.hero-content,
.hero-text,
.hero-title,
.hero-subtitle,
.hero-description,
.hero-buttons,
.hero-image,
.hero-images-grid,
.hero-image-item {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-content {
    display: grid !important;
}

.hero-buttons {
    display: flex !important;
}

.hero-images-grid {
    display: grid !important;
}

