:root{
  --bg1:#b48cff;
  --bg2:#1a0f26;
  --bg3:#000000;
  --txt:#f2f2f2;
  --muted:#cfcfcf;
  --card:rgba(0,0,0,.45);
  --border:rgba(255,255,255,.14);
  --accent:#b48cff;
  --shadow: 0 10px 30px rgba(0,0,0,.45);
  --radius:16px;
  --max: 980px;
  --gold: rgb(235,175,28);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  min-height:100vh;
  font-family: Arial, Helvetica, sans-serif;

  background:
    radial-gradient(
      circle at center,
      #b1005c 0%,
      #c0186d 40%,
      #de5fa0 65%,
      #f7d6e8 85%
    );
}
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; -webkit-user-drag:none; user-select:none; }

.wrap{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:14px 14px 90px;
}

/* HERO */
.hero{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  box-shadow: var(--shadow);
  border:1px solid var(--border);
}
.hero img{
  width:100%;
  height:56vh;
  min-height:420px;
  object-fit:cover;
  object-position:center;
  filter: contrast(1.02) saturate(1.05);
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 20%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.78) 100%);
}
.heroContent{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.nameRow{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}
h1{
  color: #ffffff !important;
  margin:0;
  font-size:2rem;
  letter-spacing:.5px;
  line-height:1.05;
}
.badges{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-end;
}
.badge{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.40);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  font-size:.92rem;
  color: var(--txt);
}
.subRow{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  color: var(--muted);
  font-size:1rem;
}
.subRow span{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.35);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}

