/* ==========================================
   BLOQUE VIDEO TIPO NETFLIX – MARIACHI NY
   ========================================== */


html, body {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: manipulation;
}



   .mn-hero-video {
    position: relative;
    width: 100%;
    min-height: 60vh;
    background: #000;
    color: #f5f5f5;
    overflow: hidden;
}

.mn-hero-video-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

/* VIDEO DE FONDO */
.mn-hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
    object-position:center 50%;
}

/* CAPA OSCURA ENCIMA DEL VIDEO */
.mn-hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(0,0,0,0.1) 0, rgba(0,0,0,0.7) 55%, #000 100%);
    /* un toque de dorado suave en la parte izquierda */
    box-shadow: inset 120px 0 180px rgba(212,175,55,0.15);
}

/* CONTENIDO ENCIMA DEL VIDEO */
.mn-hero-video-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 5% 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Etiqueta pequeña */
.mn-hero-video-tag {
    color: #d4af37;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

/* Título grande */
.mn-hero-video-title {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0 0 14px;
}

/* Texto */
.mn-hero-video-text {
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 22px;
}

/* Botones */
.mn-hero-video-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.mn-hero-video-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.mn-hero-video-btn-primary {
    background: linear-gradient(135deg, #d4af37, #c89b2a);
    color: #000;
}

.mn-hero-video-btn-secondary {
    border: 1px solid #d4af37;
    color: #d4af37;
}

.mn-hero-video-btn-primary:hover,
.mn-hero-video-btn-secondary:hover {
    filter: brightness(1.07);
}

/* BOTÓN DE SONIDO — versión pequeña y arriba a la derecha */
#btnSonido {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
    padding: 6px 14px;
    font-size: 0.8rem;
    border-radius: 20px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: 1px solid #d4af37;
    backdrop-filter: blur(4px);
}

#btnSonido:hover {
    filter: brightness(1.2);
}
/* BOTÓN LARGO DEL SONIDO - SIEMPRE ENCIMA DEL VIDEO */
.mn-sound-btn {
  position: absolute !important;
  top: 20px !important;
  right: 20px !important;

  padding: 8px 25px !important;
  border-radius: 50px !important;
  border: 2px solid #f5c400 !important;

  background: rgba(0,0,0,0.7) !important;
  color: white !important;

  font-size: 16px !important;
  font-weight: 600 !important;

  z-index: 99999 !important; /* ENCIMA DE TODO */

  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  cursor: pointer !important;
}

.mn-sound-btn:hover {
  background: rgba(0,0,0,0.9) !important;
}
.mn-packages-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Cada bloque (4 mariachis / 3 mariachis) */
.mn-package {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.mn-package--reverse {
  flex-direction: row-reverse;
}

/* Imagen */
.mn-package-image {
  flex: 1 1 50%;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at top left, #3a1e10 0, #050505 60%);
}

.mn-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Texto */
.mn-package-info {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mn-package-tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-bottom: 8px;
}

.mn-package-title {
  font-size: 2.2rem;
  line-height: 1.1;
  margin: 0 0 18px;
}

.mn-package-text {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 30px;
}

/* Precios */
.mn-package-prices {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.mn-price {
  flex: 1 1 160px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mn-price h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.8;
  margin: 0 0 6px;
}

.mn-price-amount {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 6px;
}

.mn-price-note {
  font-size: 0.85rem;
  line-height: 1.5;
  opacity: 0.85;
}
/* ===============================
   PAQUETES MARIACHI – ESTILO PRO
   =============================== */

.mn-package {
  background: #0f0f0f;
  color: #f5f5f5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.45);
  margin-bottom: 80px;
}

.mn-package-info {
  padding: 60px 50px;
}

.mn-package-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #d4af37;
  border: 1px solid rgba(212,175,55,.4);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.mn-package-title {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.mn-package-text {
  font-size: 16px;
  line-height: 1.7;
  color: #d6d6d6;
  max-width: 700px;
}

/* ===============================
   PRECIOS
   =============================== */

.mn-package-prices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 45px;
}

.mn-price {
  background: #161616;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.mn-price:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,.5);
}

.mn-price h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.mn-price-amount {
  font-size: 40px;
  font-weight: 800;
  color: #d4af37;
  margin: 10px 0;
}

.mn-price-note {
  font-size: 14px;
  line-height: 1.6;
  color: #c9c9c9;
}

/* ===============================
   IMÁGENES
   =============================== */

.mn-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 768px) {
  .mn-package-info {
    padding: 40px 25px;
  }

  .mn-package-title {
    font-size: 28px;
  }

  .mn-price-amount {
    font-size: 34px;
  }
}
.mn-package {
  background: radial-gradient(
    ellipse at top,
    #181818 0%,
    #0b0b0b 75%
  );
  padding: 70px 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mn-package,
  .mn-package--reverse {
    flex-direction: column;
  }

  .mn-package-image,
  .mn-package-info {
    flex: 1 1 auto;
  }

  .mn-section-packages {
    padding: 60px 16px;
  }

  .mn-package-title {
    font-size: 1.8rem;
  }
}


/* Versión MÓVIL */
@media (max-width: 768px) {
    .mn-hero-sound-btn {
        bottom: 18px;
        right: 18px;
        padding: 10px 14px;
        font-size: 0.75rem;
    }
}

/* ===== RESPONSIVE ===== */

@media (min-width: 900px) {
    .mn-hero-video {
        min-height: 75vh;
    }

    .mn-hero-video-content {
        padding-top: 90px;
        padding-bottom: 80px;
    }

    .mn-hero-video-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .mn-hero-video-content {
        text-align: left;
        padding-top: 60px;
        padding-bottom: 40px;
    }

    .mn-hero-video-text {
        max-width: 100%;
    }

    .mn-hero-video-actions {
        justify-content: flex-start;
    }
}
/* AJUSTE SOLO PARA DESKTOP: centra mejor el video */
@media (min-width: 900px) {
    .mn-hero-video-bg {
        object-position: center 30%;
    }
}
/* BOTÓN DE SONIDO — ESTILO CIRCULAR */
.btn-sonido-circular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.6);
  color: #ffd700;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  z-index: 9999; /* Muy importante para que quede arriba */
}

