/* Fondo único aplicado al main */
main.home {
  background: url('/buscandoconlupa/img/lupa_home_fondo_1.png') repeat;
}

main {
  background: url('/buscandoconlupa/img/lupa_fondo.png') repeat center center;
  background-size: 3000px 4000px; 

}

/* Parte principal */
.home_buscalupa {
  position: relative;
  text-align: center;
  padding: 80px 0px 0px; /* más aire abajo para los carritos/góndola */
}

.buscalupa_wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.buscalupa_logo {
  max-width: 550px;
  margin: 0 auto 20px;
  display: block;
}

/* Texto */
.buscalupa_text {
  font-size: 16px;
  color: #333;
  max-width: 600px;
  margin: 0 auto 30px;
  text-align: center;
}

/* Contenedor de imágenes */
.buscalupa_images {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* max-width: 1000px; */  
  margin: 0 auto;
}

/* Carritos */
.buscalupa_carritos {
  max-width: 280px;
  height: auto;
}

/* Góndola */
.buscalupa_gondola {
  max-width: 320px;
  height: auto;
}


/* Parte del Vale */
.home_banner {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.banner_wrap.overlay {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 350px; /* mismo alto que la imagen */
  background: url('/buscandoconlupa/img/lupa_home_fondo_persona_lupa_1.png') no-repeat center;
  background-size: cover;
}

/* Texto sobre la imagen */
.banner_content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%); /* centra el bloque verticalmente */
  max-width: 45%; /* menos ancho para que no choque con el personaje */
  text-align: left;
  color: #1b1e3c;
}

.banner_content h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.banner_content p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}


/* Botón */
.banner_btn {
  display: inline-block;
  padding: 14px 35px;
  background: #00a0e3;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
  transition: all 0.2s ease;
}

.banner_btn:hover {
  background: #007bb5;
}


/* secciones */
/* Contenedor principal */
.home_secciones {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas iguales */
  gap: 30px; /* espacio entre items */
  padding: 0px 20px;
  max-width: 1200px;
  margin: 0 auto; /* centrar el grid */
}

/* Cada sección como tarjeta flexible */
.seccion {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff0; /* transparente (o poné #fff si querés un fondo) */
  padding: 10px;
}

/* Imágenes iguales */
.seccion_img {
  width: 100%;
  max-width: 250px;    /* mismo ancho máximo */
  height: 350px;       /* altura fija */
  object-fit: contain; /* ajusta imagen sin deformarla */
  margin-bottom: auto; /* empuja el botón hacia abajo */
}

/* Botones alineados */
.seccion_btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 30px;
  background: #00a0e3;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
  transition: all 0.2s ease;
}

.seccion_btn:hover {
  background: #007bb5;
}

.seccion_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none; /* saca subrayado */
  color: inherit;        /* mantiene color */
}

.seccion_link .seccion_btn {
  margin-top: 15px;
  padding: 12px 30px;
  background: #00a0e3;
  color: #fff;
  font-weight: bold;
  border-radius: 4px;
  box-shadow: 3px 3px 0 #000;
  transition: all 0.2s ease;
}

.seccion_link .seccion_btn:hover {
  background: #007bb5;
}



/* Modal Video*/
.modal-video {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  z-index: 9999;
}

.lupa-modal {
  position: relative;
  max-width: 800px;
  margin: 5% auto;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
}

.lupa-modal iframe {
  width: 100%;
  height: 450px;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 30px;
}

.video-preview {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
}

.video-preview img {
  width: 100%;
  border-radius: 8px;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #00A0DD;
  color: #1B1E3C;
  font-size: 30px;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
}




/* Version Mobile */