/* CARDS */
.card{
  margin-top:14px;
  background: var(--card);
  border:1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  overflow:hidden;
}
.cardHeader{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px 10px;
  border-bottom:1px solid rgba(255,255,255,.10);
}
.cardTitle{
  color: #ffffff !important;
  margin:0;
  font-size:1.07rem;
  letter-spacing:.4px;
  display:flex;
  align-items:center;
  gap:10px;  
  color: var(--gold);
  text-shadow: 0 1px 3px rgba(0,0,0,.35);
}
.chip{
  font-size:.88rem;
  color: var(--muted);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
  border-radius:999px;
  padding:8px 10px;
  white-space:nowrap;
}
.cardBody{ padding:14px; }
.about{ color:#ececec; line-height:1.55; font-size:1rem; margin:0; }

/* FACTS */
.facts{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.fact{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}
.fact .k{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-size:.98rem;
  min-width: 55%;
}
.dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(180,140,255,.65);
  flex:0 0 auto;
}
.fact .v{ color: #ffffff !important; font-weight:600; font-size:1rem; text-align:right; }

/* =======================================================
   GALERÍA FINAL – CUADRADA (RECORTE OK)
   ======================================================= */

/* contenedor */
.gallery{
  display:grid;
  gap:14px;
  padding:10px;
}

/* item */
.gItem{
  width:100%;
  aspect-ratio: 1 / 1;      /* 🔥 CUADRADO REAL */
  overflow:hidden;          /* 🔥 permite recorte */
  border-radius:16px;
  background:#000;
  border:1.5px solid rgba(255,255,255,.85);
  cursor:pointer;
}

/* imagen */
.gItem img{
  width:100%;
  height:100%;
  object-fit:cover;         /* 🔥 recorta, llena el cuadro */
  display:block;
  pointer-events:none;
}

/* =========================
   MÓVIL – 2 COLUMNAS
   ========================= */
@media (max-width:599px){
  .gallery{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================
   TABLET – 3 COLUMNAS
   ========================= */
@media (min-width:600px) and (max-width:991px){
  .gallery{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   PC – 4 COLUMNAS
   ========================= */
@media (min-width:992px){
  .gallery{
    grid-template-columns: repeat(4, 1fr);
  }
}




/* VIDEO */
.videoBox{
  width:100%;
  display:flex;
  justify-content:center;
}

/* Video base (móvil y general) */
.profileVideo{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

/* Desktop: horizontal (por defecto) */
@media (min-width: 900px){
  .profileVideo{
    max-width: 860px;
    max-height: 520px;
  }
}

/* Desktop: vertical */
@media (min-width: 900px){
  .profileVideo.is-vertical{
    max-width: 420px;
    max-height: 680px;
  }
}

/* LEGAL */
.legal{
  margin-top:14px;
  color:#EDEDED;
  font-size:.85rem;
  line-height:1.45;
  opacity:.9;
  text-align:center;
  padding:8px 6px 0;
}

/* WhatsApp Sticky */
.waSticky{
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:9999;
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:center;
}
.waBtn{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 16px;
  border-radius:16px;
  background: #1e8e3e;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(0,0,0,.55);
  font-weight:800;
}
.callBtn{
  width:54px;
  height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(180,140,255,0.75), rgba(122,92,255,0.75));
  border:1px solid rgba(255,255,255,.28);
  box-shadow: 0 6px 18px rgba(180,140,255,.45), inset 0 0 0 1px rgba(255,255,255,.12);
  color:#fff;
}
.callBtn:active{ transform: scale(0.96); }

/* MODAL */

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

.modal .close,
.modal .nav{
  position:fixed;
  z-index:1000000;
  color:#fff;
  background:rgba(0,0,0,0.75);
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  border-radius:50%;
  cursor:pointer;
  pointer-events:auto;
}

.modal .close{
  top:16px;
  right:16px;
}

.modal .nav{
  top:50%;
  transform:translateY(-50%);
}

.modal .prev{ left:12px; }
.modal .next{ right:12px; }

.slider{
  position:relative;
  width:95vw;
  height:95vh;
  overflow:hidden;
}

/* ambas capas */
.slider img{
  position:absolute;
  top:50%;
  left:50%;
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  transform:translate(-50%, -50%);
  will-change: transform;
  opacity:0;
}

/* imagen activa */
.slider img.active{
  opacity:1;
  z-index:2;
}

/* imagen entrante */
.slider img.next{
  opacity:1;
  z-index:3;
}

/* posiciones iniciales */
.slider img.enter-right{
  transform:translate(150%, -50%);
}
.slider img.enter-left{
  transform:translate(-150%, -50%);
}

/* ANIMACIONES */
.slider.anim-next .active{
  transition:transform .45s cubic-bezier(.25,.8,.25,1);
  transform:translate(-150%, -50%);
}
.slider.anim-next .next{
  transition:transform .45s cubic-bezier(.25,.8,.25,1);
  transform:translate(-50%, -50%);
}

.slider.anim-prev .active{
  transition:transform .45s cubic-bezier(.25,.8,.25,1);
  transform:translate(150%, -50%);
}
.slider.anim-prev .next{
  transition:transform .45s cubic-bezier(.25,.8,.25,1);
  transform:translate(-50%, -50%);
}

/* ===== MODAL SNAP SLIDER ===== */
.snapSlider{
  display:flex;
  width:100%;
  height:100%;
  overflow-x:auto;
  overflow-y:hidden;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;

  /* 🔥 esto evita “ver vecinos” */
  scroll-padding-left: 0;
  scroll-padding-right: 0;
}

.snapSlider::-webkit-scrollbar{ display:none; }

/* cada “slide” ocupa toda la pantalla */
.snapSlide{
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;

  /* centrar imagen real */
  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden; /* 🔥 clave */
}

/* la imagen NO se agranda más de su tamaño real */
.snapSlide img{
  width:auto;
  height:auto;
  max-width:90vw;
  max-height:90vh;
  object-fit:contain;

  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none;
}

/* ===== COMUNICATE (FUCIA) ===== */

.contactIcons{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}

.contactBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;

  padding:7px 14px;
  border-radius:16px;

  font-weight:700;
  font-size:1.05rem;
  color:#ffffff;

  border: 1.5px solid rgba(255,255,255,.85);
  backdrop-filter: blur(10px);

  transition: transform .15s ease, box-shadow .15s ease;
}

/* WhatsApp – fucsia */
.contactBtn.wa{
  background: linear-gradient(
    135deg,
    #b1005c,
    #d61b7b
  );
  box-shadow: 0 8px 22px rgba(177,0,92,.45);
}

/* Llamar – fucsia un poco más oscuro */
.contactBtn.call{
  background: linear-gradient(
    135deg,
    #9b004f,
    #c2186d
  );
  box-shadow: 0 8px 22px rgba(155,0,79,.45);
}

/* Iconos imagen */
.iconImg{
  width:46px;        /* un poco más compacto */
  height:46px;
  object-fit:contain;
}

/* Feedback */
.contactBtn:active{
  transform: scale(0.96);
}

/* ===== WHATSAPP STICKY FUCIA ===== */

.waSticky .waBtn{
  background: linear-gradient(
    135deg,
    #b1005c,
    #d61b7b
  ) !important;

  color:#ffffff !important;

  border: 1.5px solid rgba(255,255,255,.9) !important;
  box-shadow:
    0 8px 22px rgba(177,0,92,.45),
    inset 0 0 0 1px rgba(255,255,255,.12);
}

/* texto */
.waSticky .waBtn{
  font-weight:800;
  letter-spacing:.3px;
}

/* ===== BOTÓN LLAMADA REDONDO (STICKY) ===== */

.waSticky .callBtn{
  background: linear-gradient(
    135deg,
    #9b004f,
    #c2186d
  ) !important;

  border: 1.5px solid rgba(255,255,255,.9) !important;

  box-shadow:
    0 6px 18px rgba(155,0,79,.45),
    inset 0 0 0 1px rgba(255,255,255,.12);

  color:#ffffff !important;
}

/* icono blanco asegurado */
.waSticky .callBtn svg path{
  fill:#ffffff !important;
}

/* feedback */
.waSticky .waBtn:active,
.waSticky .callBtn:active{
  transform: scale(0.96);
}


/* Desktop: centrado y más compacto */
@media (min-width: 900px){
  .contactIcons{
    grid-template-columns: repeat(2, minmax(220px, 280px));
    justify-content:center;
  }
}


/* Desktop tweaks */
@media (min-width: 720px){
  .wrap{ padding:18px 18px 28px; }
  .hero img{ height:62vh; min-height:520px; }
  h1{ font-size:2.6rem; }
  .facts{ grid-template-columns: 1fr 1fr; }
  .gallery{ grid-template-columns: 1fr 1fr 1fr; }
  .waSticky{ position:static; margin-top:14px; left:auto; right:auto; bottom:auto; }
  .waBtn{ max-width:420px; }
  .callBtn{ display:none; }
}

/* Protecciones suaves */
.noCopy{
  user-select:none;
  -webkit-user-select:none;
  -ms-user-select:none;
}
video::-webkit-media-controls-download-button{ display:none; }
video::-webkit-media-controls-enclosure{ overflow:hidden; }

.modal,
.modal *{
  pointer-events:auto;
}

/* Tablet */
@media (min-width: 600px){
  .gallery{
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Desktop */
@media (min-width: 992px){
  .gallery{
    grid-template-columns: repeat(4, 1fr); /* 🔥 4 por fila */
  }
}

/* =======================================================
   FIX CENTRADO WHATSAPP STICKY (ANDROID / MÓVIL)
   ======================================================= */

.waSticky .waBtn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  line-height:1.2;
  text-align:center;
}

/* evita desalineaciones de texto */
.waSticky .waBtn span,
.waSticky .waBtn p{
  margin:0;
  padding:0;
  display:block;
}

/* iconos perfectamente centrados */
.waSticky .waBtn img,
.waSticky .waBtn svg{
  display:block;
}


/* =======================================================
   BOTONES COMUNÍCATE – OPACIDAD SUAVE + GLASS
   ======================================================= */

.contactBtn{
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* WhatsApp – fucsia con ligera transparencia */
.contactBtn.wa{
  background: linear-gradient(
    135deg,
    rgba(177,0,92,.88),
    rgba(214,27,123,.88)
  );
  box-shadow: 0 8px 22px rgba(177,0,92,.40);
}

/* Llamar – fucsia más oscuro, también suave */
.contactBtn.call{
  background: linear-gradient(
    135deg,
    rgba(155,0,79,.85),
    rgba(194,24,109,.85)
  );
  box-shadow: 0 8px 22px rgba(155,0,79,.40);
}


/* =======================================================
   AJUSTE FINO SOLO MÓVIL
   ======================================================= */

@media (max-width: 480px){
  .contactBtn{
    font-size:1rem;
  }
}


/* =====================================================
   FIX DEFINITIVO GALERÍA 250x250 (FORZADO)
   ===================================================== */

.gallery{
  display:grid !important;
  grid-template-columns: repeat(auto-fill, 230px) !important;
  justify-content:center !important;
  gap:14px !important;
}

.gItem{
  width:230px !important;
  height:230px !important;
  border-radius:14px !important;
  overflow:hidden !important;
  cursor:pointer !important;
}

.gItem img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  pointer-events:none !important;
}

/* =====================================================
   MODAL SIMPLE (AISLADO DE protect.js)
   ===================================================== */

#imgModal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.95);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999999;
}

#imgModal img{
  max-width:95vw;
  max-height:95vh;
  object-fit:contain;
  pointer-events:none;
}

#imgModalClose{
  position:fixed;
  top:18px;
  right:18px;
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(0,0,0,.7);
  color:#fff;
  font-size:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:10000000;
}
/* =====================================================
   GALERÍA RESPONSIVE — 250x250
   PC: 4 | Tablet: 3 | Móvil: 2
   ===================================================== */

/* BASE (móvil por defecto: 2 columnas) */
.gallery{
  display:grid !important;
  grid-template-columns: repeat(2, 230px) !important;
  justify-content:center !important;
  gap:14px !important;
}

.gItem{
  width:230px !important;
  height:230px !important;
  border-radius:14px !important;
  overflow:hidden !important;
  cursor:pointer !important;
}

.gItem img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  pointer-events:none !important;
}

/* TABLET (≥ 600px → 3 columnas) */
@media (min-width: 600px){
  .gallery{
    grid-template-columns: repeat(3, 230px) !important;
  }
}

/* PC / DESKTOP (≥ 992px → 4 columnas) */
@media (min-width: 992px){
  .gallery{
    grid-template-columns: repeat(4, 230px) !important;
  }
}

/* =====================================================
   GALERÍA RESPONSIVE — 220x220
   Móvil: 2 | Tablet: 3 | PC: 4
   ===================================================== */

/* BASE (móvil: 2 columnas) */
.gallery{
  display:grid !important;
  grid-template-columns: repeat(2, 220px) !important;
  justify-content:center !important;
  gap:14px !important;
}

.gItem{
  width:220px !important;
  height:220px !important;
  border-radius:14px !important;
  overflow:hidden !important;
  cursor:pointer !important;
}

.gItem img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  pointer-events:none !important;
}

/* TABLET (≥ 600px → 3 columnas) */
@media (min-width: 600px){
  .gallery{
    grid-template-columns: repeat(3, 220px) !important;
  }
}

/* PC / DESKTOP (≥ 992px → 4 columnas) */
@media (min-width: 992px){
  .gallery{
    grid-template-columns: repeat(4, 220px) !important;
  }
}

@media (max-width: 360px){
  .gallery{
    grid-template-columns: repeat(2, 200px) !important;
  }
}


/* ===== MODAL IMAGEN FULL ===== */
#imgModal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.96);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:2147483646;
}

