:root {
  --white: #FFFFFF;
  --off-white: #F4F7F2;
  --light: #E8EFE4;
  --green-pale: #C8DAC0;
  --green-mid: #7FA870;
  --green: #546243;
  --green-dark: #2E4F26;
  --green-deep: #1A2F15;
  --text: #1E2E1A;
  --text-muted: #5A7052;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--off-white);
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
}

img,
iframe {
  max-width: 100%;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(244, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--green-pale);
}

.nav-logo-img {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.nav-logo-img-el {
  height: 52px;
  width: auto;
  display: block;
  mix-blend-mode: multiply;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto 20px;
  filter: invert(1);
  mix-blend-mode: normal;
}

.nav-links {
  display: flex;
  gap: 44px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--green);
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 28px;
  border: 1px solid var(--green);
  color: var(--green);
  text-decoration: none;
  transition: all 0.3s;
  background: none;
  font-family: inherit;
  cursor: pointer;
}

.nav-cta:hover {
  background: var(--green);
  color: var(--white);
}

/* ─── HERO ─── */
.hero-wrapper {
  padding-top: 80px;
}

.hero-cover {
  width: 100%;
  overflow: hidden;
}

.hero-cover-img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 88vh;
  object-fit: cover;
  object-position: center;
}

.hero-strip {
  background: var(--green-deep);
  padding: 32px 60px;
}

.hero-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-date-block {
  display: flex;
  gap: 48px;
}

.hero-date-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 5px;
}

.hero-date-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}

.hero-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--green-pale);
  white-space: nowrap;
}

.hero-badge em {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  line-height: 1.2;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--off-white) 0%, transparent 25%);
}

/* ─── COUNTDOWN ─── */
.countdown-units {
  display: flex;
  gap: 40px;
  align-items: center;
}

.countdown-unit {
  text-align: center;
}

.countdown-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  display: block;
}

.countdown-desc {
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green-pale);
}

.countdown-dot {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--green-mid);
  opacity: 0.5;
}

/* ─── SECTIONS ─── */
section {
  padding: 110px 60px;
}

.section-tag {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--green);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--green-deep);
  line-height: 1.12;
}

/* ─── ABOUT ─── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.about-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.about-text p.lead {
  font-family: 'Montserrat';
  font-size: 15px;
  font-style: normal;
  color: #5a7052;
  line-height: 1.65;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
  position: relative;
}

.about-img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.about-img:first-child {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 2/3;
}

.about-img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  aspect-ratio: 4/3;
}

.about-img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
  aspect-ratio: 4/3;
}

.about-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 100px;
  height: 100px;
  border: 1px solid var(--green-pale);
  z-index: -1;
}

/* ─── PILLARS ─── */
.pillars {
  background: var(--green-deep);
}

.pillars .section-tag {
  color: var(--green-pale);
}

.pillars .section-tag::before {
  background: var(--green-pale);
}

.pillars .section-title {
  color: var(--white);
}

.pillars-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 72px;
  align-items: start;
}

.pillars-sub {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(200, 218, 192, 0.65);
}

.pillars-sub em {
  color: var(--green-pale);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200, 218, 192, 0.1);
}

.pillar {
  background: var(--green-deep);
  padding: 44px 32px;
  transition: background 0.3s;
}

.pillar:hover {
  background: #243d1d;
}

.pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(127, 168, 112, 0.25);
  display: block;
  margin-bottom: 20px;
  line-height: 1;
}

.pillar-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 14px;
  font-weight: 500;
}

.pillar-text {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(200, 218, 192, 0.7);
}

/* ─── SPEAKERS ─── */
.speakers {
  background: var(--light);
}

.speakers-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.speakers-note {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.6;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.speaker-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  text-align: left;
  display: block;
  width: 100%;
  font-family: inherit;
}

.speaker-card:focus-visible {
  outline: 3px solid var(--green-mid);
  outline-offset: 3px;
}

.speaker-img-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}

.speaker-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: grayscale(15%);
}

.speaker-card:hover .speaker-img {
  transform: scale(1.06);
  filter: grayscale(0);
}

.speaker-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 47, 21, 0.88));
  padding: 36px 16px 18px;
}

.speaker-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.speaker-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-pale);
}

.speaker-card--mystery {
  cursor: default;
}

.speaker-card--mystery .speaker-img {
  filter: grayscale(70%);
  opacity: 0.55;
}

.speaker-card--mystery:hover .speaker-img {
  transform: none;
  filter: grayscale(70%);
  opacity: 0.55;
}

.speaker-card--mystery .speaker-name {
  font-style: italic;
}

.speaker-hint {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(200, 218, 192, 0.6);
  display: block;
  margin-top: 6px;
}

