/* Empresario Awards — landing */
:root {
  --navy-900: #060d18;
  --navy-800: #0a1424;
  --navy-700: #0f1d31;
  --navy-600: #172a44;
  --cream: #f3efe7;
  --cream-line: #d9d2c4;
  --ink: #16202e;
  --ink-soft: #3a4656;
  --ice: #8cc0f2;
  --ice-strong: #5aa6ee;
  --ice-line: #4e8fd0;
  --paper: #eef1f4;
  --muted: #9aa6b5;
  --display: "GFS Didot", "Didot", "Bodoni 72", "Times New Roman", serif;
  --italic: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --wrap: 1180px;
  --gutter: clamp(20px, 4vw, 56px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  margin: 0;
  background: var(--navy-900);
  color: var(--paper);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 400; }
p { margin: 0; }
svg { flex: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 16px; background: var(--cream); color: var(--ink);
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 2px solid var(--ice); outline-offset: 3px; }

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }
.light { background: var(--cream); color: var(--ink); }
.dark { background: var(--navy-800); color: var(--paper); }

/* ---------- Shared pieces ---------- */
.title-center, .title-left {
  font-family: var(--display);
  font-size: clamp(22px, 2.3vw, 30px);
  letter-spacing: .16em;
  text-transform: uppercase;
  line-height: 1.2;
}
.title-center { text-align: center; }
.title-center::after, .title-left::after {
  content: ""; display: block; width: 40px; height: 1px; margin-top: 18px;
  background: currentColor; opacity: .55;
}
.title-center::after { margin-inline: auto; }

.icon {
  width: 34px; height: 34px;
  fill: none; stroke: currentColor; stroke-width: 1.2;
  stroke-linecap: round; stroke-linejoin: round;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 0 0 4px; border: 0; background: none; cursor: pointer;
  font-size: 12px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color .2s, gap .2s;
}
.link-arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.4; margin-bottom: -4px; }
.link-arrow:hover { gap: 16px; }

