*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: #02060d;
  font-family: "Poppins", Arial, sans-serif;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input {
  font-family: inherit;
}

/* ================================
   NAV
================================ */

.nav {
  position: fixed;
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 92px;
  padding: 0 48px;
  z-index: 100;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 13, 0.82),
    rgba(2, 6, 13, 0)
  );
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  top: auto;
  left: auto;
  width: 180px;
  height: 84px;
  overflow: hidden;
  z-index: 2;
  transform: none;
  justify-content: flex-start;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}

.nav-backdrop,
.mobile-panel-head {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.menu a,
.nav-btn {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.menu a:hover {
  color: #4b8dff;
}

.menu a span:last-child {
  display: none;
}

.nav-btn {
  position: absolute;
  right: 0;
  padding: 14px 30px;
  border: 1px solid rgba(64, 139, 255, 0.75);
  border-radius: 12px;
  background: rgba(3, 12, 28, 0.35);
  backdrop-filter: blur(12px);
}

.nav-btn:hover {
  background: #256df0;
}

.menu-toggle {
  display: none;
}

@media (min-width: 1101px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    column-gap: 24px;
  }

  .logo {
    grid-column: 1;
    justify-self: start;
  }

  .nav-panel {
    display: contents;
  }

  .menu {
    grid-column: 2;
    justify-self: center;
    gap: clamp(18px, 1.8vw, 32px);
  }

  .menu a {
    white-space: nowrap;
  }

  .nav-btn {
    position: static;
    grid-column: 3;
    justify-self: end;
  }
}

/* ================================
   SHARED
================================ */

.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4b8dff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
  content: none;
}

.primary-btn,
.ghost-btn,
.footer-cta,
.nav-btn,
.option-grid button,
.diagnosis-actions button,
.contact-form input {
  transition:
    transform .25s ease,
    background-color .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    color .25s ease,
    opacity .25s ease;
}

.primary-btn,
.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.primary-btn {
  background: linear-gradient(135deg, #2f80ff, #1f5edb);
  box-shadow: 0 18px 45px rgba(31, 94, 219, .28);
}

.ghost-btn {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);
}

.primary-btn:hover,
.ghost-btn:hover,
.footer-cta:hover,
.nav-btn:hover,
.option-grid button:hover,
.diagnosis-actions button:hover {
  transform: translateY(-2px);
}

/* ================================
   HERO
================================ */

.theater-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 24px 86px;
  display: flex;
  align-items: center;
  background: #02060d;
  isolation: isolate;
}

.theater-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .58;
  filter: brightness(.58) contrast(1.12) saturate(1.05);
  transform: scale(1.02);
}

.hero-film {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 46%, rgba(75, 141, 255, .15), transparent 30%),
    linear-gradient(to right, rgba(2, 6, 13, .94), rgba(2, 6, 13, .68), rgba(2, 6, 13, .86)),
    linear-gradient(to bottom, rgba(2, 6, 13, .10), #02060d 98%);
  pointer-events: none;
}

.theater-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 210px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(2, 6, 13, 0), #02060d);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 3;
  width: min(1260px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 62px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 790px;
  margin-bottom: 30px;
  font-size: clamp(52px, 6.4vw, 104px);
  line-height: .9;
  letter-spacing: -.085em;
  font-weight: 500;
}

.hero-copy h1 em {
  display: block;
  color: #4b8dff;
  font-style: italic;
}

.hero-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

/* Imagen técnica del hero */
.hero-image-card {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 10px;
  border: 1px solid rgba(75, 141, 255, .20);
  border-radius: 36px;
  background:
    radial-gradient(circle at 50% 20%, rgba(75, 141, 255, .18), transparent 38%),
    rgba(4, 10, 24, .74);
  backdrop-filter: blur(20px);
  box-shadow: 0 38px 110px rgba(0, 0, 0, .38);
  overflow: hidden;
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(75, 141, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 141, 255, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: .7;
  pointer-events: none;
}

.hero-image-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  filter: brightness(.96) contrast(1.03) saturate(1.05);
}

/* ================================
   METRICS
================================ */

.clarity-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1260px;
  margin: -38px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 24px;
}

