/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #349B7D;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
    padding: 20px;
    box-sizing: border-box;
}

.preloader-logo-container {
    text-align: center;
    animation: pulse 1.5s infinite;
    max-width: 100%;
}

.preloader-logo {
    height: 80px;
    margin-bottom: 15px;
    max-width: 100%;
}

/* Texto */
.preloader-text {
    color: white;
    font-size: 18px;
    font-weight: 500;
    animation: fadeInText 1.5s ease-in-out;
    max-width: 90%;
    margin: 0 auto;
}

/* Animaciones */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive para pantallas pequeñas */
@media (max-width: 480px) {
    .preloader-logo {
        height: 60px;
    }

    .preloader-text {
        font-size: 16px;
    }
}
