.instalaciones {
    padding: 1.25rem 1.25rem 2.5rem;
    max-width: 68.75rem;
    margin: 0 auto;
}

.instalaciones-titulo {
    text-align: center;
    margin-bottom: 1.875rem;
}

.instalaciones-titulo h1 {
    font-size: 2.5rem;
    margin-bottom: 0.625rem;
}

.instalaciones-titulo p {
    color: #555;
}

.zona {
    margin-bottom: 1.875rem;
    text-align: center;
}

.zona h2 {
    font-size: 1.6rem;
    margin-bottom: 0.313rem;
}

.subtitulo {
    margin-top: 1.25rem;
    margin-bottom: 0.625rem;
    font-size: 1.1rem;
    color: #3a3a3a;
}

.decoracion {
    width: 3.75rem;
    height: 2px;
    background: #77482a;
    margin: 0.625rem auto 0.625rem;
}

.descripcion {
    max-width: 43.75rem;
    margin: 0 auto 1.563rem;
    color: #444;
    line-height: 1.6;
}

.galeria {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.625rem;
    justify-content: flex-start;
}

.galeria.centrada {
    justify-content: center;
}

.galeria button {
    background: none;
    border: none;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.galeria button img {
    width: clamp(200px, 30vw, 260px);
    aspect-ratio: 3 / 4;
    border-radius: 8px;
    flex-shrink: 0;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.galeria button:only-child {
    margin: 0 auto;
}

.galeria:has(button:only-child) {
    justify-content: center;
}

.galeria::-webkit-scrollbar {
    height: 5px;
}

.galeria button:hover img {
    transform: scale(1.03);
}

.galeria button:focus {
    outline: 2px solid #77482a;
    outline-offset: 4px;
}

.indicadores {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
}

.indicadores span {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
}

.indicadores span.activo {
    background: #77482a;
}

.reservar {
    text-align: center;
    padding: 2.5rem 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-top: 0;
}

.reservar h2 {
    margin-bottom: 0.625rem;
}

.reservar p {
    margin-bottom: 1.25rem;
    color: #555;
}

.especial {
    background: #f7f5f0;
    padding: 1.25rem 1.25rem;
    border-radius: 14px;
}

.boton {
    display: inline-block;
    padding: 0.75rem 1.563rem;
    background: #77482a;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
    cursor: pointer;
}

.boton:hover {
    background: #945a35;
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.lightbox.activo {
    display: flex;
}

.lightbox-contenido {
    max-width: 95vw;
    max-height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.cerrar {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 2.5rem;
    color: white;
    cursor: pointer;
    z-index: 100000;
    background: rgba(0,0,0,0.4);
    border: none;
    padding: 0;
    width: 2.813rem;
    height: 2.813rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.cerrar:hover {
    background: rgba(0,0,0,0.6);
}

.cerrar:focus {
    outline: 2px solid white;
    outline-offset: 4px;
}

@media (min-width: 768px) {
    .galeria {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
    }


    .galeria button img {
        height: 260px;
    }


    .indicadores {
        display: none;
    }
}