/* ─── AUDIENCE ─── */
.audience {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.audience-img-wrap {
  position: relative;
  overflow: hidden;
}

.audience-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.audience-badge {
  position: absolute;
  top: 36px;
  right: -16px;
  background: var(--green);
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.5;
}

.audience-list {
  list-style: none;
  margin-top: 36px;
}

.audience-list li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
  padding: 18px 0;
  border-bottom: 1px solid var(--light);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.audience-list li::before {
  content: '—';
  color: var(--green);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}

/* ─── TICKETS ─── */
.tickets {
  background: var(--green-deep);
}

.tickets .section-tag {
  color: var(--green-pale);
}

.tickets .section-tag::before {
  background: var(--green-pale);
}

.tickets .section-title {
  color: var(--white);
}

.tickets-sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(200, 218, 192, 0.65);
  margin-top: 14px;
  margin-bottom: 64px;
  max-width: 580px;
}

/* grid de 3 tickets lado a lado */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.ticket {
  background: #243d1d;
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.ticket:hover {
  transform: translateY(-6px);
}

.ticket.featured {
  background: var(--green);
}

.ticket-badge {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 28px;
  display: block;
  font-weight: 500;
}

.ticket.featured .ticket-badge {
  color: rgba(255, 255, 255, 0.85);
}

.ticket-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 300;
  color: var(--white);
  display: block;
  margin-bottom: 28px;
}

.ticket-divider {
  height: 1px;
  background: rgba(200, 218, 192, 0.15);
  margin: 0 0 24px;
}

.ticket.featured .ticket-divider {
  background: rgba(255, 255, 255, 0.25);
}

.ticket-features {
  list-style: none;
  margin-bottom: 36px;
  flex: 1;
}

.ticket-features li {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(200, 218, 192, 0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 12px;
}

.ticket.featured .ticket-features li {
  color: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.ticket-features li::before {
  content: '✦';
  color: var(--green-mid);
  font-size: 8px;
  flex-shrink: 0;
  margin-top: 4px;
}

.ticket.featured .ticket-features li::before {
  color: rgba(255, 255, 255, 0.7);
}

.ticket-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 15px 32px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--green-mid);
  color: var(--green-pale);
  transition: all 0.3s;
  font-weight: 500;
  background: none;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}

.ticket.featured .ticket-btn {
  background: var(--white);
  border-color: var(--white);
  color: var(--green);
}

.ticket-btn:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: var(--white);
}

.ticket.featured .ticket-btn:hover {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

/* ─── CUOTAS SIN INTERÉS ─── */
.installments-banner {
  max-width: 720px;
  margin: 56px auto;
  padding: 44px 56px;
  background: var(--white);
  border: 1px solid var(--green-mid);
  text-align: center;
}

.installments-badge {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--light);
  padding: 6px 16px;
  margin-bottom: 18px;
}

.installments-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 44px);
  font-weight: 400;
  color: var(--green-deep);
  margin-bottom: 14px;
  line-height: 1.1;
}

.installments-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ─── MAPA ─── */
.map-section {
  background: var(--white);
}

.map-header {
  padding: 80px 60px 48px;
}

.map-sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}

.map-embed {
  width: 100%;
  filter: saturate(0.6);
  transition: filter 0.4s;
}

.map-embed:hover {
  filter: saturate(1);
}

/* ─── CTA ─── */
.cta-section {
  background: var(--green);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 0;
}

.cta-content {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.15;
}

.cta-title em {
  font-style: italic;
  color: var(--green-pale);
}

.cta-sub {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  max-width: 420px;
}

.btn-white {
  background: var(--white);
  color: var(--green);
  padding: 15px 38px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid var(--white);
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

.cta-img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
  display: block;
}

/* ─── TÉRMINOS Y CONDICIONES ─── */
.terms-wrap {
  background: #243d1d;
  padding: 64px 60px;
}

.terms-accordion {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--green-pale);
}

.terms-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  padding: 18px 24px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}

.terms-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.terms-accordion.open .terms-chevron {
  transform: rotate(180deg);
}

.terms-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  background: var(--white);
}

.terms-accordion.open .terms-panel {
  grid-template-rows: 1fr;
}

.terms-panel-inner {
  overflow: hidden;
}

.terms-list {
  list-style: none;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.terms-list li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-muted);
}

.terms-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--green);
  font-family: 'Cormorant Garamond', serif;
}

/* ─── FOOTER ─── */
footer {
  background: var(--green-deep);
  padding: 80px 60px 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  align-items: center;
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  display: block;
}

.footer-tagline {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(200, 218, 192, 0.45);
  margin: 0 auto 28px;
  max-width: 270px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(200, 218, 192, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-pale);
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--green-mid);
  background: var(--green-mid);
  color: var(--white);
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 24px;
  font-weight: 500;
}

.footer-col-links {
  list-style: none;
}

.footer-col-links li+li {
  margin-top: 12px;
}

