body {
    background-color: #f5f5f5;
    font-family: 'Poppins', sans-serif;

}

.bg-gradient-home {
    background: transparent;
    background: linear-gradient(180deg, rgba(20, 29, 31, 0.352) 0%, rgba(20, 29, 31, 0.922) 40%, rgba(20, 29, 31, 0.988) 100%);
}

.app-color-black {
    color: #0b2545;
}
.app-color-black-light {
    color: #57687e;
}

/* Evita el parpadeo inicial de Alpine */
[x-cloak] { display: none !important; }

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #1a1a1a; /* Color oscuro moderno */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    color: white;
    text-align: center;
}

/* Animación de salida suave */
.fade-out {
    transition: opacity 0.8s ease-out;
    opacity: 0;
}

/* Barra de progreso animada */
.loader-bar {
    width: 200px;
    height: 4px;
    background: #333;
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.progress {
    width: 100%;
    height: 100%;
    background: #00d1b2;
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}