.metric {
  min-height: 230px;
  padding: 30px 26px;
  border: 1px solid rgba(75, 141, 255, .14);
  border-right: 0;
  background:
    linear-gradient(to bottom, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01)),
    rgba(4, 10, 24, .92);
  backdrop-filter: blur(18px);
}

.metric:first-child {
  border-radius: 28px 0 0 28px;
}

.metric:last-child {
  border-right: 1px solid rgba(75, 141, 255, .14);
  border-radius: 0 28px 28px 0;
}

.metric span {
  display: block;
  margin-bottom: 38px;
  color: #4b8dff;
  font-size: 12px;
  letter-spacing: .18em;
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.04em;
  font-weight: 500;
}

.metric p {
  color: rgba(255, 255, 255, .58);
  font-size: 14px;
  line-height: 1.65;
}

/* ================================
   AUDIENCE MAP
================================ */

.audience-map-section {
  padding: 130px 24px 120px;
  background:
    radial-gradient(circle at 50% 18%, rgba(75, 141, 255, .10), transparent 34%),
    #02060d;
}

.map-intro {
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
}

.map-intro h2,
.problem-copy h2,
.events-head h2,
.diagnosis-side h2 {
  font-size: clamp(42px, 5.6vw, 86px);
  line-height: .96;
  letter-spacing: -.078em;
  font-weight: 500;
}

.map-intro h2 em,
.problem-copy h2 em,
.events-head h2 em {
  display: block;
  color: #4b8dff;
  font-style: italic;
}

.map-intro p {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, .62);
  line-height: 1.8;
}

.auditorium-map {
  position: relative;
  max-width: 1120px;
  min-height: 720px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(75, 141, 255, .16);
  border-radius: 44px;
  background:
    linear-gradient(rgba(75, 141, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 141, 255, .035) 1px, transparent 1px),
    radial-gradient(circle at 50% 18%, rgba(75, 141, 255, .14), transparent 30%),
    rgba(4, 10, 24, .72);
  background-size: 58px 58px, 58px 58px, auto, auto;
  overflow: hidden;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .32);
}

.stage-area {
  position: absolute;
  left: 50%;
  top: 52px;
  width: min(560px, calc(100% - 90px));
  min-height: 118px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(75, 141, 255, .22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 0%, rgba(75, 141, 255, .20), transparent 50%),
    rgba(2, 6, 13, .86);
}

.stage-area span {
  color: #9ec6ff;
  font-size: 11px;
  letter-spacing: .24em;
}

.stage-area strong {
  margin-top: -22px;
  font-size: 24px;
  letter-spacing: -.04em;
  font-weight: 500;
}

.coverage-lines span {
  position: absolute;
  left: 50%;
  top: 128px;
  transform: translateX(-50%);
  border: 1px solid rgba(75, 141, 255, .16);
  border-top: 0;
  border-radius: 0 0 999px 999px;
  pointer-events: none;
}

.coverage-lines span:nth-child(1) {
  width: 420px;
  height: 190px;
}

.coverage-lines span:nth-child(2) {
  width: 670px;
  height: 330px;
  border-style: dashed;
}

.coverage-lines span:nth-child(3) {
  width: 900px;
  height: 500px;
}

.seat-zone {
  position: absolute;
  padding: 24px;
  border: 1px solid rgba(75, 141, 255, .16);
  border-radius: 24px;
  background: rgba(5, 12, 27, .78);
  backdrop-filter: blur(14px);
}

.seat-zone span {
  display: block;
  margin-bottom: 12px;
  color: #4b8dff;
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.seat-zone p {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.6;
}

.zone-front {
  left: 50%;
  top: 260px;
  width: 300px;
  transform: translateX(-50%);
}

.zone-center {
  left: 120px;
  bottom: 155px;
  width: 290px;
}

.zone-back {
  right: 120px;
  bottom: 155px;
  width: 290px;
}

.zone-balcony {
  left: 50%;
  bottom: 44px;
  width: 390px;
  transform: translateX(-50%);
}

/* ================================
   MICROEDUCACIÓN PRO
================================ */

.editorial-problem {
  padding: 120px 24px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 70px;
  align-items: center;
  max-width: 1260px;
  margin: 0 auto;
}

.problem-card {
  position: relative;
  min-height: 520px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  border: 1px solid rgba(75, 141, 255, .16);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 32%, rgba(75, 141, 255, .18), transparent 34%),
    linear-gradient(to bottom, rgba(255, 255, 255, .035), transparent),
    rgba(4, 10, 24, .74);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .26);
}

