/* css/promo-embed.css */
:root{
  --wrap-max: 1100px;
  --rad: 16px;
  --b: #1f2937;
}

.promo-embed{
  padding: clamp(24px, 4vw, 56px) 16px;
  position: relative;
  z-index: 1;              /* evita solaparse con fondos animados */
}

.promo-embed__wrap{
  width: min(100%, var(--wrap-max));
  margin-inline: auto;     /* CENTRADO */
  text-align: center;
}

.promo-embed__title{
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.promo-embed__hr{
  width: clamp(120px, 22%, 240px);
  height: 2px;
  margin: 10px auto 22px;
  background: linear-gradient(90deg, #00e5ff, #00ffa3);
  border-radius: 2px;
  opacity: .7;
}

.promo-embed__iframe{
  display: block;
  width: 100%;
  max-width: 1000px;       /* evita que se estire de más en pantallas grandes */
  margin-inline: auto;     /* CENTRADO */
  aspect-ratio: 16/9;      /* mantiene proporción mientras llega la altura del postMessage */
  min-height: 520px;       /* altura base por si falla el postMessage */
  border: 1px solid var(--b);
  border-radius: var(--rad);
  box-shadow: 0 10px 40px rgba(0,0,0,.35), inset 0 0 0 1px rgba(255,255,255,.04);
  background: rgba(0,0,0,.25);
}

.promo-embed__status{
  margin-top: 10px;
  font-size: .95rem;
  color: #a7f3d0;
  display: none;
  text-wrap: balance;
}

@media (max-width: 768px){
  .promo-embed{ padding: 28px 12px; }
  .promo-embed__iframe{ min-height: 480px; }
}