@media (max-width: 768px) {

  .buscalupa_logo {
    max-width: 300px;
  }

  .buscalupa_text {
    padding: 10px 20px 10px 20px;
  }

  /* Vista mobile: secciones en una sola columna */
  .home_secciones {
    grid-template-columns: 1fr; /* 1 columna */
    gap: 20px; /* menos espacio entre items */
    padding: 40px 10px;
  }

  .seccion_img {
    max-width: 200px;  /* ajustamos tamaño en mobile */
    height: auto;      /* altura automática */
  }

  .seccion_btn {
    font-size: 14px;   /* botón un poco más chico */
    padding: 10px 20px;
  }

  .seccion {
    padding: 0px;
  }
 
 
  /* Ocultar góndola en mobile */
  .buscalupa_gondola {
    display: none;
  }

  /* Imagen de voucher más chica en mobile */
  .banner_wrap.overlay {
    background: url('/buscandoconlupa/img/lupa_home_fondo_persona_lupa_2.png') no-repeat center;
    background-size: contain;   /* muestra toda la imagen */
    /* height: auto;               /* se ajusta a la proporción */
    min-height: 500px;          /* opcional: asegura altura mínima */
  }

  /* Ajustar texto del banner en mobile */
    .banner_content {
    position: relative;   /* ya no superpuesto */
    top: auto;
    left: auto;
    transform: none;
    max-width: 100%;      /* ocupar todo el ancho */
    width: 100%;
    text-align: center;   /* centrar textos y botón */
    padding: 20px;
  }

  .banner_content h2 {
    font-size: 20px;      /* un poco más chico en mobile */
    margin: 40px;
  }

  .banner_content p {
    font-size: 14px;
    padding: 0px 20px;
  }

  .banner_btn {
    padding: 10px 25px;
    font-size: 14px;
  }

}



/* ================================
   HOME INICIO (maqueta Buscando con Lupa)
   ================================ */

/* Hero */
.hero-home {
  position: relative;
  text-align: center;
  padding: 60px 20px 40px;
}

.hero-logo {
  max-width: 600px;
  margin: 0 auto 20px;
  display: block;
}


.hero-text {
  font-size: 17px;
  max-width: 650px;
  margin: 0 auto;
  
  font-family: "Degular Display", sans-serif;
  font-weight: 500;   /* Medium */
  font-style: normal;
  line-height: 26px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  color: #1B1E3C;     /* color letras */
}

/* Entrada super con botón de video */
.entrada-super {
  position: relative;
  width: 100%;
  text-align: center;
  margin: 60px 0;
}

.video-btn img {
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: transform 0.3s;
}
.video-btn img:hover {
  transform: scale(1.1);
}

/* Secciones supermercado */
.home-secciones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  /* max-width: 1200px; */
  margin: 0 auto 80px;
  padding: 20px;
}

.home-secciones .seccion {
  position: relative;
  text-align: center;
}

.home-secciones .seccion img {
  width: 100%;
  max-width: 420px;  /* Aumenta el tamaño máximo de las góndolas */
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain; /* asegura que no se deformen */
}

.home-secciones .btn-primary-large {
  display: inline-block;
  background: #00A0DD;
  border: 3px solid #1B1E3C;
  color: #1B1E3C;
  font-family: "roca", sans-serif;
  font-weight: bold;
  padding: 12px 30px;
  box-shadow: 5px 5px 0 #1B1E3C;
  text-transform: uppercase;
}

/* CTA final */
.cta-final {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 60px 20px;
}

.cta-box {
  position: relative;
  background: #FFFAF3;
  border: 2px solid #1B1E3C;
  box-shadow: 5px 5px 0 #1B1E3C;
  max-width: 900px;
  padding: 40px 60px;
  text-align: left;
}

.cta-box h2 {
  font-size: 24px;
  font-weight: bold;
  color: #1B1E3C;
  margin-bottom: 20px;
}

.cta-box p {
  font-size: 16px;
  color: #333;
  margin-bottom: 12px;
}

.cta-box strong {
  font-weight: bold;
}

.cta-box .btn-primary-large {
  margin-top: 20px;
}

.cta-box .cta-img {
  position: absolute;
  right: -60px;
  bottom: -20px;
  width: 180px;
  height: auto;
}

/* Responsive */
@media (max-width: 900px) {
  .home-secciones {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 100px;
  }

  .cta-box {
    padding: 30px 20px;
  }

  .cta-box .cta-img {
    position: static;
    display: block;
    margin: 20px auto 0;
  }
}