.problem-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(75, 141, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 141, 255, .035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent, black 28%, black);
  pointer-events: none;
}

.problem-label {
  position: absolute;
  left: 36px;
  top: 34px;
  color: #9ec6ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.problem-line {
  position: relative;
  z-index: 2;
  padding: 22px 22px;
  border: 1px solid rgba(75, 141, 255, .13);
  border-radius: 22px;
  background: rgba(255, 255, 255, .035);
}

.problem-line span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, .44);
  font-size: 11px;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.problem-line strong {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 500;
}

.problem-line.is-active {
  border-color: rgba(75, 141, 255, .36);
  background:
    radial-gradient(circle at 0% 50%, rgba(75, 141, 255, .18), transparent 38%),
    rgba(75, 141, 255, .08);
  box-shadow: 0 0 34px rgba(75, 141, 255, .10);
}

.problem-line.is-active span {
  color: #9ec6ff;
}

.problem-line.is-active strong {
  color: #fff;
}

.problem-copy p {
  max-width: 670px;
  margin-top: 28px;
  color: rgba(255, 255, 255, .66);
  font-size: 17px;
  line-height: 1.85;
}

/* ================================
   EVENT TYPES
================================ */

.event-types {
  padding: 120px 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(75, 141, 255, .11), transparent 30%),
    linear-gradient(to bottom, #02060d, #030814);
}

.events-head {
  max-width: 980px;
  margin: 0 auto 70px;
  text-align: center;
}

.events-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}

.events-grid article {
  min-height: 250px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(75, 141, 255, .14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 20% 10%, rgba(75, 141, 255, .12), transparent 34%),
    rgba(5, 12, 27, .70);
  transition: .28s ease;
}

.events-grid article:nth-child(2),
.events-grid article:nth-child(3) {
  min-height: 300px;
}

.events-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(75, 141, 255, .34);
  background: rgba(75, 141, 255, .075);
}

.events-grid span {
  color: #4b8dff;
  font-size: 11px;
  letter-spacing: .22em;
}

.events-grid h3 {
  margin: 18px 0 10px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 500;
}

.events-grid p {
  max-width: 470px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.65;
}

/* ================================
   DIAGNOSIS
================================ */

.diagnosis-section {
  padding: 120px 24px;
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 40px;
  align-items: start;
}

.diagnosis-side {
  position: sticky;
  top: 120px;
  padding: 38px;
  border: 1px solid rgba(75, 141, 255, .14);
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 0%, rgba(75, 141, 255, .14), transparent 36%),
    rgba(4, 10, 24, .74);
}

.diagnosis-side h2 {
  margin-bottom: 24px;
}

.diagnosis-side p {
  color: rgba(255, 255, 255, .64);
  line-height: 1.75;
}

.diagnosis-note {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid rgba(75, 141, 255, .16);
  border-radius: 22px;
  background: rgba(255, 255, 255, .035);
}

.diagnosis-note strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-weight: 500;
}

.diagnosis-note span {
  color: rgba(255, 255, 255, .56);
  font-size: 14px;
  line-height: 1.6;
}

.diagnosis-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(75, 141, 255, .16);
  border-radius: 36px;
  background: rgba(4, 10, 24, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 96px rgba(0, 0, 0, .34);
}

.diagnosis-progress {
  display: flex;
  gap: 14px;
  margin-bottom: 42px;
  flex-wrap: wrap;
}

.diagnosis-progress span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(75, 141, 255, .3);
  border-radius: 50%;
  color: rgba(255, 255, 255, .6);
  transition: .28s ease;
}

.diagnosis-progress span.is-active {
  background: #2f80ff;
  color: white;
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(47, 128, 255, .35);
}

.question-card {
  display: none;
  opacity: 0;
  transform: translateY(18px) scale(.985);
  filter: blur(8px);
  min-height: 420px;
}

.question-card.is-active {
  display: block;
  animation: questionEnter .46s cubic-bezier(.22, 1, .36, 1) forwards;
}

