body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background-color: #b92d2d;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 15px 15px;
}

.logo {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.titulo-header {
    text-align: left;
}

.titulo-header h1 {
    font-family: 'Lobster', cursive;
    font-size: 48px;
    margin: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.titulo-header p {
    font-size: 20px;
    margin-top: 5px;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Navegación mejorada */
nav {
    background-color: #e04848;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 12px 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    margin: 20px auto;
    max-width: 900px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 transparent;
}

nav a:hover {
    background-color: #b92d2d;
    box-shadow: 0 0 8px rgba(185, 45, 45, 0.7);
}

/* Contenedor principal */
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* Bienvenida */
.bienvenida {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Menú con títulos y efecto hover */
#menu h2 {
    font-family: 'Lobster', cursive;
    font-size: 36px;
    color: #b92d2d;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.menu-imgs {
    height: 400px;
    /* altura fija para ventana con scroll */
    overflow-y: auto;
    /* scroll vertical automático */
    display: flex;
    flex-direction: column;
    /* imágenes apiladas verticalmente */
    gap: 0;
    /* sin espacio entre imágenes */
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);

}

/* Imágenes sin margen ni borde para que queden pegadas */
.menu-imgs img {
    width: 100%;
    display: block;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    cursor: pointer;
    transition: none;

}

/* Scroll personalizado para navegadores basados en Webkit (Chrome, Edge, Safari) */

.menu-imgs::-webkit-scrollbar {
    width: 10px;
    border-radius: 10px;

}

.menu-imgs {
    height: 600px;
    /* más altura */
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    position: relative;

}

/* Indicador visual de scroll */
.menu-imgs::after {
    content: "⇩ Deslizá para ver más";
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: #b92d2d;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 8px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    z-index: 10;

}

.menu-imgs img {
    width: 100%;
    display: block;
    border-radius: 0;
    margin: 0;
    box-shadow: none;
    cursor: pointer;
    transition: none;

}

/* Scroll personalizado Webkit */
.menu-imgs::-webkit-scrollbar {
    width: 6px;

}

.menu-imgs::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;

}

.menu-imgs::-webkit-scrollbar-thumb {
    background-color: #b92d2d;
    border-radius: 10px;
    border: 1px solid #f0f0f0;

}

/* Scroll para Firefox */
.menu-imgs {
    scrollbar-width: thin;
    scrollbar-color: #b92d2d #f0f0f0;

}

.ubicacion p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.mapa-container iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Botón WhatsApp flotante original grande */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.whatsapp-button img {
    width: 300px;
    height: auto;
}

/* Footer */
footer {
    background-color: #b92d2d;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 -3px 8px rgba(0, 0, 0, 0.2);
}

/* Modal estilos */
#modalImg {
    display: none;
    /* oculto por defecto */
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    align-items: center;
    justify-content: center;
}

#modalImg img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

#modalImg:focus {
    outline: none;
}

/* Cerrar botón */
#modalImg .closeBtn {
    position: absolute;
    top: 25px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    transition: color 0.3s ease;
}

#modalImg .closeBtn:hover {
    color: #b92d2d;
}

/* Responsive */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
        border-radius: 0 0 15px 15px;
    }

    .titulo-header h1 {
        font-size: 36px;
    }

    .titulo-header p {
        font-size: 18px;
    }

    .logo {
        max-width: 150px;
    }

    nav {
        gap: 12px;
        padding: 10px 0;
    }

    nav a {
        font-size: 16px;
        padding: 6px 10px;
    }

    /* WhatsApp botón responsive */
    .whatsapp-button img {
        width: 200px;
    }
}