/* Fondo principal del Home */
.home-bg {
    background: linear-gradient(180deg, #3e088f 0%, #581c87 100%);
}


/* styles for the splash screen */
.splash {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2e0a5e, #6b21a8);
    color: white;
    text-align: center;
    font-family: sans-serif;
}

/* LOGO */
.logo {
    font-size: 60px;
    margin-bottom: 10px;
    animation: float 2s infinite ease-in-out;
}

/* TITULOS */
.title {
    font-size: 28px;
    font-weight: 800;
}

.subtitle {
    opacity: 0.7;
    margin-bottom: 30px;
}

/* ICONO LIBRO */
.book {
    font-size: 40px;
    margin-bottom: 20px;
    animation: pulse 1.5s infinite;
}

/* BARRA */
.progress {
    width: 250px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, #a855f7, #c084fc);
    animation: loading 1.5s infinite;
}

/* TEXTO */
.loading-text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

/* BADGES */
.badges {
    display: flex;
    gap: 15px;
    font-size: 13px;
    opacity: 0.8;
}

/* ANIMACIONES */
@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(300%);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}