/* imagen */
#imgModalImg{
  max-width:92vw;
  max-height:92vh;
  object-fit:contain;
  pointer-events:none;
}

/* botón cerrar */
#imgModalClose{
  position:fixed;
  top:16px;
  right:16px;
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(0,0,0,.75);
  color:#fff;
  font-size:28px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:2147483648;
}

/* ===== FLECHAS ===== */
.imgNav{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  width:56px;
  height:56px;
  border-radius:50%;
  background:rgba(0,0,0,.75);
  color:#fff;
  font-size:40px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;

  z-index:2147483648; /* 🔥 MÁS QUE EL MODAL */
  pointer-events:auto;
}

#imgPrev{ left:16px; }
#imgNext{ right:16px; }

.imgNav:active{
  transform:translateY(-50%) scale(0.95);
}

/* móvil */
@media (max-width:600px){
  .imgNav{
    width:44px;
    height:44px;
    font-size:32px;
  }
}

/* =======================================================
   GALERÍA DEFINITIVA – MINIATURAS 220x220
   ======================================================= */

.gallery{
  display:grid;
  gap:14px;
  padding:10px;
}

/* item base */
.gItem{
  width:100%;
  aspect-ratio: 1 / 1;        /* 🔥 CUADRADA */
  border-radius:18px;
  overflow:hidden;
  background:#000;
  border:2px solid rgba(255,255,255,.65);
}

