


/* -------------------------Estilos iniciales ---------------------- */

.menu-container {

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* ----    Estilo para el logo  --------- */
.logo {
    font-size: 1.8em;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
}

.logo:hover {
    color: white; 
}


/* ----    Estilo Presentacion --------- */

.presentacion {
    background-color: #003366;
    display: flex;
    align-items: stretch; 
    padding: 20px;
}

.presentacion-foto {
    display: flex;
    width: 100%; 
}

.fotolocal {
    width: 50%; 
    height: 100%; 
    object-fit: cover; 
}

.presentacion-textox {
    color: white;
    background-color:  #003366;
    text-align: left;
    width: 50%; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding-left: 20px;
}

/* ------------------------------- Menu Inferior ------------------------------ */

/* Estilos para el menú inferior */ 
.menu-inferior {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    background-color: #000000; 
    padding: 20px;
    border-top: 2px solid #ccc;
    flex-wrap: wrap; 
}


.menu-inferior div {
    flex: 1;
    margin: 0 15px;
    text-align: center;
}

.menu-inferior p {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    color:  rgb(255, 255, 255)
}

.menu-inferior a {
    color:  rgb(245, 245, 245); 
    text-decoration: none;
}

.menu-inferior a:hover {
    text-decoration: underline;
}

.menu-inferior img {
    margin-top: 10px;
    width: 65px; 
    height: auto;
}


.menu-inferior > div {
    flex: 1;
    margin: 10px;
}


/* Redes Sociales del menu inferior */
.redes-sociales {
    gap: 15px;
}

.redes-sociales img {
    width: 40px;
    height: 40px;
}

.metodos-pago{

    gap: 18px;
}

.metodos-pago img{
    justify-content: center;
    width: 120px;
    height: 90px;
}




/* -------------------------Boton WPP ---------------------- */



.whatsapp-float {
    position: fixed;
    height: 40px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px; 
    transition: transform 0.3s ease;
    text-decoration: none;
}

/* msj botton wpp */
.whatsapp-message {
    font-size: 12px;
    color: #000;
    background-color: #fff;
    padding: 6px 9px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
    font-weight: bold;
}

.whatsapp-float img {
    width: 55px; 
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}




/* -------------------------ANUNCIO---------------------- */

.anuncio {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000; /* Asegura que esté por encima de otros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo transparente oscuro */
}


.anuncio-container {
    background-color: #003366; /* Fondo azul */
    color: white;
    margin: 15% auto;
    padding: 15px;
    border-radius: 25px;
    border-bottom: #fff;
    width: 100%;
    max-width: 400px;
    text-align: center;
    font-size: 1.2em;
    box-shadow: 0px 10px 26px rgba(0, 0, 0, 0.3);
}



/* Botón de cierre */
.close {
    color: rgb(255, 255, 255);
    float: right;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #ddd;
}