/*-----------------------------------POP UP WHATSAPP----------------------------*/
.whatsapp-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 15px 20px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    
}

/* Imagen de WhatsApp */
.whatsapp-bar img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

/* Botón de cierre */
.close-whatsapp {
    background: #ffffff;
    color: #25d366;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
}

/* Ocultar cuando se cierre */
.hidden {
    opacity: 0;
    visibility: hidden;
}

/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxPOP UP WHATSAPP xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/






/*---------------------------------------MENÚ---------------------------------------*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


nav {
    background-color: #0b193f;
    padding: 30px 100px;
    width: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logoimg {
 
    width: 120px;
    height: 150px;
    display: flex;
    align-items: center; /* Centrar verticalmente */
    justify-content: center; /* Centrar horizontalmente */
    position: relative;
    overflow: hidden; /* Evita que la imagen sobresalga */
}

.logoimg img {
    width: 90%; /* Ajusta la imagen al 80% del ancho del contenedor */
    height: auto; /* Mantiene la proporción */
    object-fit: contain; /* Evita deformaciones */
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    padding-right: 50px;
}
nav ul li {
    margin: 0 15px;
    text-align: center; /* Centrar íconos y texto */
}

nav ul li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: bold;
}
nav ul li a:hover{
    color: #00a2ff;
}

nav ul li a i {
    font-size: 18px; /* Tamaño del ícono */
    margin-bottom: -20px; /* Espacio entre ícono y texto */
}





.menu-toggle {
    display: none;
    font-size: 14px;
    background: none;
    border: none;
    color: rgb(255, 255, 255);
    cursor: pointer;
}

.menu-toggle i {
    padding-right: 10px;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed; /* Para que esté encima de todo */
        top: 100px; /* Ajusta según la altura del menú */
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9); /* Fondo semi-transparente */
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 9999; /* Mayor prioridad */
        padding: 20px 0;
        
        }
        
        /* Mostrar el menú cuando se active */
        .nav-links.show {
        display: flex;
        }
}




.logoimg  {
    width: 90px; /* Reduce el tamaño en móviles */
    height: 90px;
    margin-left: 50px;

}



/*xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxMENÚxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx*/







/*----------------------------------------FOOTER----------------------------------------*/
/* Footer */
.footer {
    background-color: #040a18;
    color: white;
    padding: 40px 20px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-info,
.footer-location {
    flex: 1;
    min-width: 300px;
    margin: 10px;
    text-align: left;
}

.footer h3 {
    margin-top: 50px;
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
    text-align: left;
}

.footer p {
    font-size: 16px;
    margin-bottom: 8px;
    text-align: left;
}

/* Mapa responsivo */
.footer-location iframe {
    width: 100%;
    border-radius: 10px;
}





