/* Ajustes exclusivos de la versión HTML estática; mantiene visible todo contenido sin Framer Motion. */
[style*="opacity: 0"] {
  opacity: 1 !important;
  transform: none !important;
}

[hidden] {
  display: none !important;
}

.static-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  overflow-y: auto;
  padding: 2rem 1rem;
  background: rgb(10 20 40 / 85%);
  backdrop-filter: blur(6px);
}

.static-modal__panel {
  width: min(100%, 48rem);
  margin: auto;
  overflow: hidden;
  border-radius: 1rem;
  background: white;
  box-shadow: 0 24px 80px rgb(0 0 0 / 35%);
}

.static-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border: 0;
  border-radius: .5rem;
  background: rgb(255 255 255 / 12%);
  color: white;
  font-size: 1.5rem;
  line-height: 1;
}

.static-modal__hero {
  position: relative;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #0f172a, #10295f, #0f172a);
  color: white;
}

.static-modal__hero h2,
.static-modal__body h3 {
  margin: .25rem 0 .5rem;
  font-family: Lora, Georgia, serif;
  font-weight: 700;
}

.static-modal__hero h2 { font-size: clamp(2rem, 6vw, 2.75rem); }
.static-modal__hero h2 span { color: #fbbf24; }
.static-modal__hero p { max-width: 38rem; margin: 0 0 1.25rem; color: #bfdbfe; line-height: 1.6; }
.static-modal__eyebrow { color: #fbbf24 !important; font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.static-modal__cta { display: inline-block; padding: .7rem 1rem; border-radius: .75rem; background: #fbbf24; color: #172033; font-weight: 700; text-decoration: none; }
.static-modal__body { padding: 1.75rem 2rem 2rem; color: #475569; line-height: 1.6; }
.static-modal__body h3 { color: #0f172a; font-size: 1.2rem; }
.static-modal__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; margin-top: 1.25rem; }
.static-modal__grid > div { padding: .9rem; border: 1px solid #e2e8f0; border-radius: .75rem; background: #f8fafc; }
.static-modal__grid strong, .static-modal__grid span { display: block; }
.static-modal__grid strong { color: #0f172a; font-size: .9rem; }
.static-modal__grid span { margin-top: .2rem; font-size: .8rem; }

.static-mobile-menu {
  display: none;
}

.static-mobile-menu.is-open {
  display: block;
}

@media (max-width: 767px) {
  .static-mobile-menu {
    position: fixed;
    top: 4rem;
    right: 0;
    left: 0;
    z-index: 49;
    padding: .75rem 1rem;
    border-top: 1px solid rgb(255 255 255 / 10%);
    background: #0b3c70;
  }

  .static-mobile-menu a {
    display: block;
    padding: .75rem;
    border-radius: .5rem;
    color: rgb(255 255 255 / 85%);
    text-decoration: none;
  }

  .static-modal { padding: 1rem .75rem; }
  .static-modal__hero, .static-modal__body { padding: 1.5rem; }
  .static-modal__grid { grid-template-columns: 1fr; }
}