.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  min-height: 46px; padding: 0 26px;
  border: 1px solid var(--ice-line);
  background: rgba(4, 11, 22, .55);
  color: var(--paper);
  font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  cursor: pointer; white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(140, 192, 242, .12), 0 0 18px rgba(40, 140, 240, .12);
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.btn-outline svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.3; }
.btn-outline:hover {
  background: rgba(28, 72, 120, .45); border-color: var(--ice);
  box-shadow: inset 0 0 0 1px rgba(140, 192, 242, .25), 0 0 26px rgba(60, 150, 240, .3);
}
.btn-lg { min-height: 56px; padding: 0 44px; min-width: 300px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 40;
  transition: background .3s, box-shadow .3s, padding .3s;
}
.site-header.scrolled {
  background: rgba(6, 13, 24, .92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(140, 192, 242, .12);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: min(100% - 2 * var(--gutter), 1400px); margin-inline: auto;
  padding: 22px 0;
  transition: padding .3s;
}
.scrolled .header-inner { padding: 12px 0; }
.logo {
  display: grid; justify-items: center; text-decoration: none; line-height: 1;
  color: #f4f5f6;
}
.logo-main { font-family: var(--display); font-size: clamp(24px, 2.4vw, 34px); letter-spacing: .12em; text-transform: uppercase; }
.logo-sub { margin-top: 4px; font-family: var(--display); font-size: clamp(11px, 1vw, 14px); letter-spacing: .5em; padding-left: .5em; text-transform: uppercase; }
.logo-edition { margin-top: 12px; font-size: 9px; letter-spacing: .38em; padding-left: .38em; text-transform: uppercase; color: var(--ice); }
.scrolled .logo-edition { display: none; }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.main-nav > a {
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; color: #e8ebef;
  padding: 6px 0; border-bottom: 1px solid transparent;
  transition: border-color .2s, color .2s;
}
.main-nav > a:hover { border-color: var(--ice); color: #fff; }
.main-nav .btn-outline { margin-left: clamp(8px, 2vw, 32px); }

.menu-toggle {
  display: none; position: relative; width: 44px; height: 44px;
  border: 1px solid rgba(140, 192, 242, .4); background: rgba(4, 11, 22, .5); cursor: pointer;
}
.menu-toggle i {
  position: absolute; left: 12px; right: 12px; height: 1px; background: #e8ebef;
  transition: transform .25s, opacity .25s;
}
.menu-toggle i:nth-child(2) { top: 15px; }
.menu-toggle i:nth-child(3) { top: 21px; }
.menu-toggle i:nth-child(4) { top: 27px; }
.menu-toggle[aria-expanded="true"] i:nth-child(2) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] i:nth-child(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] i:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- 01 Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  min-height: max(640px, min(100svh, 54vw));
  display: grid; place-items: center;
  padding: 150px var(--gutter) 90px;
  background: var(--navy-900);
  container-type: inline-size;
}
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(.7) saturate(.85);
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 45% 55% at 50% 50%, rgba(4, 10, 20, .55), transparent 75%),
    linear-gradient(180deg, rgba(4, 9, 18, .55) 0%, rgba(4, 9, 18, .1) 30%, rgba(4, 9, 18, .35) 80%, rgba(6, 13, 24, .95) 100%);
}
.hero-side {
  position: absolute; z-index: 2; left: var(--gutter); top: 36%;
  padding-left: 14px; border-left: 1px solid rgba(220, 228, 236, .55);
  font-size: 10px; line-height: 2.1; letter-spacing: .34em; text-transform: uppercase; color: #cfd6de;
}
.hero-copy { position: relative; z-index: 3; max-width: 760px; text-align: center; transform: translateX(-3%); }
.hero-eyebrow {
  font-size: 10px; letter-spacing: .5em; line-height: 2; text-transform: uppercase; color: #dbe2ea;
}
.hero-eyebrow::after {
  content: ""; display: block; width: 36px; height: 1px; margin: 12px auto 0; background: #9fb3c8;
}
.hero h1 {
  margin-top: clamp(28px, 3.4vw, 46px);
  font-family: var(--display);
  font-size: clamp(44px, 6.2vw, 92px);
  line-height: .98;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: #f4f4f1;
  text-shadow: 0 2px 30px rgba(0, 0, 0, .35);
}
.hero h1 .accent {
  background: linear-gradient(180deg, #b9dcfb 5%, #86b8e8 50%, #6a9bd0 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-cta { display: none; }
.hero-lead {
  margin-top: clamp(20px, 2.2vw, 30px);
  font-size: clamp(15px, 1.35vw, 19px); line-height: 1.55; color: #e6eaee;
}

/* Trophy: transparent image with editable HTML engraving. */
.trophy {
  position: absolute; z-index: 2; margin: 0;
  right: 4%; bottom: -1%;
  width: clamp(250px, 25cqw, 440px);
  aspect-ratio: 470 / 875;
  container-type: inline-size;
  pointer-events: none;
}
.trophy-img { width: 100%; height: 100%; object-fit: contain; filter: brightness(.95) saturate(.8) drop-shadow(0 0 40px rgba(40, 130, 240, .25)); }
.trophy-face {
  position: absolute; inset: 0;
  background: linear-gradient(140deg, #04101b00, #020b1670 48%, #040b1620);
  clip-path: polygon(31% 35%, 55% 12%, 66% 15%, 75% 52%, 41% 69%, 35% 50%);
}
.trophy-mark {
  position: absolute; left: 42.5%; top: 22%; width: 12%;
  fill: #b9cbe0; opacity: .85; filter: drop-shadow(0 1px 1px #0008);
}
.trophy-name, .trophy-values, .trophy-base {
  position: absolute; margin: 0; text-align: center; text-transform: uppercase;
  text-shadow: 0 1px 2px #061223;
}
.trophy-name {
  left: 30%; width: 40%; top: 30.5%;
  font-family: var(--display); font-size: 4.3cqw; line-height: 1.25; letter-spacing: .1em; color: #d3dde9;
}
.trophy-values {
  left: 32%; width: 36%; top: 43.5%;
  font-size: 1.9cqw; line-height: 2.3; letter-spacing: .2em; color: #a9b8ca;
}
.trophy-values::after { content: ""; display: block; width: 14%; height: 1px; margin: 4% auto 0; background: #8498ad80; }
.trophy-base {
  left: 17%; top: 78.5%; text-align: left;
  font-size: 1.9cqw; line-height: 1.75; letter-spacing: .28em; color: #9fb0c3;
  transform: rotate(-1deg);
}

/* ---------- 02 El premio ---------- */
.premio { padding: clamp(56px, 6vw, 84px) 0; }
.premio-grid {
  display: grid; grid-template-columns: 1fr 1.25fr .8fr; align-items: center;
  gap: clamp(28px, 5vw, 72px);
}
.premio-copy p { margin: 26px 0 26px; max-width: 380px; font-size: 16px; line-height: 1.7; color: var(--ink-soft); }
.premio-copy strong { font-weight: 500; color: var(--ink); }
.premio-copy .link-arrow { color: var(--navy-600); }
.premio-media { margin: 0; overflow: hidden; background: var(--navy-800); aspect-ratio: 2.19; }
.premio-media img { width: 100%; height: 100%; object-fit: cover; }
.premio-values {
  margin: 0; padding: 6px 0 6px 26px; list-style: none;
  border-left: 1px solid var(--cream-line);
  font-size: 12px; line-height: 2.25; letter-spacing: .24em; text-transform: uppercase; color: var(--navy-600);
}

/* ---------- 03 Cómo funciona ---------- */
.steps-section { padding: clamp(56px, 6vw, 80px) 0; background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); }
.steps {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  margin: 46px 0 0; padding: 0; list-style: none; counter-reset: s;
}
.steps li { position: relative; padding: 0 16px; text-align: center; }
.steps li + li::before {
  content: ""; position: absolute; left: -8px; top: 9px; width: 16px; height: 16px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a9c3dd' stroke-width='1.4'%3E%3Cpath d='M3 12h17m-6-6 6 6-6 6'/%3E%3C/svg%3E");
}
.step-num {
  position: absolute; left: 24px; top: 0;
  font-family: var(--display); font-size: 15px; color: var(--ice);
}
.steps .icon { margin: 0 auto; color: #c6d9ee; }
.steps h3 {
  margin-top: 20px;
  font-size: 13px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: #f1f3f5;
}
.steps p { margin-top: 12px; font-size: 13px; line-height: 1.6; color: #b8c2ce; }

/* ---------- 04 Criterios ---------- */
.criteria-section { padding: clamp(52px, 5.5vw, 76px) 0; }
.criteria { display: grid; grid-template-columns: repeat(6, 1fr); margin-top: 40px; }
.criterion {
  display: grid; justify-items: center; align-content: start; gap: 18px;
  padding: 14px 10px; border: 0; background: none; cursor: pointer;
  color: var(--navy-600);
  transition: color .2s, background .2s;
}
.criterion + .criterion { border-left: 1px solid var(--cream-line); }
.criterion span { font-size: 12px; font-weight: 500; line-height: 1.35; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.criterion:hover, .criterion[aria-expanded="true"] { background: rgba(23, 42, 68, .06); }
.criterion[aria-expanded="true"] .icon { color: var(--ice-strong); }
.criterion-detail {
  max-width: 640px; margin: 28px auto 0; padding: 16px 22px;
  border-left: 2px solid var(--ice-line); background: rgba(23, 42, 68, .05);
  font-size: 15px; color: var(--ink-soft);
}
.criterion-detail strong { display: block; margin-bottom: 4px; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); font-weight: 600; }

/* ---------- 05 Paquetes ---------- */
.packages-section {
  padding: clamp(56px, 6vw, 84px) 0 clamp(40px, 4vw, 56px);
  background: radial-gradient(ellipse 60% 70% at 50% 40%, #11223a 0%, var(--navy-900) 75%);
}
.packages {
  display: grid; grid-template-columns: repeat(3, 1fr); align-items: stretch;
  gap: clamp(16px, 2vw, 22px); margin-top: 44px;
}
.package {
  position: relative; display: flex; flex-direction: column;
  padding: 34px clamp(22px, 2.4vw, 36px) 28px;
  border: 1px solid rgba(110, 160, 210, .35);
  background: rgba(8, 18, 32, .6);
  transition: border-color .25s, transform .25s, box-shadow .25s;
}
.package:hover { border-color: rgba(140, 192, 242, .7); transform: translateY(-3px); }
.package.featured {
  border-color: var(--ice-strong);
  box-shadow: 0 0 0 1px rgba(90, 166, 238, .4), 0 0 38px rgba(60, 150, 240, .28), inset 0 0 40px rgba(60, 150, 240, .08);
}
.badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  padding: 3px 10px; background: var(--ice); color: #06182c;
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.package h3, .package .price { text-align: center; font-family: var(--display); color: var(--ice); }
.package h3 { font-size: 17px; letter-spacing: .14em; text-transform: uppercase; }
.package .price { margin-top: 4px; font-size: clamp(30px, 2.8vw, 38px); line-height: 1.2; }
.package ul { margin: 26px 0 26px; padding: 0; list-style: none; flex: 1; }
.package li {
  position: relative; padding-left: 28px; font-size: 14px; line-height: 1.45; color: #dfe5eb;
}
.package li + li { margin-top: 13px; }
.package li::before {
  content: ""; position: absolute; left: 2px; top: 3px; width: 13px; height: 8px;
  border-left: 1.5px solid var(--ice); border-bottom: 1.5px solid var(--ice);
  transform: rotate(-45deg);
}
.package-cta {
  display: inline-flex; align-self: center; align-items: center; gap: 10px;
  padding: 10px 18px; border: 1px solid rgba(140, 192, 242, .4); background: none; cursor: pointer;
  font-size: 11px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--ice);
  transition: background .2s, border-color .2s, color .2s;
}
.package-cta svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.package-cta:hover, .featured .package-cta { background: rgba(90, 166, 238, .14); border-color: var(--ice); color: #fff; }
.packages-note { margin-top: 26px; text-align: center; font-size: 12px; color: #aab5c2; }

/* ---------- 06 Casos ---------- */
.cases-section { padding: clamp(52px, 5.5vw, 76px) 0; }
.cases-title span { font-family: var(--sans); font-size: .5em; letter-spacing: .3em; vertical-align: middle; color: var(--ink-soft); }
.cases { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 22px); margin-top: 38px; }
.case { display: flex; flex-direction: column; background: #fbf9f5; border: 1px solid var(--cream-line); }
.case-media { position: relative; overflow: hidden; aspect-ratio: 1.74; background: #d9d6cf; }
.case-media img { width: 100%; height: 100%; object-fit: cover; object-position: 20% 22%; }
.case-media blockquote {
  position: absolute; inset: 0 0 0 auto; width: 38%; margin: 0;
  display: grid; align-content: center; gap: 12px;
  padding: 0 clamp(14px, 2vw, 26px) 0 clamp(28px, 4vw, 52px);
  background: linear-gradient(90deg, rgba(243, 239, 231, 0) 0%, rgba(243, 239, 231, .86) 26%, rgba(243, 239, 231, .94) 100%);
  color: var(--ink);
}
.case-media blockquote p { font-family: var(--italic); font-style: italic; font-size: clamp(16px, 1.55vw, 21px); line-height: 1.3; }
.case-media blockquote footer { font-size: 12px; color: var(--ink-soft); }
.case-badge {
  position: absolute; left: 14px; bottom: 0;
  padding: 4px 10px; background: var(--ice); color: #06182c;
  font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
}
.case-body {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 16px;
  padding: 18px clamp(14px, 1.6vw, 22px) 20px;
}
.case-body h3 { font-family: var(--display); font-size: clamp(18px, 1.6vw, 22px); color: var(--ink); }
.case-body p { margin-top: 4px; font-size: 13px; letter-spacing: .06em; color: var(--ink-soft); }
.case-body .link-arrow { flex: none; color: var(--navy-600); letter-spacing: .04em; text-transform: none; font-size: 13px; }

/* ---------- 07 Club ---------- */
.club { display: grid; grid-template-columns: 1fr 1.05fr; min-height: 300px; background: var(--navy-800); }
.club-copy {
  display: grid; align-content: center; gap: 24px;
  padding: clamp(48px, 5vw, 70px) clamp(24px, 4vw, 48px) clamp(48px, 5vw, 70px) max(var(--gutter), calc((100vw - var(--wrap)) / 2));
}
.club-copy p { max-width: 460px; font-size: 16px; line-height: 1.65; color: #d3dae2; }
.club-copy .link-arrow { justify-self: start; color: var(--ice); }
.club-media { position: relative; overflow: hidden; }
.club-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.club-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, var(--navy-800) 0%, rgba(10, 20, 36, .1) 22%, rgba(10, 20, 36, .1) 55%, rgba(10, 20, 36, .88) 82%);
}
.club-tagline {
  position: absolute; z-index: 2; right: var(--gutter); top: 50%; transform: translateY(-50%);
  font-size: 11px; line-height: 2; letter-spacing: .3em; text-transform: uppercase; color: #e4e9ee;
}

/* ---------- 08 FAQ ---------- */
.faq-section { padding: clamp(52px, 5.5vw, 72px) 0; }
.faq {
  display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(24px, 4vw, 56px);
  max-width: 1020px; margin: 34px auto 0;
}
.faq details { border-bottom: 1px solid var(--cream-line); }
.faq details:nth-child(-n+2) { border-top: 1px solid var(--cream-line); }
.faq summary {
  position: relative; display: block; cursor: pointer; list-style: none;
  padding: 15px 40px 15px 4px; font-size: 15px; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before, .faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%; width: 13px; height: 1.3px;
  background: var(--navy-600); transition: transform .25s;
}
.faq summary::after { transform: rotate(90deg); }
.faq details[open] summary::after { transform: rotate(0); }
.faq summary:hover { color: var(--navy-600); }
.faq details p { padding: 0 40px 18px 4px; font-size: 14px; line-height: 1.7; color: var(--ink-soft); }

/* ---------- 09 CTA + footer ---------- */
.final-cta {
  position: relative; overflow: hidden; display: grid; place-items: center;
  min-height: 250px; padding: 56px var(--gutter);
  background: var(--navy-900);
}
.final-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; filter: brightness(.38) saturate(.7); }
.final-inner { position: relative; z-index: 1; display: grid; justify-items: center; gap: 28px; text-align: center; }
.final-cta h2 {
  font-family: var(--display); font-size: clamp(22px, 2.4vw, 32px); letter-spacing: .14em; text-transform: uppercase;
  color: var(--ice);
}
.final-side {
  position: absolute; z-index: 1; right: var(--gutter); top: 50%; transform: translateY(-50%);
  padding-left: 16px; border-left: 1px solid rgba(220, 228, 236, .5);
  font-size: 10px; line-height: 2.1; letter-spacing: .34em; text-transform: uppercase; color: #cfd6de;
}

.site-footer { background: #05090f; color: #c9d1da; border-top: 1px solid rgba(140, 192, 242, .08); }
.footer-top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 36px 0 26px; border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.footer-logo { display: grid; gap: 8px; text-decoration: none; }
.footer-logo span { font-family: var(--display); font-size: 21px; letter-spacing: .14em; text-transform: uppercase; color: #f1f3f5; }
.footer-logo small { font-size: 9px; letter-spacing: .38em; text-transform: uppercase; color: #9aa6b5; }
.footer-nav { display: flex; align-items: center; flex-wrap: wrap; }
.footer-nav > a { padding: 4px 22px; font-size: 12px; text-decoration: none; border-right: 1px solid rgba(255, 255, 255, .18); }
.footer-nav > a:hover { color: #fff; }
.footer-social { display: flex; gap: 18px; padding-left: 22px; }
.footer-social a { display: grid; place-items: center; width: 28px; height: 28px; color: #e8ecf0; }
.footer-social a:hover { color: var(--ice); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 20px 0 30px; font-size: 12px; color: #8793a1;
}
.footer-bottom em { font-family: var(--italic); font-size: 15px; }

/* ---------- Modals ---------- */
.modal {
  width: min(100% - 32px, 640px); max-height: calc(100dvh - 32px);
  padding: 0; border: 1px solid rgba(140, 192, 242, .35);
  background: var(--navy-800); color: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
}
.modal::backdrop { background: rgba(2, 6, 12, .78); backdrop-filter: blur(4px); }
.modal[open] { animation: modal-in .28s ease-out; }
@keyframes modal-in { from { opacity: 0; transform: translateY(14px); } }
.modal-panel { position: relative; padding: clamp(28px, 4vw, 44px); }
.modal-close {
  position: absolute; right: 12px; top: 10px; width: 40px; height: 40px;
  border: 0; background: none; cursor: pointer; font-size: 28px; line-height: 1; color: #c6d0db;
}
.modal-close:hover { color: #fff; }
.modal-kicker { font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--ice); }
.modal h2 { margin: 10px 0 14px; font-family: var(--display); font-size: clamp(26px, 3.4vw, 36px); line-height: 1.1; }
.modal-intro { margin-bottom: 22px; color: #b8c2ce; font-size: 15px; }
.modal-panel > p, .story-content > p { margin-bottom: 14px; font-size: 15px; line-height: 1.7; color: #d3dae2; }
.modal-panel .link-arrow { color: var(--ice); margin-top: 6px; }
.story-cat { font-size: 12px !important; letter-spacing: .16em; text-transform: uppercase; color: var(--muted) !important; }
.story-content blockquote {
  margin: 22px 0 0; padding: 16px 20px; border-left: 2px solid var(--ice-line);
  font-family: var(--italic); font-style: italic; font-size: 21px; line-height: 1.35; color: #eef2f6;
}
.story-content blockquote span { display: block; margin-top: 6px; font-family: var(--sans); font-style: normal; font-size: 12px; color: var(--muted); }
.club-list { margin: 4px 0 18px; padding-left: 20px; color: #d3dae2; font-size: 15px; line-height: 1.7; }
.club-list li::marker { color: var(--ice); }

#application-form { display: grid; gap: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
#application-form label > span { display: block; margin-bottom: 6px; font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: #aab6c4; }
#application-form input:not([type="checkbox"]), #application-form select, #application-form textarea {
  width: 100%; min-height: 46px; padding: 11px 12px;
  border: 1px solid #2a3c53; border-radius: 0; background: #050c17; color: #f3f6f9;
  font: 15px var(--sans);
  transition: border-color .2s;
}
#application-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238cc0f2' stroke-width='1.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 38px; }
#application-form textarea { resize: vertical; min-height: 110px; }
#application-form input:focus, #application-form select:focus, #application-form textarea:focus { outline: none; border-color: var(--ice); }
.honeypot { position: absolute; left: -9999px; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; line-height: 1.55; color: #b8c2ce; }
.consent input { margin-top: 3px; accent-color: var(--ice-strong); width: 16px; height: 16px; flex: none; }
.consent a { color: var(--ice); }
.form-status { min-height: 1em; font-size: 14px; color: #ffb4a8; }
.form-status:empty { display: none; }
.btn-solid {
  min-height: 50px; border: 0; cursor: pointer;
  background: linear-gradient(180deg, #8cc0f2, #5a9ee0); color: #04121f;
  font-size: 13px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  transition: filter .2s;
}
.btn-solid:hover { filter: brightness(1.08); }
.btn-solid:disabled { opacity: .6; cursor: progress; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-side { display: none; }
  .hero-copy { transform: none; }
  .trophy { right: -2%; width: clamp(220px, 26cqw, 320px); opacity: .9; }
  .premio-grid { grid-template-columns: 1fr 1.2fr; }
  .premio-values { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 4px 28px; border-left: 0; padding: 0; justify-content: center; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 42px; }
  .steps li:nth-child(4)::before { display: none; }
  .criteria { grid-template-columns: repeat(3, 1fr); row-gap: 20px; }
  .criterion:nth-child(4) { border-left: 0; }
}

@media (max-width: 860px) {
  .menu-toggle { display: block; z-index: 2; }
  .main-nav {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; justify-content: center; gap: 28px;
    background: rgba(5, 11, 20, .97);
    opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s;
  }
  .main-nav > a { font-size: 15px; letter-spacing: .2em; }
  .main-nav .btn-outline { margin: 12px 0 0; }
  .nav-open .main-nav { opacity: 1; visibility: visible; }
  .nav-open .logo { position: relative; z-index: 2; }

  .hero { display: block; min-height: 0; padding: 130px var(--gutter) 0; text-align: center; }
  .hero-copy { max-width: 560px; margin: 0 auto; }
  .hero-eyebrow { font-size: 9px; letter-spacing: .36em; }
  .hero-lead .br-desk { display: none; }
  .hero-cta { display: inline-flex; margin-top: 26px; }
  .trophy { position: relative; right: auto; bottom: auto; width: min(64vw, 280px); margin: 18px auto -40px; opacity: 1; }

  .premio-grid { grid-template-columns: 1fr; }
  .premio-copy p { max-width: none; }

  .steps { grid-template-columns: 1fr; row-gap: 0; margin-top: 32px; }
  .steps li {
    display: grid; grid-template-columns: 38px 1fr; column-gap: 16px; align-items: center;
    padding: 18px 0; text-align: left; border-top: 1px solid rgba(140, 192, 242, .14);
  }
  .steps li:last-child { border-bottom: 1px solid rgba(140, 192, 242, .14); }
  .steps li + li::before { display: none; }
  .step-num { position: static; grid-column: 1; grid-row: 1 / span 2; align-self: start; font-size: 18px; }
  .steps .icon { display: none; }
  .steps h3 { margin: 0; grid-column: 2; }
  .steps p { margin-top: 4px; grid-column: 2; }

  .criteria { grid-template-columns: 1fr 1fr; }
  .criterion:nth-child(odd) { border-left: 0; }
  .criterion:nth-child(4) { border-left: 1px solid var(--cream-line); }

  .packages { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; gap: 26px; }
  .package.featured { order: -1; }

  .cases { grid-template-columns: 1fr; }
  .cases-title span { display: block; margin-top: 8px; }

  .club { grid-template-columns: 1fr; }
  .club-copy { padding: 52px var(--gutter) 36px; }
  .club-media { min-height: 260px; }
  .club-media::before { background: linear-gradient(180deg, var(--navy-800) 0%, rgba(10, 20, 36, .15) 30%, rgba(10, 20, 36, .85) 100%); }
  .club-tagline { top: auto; bottom: 22px; transform: none; }

  .faq { grid-template-columns: 1fr; }
  .faq details:nth-child(2) { border-top: 0; }

  .final-cta { padding: 64px var(--gutter) 56px; }
  .final-side { position: static; transform: none; margin-top: 30px; border-left: 0; padding: 0; text-align: center; }
  .final-cta { grid-template-rows: auto auto; }
  .btn-lg { min-width: 0; width: 100%; max-width: 320px; }

  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-nav > a:first-child { padding-left: 0; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .logo-main { font-size: 22px; }
  .hero h1 { font-size: clamp(40px, 12vw, 56px); }
  .criterion span { font-size: 11px; letter-spacing: .12em; }
  .case-media { aspect-ratio: auto; }
  .case-media img { aspect-ratio: 1.25; height: auto; }
  .case-media blockquote { position: static; width: auto; padding: 18px 18px 6px; background: #fbf9f5; }
  .case-badge { bottom: auto; top: 0; }
  .case-body { flex-direction: column; align-items: flex-start; }
  .footer-nav > a { padding: 4px 14px; }
  .footer-social { padding: 12px 0 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- Páginas secundarias ---------- */
.page-top { padding: 28px var(--gutter); border-bottom: 1px solid rgba(140, 192, 242, .12); background: var(--navy-900); }
.page-top .logo { justify-items: start; }
.legal { padding: clamp(48px, 6vw, 80px) 0 90px; }
.legal article { width: min(100% - 2 * var(--gutter), 760px); margin-inline: auto; }
.legal h1 { margin: 18px 0 24px; font-family: var(--display); font-size: clamp(30px, 4vw, 44px); line-height: 1.1; color: var(--ink); }
.legal h2 { margin: 34px 0 10px; font-family: var(--display); font-size: 22px; color: var(--ink); }
.legal p, .legal li { font-size: 15px; line-height: 1.75; color: var(--ink-soft); }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--navy-600); }
.legal .kicker { font-size: 11px; letter-spacing: .3em; text-transform: uppercase; color: var(--navy-600); }
.back-link { font-size: 13px; text-decoration: none; }
.thanks { position: relative; overflow: hidden; display: grid; place-items: center; min-height: 100svh; padding: 60px var(--gutter); text-align: center; }
.thanks > div { position: relative; z-index: 1; display: grid; justify-items: center; gap: 22px; max-width: 620px; }
.thanks h1 { font-family: var(--display); font-size: clamp(34px, 5vw, 58px); line-height: 1.05; text-transform: uppercase; }
.thanks h1 span { color: var(--ice); }
.thanks p { color: #d3dae2; font-size: 16px; }
