body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f9fa; /* Fondo claro y limpio */
    color: #343a40;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

/* Loader Styles */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
}

.loader {
    width: 50px;
    height: 50px;
    border: 5px solid #e0e0e0;
    border-top-color: #007bff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Container Styles */
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0; /* Se hace visible después de cargar */
    transition: opacity 0.5s ease-in;
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

.logo {
    margin-bottom: 10px;
}

main {
    margin-bottom: 10px;
}

h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #007bff;
    font-weight: 700;
}

p {
    font-size: 1.3em;
    color: #6c757d;
    margin-bottom: 30px;
}

.message {
    display: none;
}

.message.active {
    display: block;
}

.language-switcher button {
    background: none;
    border: none;
    color: #007bff;
    font-size: 1.1em;
    cursor: pointer;
    margin: 0 5px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.language-switcher button:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

/* Progress Bar Animation */
.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: #007bff;
    animation: loading-progress 6s infinite alternate; /* Animación de carga */
}

@keyframes loading-progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    p {
        font-size: 1em;
    }
    .logo svg {
        width: 180px;
        height: 54px;
    }
    .logo text {
        font-size: 25px;
        y: 38;
    }
    .