.question-card.is-leaving {
  display: block;
  animation: questionLeave .28s ease forwards;
}

.question-card small {
  color: rgba(255, 255, 255, .48);
}

.question-card h3 {
  max-width: 740px;
  margin: 14px 0 30px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 500;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.option-grid button {
  min-height: 104px;
  padding: 20px;
  text-align: left;
  border: 1px solid rgba(75, 141, 255, .22);
  border-radius: 20px;
  background: rgba(5, 12, 27, .78);
  color: white;
  font: inherit;
  cursor: pointer;
}

.option-grid button:hover,
.option-grid button.is-selected {
  border-color: #4b8dff;
  background: rgba(47, 128, 255, .14);
  box-shadow: 0 0 24px rgba(75, 141, 255, .16);
}

.range-box,
.contact-form {
  max-width: 620px;
  padding: 34px;
  border: 1px solid rgba(75, 141, 255, .2);
  border-radius: 24px;
  background: rgba(5, 12, 27, .78);
}

.range-box input {
  width: 100%;
  margin-bottom: 24px;
  accent-color: #4b8dff;
}

.range-box strong {
  color: #9ec6ff;
  font-weight: 500;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input {
  width: 100%;
  padding: 17px 18px;
  border: 1px solid rgba(75, 141, 255, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
  color: white;
  font: inherit;
  outline: none;
}

.contact-form input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.contact-form input:focus {
  border-color: #4b8dff;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 0 0 3px rgba(75, 141, 255, .12);
}

.diagnosis-actions {
  display: flex;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 36px;
}

.diagnosis-actions button {
  padding: 15px 24px;
  border: 1px solid rgba(75, 141, 255, .35);
  border-radius: 999px;
  background: rgba(5, 12, 27, .8);
  color: white;
  font: inherit;
  cursor: pointer;
}

#nextQuestion {
  background: linear-gradient(135deg, #2f80ff, #1f5edb);
}

/* ================================
   FOOTER
================================ */

.sg-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 24px 28px;
  background: linear-gradient(to bottom, #02060d, #030814);
  border-top: 1px solid rgba(75, 141, 255, .14);
}

.footer-glow {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: min(760px, 90vw);
  height: 260px;
  margin: 0 auto;
  background: radial-gradient(ellipse, rgba(75, 141, 255, .18), transparent 68%);
  filter: blur(34px);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 70px;
  align-items: start;
}

.footer-brand img {
  display: block;
  width: min(330px, 72vw);
  height: 112px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 24px;
}

.footer-brand h2 {
  max-width: 640px;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -.065em;
  font-weight: 500;
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 520px;
  color: rgba(255, 255, 255, .62);
  line-height: 1.7;
  margin-bottom: 30px;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #2f80ff, #1f5edb);
  box-shadow: 0 18px 45px rgba(31, 94, 219, .25);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 38px;
  align-self: end;
}

.footer-links span {
  display: block;
  margin-bottom: 18px;
  color: #4b8dff;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 13px;
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.footer-cta:hover {
  box-shadow: 0 22px 52px rgba(31, 94, 219, .35);
}

.footer-bottom {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, .42);
  font-size: 13px;
}

/* ================================
   ANIMATIONS
================================ */

@keyframes questionEnter {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes questionLeave {
  to {
    opacity: 0;
    transform: translateY(-14px) scale(.985);
    filter: blur(8px);
  }
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
  .nav {
    height: 78px;
    padding: 0 18px;
    justify-content: space-between;
    background: rgba(2, 6, 13, .84);
  }

  .logo {
    position: relative;
    top: auto;
    left: auto;
    width: clamp(180px, 52vw, 220px);
    height: 66px;
    transform: none;
  }

  .logo img {
    width: 100%;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 50px;
    height: 50px;
    padding: 0 13px;
    border: 1px solid rgba(75, 141, 255, .4);
    border-radius: 15px;
    background: rgba(14, 25, 47, .6);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    background: white;
    transition: .25s ease;
  }

  .nav.is-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .nav.is-open .menu-toggle span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    display: block;
    background: rgba(0, 2, 8, .74);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
  }

  .nav.is-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
  }

  .nav-panel {
    position: fixed;
    inset: auto 0 0;
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    border-radius: 28px 28px 0 0;
    background: #030812;
    opacity: 0;
    visibility: hidden;
    transform: translateY(104%);
    transition: .35s cubic-bezier(.22, 1, .36, 1);
  }

  .nav.is-open .nav-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .mobile-panel-head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
  }

  .mobile-panel-title {
    color: rgba(255, 255, 255, .56);
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
  }

  .mobile-talk {
    color: white;
    text-decoration: none;
    font-size: 13px;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .menu a {
    display: flex;
    justify-content: space-between;
    padding: 22px 0;
    font-size: 28px;
  }

  .menu a span:last-child {
    display: none;
  }

  .menu a svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: currentColor;
    opacity: 0.42;
  }

  .nav-btn {
    display: none;
  }

  .hero-layout,
  .editorial-problem,
  .diagnosis-section,
  .footer-inner,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .hero-image-card {
    min-height: auto;
  }

  .hero-image-card img {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .clarity-metrics {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }

  .metric {
    border-right: 1px solid rgba(75, 141, 255, .14);
  }

  .metric:first-child {
    border-radius: 28px 0 0 0;
  }

  .metric:nth-child(2) {
    border-radius: 0 28px 0 0;
  }

  .metric:nth-child(3) {
    border-radius: 0 0 0 28px;
  }

  .metric:last-child {
    border-radius: 0 0 28px 0;
  }

  .events-grid {
    grid-template-columns: 1fr 1fr;
  }

  .diagnosis-side {
    position: relative;
    top: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 800px) {
  .theater-hero {
    padding-top: 118px;
  }

  .hero-layout {
    gap: 44px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .hero-copy p,
  .map-intro p,
  .problem-copy p,
  .metric p,
  .events-grid p,
  .diagnosis-side p,
  .footer-brand p {
    font-size: 15px;
  }

  .hero-image-card {
    padding: 8px;
    border-radius: 28px;
  }

  .hero-image-card img {
    border-radius: 22px;
  }

  .clarity-metrics,
  .events-grid,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:first-child,
  .metric:nth-child(2),
  .metric:nth-child(3),
  .metric:last-child {
    border-radius: 24px;
    border: 1px solid rgba(75, 141, 255, .14);
  }

  .clarity-metrics {
    gap: 14px;
  }

  .auditorium-map {
    min-height: auto;
    padding: 24px;
    display: grid;
    gap: 14px;
  }

  .stage-area,
  .seat-zone,
  .zone-front,
  .zone-center,
  .zone-back,
  .zone-balcony {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    transform: none;
  }

  .stage-area {
    height: auto;
    padding: 28px;
  }

  .stage-area strong {
    margin-top: 10px;
  }

  .coverage-lines {
    display: none;
  }

  .problem-card {
    min-height: auto;
    padding-top: 110px;
  }

  .diagnosis-actions {
    flex-direction: column;
  }

  .diagnosis-actions button {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .theater-hero,
  .audience-map-section,
  .editorial-problem,
  .event-types,
  .diagnosis-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: .16em;
    padding: 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .ghost-btn {
    justify-content: center;
    width: 100%;
  }

  .hero-image-card,
  .auditorium-map,
  .diagnosis-panel,
  .diagnosis-side,
  .problem-card {
    border-radius: 24px;
  }

  .hero-image-card img {
    border-radius: 18px;
  }

  .map-intro h2,
  .problem-copy h2,
  .events-head h2,
  .diagnosis-side h2 {
    font-size: 40px;
  }

  .problem-line {
    padding: 18px;
  }

  .problem-line strong {
    font-size: 16px;
  }

  .question-card {
    min-height: auto;
  }

  .range-box,
  .contact-form {
    padding: 22px 16px;
  }

  .footer-brand img {
    width: min(260px, 72vw);
    height: 96px;
  }
}

@media (min-width: 1101px) {
  .menu a span:last-child,
  .menu a svg {
    display: none !important;
  }
}

@media (max-width: 1100px) {
  .menu a span:last-child {
    display: block !important;
    color: #4b8dff !important;
  }

  .menu a svg {
    display: block !important;
    color: #4b8dff !important;
  }
}

.logo::before {
  content: "";
  position: absolute;
  inset: 14px -10px 12px -10px;
  z-index: 0;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(2, 6, 13, 0.72), rgba(2, 6, 13, 0.22) 58%, transparent 74%);
  pointer-events: none;
}

.logo img {
  z-index: 1;
}

/* ================================
   HERO FINAL POLISH AUDITORIOS
================================ */

.theater-hero {
  min-height: 100vh;
  padding: 120px 48px 96px;
  align-items: center;
}

.theater-video {
  opacity: .36;
  filter: brightness(.48) contrast(1.16) saturate(1.08);
  transform: scale(1.04);
}

.hero-film {
  background:
    radial-gradient(circle at 74% 46%, rgba(75, 141, 255, .20), transparent 28%),
    radial-gradient(circle at 30% 45%, rgba(75, 141, 255, .08), transparent 26%),
    linear-gradient(to right, rgba(2, 6, 13, .94) 0%, rgba(2, 6, 13, .78) 42%, rgba(2, 6, 13, .90) 100%),
    linear-gradient(to bottom, rgba(2, 6, 13, .08), #02060d 96%);
}

.hero-layout {
  width: min(1440px, 100%);
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(48px, 6vw, 96px);
}

.hero-copy {
  max-width: 720px;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(64px, 7.2vw, 118px);
  line-height: .88;
  letter-spacing: -.09em;
}

.hero-copy p {
  max-width: 610px;
  font-size: 18px;
  color: rgba(255, 255, 255, .70);
}

.hero-image-card {
  min-height: 560px;
  padding: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 48%, rgba(75, 141, 255, .20), transparent 42%),
    rgba(4, 10, 24, .56);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, .48),
    0 0 70px rgba(75, 141, 255, .08);
}

.hero-image-card::before {
  z-index: 2;
  opacity: .42;
}

.hero-image-card img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border-radius: 34px;
  object-fit: cover;
  object-position: center;
  filter: brightness(.9) contrast(1.08) saturate(1.08);
}

/* Hace que las métricas se acerquen bonito al hero */
.clarity-metrics {
  margin-top: -56px;
}

/* Responsive */
@media (max-width: 1120px) {
  .theater-hero {
    padding: 118px 24px 80px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-image-card,
  .hero-image-card img {
    min-height: auto;
  }

  .hero-image-card img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 540px) {
  .theater-hero {
    padding: 110px 16px 70px;
  }

  .hero-copy h1 {
    font-size: 44px;
    letter-spacing: -.07em;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-image-card {
    border-radius: 24px;
  }

  .hero-image-card img {
    border-radius: 24px;
    aspect-ratio: 16 / 11;
  }
}

/* ================================
   FIX VIDEO HERO MÁS VISIBLE
================================ */

.theater-video {
  opacity: .72 !important;
  filter: none !important;
  transform: scale(1.01) !important;
}

.hero-film {
  background:
    linear-gradient(to right, rgba(2, 6, 13, .72) 0%, rgba(2, 6, 13, .42) 48%, rgba(2, 6, 13, .58) 100%),
    linear-gradient(to bottom, rgba(2, 6, 13, .08), rgba(2, 6, 13, .55) 88%, #02060d 100%) !important;
}

.hero-image-card img {
  filter: none !important;
}

/* Fade unificado entre hero y primera seccion */
.theater-hero {
  z-index: 2;
}

.theater-hero::after {
  height: 360px !important;
  z-index: 2 !important;
  background:
    linear-gradient(to bottom, rgba(2,6,13,0) 0%, rgba(2,6,13,.62) 44%, #02060d 86%, #02060d 100%) !important;
}

.hero-layout,
.hero-actions {
  position: relative;
  z-index: 4;
}

.clarity-metrics {
  position: relative;
  z-index: 1 !important;
  margin-top: -80px !important;
  padding-top: 120px;
}

.clarity-metrics::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -130px;
  width: 100vw;
  height: 220px;
  z-index: -1;
  transform: translateX(-50%);
  background:
    linear-gradient(to bottom, rgba(2,6,13,0) 0%, rgba(2,6,13,.58) 42%, #02060d 100%);
  pointer-events: none;
}
