.icon-fluma {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    background: var(--brand-primary);
    height: 24px;
    width: 24px;
    min-width: 24px;
    border-radius: 12px;
    margin-right: var(--spacing-2x);
    color: #fff;    
    padding: 6px;
    font-size: 14px;
}

.alert-predefined-icon-container {
    padding-top: 7px;
    padding-right: 5px;
}
.feature-title-fluma {
    font-size: 18px;
    font-weight: 600;
    line-height: 18px;
}


        
        
/* ESTILOS DE LA SECCIÓN */
.migration-hero-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}

/* Contenedor del contenido */
.migration-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
    text-align: center;
}



/* =========================================== */
/* CSS EXCLUSIVO PARA IMÁGENES LATERALES */
/* =========================================== */

/* CONTENEDOR DE IMÁGENES DECORATIVAS */
.hero-side-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    pointer-events: none;
    z-index: 5;
}

/* IMÁGENES DECORATIVAS - OCULTAS POR DEFECTO */
.hero-side-image-left,
.hero-side-image-right {
    height: 500px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    filter: 
        brightness(1.1) 
        drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    transition: opacity 0.5s ease, transform 0.5s ease;
    
    /* OCULTAR EN TODAS LAS PANTALLAS POR DEFECTO */
    display: none;
}

/* MOSTRAR IMÁGENES SOLO EN PANTALLAS ≥1260px */
@media (min-width: 1260px) {
    .hero-side-image-left,
    .hero-side-image-right {
        display: block;

    }
    
    @keyframes floatIn {
        from {
            opacity: 0;
            transform: translateY(50px);
        }
        to {
            opacity: 0.9;
            transform: translateY(0);
        }
    }
    
    /* Imagen izquierda */
    .hero-side-image-left {
        transform: translateX(-12%);
        align-self: flex-end;
    }
    
    /* Imagen derecha */
    .hero-side-image-right {
        transform: translateX(12%);
        align-self: flex-end;
    }
}

/* AJUSTES PARA PANTALLAS MUY GRANDES */
@media (min-width: 1600px) {
    .hero-side-image-left,
    .hero-side-image-right {
        height: 550px;
    }
    
    .hero-side-image-left {
        transform: translateX(-18%);
    }
    
    .hero-side-image-right {
        transform: translateX(18%);
    }
}

@media (min-width: 1920px) {
    .hero-side-image-left,
    .hero-side-image-right {
        height: 600px;
    }
    
    .hero-side-image-left {
        transform: translateX(-22%);
    }
    
    .hero-side-image-right {
        transform: translateX(22%);
    }
}

/* hamburguer-menu-fixed.css */

/* Estilos para móvil */
@media (max-width: 991.98px) {
    /* El menú debe estar fuera de la pantalla cuando está cerrado */

    
    /* Cuando está abierto */
    .app-nav-menu.menu-open {
        transform: translateX(0) !important;
    }
    
    /* Overlay */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1029;
    }
    
    /* Bloquear scroll cuando el menú está abierto */
    body.menu-open {
        overflow: hidden !important;
        position: fixed;
        width: 100%;
    }
    
    /* Ajustes para el header */
    .app-nav.menu-open {
        position: relative;
        z-index: 1031;
    }
}



/* Ajuste para el botón hamburguesa en escritorio */
@media (min-width: 992px) {
    .app-nav-toggle {
        display: none !important;
    }
    
    .app-nav-menu {
        transform: none !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        background: transparent !important;
        box-shadow: none !important;
        overflow: visible !important;
    }
}

/* 
 * Estilos para animación fade-in + slide-up suave y lenta
 */

/* Estado inicial - elemento invisible pero ocupando espacio */
[data-animation-css] {
    opacity: 0;
    will-change: opacity, transform;
    /* NO usar transform: none !important aquí porque necesitamos transform para la animación */
}

/* Clase que se agrega cuando el elemento es visible */
.fade-in-visible {
    animation: gentleFadeInUp 1.2s ease-out forwards; /* Más lento: 1.2s */
}

/* Animación suave de fade-in + movimiento desde abajo */
@keyframes gentleFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px); /* Comienza 40px más abajo */
    }
    60% {
        opacity: 0.8; /* Llega al 80% de opacidad más rápido */
        transform: translateY(5px); /* Se acerca a la posición final */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Posición final exacta */
    }
}

/* Versión alternativa más suave */
@keyframes gentleFadeInUp2 {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Versión con efecto easing más dramático */
@keyframes gentleFadeInUp3 {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.98);
    }
    70% {
        opacity: 0.7;
        transform: translateY(10px) scale(1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Versión con delays escalonados (más lentos) */
.fade-in-visible.delay-1 { animation-delay: 0.2s; }
.fade-in-visible.delay-2 { animation-delay: 0.4s; }
.fade-in-visible.delay-3 { animation-delay: 0.6s; }
.fade-in-visible.delay-4 { animation-delay: 0.8s; }
.fade-in-visible.delay-5 { animation-delay: 1s; }

/* Estado completado */
.animation-completed {
    will-change: auto;
}

/* Opcional: Variaciones de duración */
.fade-in-visible.slow { 
    animation-duration: 1.8s; /* Más lento aún */
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1); /* Easing premium */
}
.fade-in-visible.fast { 
    animation-duration: 0.8s; 
}

/* Para preferencias de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .fade-in-visible {
        animation: gentleFadeIn 1.5s ease-out forwards !important; /* Sin movimiento */
        transition: opacity 1.5s ease-out;
    }
}