.btn-sonido-circular:hover {
  background: rgba(0,0,0,0.8);
}
.mn-sound-btn{
  position:absolute;
  top:18px;
  right:18px;
  z-index:99999;
  padding:8px 18px;
  border-radius:999px;
  border:1px solid #d4af37;
  background:rgba(0,0,0,.60);
  color:#fff;
  font-weight:600;
  cursor:pointer;
}
.mn-sound-btn:hover{ filter:brightness(1.1); }
.mn-sound-btn{
  position:absolute;
  top:18px;
  right:18px;
  z-index:99999;
  padding:8px 18px;
  border-radius:999px;
  border:1px solid #d4af37;
  background:rgba(0,0,0,.60);
  color:#fff;
  font-weight:600;
  cursor:pointer;
}
.mn-sound-btn:hover{ filter:brightness(1.1); }
.mn-beneficios{
  width:100%;
  background:#050505;
  padding:80px 5%;
  display:flex;
  justify-content:center;
}

.mn-beneficios-box{
  max-width:1200px;
  width:100%;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  background:linear-gradient(90deg, rgba(0,0,0,.85), rgba(0,0,0,.65));
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.6);
}

.mn-beneficios-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.mn-beneficios-text{
  padding:60px 50px;
  color:#f5f5f5;
}

.mn-beneficios-text h2{
  font-size:2.3rem;
  line-height:1.15;
  margin-bottom:20px;
  color:#d4af37;
}

.mn-beneficios-text p{
  font-size:1rem;
  line-height:1.6;
  margin-bottom:24px;
  color:#ddd;
}

.mn-beneficios-text ul{
  list-style:none;
  padding:0;
  margin:0 0 32px;
}

.mn-beneficios-text li{
  margin-bottom:14px;
  font-size:.95rem;
}

