﻿/* * Animación suave de "respiración" (breathing) para el logo de carga.
 * Alterna suavemente la opacidad y el tamaño para indicar que la app está cargando.
 */

.loader-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
}

.logo-loader {
    width: 350px; /* Puedes ajustar este tamaño según prefieras */
    max-width: 80vw;
    height: auto;
    animation: breathe 2s infinite ease-in-out;
    will-change: transform, opacity;
}

@keyframes breathe {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}