/* imagen */
.gItem img{
  width:100%;
  height:100%;
  object-fit:cover;           /* llena sin deformar */
  display:block;
}

/* =========================
   MÓVIL – 2 POR FILA
   ========================= */
@media (max-width:599px){
  .gallery{
    grid-template-columns: repeat(2, 1fr);
  }

  .gItem{
    max-width:220px;          /* 🔥 tamaño visual */
    margin:0 auto;            /* centrar */
  }
}

/* =========================
   TABLET – 3 POR FILA
   ========================= */
@media (min-width:600px) and (max-width:991px){
  .gallery{
    grid-template-columns: repeat(3, 1fr);
  }

  .gItem{
    max-width:240px;
    margin:0 auto;
  }
}

/* =========================
   DESKTOP – 4 POR FILA
   ========================= */
@media (min-width:992px){
  .gallery{
    grid-template-columns: repeat(4, 1fr);
  }

  .gItem{
    max-width:none;           /* usa el grid */
  }
}

/* =======================================================
   OVERRIDE FINAL GALERÍA (MÓVIL / TABLET / PC)
   ======================================================= */

/* BASE */
.cardBody .gallery{
  display:grid !important;
  gap:14px !important;
  padding:10px !important;
}

/* ITEM */
.cardBody .gallery .gItem{
  aspect-ratio:1 / 1 !important;   /* CUADRADO */
  border-radius:18px !important;
  overflow:hidden !important;
  background:#000 !important;
  border:2px solid rgba(255,255,255,.65) !important;
  margin:0 auto !important;
}