.footer-col-links a {
  font-size: 14px;
  color: rgba(200, 218, 192, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col-links a:hover {
  color: var(--green-pale);
}

.footer-contact-item {
  font-size: 14px;
  color: rgba(200, 218, 192, 0.6);
  margin-bottom: 12px;
  line-height: 1.6;
  overflow-wrap: break-word;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 218, 192, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(200, 218, 192, 0.25);
}

.footer-made {
  font-size: 10px;
  color: rgba(200, 218, 192, 0.2);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.9s ease forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

/* ─── MOBILE ─── */
@media (max-width: 960px) {
  nav {
    padding: 18px 24px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 72px 24px;
  }

  .hero-cover-img {
    max-height: 55vw;
  }

  .installments-banner {
    padding: 32px 24px;
    margin: 40px auto;
  }

  .terms-wrap {
    padding: 40px 24px;
  }

  .terms-toggle {
    padding: 16px 20px;
    font-size: 10px;
  }

  .terms-list {
    padding: 24px 20px 28px;
  }

  .hero-strip {
    padding: 24px;
  }

  .hero-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-date-block {
    gap: 20px;
    flex-wrap: wrap;
  }

  .about,
  .audience,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .pillars-header {
    grid-template-columns: 1fr;
  }

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

  .speakers-header {
    flex-direction: column;
    gap: 20px;
  }

  .speakers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .ticket {
    padding: 40px 28px;
  }

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

  .countdown-units {
    gap: 20px;
    flex-wrap: wrap;
  }

  .cta-content {
    padding: 48px 24px;
  }

  .cta-img {
    min-height: 220px;
  }

  .tickets-reserve-note {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .speakers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-date-block {
    flex-direction: column;
    gap: 20px;
  }
}

/* ─── MODAL PONENTE ─── */
.ponente-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 35, 15, 0.72);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ponente-overlay.open {
  display: flex;
}

.ponente-box {
  background: var(--white);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.3s ease;
}

.ponente-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  z-index: 2;
}

.ponente-close:hover {
  color: var(--white);
}

.ponente-header {
  background: var(--green-deep);
  padding: 36px 40px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.ponente-header img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.ponente-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 8px;
}

.ponente-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
}

.ponente-role {
  font-size: 12px;
  color: rgba(200, 218, 192, 0.75);
  margin-top: 4px;
}

.ponente-body {
  padding: 36px 40px;
}

.ponente-body p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.ponente-body h4 {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  margin: 24px 0 14px;
}

.ponente-body .ponente-pregunta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text);
  margin: 26px 0 12px;
  line-height: 1.4;
}

.ponente-body ul {
  list-style: none;
}

.ponente-body li {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--light);
  display: flex;
  gap: 12px;
}

.ponente-body li strong {
  color: var(--text);
  font-weight: 600;
}

.ponente-body li::before {
  content: '—';
  color: var(--green);
  flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif;
}

@media (max-width: 600px) {
  .ponente-overlay {
    padding: 12px;
  }

  .ponente-box {
    max-height: 88vh;
  }

  .ponente-header {
    padding: 28px 20px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .ponente-header img {
    width: 64px;
    height: 64px;
  }

  .ponente-title {
    font-size: 24px;
  }

  .ponente-close {
    top: 14px;
    right: 16px;
  }

  .ponente-body {
    padding: 24px 20px;
  }

  .ponente-body p,
  .ponente-body li {
    font-size: 13px;
  }
}

/* ─── MODAL FORMULARIO ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(20, 35, 15, 0.72);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--white);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
  color: var(--text-muted);
  transition: color 0.2s;
  z-index: 2;
}

.modal-close:hover {
  color: var(--text);
}

.modal-header {
  background: var(--green-deep);
  padding: 36px 40px 32px;
}

.modal-tag {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--green-pale);
  margin-bottom: 10px;
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}

.modal-sub {
  font-size: 13px;
  color: rgba(200, 218, 192, 0.7);
  line-height: 1.6;
}

.modal-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
}

.req {
  color: #c0392b;
}

.form-input {
  border: 1px solid var(--green-pale);
  padding: 12px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.form-input:focus {
  border-color: var(--green);
  background: var(--white);
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
}

.radio-option input[type="radio"] {
  accent-color: var(--green);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Selector de tickets */
.select-tickets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ticket-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--green-pale);
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 2px;
  background: var(--off-white);
}

.ticket-option:has(input:checked) {
  border-color: var(--green);
  background: #f0f5ee;
}

.ticket-option input[type="radio"] {
  display: none;
}

.ticket-opt-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.ticket-opt-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--green-dark);
  font-weight: 500;
}

.ticket-option:has(input:checked) .ticket-opt-name {
  color: var(--green-dark);
}

.ticket-option:has(input:checked) .ticket-opt-price {
  color: var(--green);
}

.form-fine-print {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 8px;
  padding: 10px 12px;
  background: #f5f8f4;
  border-left: 2px solid var(--green-pale);
}

.form-error {
  background: #fdf0ef;
  border: 1px solid #e74c3c;
  color: #c0392b;
  padding: 12px 16px;
  font-size: 13px;
  border-radius: 2px;
}

.form-submit {
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 16px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.form-submit:hover {
  background: #128C7E;
}

@media (max-width: 600px) {
  .modal-header {
    padding: 28px 24px;
  }

  .modal-body {
    padding: 24px;
    gap: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-title {
    font-size: 28px;
  }
}