body {
    margin: 0;
    overflow: hidden;
    background-color: #0d121c; /* Dark blue background */
    font-family: sans-serif;
}
.logo-image {
    /* valor al tamaño  (ej. 100px) */
    width: 120px; 
    height: auto; /* Mantiene la proporción de la imagen */
    margin-bottom: 20px; /* Espacio entre el logo y el texto de mantenimiento */
    
    /* Opcional: añade un filtro de brillo para que parezca que "brilla" */
    filter: drop-shadow(0 0 5px rgba(135, 206, 250, 0.7));
}

/* --- LANGUAGE SELECTOR STYLES --- */
.language-selector-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10; /* Make sure it's on top of everything */
}

#language-selector {
    padding: 8px 12px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(135, 206, 250, 0.5);
    border-radius: 5px;
    cursor: pointer;
}
/* Ensure options look readable on the dark background */
#language-selector option {
    background-color: #0d121c; 
    color: white;
}

/* --- EXISTING STYLES (NO CHANGES HERE UNLESS ADJUSTING SIZE) --- */

#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; 
}

.logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2; 
}

.glow-sphere {
    width: 300px; 
    height: 300px; 
    border-radius: 50%;
    
    border: 3px solid rgba(135, 206, 250, 0.5);
    box-shadow: 
        0 0 15px 5px rgba(135, 206, 250, 0.4),  
        0 0 40px 10px rgba(135, 206, 250, 0.8),  
        inset 0 0 20px rgba(135, 206, 250, 0.5); 
    
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    background: rgba(0, 0, 0, 0.1);
    
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 
            0 0 10px 3px rgba(135, 206, 250, 0.3),  
            0 0 30px 8px rgba(135, 206, 250, 0.6); 
    }
    100% {
        box-shadow: 
            0 0 20px 7px rgba(135, 206, 250, 0.5),  
            0 0 50px 15px rgba(135, 206, 250, 1); 
    }
}

.maintenance-content {
    color: white;
    padding: 20px;
    line-height: 1.3;
}

.title-text {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 0 0 10px rgba(135, 206, 250, 0.8);
}

.subtitle-text {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-button {
    background-color: #87cefa; 
    color: #0d121c; 
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 0 10px rgba(135, 206, 250, 0.5);
}

.contact-button:hover {
    background-color: #6a9ac2;
    transform: scale(1.05);
}

.contact-options {
    max-height: 0; 
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s;
    display: flex; 
    flex-direction: column;
    gap: 10px; 
    padding-top: 0; 
}

.contact-options.show {
    max-height: 300px; 
    opacity: 1;
    padding-top: 15px;
}

.option-btn {
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: normal;
    transition: background-color 0.3s;
}

.call-btn {
    background-color: #28a745; 
    color: white;
}
.whatsapp-btn {
    background-color: #25d366; 
    color: white;
}
.mail-btn {
    background-color: #dc3545; 
    color: white;
}

.option-btn:hover {
    filter: brightness(1.2);
}

.website-text {
    color: #87cefa; 
    font-size: 14px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeInWebsite 2s ease-out 4s forwards;
}

@keyframes fadeInWebsite {
    to {
        opacity: 1;
    }
}