@media (max-width: 600px) {
  .home-secciones {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    max-width: 320px;
  }

  .cta-box {
    text-align: center;
  }
}


.seccion-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.seccion-link img {
  width: 100%;
  max-width: 280px;
  margin-bottom: 15px;
}

.seccion-link .btn-primary-large {
  display: inline-block;
  align-content: end;
}



.voucher {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

.voucher-wrap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  min-height: 400px;
  background: url('/buscandoconlupa/img/lupa_home_fondo_persona_lupa_1.png') no-repeat center;
  background-size: contain;
  background-color: transparent; /* quitamos relleno extra */
  display: flex;
  align-items: center;
}


/* Contenido de texto */
.voucher-content {
  position: relative;
  max-width: 60%;
  padding: 40px;
  color: #1B1E3C;
}

.voucher-content h2 {
  font-family: "Roca", sans-serif;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 22px;
}

.voucher-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.voucher-content .highlight {
  font-weight: bold;
}

/* Botón */
.btn-register {
  display: inline-block;
  background: #00A0DD;
  color: #fff;
  font-weight: bold;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  box-shadow: 4px 4px 0 #1B1E3C;
  transition: all 0.2s ease;
}

.btn-register:hover {
  background: #1B1E3C;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .voucher-wrap {
    background: url('/buscandoconlupa/img/lupa_home_fondo_persona_lupa_2.png') no-repeat center;
    background-size: contain;     /* asegura que no se corten los bordes */
    background-color: transparent;
    background-position: center;
    min-height: 550px;            /* ajustá según la altura de tu imagen */
    align-items: flex-start; /* alinear arriba */
  }

  .voucher-content {
    max-width: 100%;
    text-align: center;
    padding-top: 80px;  /* ajustá según lo que necesites */

  }
}




/* Boton de play de video */
/* Contenedor general */
.video-btn {
  position: relative;   /* referencia para el botón */
  display: inline-block;
}

/* Imagen de fondo */
.video-bg {
  display: block;
  width: 100%;
  height: auto;
}

/* Botón circular */
.play-button {
  position: absolute;   /* lo ponemos encima */
  top: 50%;             /* centrado vertical */
  left: 50%;            /* centrado horizontal */
  transform: translate(-50%, -50%); /* centra exacto */
  
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFFAF3; 
  border: 3px solid #1B1E3C; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 0.1px;
  left: 0.1px;
  right: 0.1px;
  bottom: 0.1px;
  border-radius: 50%;
  border: 3px solid #F17F36; /* aro naranja interno */
}

.inner-circle {
  width: 40px;
  height: 40px;
  background: #00A0DD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.triangle {
  width: 0;
  height: 0;
  border-left: 12px solid #1B1E3C; /* triángulo azul oscuro */
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 4px;
}

/* Hover animación opcional */
.video-btn:hover .inner-circle {
  transform: scale(1.1);
  transition: 0.2s ease;
}





/* Popup */
/* Overlay oscuro */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Contenedor */
.popup-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagen del ticket */
.popup-ticket {
  width: 100%;
  height: auto;
  display: block;
}

/* Contenido encima */
.popup-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #1B1E3C;
  width: 70%;  /* ancho del bloque de texto */
}

.popup-inner h2 {
  font-family: "Roca", sans-serif;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 15px;
}

.popup-inner p {
  font-size: 15px;
  margin-bottom: 10px;
}

.popup-inner .highlight {
  font-weight: bold;
  margin-bottom: 20px;
}

.custom-text {
  font-family: "Degular Display", sans-serif;
  font-weight: 300;          /* light */
  font-style: normal;        /* "Light" se logra con weight, no con style */
  font-size: 20px;
  line-height: 26px;         /* leading-trim no está soportado, usá line-height */
  letter-spacing: 0px;
  text-align: center;        /* centrado horizontal */
  display: flex;             /* para poder alinear vertical */
  align-items: center;       /* centrado vertical */
  justify-content: center;   /* centrado horizontal en flex */
}