.mn-beneficios-btn{
  display:inline-block;
  padding:14px 34px;
  background:linear-gradient(135deg,#d4af37,#c89b2a);
  color:#000;
  border-radius:999px;
  font-weight:700;
  text-decoration:none;
}

.mn-beneficios-btn:hover{
  filter:brightness(1.1);
}

/* RESPONSIVE */
@media(max-width:900px){
  .mn-beneficios-box{
    grid-template-columns:1fr;
  }

  .mn-beneficios-text{
    padding:40px 30px;
  }
}
.mn-pack {
  background: radial-gradient(circle at left, #2b1a0c, #000);
  padding: 80px 5%;
}

.mn-pack-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.mn-pack-text h2 {
  color: #d4af37;
  font-size: 2.6rem;
  margin-bottom: 20px;
}

.mn-pack-text p {
  color: #eee;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 480px;
}

.mn-pack-prices {
  margin: 30px 0;
  display: flex;
  gap: 40px;
}

.mn-pack-prices .price {
  display: block;
  color: #d4af37;
  font-size: 2.4rem;
  font-weight: 700;
}

.mn-pack-prices small {
  color: #ccc;
}

.mn-pack-btn {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #b8922e);
  color: #000;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.mn-pack-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
}

@media (max-width: 900px) {
  .mn-pack-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mn-pack-prices {
    justify-content: center;
  }
}
mn-pack-alt {
  background: radial-gradient(circle at right, #1a1a1a, #000);
}

.mn-pack-alt .mn-pack-inner {
  grid-template-columns: 1fr 1.1fr;
}

@media (max-width: 900px) {
  .mn-pack-alt .mn-pack-inner {
    grid-template-columns: 1fr;
  }
}
.mn-gallery {
  background: radial-gradient(circle at top, #111, #000);
  padding: 90px 6%;
}

.mn-gallery-inner {
  max-width: 1300px;
  margin: auto;
}

.mn-gallery-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #d4af37;
  margin-bottom: 50px;
}

/* GRID */
.mn-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
}

/* IMÁGENES */
.mn-gallery-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  cursor: pointer;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 15px 40px rgba(0,0,0,.5);
}

/* HOVER */
.mn-gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: 0 25px 60px rgba(0,0,0,.7);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .mn-gallery {
    padding: 70px 5%;
  }

  .mn-gallery-title {
    margin-bottom: 35px;
  }
}
/* ===============================
   GALERÍA DE VIDEOS
   =============================== */

.mn-video-gallery {
  background: radial-gradient(circle at top, #111, #000);
  padding: 90px 6%;
}

.mn-video-gallery-inner {
  max-width: 1300px;
  margin: auto;
}

.mn-video-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #d4af37;
  margin-bottom: 50px;
}

/* GRID DE VIDEOS */
.mn-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

/* TARJETA DE VIDEO */
.mn-video-item {
  position: relative;
  background: #000;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}

/* VIDEO */
.mn-video-item video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  background: #000;
}

/* HOVER SUTIL */
.mn-video-item:hover {
  transform: translateY(-4px);
  transition: transform .25s ease;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .mn-video-gallery {
    padding: 70px 5%;
  }

  .mn-video-title {
    margin-bottom: 35px;
  }
}
/* ===============================
   RESEÑAS / TESTIMONIOS
   =============================== */

.mn-reviews {
  background: radial-gradient(circle at top, #111, #000);
  padding: 90px 6%;
  color: #f5f5f5;
}

.mn-reviews-inner {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.mn-reviews-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #d4af37;
  margin-bottom: 12px;
}

.mn-reviews-sub {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 50px;
}

/* GRID */
.mn-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* TARJETA */
.mn-review-card {
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 30px 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,.6);
}

/* ESTRELLAS */
.mn-stars {
  color: #d4af37;
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

/* TEXTO */
.mn-review-text {
  font-size: .95rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 16px;
}

/* NOMBRE */
.mn-review-name {
  font-size: .9rem;
  color: #bbb;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .mn-reviews {
    padding: 70px 5%;
  }
}
/* ===============================
   CONTACTO + LOCALIZACIÓN (SEO)
   =============================== */

.mn-contact{
  background: radial-gradient(circle at top, #111, #000);
  padding: 90px 6%;
  color: #f5f5f5;
}

.mn-contact-inner{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 26px;
  align-items: stretch;
}

/* Tarjetas */
.mn-contact-card,
.mn-locations-card{
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  backdrop-filter: blur(6px);
}

.mn-contact-title{
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  line-height: 1.12;
  color: #d4af37;
}

.mn-contact-text{
  margin: 0 0 20px;
  color: #d8d8d8;
  line-height: 1.6;
  font-size: 1rem;
}

/* Botones */
.mn-contact-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.mn-contact-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: .98rem;
  border: 1px solid rgba(255,255,255,.10);
}

