:root {
  --bg: #fffdf9;
  --ink: #172033;
  --muted: #667085;
  --line: #e7e7ea;
  --white: #ffffff;
  --blue: #00a4d9;
  --green: #8cc63f;
  --yellow: #f6c600;
  --orange: #f7941d;
  --red: #ef3340;
  --pink: #e4007f;
  --purple: #7a3e91;
  --navy: #2c2d83;
  --shadow: 0 24px 70px rgba(25, 31, 53, .12);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, 100%); }
.section { padding: 96px 0; }
.soft { background: #f6f7fb; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(0,0,0,.06);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand {
  display: flex;
  align-items: center;
  width: min(210px, calc(100vw - 100px));
  height: auto;
  overflow: visible;
  flex-shrink: 0;
}

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


.nav { display: flex; align-items: center; gap: 26px; font-size: .94rem; font-weight: 700; }
.nav a:not(.btn) { color: #3b4252; }
.nav a:not(.btn):hover { color: var(--pink); }
.menu-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; cursor: pointer; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(228, 0, 127, .22);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(228, 0, 127, .28); }
.btn-small { min-height: 42px; padding: 0 18px; font-size: .9rem; }
.btn-ghost { color: var(--ink); background: transparent; border: 1px solid #cfd2db; box-shadow: none; }
.btn-ghost.dark { border-color: #283044; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0,164,217,.12), transparent 26%),
    radial-gradient(circle at 90% 10%, rgba(246,198,0,.14), transparent 24%),
    linear-gradient(145deg, #fff 0%, #fffaf2 55%, #f8f8ff 100%);
}
.hero-grid { 
  display: grid; 
  grid-template-columns: 1.08fr .92fr; 
  align-items: start; 
  gap: 72px; }
.eyebrow { display: inline-block; color: var(--navy); font-size: .78rem; letter-spacing: .15em; font-weight: 900; margin-bottom: 14px; }
.hero h1, .section h2 { margin: 0; letter-spacing: -.045em; line-height: 1.03; }
.hero h1 { font-size: clamp(3rem, 6vw, 5.4rem); max-width: 760px; }
.hero h1 span { background: linear-gradient(90deg, var(--blue), var(--green), var(--yellow), var(--orange), var(--pink)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-text { max-width: 680px; font-size: 1.15rem; color: var(--muted); margin: 24px 0 28px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 30px; }
.hero-meta div { padding-right: 20px; border-right: 1px solid #d9dbe1; }
.hero-meta div:last-child { border-right: 0; }
.hero-meta strong, .hero-meta span { display: block; }
.hero-meta strong { font-size: 1.1rem; }
.hero-meta span { color: var(--muted); font-size: .85rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.countdown { display: flex; gap: 10px; margin-top: 30px; }
.countdown div { min-width: 72px; padding: 10px 12px; text-align: center; border: 1px solid #e0e2e8; border-radius: 16px; background: rgba(255,255,255,.75); }
.countdown strong, .countdown span { display: block; }
.countdown strong { font-size: 1.25rem; }
.countdown span { color: var(--muted); font-size: .73rem; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { position: relative; }
.poster-card { position: relative; width: min(440px, 100%); margin-left: auto; border-radius: 34px; overflow: hidden; background: transparent;}
.poster-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center; }
.poster-card::after { content: ""; position: absolute; inset: auto 0 0; height: 34%; background: linear-gradient(transparent, rgba(12,18,28,.5)); }
.poster-badge { position: absolute; z-index: 2; right: 22px; bottom: 22px; color: #fff; border: 1px solid rgba(255,255,255,.8); padding: 9px 15px; border-radius: 999px; font-weight: 800; }
.floating-card { position: absolute; left: -20px; bottom: 42px; width: 260px; display: flex; gap: 12px; align-items: center; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.95); box-shadow: 0 18px 46px rgba(24, 28, 45, .16); }
.floating-card span { font-size: 1.5rem; }
.floating-card p { margin: 0; font-size: .84rem; line-height: 1.4; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5; }
.orb-a { width: 180px; height: 180px; background: rgba(228,0,127,.08); left: -60px; bottom: 60px; }
.orb-b { width: 260px; height: 260px; background: rgba(0,164,217,.08); right: -100px; top: 10px; }

.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.section h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.lead { color: var(--muted); font-size: 1.12rem; }
.lead p { margin-top: 0; }
.note { padding: 18px 22px; border-left: 5px solid var(--green); background: #f4faea; border-radius: 0 16px 16px 0; color: #354028; font-weight: 800; }
.section-title { max-width: 720px; margin-bottom: 48px; }
.section-title p { color: var(--muted); font-size: 1.05rem; }
.centered { text-align: center; margin-inline: auto; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card { padding: 28px; background: #fff; border: 1px solid #eaebef; border-radius: var(--radius); min-height: 230px; transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(22, 29, 46, .08); }
.feature-card .icon { font-size: 2rem; }
.feature-card h3 { margin: 18px 0 8px; font-size: 1.25rem; }
.feature-card p { margin: 0; color: var(--muted); }

.fashion-section { overflow: hidden; color: #fff; background: #111526; }
.fashion-section .section-title p { color: #b9c1d2; }
.fashion-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 30px; align-items: stretch; }

.fashion-carousel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 30px;
  background: transparent;
  box-shadow: none;
}

.carousel-track { position: relative; height: 100%; min-height: 590px; }
.fashion-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transform: scale(1.035); transition: opacity .55s ease, transform .7s ease, visibility .55s; }
.fashion-slide.active { opacity: 1; visibility: visible; transform: scale(1); }
.fashion-slide img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; object-position: center 18%; }
.fashion-slide:nth-child(2) img { object-position: center; }
.fashion-slide:nth-child(3) img { object-position: 76% 42%; }
.fashion-slide::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(8,10,19,.9)); }
.slide-caption { position: absolute; z-index: 2; left: 34px; right: 34px; bottom: 54px; }
.slide-caption span { display: block; margin-bottom: 8px; color: #98ebff; font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.slide-caption strong { display: block; max-width: 570px; font-size: clamp(1.45rem, 3vw, 2.45rem); line-height: 1.08; }
.carousel-arrow { position: absolute; z-index: 3; top: 50%; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: #fff; background: rgba(8,10,19,.38); font-size: 2rem; line-height: 1; cursor: pointer; backdrop-filter: blur(8px); }
.carousel-arrow:hover { background: rgba(228,0,127,.8); }
.carousel-arrow.prev { left: 18px; }
.carousel-arrow.next { right: 18px; }
.carousel-dots { position: absolute; z-index: 3; right: 28px; bottom: 24px; display: flex; gap: 8px; }
.carousel-dots button { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.48); cursor: pointer; transition: width .25s ease, background .25s ease; }
.carousel-dots button.active { width: 28px; background: #fff; }
.casting-card { display: flex; flex-direction: column; align-items: flex-start; padding: 40px; border: 1px solid rgba(255,255,255,.12); border-radius: 30px; background: linear-gradient(150deg, rgba(44,45,131,.75), rgba(122,62,145,.3)); }
.casting-label { padding: 7px 12px; border-radius: 999px; color: #201625; background: var(--yellow); font-size: .72rem; font-weight: 900; letter-spacing: .12em; }
.casting-card h3 { margin: 24px 0 14px; font-size: clamp(2rem, 3vw, 3rem); line-height: 1.05; }
.casting-card > p { margin: 0; color: #c8cede; }
.casting-details { display: grid; gap: 15px; width: 100%; margin: 28px 0; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
.casting-details div { display: flex; gap: 13px; align-items: flex-start; }
.casting-details div > span { font-size: 1.25rem; }
.casting-details p { margin: 0; color: #c8cede; font-size: .88rem; line-height: 1.45; }
.casting-details strong { color: #fff; }
.casting-card small { display: block; margin-top: 16px; color: #939caf; line-height: 1.45; }


.gender-field {
  padding: 0;
  margin: 0 0 18px;
  border: 0;
}

.gender-field legend {
  margin-bottom: 9px;
  font-size: 0.88rem;
  font-weight: 800;
}

.radio-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 5px;
  border: 1px solid #d9dce4;
  border-radius: 14px;
  background: #f4f5f8;
}

.modal-dialog .radio-option {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
}

.radio-option input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.radio-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #555d6d;
  font-weight: 700;
  transition: 0.2s ease;
}

.radio-option input[type="radio"]:checked + span {
  color: #ffffff;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  box-shadow: 0 6px 16px rgba(228, 0, 127, 0.2);
}

.radio-option input[type="radio"]:focus-visible + span {
  outline: 3px solid rgba(0, 164, 217, 0.25);
}


.experience-group {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}


textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d9dce4;
  border-radius: 13px;
  color: var(--ink);
  background: #fbfbfc;
  resize: vertical;
  font: inherit;
}

textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 164, 217, 0.1);
}


.schedule { display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px; margin-bottom: 20px; }
.schedule-day { border: 1px solid var(--line); border-radius: 18px; background: #fff; padding: 16px 10px; cursor: pointer; color: var(--ink); transition: .2s ease; }
.schedule-day span, .schedule-day strong, .schedule-day small { display: block; }
.schedule-day span { color: var(--muted); font-size: .72rem; font-weight: 900; letter-spacing: .08em; }
.schedule-day strong { font-size: 1.75rem; line-height: 1.1; margin: 4px 0; }
.schedule-day.active { color: white; border-color: transparent; background: linear-gradient(135deg, var(--navy), var(--blue)); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(44,45,131,.22); }
.schedule-day.active span { color: rgba(255,255,255,.75); }
.agenda-card { border-radius: 26px; background: #171b2d; color: #fff; padding: 34px; min-height: 260px; }
.agenda-head { display: flex; justify-content: space-between; gap: 20px; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.12); }
.agenda-head h3 { margin: 0; font-size: 1.6rem; }
.agenda-head span { color: #c2c7d5; }
.agenda-list { display: grid; gap: 2px; margin-top: 18px; }
.agenda-item { display: grid; grid-template-columns: 90px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.agenda-item:last-child { border-bottom: 0; }
.agenda-item time { color: #8fe6ff; font-weight: 900; }

.stats-band { padding: 48px 0; background: linear-gradient(90deg, var(--blue), var(--navy), var(--purple)); color: white; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stats-grid div { padding: 10px; border-right: 1px solid rgba(255,255,255,.22); }
.stats-grid div:last-child { border-right: 0; }
.stats-grid strong { display: block; font-size: 2.2rem; line-height: 1.1; }
.stats-grid span { font-size: .88rem; opacity: .8; }

.brands-section { background: #fff; }
.logo-grid { display: grid; gap: 16px; }

.venture-logos {
  display: grid;

  /* Tarjetas de 180px y máximo 5 por fila */
  grid-template-columns: repeat(auto-fit, 180px);

  /* Separación controlada: mínimo 12px y máximo 20px */
  gap: clamp(12px, 1.5vw, 20px);

  justify-content: center;

  /* 5 × 180px + 4 × 20px = 980px */
  width: 100%;
  max-width: 980px;
  margin-inline: auto;
}

.logo-placeholder {
  width: 180px;
  height: 180px;
  justify-self: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fbfbfd;
  text-align: center;

  transition: transform .2s ease, border-color .2s ease;
}

.logo-placeholder:hover { transform: translateY(-4px); border-color: var(--blue); }
.logo-placeholder span { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 12px; border-radius: 13px; color: var(--navy); background: #e9f7fc; font-weight: 900; }
.logo-placeholder strong { color: #8b91a0; }
.logo-placeholder img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.sponsors-section { color: #fff; background: linear-gradient(125deg, #252671, #7a3e91); }
.sponsors-heading { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: end; margin-bottom: 44px; }
.sponsors-heading h2 { margin: 0; }
.sponsors-heading p { max-width: 620px; margin: 0; color: #d2d4e5; }


.sponsor-logos {
  display: grid;

  /* Cada tarjeta conserva sus 180px */
  grid-template-columns: repeat(auto-fit, 180px);

  /* Separación mínima que nunca se reduce */
  gap: 15px;

  /* Máximo: 5 tarjetas + 4 separaciones */
  max-width: 1060px;

  width: 100%;
  margin-inline: auto;
  justify-content: center;
}

.sponsor-placeholder {
  width: 180px;
  height: 180px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  border: 1px solid transparent;
  border-radius: 20px;

  color: var(--ink);
  background: #fff;
  text-align: center;

  transition: transform .2s ease, border-color .2s ease;
}

.sponsor-placeholder:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
}

.sponsor-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.patrons-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 164, 217, .09), transparent 25%),
    radial-gradient(circle at 88% 85%, rgba(228, 0, 127, .07), transparent 26%),
    #f7f9fc;
}

.patrons-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 220px));
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1040px;
  margin-inline: auto;
}

.patron-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 14px 38px rgba(24, 30, 48, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.patron-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 164, 217, .55);
  box-shadow: 0 20px 48px rgba(24, 30, 48, .12);
}

.patron-card-main {
  grid-column: auto;

  /* Estos estilos se mantienen */
  border-color: rgba(246, 198, 0, .7);
  background: linear-gradient(135deg, #fff, #fffaf0);
}

.patron-level {
  align-self: flex-start;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--navy);
  background: #e9f7fc;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.patron-card-main .patron-level {
  background: #fff1af;
}

.patron-logo-slot {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 24px;
  border: 1px dashed #cbd2df;
  border-radius: 18px;
  color: #818999;
  background: #fff;
  text-align: center;
  font-weight: 800;
}

.patron-logo-slot img {
  max-width: 100%;
  max-height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
}





.location-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.location-copy > p { color: var(--muted); font-size: 1.05rem; }
.location-facts { display: grid; gap: 10px; margin: 28px 0; }
.location-facts div { display: flex; gap: 14px; align-items: center; }
.location-facts span { font-size: 1.4rem; }
.location-facts p { margin: 0; }
.map-card { position: relative; min-height: 440px; overflow: hidden; border-radius: 30px; background: #ecf1f4; box-shadow: var(--shadow); }
.map-grid { position: absolute; inset: -40px; opacity: .8; background-image: linear-gradient(35deg, transparent 48%, #cbd5dc 49%, #cbd5dc 51%, transparent 52%), linear-gradient(125deg, transparent 48%, #d9e1e6 49%, #d9e1e6 51%, transparent 52%); background-size: 120px 110px, 160px 130px; transform: rotate(-8deg); }
.pin { position: absolute; left: 52%; top: 44%; transform: translate(-50%, -50%); font-size: 3.4rem; filter: drop-shadow(0 10px 10px rgba(0,0,0,.2)); }
.map-label { position: absolute; left: 50%; top: 60%; transform: translateX(-50%); min-width: 220px; text-align: center; background: white; border-radius: 16px; padding: 12px 16px; box-shadow: 0 12px 30px rgba(24,30,48,.18); }
.map-label strong, .map-label span { display: block; }
.map-label span { color: var(--muted); font-size: .82rem; }

.register-section { background: #14192b; color: white; }
.register-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.eyebrow.light { color: #8fe6ff; }
.register-copy p { color: #b8c0cf; }
.check-list { list-style: none; padding: 0; display: grid; gap: 10px; color: #e8ebf3; }
.register-form { background: white; color: var(--ink); padding: 30px; border-radius: 26px; box-shadow: 0 24px 70px rgba(0,0,0,.25); }
.register-form label { display: grid; gap: 8px; margin-bottom: 16px; font-weight: 800; font-size: .9rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
input, select { width: 100%; border: 1px solid #d9dce4; background: #fbfbfc; padding: 14px 15px; border-radius: 13px; outline: none; color: var(--ink); }
input:focus, select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(0,164,217,.1); }
.terms { grid-template-columns: 20px 1fr !important; align-items: start; font-weight: 500 !important; color: var(--muted); }
.terms input { width: 18px; height: 18px; margin-top: 2px; }
.form-status { margin: 14px 0 0; min-height: 22px; text-align: center; font-weight: 800; color: #147a42; }

.modal { position: fixed; z-index: 100; inset: 0; display: none; place-items: center; padding: 24px; }
.modal.open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(8,11,22,.76); backdrop-filter: blur(8px); }
.modal-dialog { position: relative; z-index: 1; width: min(650px, 100%); max-height: calc(100vh - 48px); overflow-y: auto; padding: 34px; border-radius: 28px; background: #fff; box-shadow: 0 28px 90px rgba(0,0,0,.35); }
.modal-dialog h2 { margin: 0 0 12px; font-size: clamp(2rem, 5vw, 3rem); }
.modal-dialog > p { margin: 0 0 24px; color: var(--muted); }
.modal-dialog label { display: grid; gap: 8px; margin-bottom: 15px; font-size: .88rem; font-weight: 800; }
.modal-close { position: absolute; top: 16px; right: 18px; width: 40px; height: 40px; border: 0; border-radius: 50%; color: #4d5361; background: #f0f1f4; font-size: 1.6rem; cursor: pointer; }
.optional { color: var(--muted); font-weight: 500; }
body.modal-open { overflow: hidden; }

.faq-list { display: grid; gap: 12px; }
details { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; }
summary { cursor: pointer; font-weight: 900; }
details p { color: var(--muted); margin-bottom: 0; }

footer { padding: 55px 0 22px; background: #0f1321; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 50px; }

.footer-grid p, .footer-grid a { color: #aab1c2; margin: 0; }
.footer-grid a:hover { color: white; }

.footer-logo {
  display: block;
  width: min(280px, 100%);
  height: auto;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.footer-grid > div:first-child {
  gap: 16px;
}

.footer-grid > div:first-child p {
  max-width: 330px;
  line-height: 1.6;
}

.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); color: #737d91; font-size: .85rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav { display: none; position: absolute; top: 76px; left: 20px; right: 20px; flex-direction: column; align-items: stretch; gap: 8px; padding: 18px; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 9px 10px; }
  .hero-grid, .split, .fashion-grid, .location-grid, .register-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 50px; }
  .hero-visual { max-width: 560px; margin-inline: auto; }
  .poster-card { margin-inline: auto; }
  .floating-card { left: 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsors-heading { grid-template-columns: 1fr; gap: 16px; }



  .schedule { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
  .stats-grid div:nth-child(2) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  
    .patrons-grid {
    grid-template-columns: repeat(2, minmax(0, 220px));
    max-width: 460px;
  }

}

@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 72px 0; }

  .brand {
    width: min(175px, calc(100vw - 90px));
  }

  .venture-logos {
    /* Siempre dos columnas */
    grid-template-columns: repeat(2, minmax(0, 180px));
    gap: clamp(12px, 4vw, 15px);
    justify-content: center;
    max-width: 100%;
  }

  .logo-placeholder {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
    padding: clamp(10px, 4vw, 20px);
  }

  .logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
  }s


  .hero { padding-top: 54px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-meta { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-meta div { border-right: 0; padding: 0; }
  .countdown { display: grid; grid-template-columns: repeat(4, 1fr); }
  .countdown div { min-width: 0; padding: 8px 5px; }
  .cards-grid { grid-template-columns: 1fr; }
  .fashion-carousel, .carousel-track, .fashion-slide img { min-height: 500px; }
  .casting-card { padding: 28px 24px; }



  
  .sponsor-placeholder { min-height: 120px; }
  .schedule { grid-template-columns: repeat(3, 1fr); }
  .agenda-card { padding: 24px 20px; }
  .agenda-item { grid-template-columns: 72px 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .modal { padding: 12px; }
  .modal-dialog { max-height: calc(100vh - 24px); padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-card { position: relative; width: calc(100% - 20px); left: 10px; bottom: auto; margin-top: -18px; z-index: 3; }
  .experience-group {
    grid-template-columns: 1fr;
  }


  .patrons-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 100%;
  }



.sponsor-placeholder {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 1;
}

}


@media (max-width: 450px) {
  .radio-group {
    grid-template-columns: 1fr;
  }

  .radio-group {
    grid-template-columns: 1fr;
  }




}


@media (max-width: 420px) {
  .logo-grid.sponsor-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 100%;
  }

  .sponsor-placeholder {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }
}