/* Botón Cerrar Popup (cruz redonda) */
/* Overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none; /* mostrado con JS */
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Contenedor del ticket */
.popup-content {
  position: relative;
  width: 700px;          /* igual al PNG que adjuntaste */
  max-width: 95vw;       /* responsive */
  aspect-ratio: 700 / 272; /* mantiene la proporción exacta */
  background: url('/buscandoconlupa/img/lupa_home_imagen_popup_desktop.png') no-repeat center;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 60px;    /* aire interior */
  box-sizing: border-box;
}

/* Botón de cierre */
.close-x {
  --size: 28px;
  --ring: #E77408;
  --fill: #FFFDF8;
  --ink:  #1B1E3C;

  position: absolute;
  top: 20px;
  right: 55px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  border: 2px solid var(--ring);
  background: var(--fill);
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}

.close-x::before,
.close-x::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(var(--size) * 0.5);
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transform-origin: center;
}

.close-x::before { transform: translate(-50%, -50%) rotate(45deg); }
.close-x::after  { transform: translate(-50%, -50%) rotate(-45deg); }

/* Texto */
.popup-inner h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1B1E3C;
  margin-bottom: 15px;
}

.popup-inner p {
  font-size: 14px;
  color: #1B1E3C;
  margin-bottom: 20px;
}

.popup-inner .btn-primary-large {
  background: #00a0e3;
  color: #fff;
  font-weight: bold;
  padding: 12px 24px;
  border-radius: 6px;
  box-shadow: 3px 3px 0 #1B1E3C;
  text-decoration: none;
  font-size: 14px;
}

/* Responsive mobile */
@media (max-width: 768px) {
  .close-x {
    top: 12px;
    right: 30px;
  }
  .popup-content {
    width: 90vw;
    aspect-ratio: 309 / 347; /* proporción de tu versión mobile */
    background-image: url('/buscandoconlupa/img/lupa_home_imagen_popup_mobile.png');
    padding: 30px 20px;
  }

  .popup-inner h2 { font-size: 18px; }
  .popup-inner p { font-size: 13px; color: #1B1E3C;}
  .popup-inner .btn-primary-large {
    font-size: 13px;
    padding: 10px 20px;
  }
}












/* ----- Video Home ----- */
.promo-popup-overlay{
  display:none; position:fixed; inset:0;
  background:rgba(0,0,0,.7); z-index:10000;
  display:none; /* visible = flex en JS */
  justify-content:center; align-items:center;
}
.promo-popup-content{ position:relative; width:min(92vw, 1100px); }

/* Cerrar */
.promo-close-x{ position:absolute; top:10px; right:10px; z-index:3;
  width:32px; height:32px; background:transparent; border:0; cursor:pointer; }

/* ----- Ticket ----- */
.promo-ticket{ position:relative; width:100%; }
.promo-ticket-bg{ width:100%; height:auto; display:block; }

/* Área útil dentro del ticket:
   Ajustá los "insets" con custom properties (porcentaje del tamaño del ticket) */
.promo-ticket{
  --stage-top: 8%;
  --stage-bottom: 8%;
  --stage-left: 29%;
  --stage-right: 29%;
}

/* Stage = lugar donde va la preview o el iframe */
.promo-ticket-stage {
  position: absolute;
  top: 12%;
  left: 22%;
  width: 56%;
  height: 76%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2; 
}


.promo-ticket-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* o contain, según quieras */
}


/* Preview SIEMPRE contenida dentro del stage, sin deformar */
.promo-preview{
  width:100%; height:100%;
  object-fit:contain; /* ¡clave! */
  display:block;
}

/* Play centrado sobre el stage */
.promo-play{
  position:absolute; inset:auto;
  left:50%; top:50%; transform:translate(-50%, -50%);
  width:86px; height:86px; border-radius:50%;
  background:#00A0E3; border:3px solid #E95A0C;
  box-shadow:4px 4px 0 #1B1E3C; cursor:pointer;
}
.promo-play::after{ /* triángulo */
  content:""; position:absolute;
  left:34%; top:26%;
  border-left:22px solid #1B1E3C;
  border-top:13px solid transparent;
  border-bottom:13px solid transparent;
  width:0; height:0;
}

/* Iframe ocupa el stage completo (contenido) */
.promo-iframe{
  width:100%; height:100%;
  border:0; display:none;
}

