body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0 2vw;
    background: #f7f7f7;
    color: #222;
}

header, h1, h2, h3, h4, h5, h6, .titulo-principal {
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

header {
    background: #f6f7f7;
    color: #000000;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
}

header h1, header .titulo-principal {
    text-align: center;
    margin: 0 auto 0 auto;
    display: block;
    width: fit-content;
    font-size: 3rem;
}

header {
    background: #f3f5f5;
    color: #000000;
    padding: 2rem 1rem 1rem 1rem;
    text-align: center;
}
    header h1, header .titulo-principal {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 100%;
    }

.subtitulo-localidad {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: #000000;
    letter-spacing: 0.5px;
}
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem;
@media (max-width: 600px) {
    body {
        padding: 0 0.5rem;
    }
    main {
        padding: 1rem 0.5rem;
    }
}
}

.descripcion {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
    margin-bottom: 2rem;
}
.descripcion ul {
    margin: 0 0 1.5rem 1.5rem;
}
.descripcion h2 {
    margin-top: 1.5rem;
}

.galeria {
    margin-bottom: 2rem;
}
.galeria h2 {
    margin-bottom: 1rem;
}
.galeria-indicacion {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1rem;
}
.imagenes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}
.imagenes a {
    display: block;
    cursor: zoom-in;
}
.imagenes img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    background: #e0e0e0;
    transition: transform 0.2s;
}
.imagenes img:hover {
    transform: scale(1.04);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    flex-direction: column;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
    background: #fff;
}
.lightbox-close {
    color: #fff;
    font-size: 2.5rem;
    position: absolute;
    top: 32px;
    right: 48px;
    cursor: pointer;
    font-weight: bold;
    z-index: 1100;
    transition: color 0.2s;
}
.lightbox-close:hover {
    color: #ff5252;
}

.contacto {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
}
.fb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    color: #1976d2;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25em;
    transition: color 0.2s;
}
.fb-link:hover {
    color: #1256a6;
    text-decoration: underline;
}
.fb-icon {
    width: 2em;
    height: 2em;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    margin-right: 0.1em;
    vertical-align: middle;
}

footer {
    text-align: center;
    color: #888;
    font-size: 0.95rem;
    padding: 1.5rem 0 1rem 0;
}

@media (max-width: 600px) {
    main {
        padding: 1rem 0.5rem;
    }
    .descripcion, .contacto {
        padding: 1rem;
    }
    .imagenes {
        grid-template-columns: 1fr;
    }
    .imagenes img {
        height: 140px;
    }
    .lightbox-img {
        max-width: 98vw;
        max-height: 60vh;
    }
}
