.imageFondo {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}
.letras {
    color: white;
}
.scroll-container {
    margin: 0;
}

@media (max-width: 900px) {
    .scroll-container {
        display: flex;
        overflow-x: auto;
        gap: 1rem;
    }

    .scroll-container::-webkit-scrollbar {
        display: none;
    }

    .scroll-container > .card {
        flex: 0 0 auto;
        width: 280px;
    }
}

@media (max-width: 1000px) {
    .imageFondo {
        background-image: url("/images/mobile-sangil.png");
    }
    .letras {
        text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
    }
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.8); /* Fondo semi-transparente */
    z-index: 9999; /* Asegura que esté superpuesto */
}

.loader {
    --r1: 154%;
    --r2: 68.5%;
    width: 60px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(
            var(--r1) var(--r2) at top,
            #0000 79.5%,
            #164194 80%
        ),
        radial-gradient(var(--r1) var(--r2) at bottom, #164194 79.5%, #0000 80%),
        radial-gradient(var(--r1) var(--r2) at top, #0000 79.5%, #164194 80%),
        #ccc;
    background-size: 50.5% 220%;
    background-position:
        -100% 0%,
        0% 0%,
        100% 0%;
    background-repeat: no-repeat;
    animation: l9 2s infinite linear;
}
@keyframes l9 {
    33% {
        background-position:
            0% 33%,
            100% 33%,
            200% 33%;
    }
    66% {
        background-position:
            -100% 66%,
            0% 66%,
            100% 66%;
    }
    100% {
        background-position:
            0% 100%,
            100% 100%,
            200% 100%;
    }
}
