/* ─── Popup de bienvenida (video + link a Google Form) ─── */

.site-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.site-popup.is-open {
  display: flex;
}

.site-popup-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.site-popup-inner {
  position: relative;
  z-index: 1;
  width: 85vw;
  max-width: 900px;
}

.site-popup-content {
  background: var(--color2);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-height: 90vh;
  overflow-y: auto;
}

.site-popup-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.site-popup-video {
  width: 100%;
  border-radius: 4px;
  display: block;
  background: #000;
}

@media (max-width: 767px) {
  .site-popup-content {
    padding: 1rem;
    gap: 1rem;
  }

  .site-popup-close {
    top: -14px;
    right: -14px;
    width: 34px;
    height: 34px;
  }
}