/* Responsive: si el ticket mobile tiene otra “zona útil”, cambiá insets aquí */
@media (max-width: 768px){
  .promo-popup-content{ width:min(95vw, 700px); }
  .promo-play{ width:64px; height:64px; }
  .promo-play::after{ border-left-width:18px; border-top-width:11px; border-bottom-width:11px; left:32%; top:28%; }

  /* ejemplo de insets mobile (ajustá si tu ticket mobile cambia) */
  .promo-ticket{
    --stage-top: 10%;
    --stage-bottom: 10%;
    --stage-left: 18%;
    --stage-right: 18%;
  }
}



.close-x {
  z-index: 2000; /* siempre encima del ticket */
}

.promo-popup-content {
  position: relative; /* para que la X se posicione relativa al contenido */
}

.promo-ticket-bg {
  position: relative;
  z-index: 1;
  min-height: 750px;
}

#close-popup-video {
  z-index: 2000;
}


/* Por defecto: solo se muestra desktop */
.desktop-only { display: block; }
.mobile-only { display: none; }

/* En mobile (ajustá el max-width según tu diseño, ej: 768px) */
@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

.desktop-only { max-width: 6000px; }



/* Intro lácteos - Ajustes para imágenes absolutas */
.home-carros-intro {
  position: absolute;     
  bottom: 0;            
  align-self: flex-start;
  left: 0;
  width: 200px;
  /* height: auto; */
  /* z-index: 2; */
}

.home-heladera-intro {
  position: absolute;     
  bottom: 0;            
  align-self: flex-start;
  right: 0;
  width: 150px;
}

.lacteos-heladera-intro-mobile  {
  display: none;
}

.home-secciones {
  position: relative;      
}

@media (max-width: 900px) {

  .home-carros-intro {
    display: none;
  }
  .home-heladera-intro {
    display: none;
  }

  .lacteos-heladera-intro-mobile {
    display: block;
    position: absolute;
    top: 40%;         
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 0;          
    opacity: 1;
  }
}

#platos-preparados.seccion {
  display: block !important;
  flex-direction: initial !important;
  align-items: initial !important;
  justify-content: initial !important;
  text-align: center; /* mantiene centrado el contenido */
}


/* Mostrar solo uno según el tamaño */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

/* ===== POPUP MOBILE sin fondo (ajustado para ocupar más pantalla) ===== */

.promo-popup-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}


/* Centrar completamente el popup mobile */
.promo-popup-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-popup-content.simple-video {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none !important;
  width: 100%;
  max-width: 900px;
  height: auto;
  margin: 0 auto;
}

/* Escenario del video centrado y más grande */
.promo-video-stage {
  position: relative;
  width: 90vw;
  max-width: 800px;
  height: 60vh;             /* altura proporcional */
  background: #000;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Iframe y preview llenan el contenedor */
.promo-video-stage .promo-preview,
.promo-video-stage .promo-iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  border-radius: 12px;
}

/* Botón de cierre (X) arriba a la derecha */
#close-popup-video-mobile {
  position: absolute;
  top: 5%;
  right: 7%;
  z-index: 20;
}

/* Ajuste responsive para pantallas más chicas */
@media (max-width: 600px) {
  .promo-video-stage {
    width: 95vw;
    height: 65vh; /* más alto en móviles */
  }
}

/* Mostrar solo uno según el tamaño */
.desktop-only { display: block; }
.mobile-only { display: none; }

@media (max-width: 768px) {
  .desktop-only { display: none; }
  .mobile-only { display: block; }
}

/* ===== Asegurar que los popups estén ocultos al cargar ===== */
.promo-popup-overlay {
  display: none !important; /* oculto por defecto */
  opacity: 0;
  visibility: hidden;
}

.promo-popup-overlay.active {
  display: flex !important; /* visible al activar con JS */
  opacity: 1;
  visibility: visible;
}

.promo-video-stage {
  width: 90vw;
  max-width: 800px;
  height: 60vh;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-video-stage .promo-iframe {
  width: 100%;
  height: 100%;
  border: none;
  object-fit: cover;
}