/* IMAGEN */
.cardBody .gallery .gItem img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

/* =========================
   MÓVIL – 2 POR FILA
   ========================= */
@media (max-width:599px){
  .cardBody .gallery{
    grid-template-columns:repeat(2, 1fr) !important;
  }

  .cardBody .gallery .gItem{
    max-width:220px !important;
  }
}

/* =========================
   TABLET – 3 POR FILA
   ========================= */
@media (min-width:600px) and (max-width:991px){
  .cardBody .gallery{
    grid-template-columns:repeat(3, 1fr) !important;
  }

  .cardBody .gallery .gItem{
    max-width:240px !important;
  }
}

/* =========================
   DESKTOP – 4 POR FILA
   ========================= */
@media (min-width:992px){
  .cardBody .gallery{
    grid-template-columns:repeat(4, 1fr) !important;
  }

  .cardBody .gallery .gItem{
    max-width:none !important;
  }
}


/* =======================================================
   FIX DEFINITIVO GALERÍA MÓVIL – SIN RECORTES
   ======================================================= */

@media (max-width: 768px){

  /* liberar restricciones del contenedor */
  .cardBody{
    overflow: visible !important;
  }

  /* galería */
  .cardBody .gallery{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:14px !important;
    padding:0 !important;
    margin:0 !important;
  }

  /* item */
  .cardBody .gallery .gItem{
    width:100% !important;
    aspect-ratio:1 / 1 !important;
    max-width:none !important;
    overflow:hidden !important;
    border-radius:16px !important;
    background:#000 !important;
  }

  /* imagen */
  .cardBody .gallery .gItem img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    display:block !important;
  }
}

/* =======================================================
   FORZADO FINAL – MINIATURAS CUADRADAS EN MÓVIL
   ======================================================= */
@media (max-width: 600px){

  /* contenedor */
  .gallery{
    display:grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap:14px !important;
  }

  /* item cuadrado REAL */
  .gallery .gItem{
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    overflow: hidden !important;
    border-radius:16px !important;
  }

  /* imagen NO puede definir altura */
  .gallery .gItem img{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }
}

/* =======================================================
   FIX FINAL DEFINITIVO – GALERÍA CUADRADA EN MÓVIL
   ======================================================= */

@media (max-width: 600px){

  /* grid cuadrado real */
  .gallery{
    display:grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 1fr !important; /* 🔥 CLAVE */
    gap:14px !important;
  }

  /* item */
  .gallery .gItem{
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    overflow:hidden !important;
    position:relative !important;
  }

  /* imagen */
  .gallery .gItem img{
    position:absolute !important;
    inset:0 !important;
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
  }
}

/* =======================================================
   FIX BOTONES FLOTANTES WHATSAPP – SOLO MÓVIL
   ======================================================= */

@media (max-width: 719px){

  .waSticky{
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;

    display: flex !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 2147483000 !important; /* 🔥 por encima de todo */
    pointer-events: auto !important;
  }

  .waSticky .waBtn{
    flex: 1 !important;
    height: 56px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;

    border-radius: 18px !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
  }

  .waSticky .callBtn{
    width: 56px !important;
    height: 56px !important;
    border-radius: 18px !important;

    display: grid !important;
    place-items: center !important;
  }

  /* evitar que el footer lo tape */
  body{
    padding-bottom: 90px !important;
  }
}