.mn-contact-btn-primary{
  background: linear-gradient(135deg, #d4af37, #c89b2a);
  color: #000;
}

.mn-contact-btn-secondary{
  background: rgba(255,255,255,.04);
  color: #f5f5f5;
  border: 1px solid rgba(212,175,55,.35);
}

.mn-contact-btn-primary:hover,
.mn-contact-btn-secondary:hover{
  filter: brightness(1.06);
}

/* Detalles en “pills” */
.mn-contact-details{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mn-contact-pill{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  color: #eaeaea;
}

.mn-contact-label{
  color: #d4af37;
  font-weight: 700;
}

/* Localización */
.mn-locations-title{
  margin: 0 0 14px;
  font-size: 1.2rem;
  color: #d4af37;
}

.mn-locations-list{
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}

.mn-locations-list li{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  padding: 10px 12px;
  border-radius: 14px;
  color: #eaeaea;
}

.mn-locations-note{
  margin: 0 0 16px;
  color: #cfcfcf;
  line-height: 1.6;
  font-size: .95rem;
}

.mn-map-link{
  display: inline-block;
  text-decoration: none;
  color: #d4af37;
  font-weight: 700;
  border-bottom: 1px solid rgba(212,175,55,.35);
  padding-bottom: 2px;
}

.mn-map-link:hover{
  filter: brightness(1.08);
}

/* Responsive */
@media (max-width: 900px){
  .mn-contact-inner{
    grid-template-columns: 1fr;
  }
  .mn-locations-list{
    grid-template-columns: 1fr;
  }
}
/* ===============================
   FOOTER
   =============================== */

.mn-footer {
  background: linear-gradient(180deg, #000, #0b0b0b);
  color: #e0e0e0;
  padding: 70px 6% 30px;
}

.mn-footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.mn-footer h3,
.mn-footer h4 {
  color: #d4af37;
  margin-bottom: 14px;
}

.mn-footer p {
  font-size: .95rem;
  line-height: 1.6;
  color: #ccc;
}

.mn-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mn-footer ul li {
  margin-bottom: 10px;
  font-size: .95rem;
}

.mn-footer a {
  color: #d4af37;
  text-decoration: none;
}

.mn-footer a:hover {
  text-decoration: underline;
}

/* CTA */
.mn-footer-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #d4af37, #c89b2a);
  color: #000 !important;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.mn-gallery {
 border-radius:20px;
}

/* BOTTOM */
.mn-footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  font-size: .85rem;
  color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .mn-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .mn-footer-inner {
    grid-template-columns: 1fr;
  }
}
.espacio{
  padding-top: 40px;
}
/* ===============================
   RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===============================
   ESTILO INSTAGRAM DARK
================================ */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  background: #121212;            /* gris oscuro IG */
  color: #eaeaea;
}

/* ===============================
   CONTENEDOR CENTRAL (FEED)
================================ */
.ig-container {
  max-width: 1100px;
  margin: auto;
  padding: 30px 14px;
}

/* ===============================
   TÍTULO SIMPLE (como perfil)
================================ */
.ig-title {
  text-align: center;
  margin-bottom: 18px;
}

.ig-title h1 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ===============================
   GRID INSTAGRAM
================================ */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;                      /* MUY PEGADO, estilo IG */
}

/* responsive */
@media (max-width: 900px) {
  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .ig-grid {
    grid-template-columns: 1fr;
  }
}

/* ===============================
   CADA FOTO (POST)
================================ */
.ig-item {
  position: relative;
  overflow: hidden;
  background: #000;
}

.ig-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

/* hover tipo IG */
.ig-item:hover img {
  transform: scale(1.05);
}

/* overlay suave (como IG desktop) */
.ig-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ig-item:hover::after {
  opacity: 1;
}
/* ===== FIX DEFINITIVO: SCROLL FUNCIONA, BARRA NO SE VE, SIN FRANJA BLANCA ===== */
html, body{
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #000; /* por si lo blanco era el fondo del html */
}

/* Mantiene el layout estable */
html{
  overflow-y: scroll;
}

/* Oculta scrollbar (Chrome/Edge/Safari) */
html::-webkit-scrollbar,
body::-webkit-scrollbar{
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* Firefox */
body{
  scrollbar-width: none;
  -ms-overflow-style: none; /* Edge viejo/IE */
}/* ===== SCROLL ON + BARRA INVISIBLE (SIN BLOQUEAR) ===== */
html, body{
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

/* Ocultar scrollbar sin matar el scroll */
body{
  -ms-overflow-style: none;  /* Edge viejo */
  scrollbar-width: none;     /* Firefox */
}

body::-webkit-scrollbar{
  width: 0 !important;
  height: 0 !important;
}