/* Galería de fotos - estilos base */
.gallery-section{padding:4rem 0;background:#fff}
.gallery-container{max-width:1200px;margin:0 auto;padding:0 2rem}
.gallery-title{font-size:2rem;font-weight:700;margin:0 0 1rem;color:#2c3e50}
.gallery-tabs{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1rem}
.gallery-tab{background:#f4a261;color:#fff;border:none;border-radius:999px;padding:.6rem 1rem;font-weight:700;cursor:pointer}
.gallery-tab:not(.active){opacity:.7}
.gallery-tab:hover{opacity:1;transform:translateY(-1px)}
.gallery-strip{display:flex;gap:8px;overflow:auto;padding:8px 0;margin-bottom:12px}
.gallery-strip img{height:72px;width:auto;border-radius:6px;cursor:pointer;flex:0 0 auto;opacity:.9;transition:.2s}
.gallery-strip img:hover{opacity:1;transform:scale(1.03)}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px}
@media (max-width:900px){.gallery-grid{grid-template-columns:repeat(3,1fr)}}
@media (max-width:600px){.gallery-grid{grid-template-columns:repeat(2,1fr)}}
.gallery-grid img{width:100%;height:auto;border-radius:10px;cursor:pointer;display:block}
.gallery-lightbox{position:fixed;inset:0;background:rgba(0,0,0,.9);display:none;align-items:center;justify-content:center;z-index:20000}
.gallery-lightbox.active{display:flex}
.gallery-lightbox img{max-width:90vw;max-height:90vh}
.glb-close{position:absolute;top:20px;right:20px;width:44px;height:44px;border-radius:50%;border:0;background:rgba(255,255,255,.15);color:#fff;font-size:28px;cursor:pointer}
