:root {
  --black: #0a0a0a;
  --panel: #111;
  --white: #f5f5f2;
  --gray: #a2a2a2;
  --line: #313131;
  --lime: #d6f548;
  --display: "Bebas Neue", sans-serif;
  --mono: "Space Mono", monospace;
  --pad: clamp(20px, 5vw, 76px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font: 14px/1.65 var(--mono);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.01em;
}
.grain {
  position: fixed;
  z-index: 90;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 1rem;
  top: 1rem;
  background: var(--lime);
  color: var(--black);
  padding: 0.7rem 1rem;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.header {
  height: 78px;
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad);
  background: rgba(10, 10, 10, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
}
.brand {
  width: clamp(115px, 10vw, 160px);
}
.header nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 38px);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}
.header nav a {
  position: relative;
}
.header nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.2s;
}
.header nav a:hover:after,
.header nav a:focus-visible:after {
  transform: none;
}
.nav-back {
  border: 1px solid var(--lime);
  padding: 0.65rem 0.9rem;
  color: var(--lime);
}
.nav-back:after {
  display: none;
}
.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
}
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(150px, 18vh, 210px) var(--pad) 70px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-ring {
  position: absolute;
  width: min(72vw, 820px);
  aspect-ratio: 1;
  border: 1px solid rgba(214, 245, 72, 0.5);
  border-radius: 50%;
  right: -16vw;
  top: 4vh;
  box-shadow:
    inset 0 0 0 46px rgba(214, 245, 72, 0.025),
    inset 0 0 0 47px rgba(214, 245, 72, 0.17);
}
.eyebrow {
  margin-bottom: 1.7rem;
  color: var(--lime);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.hero h1 {
  position: relative;
  margin: 0;
  font-size: clamp(7rem, 20vw, 20rem);
  white-space: pre-line;
  max-width: 1200px;
}
.hero-meta {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 520px);
  align-items: end;
  gap: 5vw;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.hero-meta p {
  margin: 0;
}
.dates {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  color: var(--lime);
  line-height: 1;
}
.scroll-link {
  position: absolute;
  right: var(--pad);
  bottom: 2.6rem;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}
.scroll-link span {
  color: var(--lime);
  font-size: 1.1rem;
}
.section-pad {
  padding: clamp(7rem, 12vw, 13rem) var(--pad);
}
.section-head h2,
.extra-copy h2,
.contact h2 {
  margin: 0;
  font-size: clamp(5rem, 11vw, 11rem);
  max-width: 1200px;
}
.pack-grid {
  margin-top: 7rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.pack-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
  min-height: 520px;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
}
.pack-card.featured {
  border-color: var(--lime);
}
.pack-badge {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 0;
  background: var(--lime);
  color: var(--black);
  padding: 0.65rem 0.9rem;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.pack-image {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.pack-content {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 3rem);
}
.pack-tag {
  color: var(--lime);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
}
.pack-content h3 {
  font-size: clamp(4rem, 7vw, 7.2rem);
  margin: 0 0 2rem;
}
.price-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.price-block > span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--lime);
}
.price-block > strong {
  font-family: var(--display);
  font-size: clamp(4rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1;
}
.price-block small {
  color: var(--gray);
  font-size: 0.65rem;
}
.price-block small b {
  color: var(--white);
}
.features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  border-top: 1px solid var(--line);
}
.features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--gray);
  font-size: 0.72rem;
}
.features li:before {
  content: "●";
  color: var(--lime);
  margin-right: 0.8rem;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--lime);
  background: var(--lime);
  color: var(--black);
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  cursor: pointer;
}
.button:hover,
.button:focus-visible {
  background: transparent;
  color: var(--lime);
}
.pack-content .button {
  margin-top: auto;
  width: 100%;
}
.extra-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  background: #0d0d0d;
}
.open-frame {
  position: relative;
}
.open-frame:before,
.open-frame:after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 70px;
  height: 70px;
  border-color: var(--lime);
  pointer-events: none;
}
.open-frame:before {
  left: -1px;
  top: -1px;
  border-left: 2px solid var(--lime);
  border-top: 2px solid var(--lime);
}
.open-frame:after {
  right: -1px;
  bottom: -1px;
  border-right: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
}
.extra-media {
  height: min(680px, 75vw);
  background: var(--black);
  overflow: hidden;
}
.extra-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.extra-copy > p:not(.eyebrow) {
  color: var(--gray);
  max-width: 580px;
}
.extra-copy .price-block {
  margin: 2.5rem 0;
}
.extra-copy .price-block > strong {
  font-size: clamp(5rem, 9vw, 9rem);
}
.reserve-section {
  border-top: 1px solid var(--line);
}
.steps {
  list-style: none;
  counter-reset: steps;
  margin: 6rem 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.steps li {
  counter-increment: steps;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1rem, 2vw, 1.5rem);
}
.steps li:before {
  content: "0" counter(steps);
  font: 4rem/1 var(--display);
  color: var(--lime);
}
.transfer {
  margin: 5rem 0 0 auto;
  padding: clamp(2rem, 5vw, 5rem);
  max-width: 850px;
  background: var(--panel);
}
.alias {
  font: clamp(3rem, 7vw, 7rem)/1 var(--display);
}
.alias strong {
  color: var(--lime);
  font-weight: 400;
}
.transfer > p:last-child {
  max-width: 650px;
  color: var(--gray);
}
.contact {
  background: var(--lime);
  color: var(--black);
}
.contact .eyebrow {
  color: var(--black);
}
.contact h2 {
  max-width: none;
}
.contact .button {
  margin-top: 2rem;
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.contact .button:hover {
  background: transparent;
  color: var(--black);
}
.contact-data {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--black);
  font-size: 0.68rem;
}
.contact-data p {
  margin: 0;
}
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem var(--pad);
  border-top: 1px solid var(--line);
}
.footer-brand {
  width: 145px;
}
footer p {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}
.modal {
  width: min(560px, calc(100% - 32px));
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--lime);
  background: var(--black);
  color: var(--white);
}
.modal::backdrop {
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}
.modal h2 {
  font-size: clamp(4rem, 10vw, 7rem);
  margin: 0 0 1.5rem;
}
.modal > p:not(.eyebrow) {
  color: var(--gray);
}
.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
}
.modal-note {
  border: 1px solid var(--line);
  padding: 1rem;
  margin-top: 1rem;
}
.modal-note span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: var(--lime);
}
.modal-note p {
  margin: 0.4rem 0 0;
}
.modal-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.button-quiet {
  background: transparent;
  color: var(--gray);
  border-color: var(--line);
}
@media (max-width: 1000px) {
  .pack-card {
    grid-template-columns: 1fr;
  }
  .pack-image {
    height: 320px;
    min-height: 0;
  }
  .contact-data {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 13px;
  }
  .header {
    height: 64px;
  }
  .header nav {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100svh - 64px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: var(--pad);
    background: var(--lime);
    color: var(--black);
    transform: translateX(100%);
    transition: 0.3s;
  }
  .menu-open .header nav {
    transform: none;
  }
  .menu-open {
    overflow: hidden;
  }
  .header nav a {
    font: clamp(3.8rem, 17vw, 6.5rem)/0.9 var(--display);
    letter-spacing: 0;
  }
  .nav-back {
    border-color: var(--black);
  }
  .menu-toggle {
    display: block;
  }
  .hero {
    padding-top: 120px;
    min-height: 760px;
  }
  .hero-ring {
    width: 125vw;
    right: -60vw;
    top: 10vh;
  }
  .hero h1 {
    font-size: clamp(6.4rem, 30vw, 10rem);
  }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .scroll-link {
    display: none;
  }
  .section-pad {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
  }
  .section-head h2,
  .extra-copy h2,
  .contact h2 {
    font-size: clamp(4.6rem, 20vw, 8rem);
  }
  .pack-grid {
    grid-template-columns: 1fr;
    margin-top: 4rem;
  }
  .pack-card {
    min-height: 0;
  }
  .pack-image {
    height: 90vw;
    max-height: 430px;
  }
  .pack-content h3 {
    font-size: 4.8rem;
  }
  .extra-section {
    grid-template-columns: 1fr;
  }
  .extra-media {
    height: 115vw;
    max-height: 620px;
  }
  .steps li {
    grid-template-columns: 70px 1fr;
    gap: 1rem;
  }
  .steps li:before {
    font-size: 3.4rem;
  }
  .contact-data {
    grid-template-columns: 1fr;
  }
  .modal-actions {
    flex-direction: column;
  }
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* CABECERA Y CATÁLOGO V9 — distribución inspirada en la página original. */
.header {
  height: 72px;
  position: fixed;
  inset: 0 0 auto;
  padding: 0 var(--pad);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid var(--line);
}
.hero {
  min-height: auto;
  padding: clamp(130px, 14vw, 190px) var(--pad) clamp(70px, 8vw, 110px);
  display: block;
  text-align: center;
  background: var(--black);
}
.hero-inner {
  width: min(960px, 100%);
  margin: 0 auto;
}
.hero-logo {
  width: clamp(150px, 16vw, 230px);
  margin: 0 auto 2rem;
}
.hero-rule {
  height: 1px;
  margin: 0 0 2.2rem;
  background: linear-gradient(
    90deg,
    transparent,
    var(--line) 18%,
    var(--line) 82%,
    transparent
  );
}
.hero .eyebrow {
  margin-bottom: 1.1rem;
}
.promo-label {
  margin: 0 0 1.25rem;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(5.5rem, 10vw, 10rem);
  white-space: pre-line;
  line-height: 0.82;
}
.hero h1::first-line {
  color: var(--white);
}
.dates {
  margin: 1rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1;
  color: var(--lime);
}
.hero-description {
  max-width: 620px;
  margin: 1.5rem auto 0;
  color: var(--gray);
}
.scroll-link {
  position: static;
  display: inline-flex;
  gap: 0.8rem;
  align-items: center;
  margin-top: 2.2rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--line);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
}
.packs-section {
  padding-top: clamp(5rem, 8vw, 8rem);
  background: #0d0d0d;
}
.compact-head {
  text-align: center;
}
.compact-head .eyebrow {
  margin-bottom: 1rem;
}
.compact-head h2 {
  max-width: none;
  font-size: clamp(3.8rem, 6vw, 6.5rem);
}
.pack-grid {
  width: min(1440px, 100%);
  margin: 4.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.pack-card {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  border: 1px solid #242424;
  background: var(--black);
  transition:
    transform 0.25s,
    border-color 0.25s;
}
.pack-card:hover {
  transform: translateY(-6px);
  border-color: #4a4a4a;
}
.pack-card.featured {
  border-color: var(--lime);
  background: #0d1108;
}
.pack-badge {
  font-size: 0.55rem;
}
.pack-image {
  width: calc(100% - 1.2rem);
  height: 190px;
  min-height: 190px;
  margin: 0.6rem;
  object-fit: cover;
  filter: saturate(0.78);
}
.pack-content {
  flex: 1;
  padding: 1.4rem 1.35rem 1.35rem;
}
.pack-tag {
  margin-bottom: 0.5rem;
}
.pack-content h3 {
  min-height: 1em;
  margin: 0 0 1.3rem;
  font-size: clamp(3.2rem, 4vw, 4.8rem);
}
.price-block {
  margin-bottom: 1.25rem;
}
.price-block > strong {
  font-size: clamp(3.5rem, 4.4vw, 5rem);
}
.features {
  margin-bottom: 1.4rem;
}
.features li {
  font-size: 0.68rem;
}
.extra-section {
  width: min(1440px, calc(100% - (var(--pad) * 2)));
  margin: 0 auto;
  padding: clamp(5rem, 8vw, 8rem) 0;
  grid-template-columns: minmax(320px, 0.85fr) minmax(360px, 1.15fr);
  gap: 0;
  background: var(--black);
  border-top: 1px solid var(--line);
}
.extra-media {
  height: 540px;
}
.extra-copy {
  min-height: 540px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--line);
  border-left: 0;
}
.extra-copy h2 {
  font-size: clamp(5rem, 8vw, 8rem);
}
.extra-copy .button {
  align-self: flex-start;
}

@media (max-width: 1180px) {
  .pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pack-card {
    min-height: 540px;
  }
}

@media (max-width: 760px) {
  .header {
    height: 64px;
  }
  .hero {
    min-height: auto;
    padding: 115px 20px 70px;
  }
  .hero-logo {
    width: 145px;
    margin-bottom: 1.6rem;
  }
  .promo-label {
    font-size: 0.58rem;
    letter-spacing: 0.2em;
    line-height: 1.6;
  }
  .hero h1 {
    font-size: clamp(5.4rem, 27vw, 8.5rem);
  }
  .dates {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }
  .scroll-link {
    display: inline-flex;
  }
  .packs-section {
    padding-top: 5.5rem;
  }
  .compact-head h2 {
    font-size: clamp(4rem, 18vw, 6rem);
  }
  .pack-grid {
    grid-template-columns: 1fr;
    margin-top: 3.2rem;
  }
  .pack-card {
    min-height: 0;
  }
  .pack-image {
    width: calc(100% - 1rem);
    height: 58vw;
    min-height: 220px;
    max-height: 330px;
    margin: 0.5rem;
  }
  .pack-content h3 {
    font-size: 4.6rem;
  }
  .extra-section {
    width: calc(100% - 40px);
    grid-template-columns: 1fr;
  }
  .extra-media {
    height: 105vw;
    max-height: 500px;
  }
  .extra-copy {
    min-height: 0;
    padding: 2.4rem 1.5rem;
    border: 1px solid var(--line);
    border-top: 0;
  }
  .extra-copy h2 {
    font-size: 5.8rem;
  }
  .extra-copy .button {
    width: 100%;
  }
}

/* CATÁLOGO HORIZONTAL V10 — cada pack conserva su fotografía original. */
.pack-grid {
  width: min(1320px, 100%);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.8rem);
}
.pack-card {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}
.pack-card:hover {
  transform: none;
  border-color: #4a4a4a;
}
.pack-card.featured:hover {
  border-color: var(--lime);
}
.pack-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  margin: 0;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.03);
}
.pack-content {
  min-width: 0;
  justify-content: center;
  padding: clamp(2rem, 4.6vw, 5rem);
}
.pack-content h3 {
  min-height: 0;
  margin-bottom: 1.6rem;
  font-size: clamp(4.8rem, 8vw, 8.8rem);
}
.pack-card:nth-child(even) .pack-image {
  order: 2;
}
.pack-card:nth-child(even) .pack-content {
  order: 1;
}
.pack-card:nth-child(even) .pack-badge {
  right: auto;
  left: 0;
}
.pack-content .price-block > strong {
  font-size: clamp(4.3rem, 6vw, 6.8rem);
}
.pack-content .features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.5rem;
}
.pack-content .button {
  width: min(100%, 360px);
}

@media (max-width: 900px) {
  .pack-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    min-height: 470px;
  }
  .pack-image {
    min-height: 470px;
  }
  .pack-content {
    padding: 2.2rem;
  }
  .pack-content .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pack-grid {
    gap: 1.25rem;
  }
  .pack-card {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }
  .pack-card:nth-child(even) .pack-image {
    order: 1;
  }
  .pack-card:nth-child(even) .pack-content {
    order: 2;
  }
  .pack-card:nth-child(even) .pack-badge {
    right: 0;
    left: auto;
  }
  .pack-image {
    order: 1;
    width: 100%;
    height: 72vw;
    min-height: 250px;
    max-height: 410px;
    margin: 0;
  }
  .pack-content {
    order: 2;
    padding: 2rem 1.4rem 1.4rem;
  }
  .pack-content h3 {
    font-size: clamp(4.6rem, 20vw, 6.8rem);
  }
  .pack-content .features {
    grid-template-columns: 1fr;
  }
  .pack-content .button {
    width: 100%;
  }
}

/* LENGUAJE REDONDEADO — acompaña la home sin recuperar la silueta de arco. */
:root {
  --radius-xl: clamp(2.5rem, 5vw, 5rem);
  --radius-lg: clamp(1.8rem, 3.5vw, 3.5rem);
  --radius-md: 1.5rem;
}
.header {
  top: 14px;
  left: var(--pad);
  width: calc(100% - (var(--pad) * 2));
  height: 64px;
  padding: 0 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px 16px 999px 999px;
  background: rgba(10, 10, 10, 0.8);
}
.nav-back {
  border-radius: 999px 0 0 999px;
}
.hero {
  width: calc(100% - (var(--pad) * 2));
  margin: 96px var(--pad) 0;
  padding-top: clamp(70px, 9vw, 120px);
  border: 0;
  border-radius: var(--radius-xl);
  background: var(--black);
}
.scroll-link {
  border: 0;
  border-radius: 0;
  padding-inline: 0;
}
.pack-card {
  border-radius: var(--radius-lg);
  background: #101010;
}
.pack-card.featured {
  background: #0d1108;
}
.pack-card .pack-image {
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.pack-card:nth-child(even) .pack-image {
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.pack-badge {
  top: 1rem;
  right: 1rem;
  border-radius: 999px;
}
.pack-card:nth-child(even) .pack-badge {
  left: 1rem;
}
.pack-content .button,
.extra-copy .button {
  border-radius: 999px;
}
.extra-section {
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-xl);
  background: #101010;
}
.extra-media {
  border-radius: var(--radius-xl) 0 0 var(--radius-xl);
}
.extra-media img {
  border-radius: inherit;
}
.extra-copy {
  border: 0;
}
.extra-section .open-frame:before,
.extra-section .open-frame:after {
  display: none;
}

@media (max-width: 760px) {
  .header {
    top: 10px;
    left: 12px;
    width: calc(100% - 24px);
    border-radius: 999px 16px 16px 999px;
  }
  .header nav {
    top: 0;
    height: 100svh;
    border-radius: 0;
  }
  .hero {
    width: calc(100% - 24px);
    margin: 84px 12px 0;
    border-radius: 2.5rem;
    padding-top: 64px;
  }
  .pack-card {
    border-radius: 2rem;
  }
  .pack-card .pack-image,
  .pack-card:nth-child(even) .pack-image {
    border-radius: 2rem 2rem 0 0;
  }
  .pack-card:nth-child(even) .pack-badge {
    right: 1rem;
    left: auto;
  }
  .extra-section {
    border-radius: 2.5rem;
  }
  .extra-media {
    border-radius: 2.5rem 2.5rem 0 0;
  }
  .extra-copy {
    border: 0;
    border-top: 1px solid var(--line);
  }
}

/* AJUSTES V11 — cabecera limpia, jerarquía más clara y sin líneas de contenedor. */
.hero {
  min-height: calc(100svh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 84px;
  padding-block: clamp(80px, 10vw, 140px);
}
.hero-inner {
  width: min(1180px, 100%);
}
.hero .eyebrow {
  margin-bottom: 1.4rem;
}
.hero h1 {
  max-width: none;
  font-size: clamp(5.4rem, 13vw, 13rem);
  white-space: nowrap;
}
.promo-label {
  font-size: clamp(0.72rem, 1vw, 0.9rem);
}
.hero-description {
  font-size: clamp(0.8rem, 1.15vw, 1rem);
}
.compact-head h2 {
  color: var(--lime);
  font-size: clamp(5.4rem, 10vw, 10rem);
}
.price-block small {
  margin-top: 0.45rem;
  color: #c7c7c7;
  font-size: clamp(0.78rem, 1.1vw, 0.95rem);
  line-height: 1.5;
}
.price-block small b {
  font-size: 1.12em;
}
.features li {
  color: #d2d2d2;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  line-height: 1.55;
}
.extra-copy > p:not(.eyebrow) {
  font-size: clamp(0.82rem, 1.1vw, 1rem);
}
.extra-copy .price-block small {
  font-size: clamp(0.82rem, 1.1vw, 0.98rem);
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    margin-top: 74px;
    padding: 72px 18px 76px;
  }
  .hero h1 {
    font-size: clamp(3.2rem, 12vw, 4.8rem);
    white-space: nowrap;
  }
  .compact-head h2 {
    font-size: clamp(4.5rem, 21vw, 7rem);
  }
  .extra-copy {
    border: 0;
  }
}

/* AJUSTES V12 — catálogo compacto 2 × 2 y textos secundarios legibles. */
.hero .eyebrow {
  font-size: clamp(0.78rem, 1.05vw, 1rem);
  line-height: 1.5;
}
.promo-label {
  font-size: clamp(0.86rem, 1.15vw, 1.08rem);
  line-height: 1.55;
}
.pack-grid {
  width: min(1380px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
}
.pack-card {
  grid-template-columns: minmax(210px, 0.95fr) minmax(0, 1.05fr);
  min-height: 390px;
}
.pack-image {
  min-height: 390px;
}
.pack-content {
  padding: clamp(1.5rem, 2.3vw, 2.4rem);
}
.pack-content h3 {
  margin-bottom: 1rem;
  font-size: clamp(3.8rem, 5vw, 5.8rem);
}
.pack-content .price-block {
  margin-bottom: 1rem;
}
.pack-content .price-block > strong {
  font-size: clamp(3.5rem, 4.7vw, 5.2rem);
}
.price-block small {
  margin-top: 0.55rem;
  font-size: clamp(0.88rem, 1.05vw, 1rem);
}
.features {
  margin-bottom: 1.25rem;
}
.pack-content .features {
  grid-template-columns: 1fr;
  column-gap: 0;
}
.features li {
  padding: 0.72rem 0;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
}
.pack-content .button {
  width: 100%;
}
.nav-back {
  border: 0;
}

@media (max-width: 1120px) {
  .pack-card {
    grid-template-columns: 1fr;
  }
  .pack-card .pack-image,
  .pack-card:nth-child(even) .pack-image {
    order: 1;
    width: 100%;
    height: 300px;
    min-height: 300px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .pack-card .pack-content,
  .pack-card:nth-child(even) .pack-content {
    order: 2;
  }
  .pack-card:nth-child(even) .pack-badge {
    right: 1rem;
    left: auto;
  }
}

@media (max-width: 760px) {
  .hero .eyebrow {
    font-size: 0.76rem;
  }
  .promo-label {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
  }
  .pack-grid {
    grid-template-columns: 1fr;
  }
  .pack-card .pack-image,
  .pack-card:nth-child(even) .pack-image {
    height: 72vw;
    min-height: 250px;
    max-height: 410px;
  }
  .price-block small {
    font-size: 0.9rem;
  }
  .features li {
    font-size: 0.9rem;
  }
}

/* AJUSTES V14 — tarjetas verticales, fotos horizontales y Domo sin marco gris. */
.pack-grid {
  align-items: start;
}
.pack-card,
.pack-card:nth-child(even) {
  display: flex;
  min-height: 0;
  flex-direction: column;
}
.pack-card .pack-image,
.pack-card:nth-child(even) .pack-image {
  order: 1;
  width: calc(100% - 1.6rem);
  height: auto;
  min-height: 0;
  aspect-ratio: 7 / 5;
  margin: 0.8rem 0.8rem 0;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 0.7rem);
}
.pack-card .pack-content,
.pack-card:nth-child(even) .pack-content {
  order: 2;
  min-height: 430px;
  padding: clamp(1.6rem, 2.5vw, 2.6rem);
}
.pack-card:nth-child(even) .pack-badge {
  right: 1.6rem;
  left: auto;
}
.pack-content h3 {
  font-size: clamp(4.2rem, 5.2vw, 6rem);
}
.pack-content .price-block > strong {
  font-size: clamp(3.8rem, 4.8vw, 5.4rem);
}

.extra-section {
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  overflow: visible;
  background: transparent;
  border-radius: 0;
}
.extra-media {
  height: auto;
  aspect-ratio: 7 / 5;
  border-radius: var(--radius-lg);
}
.extra-copy {
  min-height: 0;
  padding: clamp(1rem, 2vw, 2rem) 0;
  background: transparent;
  border: 0;
}
.extra-copy h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(4.2rem, 5.2vw, 6rem);
}
.extra-copy > p:not(.eyebrow),
.extra-copy .price-block small {
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.55;
}
.extra-copy .price-block > strong {
  font-size: clamp(3.8rem, 4.8vw, 5.4rem);
}

@media (max-width: 1120px) {
  .pack-card .pack-image,
  .pack-card:nth-child(even) .pack-image {
    width: calc(100% - 1.2rem);
    height: auto;
    min-height: 0;
    margin: 0.6rem 0.6rem 0;
    aspect-ratio: 7 / 5;
    border-radius: calc(var(--radius-lg) - 0.45rem);
  }
  .pack-card .pack-content,
  .pack-card:nth-child(even) .pack-content {
    min-height: 410px;
  }
}

@media (max-width: 760px) {
  .pack-card .pack-image,
  .pack-card:nth-child(even) .pack-image {
    width: calc(100% - 1rem);
    height: auto;
    min-height: 0;
    max-height: none;
    margin: 0.5rem 0.5rem 0;
    aspect-ratio: 7 / 5;
    border-radius: 1.5rem;
  }
  .pack-card .pack-content,
  .pack-card:nth-child(even) .pack-content {
    min-height: 0;
    padding: 1.8rem 1.4rem 1.4rem;
  }
  .extra-section {
    gap: 1.8rem;
  }
  .extra-media {
    height: auto;
    max-height: none;
    aspect-ratio: 7 / 5;
    border-radius: 2rem;
  }
  .extra-copy {
    padding: 0;
  }
  .extra-copy h2 {
    font-size: clamp(4.6rem, 20vw, 6.8rem);
  }
}

/* AJUSTES V15 — cuatro tarjetas compactas en una sola fila para escritorio. */
@media (min-width: 1280px) {
  .packs-section {
    padding-top: clamp(4.5rem, 6vw, 6.5rem);
    padding-right: clamp(24px, 3vw, 58px);
    padding-bottom: clamp(5rem, 7vw, 7rem);
    padding-left: clamp(24px, 3vw, 58px);
  }
  .pack-grid {
    width: min(1680px, 100%);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.15vw, 1.35rem);
    margin-top: 3.25rem;
  }
  .pack-card,
  .pack-card:nth-child(even) {
    min-width: 0;
    border-radius: clamp(1.8rem, 2.2vw, 2.6rem);
  }
  .pack-card .pack-image,
  .pack-card:nth-child(even) .pack-image {
    width: calc(100% - 1.2rem);
    margin: 0.6rem 0.6rem 0;
    aspect-ratio: 7 / 5;
    border-radius: clamp(1.35rem, 1.7vw, 2rem);
  }
  .pack-card .pack-content,
  .pack-card:nth-child(even) .pack-content {
    min-height: 390px;
    padding: 1.45rem 1.25rem 1.25rem;
  }
  .pack-content h3 {
    margin-bottom: 0.85rem;
    font-size: clamp(3.15rem, 3.35vw, 4.25rem);
  }
  .pack-content .price-block {
    margin-bottom: 0.85rem;
  }
  .pack-content .price-block > strong {
    font-size: clamp(3.25rem, 3.45vw, 4.35rem);
  }
  .price-block small,
  .features li {
    font-size: clamp(0.72rem, 0.72vw, 0.86rem);
  }
  .features {
    margin-bottom: 1rem;
  }
  .features li {
    padding: 0.58rem 0;
  }
  .pack-content .button {
    min-height: 46px;
    padding: 0.72rem 1rem;
    font-size: 0.61rem;
  }
}

/* La sección de reserva conserva su contenido, pero ocupa menos alto. */
.reserve-section {
  padding-top: clamp(4.5rem, 6vw, 6.5rem);
  padding-bottom: clamp(5rem, 7vw, 7rem);
}
.reserve-section .section-head h2 {
  font-size: clamp(4.6rem, 7vw, 7rem);
}
.steps {
  margin: clamp(2.4rem, 4vw, 4rem) 0;
}
.steps li {
  grid-template-columns: 90px 1fr;
  padding: 1.25rem 0;
  font-size: clamp(0.95rem, 1.35vw, 1.25rem);
}
.steps li:before {
  font-size: 3rem;
}
.transfer {
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding: clamp(1.8rem, 3.5vw, 3.5rem);
}

@media (max-width: 1279px) and (min-width: 761px) {
  .pack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .reserve-section .section-head h2 {
    font-size: clamp(4.2rem, 18vw, 6rem);
  }
  .steps {
    margin: 2.4rem 0;
  }
  .steps li {
    grid-template-columns: 62px 1fr;
    padding: 1.05rem 0;
  }
  .steps li:before {
    font-size: 2.7rem;
  }
}

/* V16 — selector claro/oscuro y textura suave. */
.brand {
  order: 1;
}
.header nav {
  order: 2;
  margin-left: auto;
}
.theme-toggle {
  order: 3;
}
.menu-toggle {
  order: 4;
}
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 38px;
  margin-left: clamp(0.7rem, 1.5vw, 1.4rem);
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: 700 0.58rem/1 var(--mono);
  letter-spacing: 0.12em;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: var(--lime);
  outline: 0;
}
.theme-icon {
  display: grid;
  place-items: center;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--lime);
  color: #0a0a0a;
  font-size: 0.9rem;
  line-height: 1;
}
html,
body,
.header,
.hero,
.packs-section,
.pack-card,
.extra-section,
.reserve-section,
.transfer,
footer,
.modal {
  transition:
    background-color 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease;
}

html[data-theme="light"] {
  --black: #f2f2ee;
  --panel: #e5e6e0;
  --white: #11120f;
  --gray: #5d5f59;
  --line: #c7c9c1;
  --paper-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 190 190' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='paper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.48' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23paper)' opacity='.34'/%3E%3C/svg%3E");
  background: #f2f2ee;
  color-scheme: light;
}
html[data-theme="light"] body {
  background-color: #f2f2ee;
  background-image:
    var(--paper-grain),
    radial-gradient(
      circle at 16% 10%,
      rgba(255, 255, 255, 0.86),
      transparent 31%
    ),
    radial-gradient(
      circle at 85% 48%,
      rgba(200, 204, 194, 0.54),
      transparent 38%
    );
  background-size:
    190px 190px,
    auto,
    auto;
  background-attachment: fixed;
}
html[data-theme="light"] .grain {
  opacity: 0.095;
  mix-blend-mode: multiply;
  background-color: transparent;
}
html[data-theme="light"] .header {
  border-color: rgba(20, 20, 18, 0.16);
  background: rgba(242, 242, 238, 0.86);
  box-shadow: 0 10px 35px rgba(25, 25, 20, 0.06);
}
html[data-theme="light"] .brand img,
html[data-theme="light"] .footer-brand img {
  filter: invert(1);
}
html[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.46);
  color: #11120f;
}
html[data-theme="light"] .hero {
  background-color: rgba(246, 246, 242, 0.52);
  background-image:
    var(--paper-grain),
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.28),
      rgba(216, 218, 210, 0.16)
    );
  background-size:
    210px 210px,
    auto;
}
html[data-theme="light"] .hero h1::first-line {
  color: #11120f;
}
html[data-theme="light"] .packs-section {
  background-color: rgba(232, 233, 227, 0.76);
  background-image:
    var(--paper-grain),
    linear-gradient(
      132deg,
      rgba(255, 255, 255, 0.24),
      rgba(202, 205, 196, 0.18)
    );
  background-size:
    190px 190px,
    auto;
}
html[data-theme="light"] .pack-card {
  border-color: #c9cbc3;
  background-color: rgba(255, 255, 252, 0.72);
  background-image: var(--paper-grain);
  background-size: 240px 240px;
  box-shadow: 0 18px 50px rgba(34, 35, 30, 0.055);
}
html[data-theme="light"] .pack-card.featured {
  border-color: #a9c527;
  background-color: #f1f5df;
}
html[data-theme="light"] .pack-card:hover {
  border-color: #9da099;
}
html[data-theme="light"] .pack-card.featured:hover {
  border-color: #8faa18;
}
html[data-theme="light"] .price-block small,
html[data-theme="light"] .features li {
  color: #4f514c;
}
html[data-theme="light"] .price-block small b {
  color: #11120f;
}
html[data-theme="light"] .extra-section {
  background: transparent;
}
html[data-theme="light"] .transfer {
  background-color: rgba(226, 228, 220, 0.8);
  background-image: var(--paper-grain);
  background-size: 220px 220px;
}
html[data-theme="light"] .extra-copy > p:not(.eyebrow),
html[data-theme="light"] .transfer > p:last-child {
  color: #565852;
}
html[data-theme="light"] .button {
  color: #0a0a0a;
}
html[data-theme="light"] .button:hover,
html[data-theme="light"] .button:focus-visible {
  color: #596700;
}
html[data-theme="light"] .modal {
  border-color: #a7c51a;
  background: #f2f2ee;
  color: #11120f;
}
html[data-theme="light"] .modal > p:not(.eyebrow) {
  color: #5d5f59;
}
html[data-theme="light"] .modal-close {
  border-color: #c7c9c1;
  background: #f2f2ee;
  color: #11120f;
}
html[data-theme="light"] .button-quiet {
  border-color: #bfc1ba;
  background: transparent;
  color: #545650;
}
/* En modo claro, el lima se conserva como superficie y detalle gráfico.
   Los textos de acento usan negro para evitar bajo contraste sobre gris. */
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .dates,
html[data-theme="light"] .scroll-link span,
html[data-theme="light"] .compact-head h2,
html[data-theme="light"] .nav-back,
html[data-theme="light"] .pack-tag,
html[data-theme="light"] .price-block > span,
html[data-theme="light"] .features li:before,
html[data-theme="light"] .steps li:before,
html[data-theme="light"] .alias strong,
html[data-theme="light"] .modal-note span {
  color: #11120f;
}
html[data-theme="light"] .button:hover,
html[data-theme="light"] .button:focus-visible {
  border-color: #11120f;
  background: #11120f;
  color: #f5f5f1;
}
html[data-theme="light"] .button-quiet:hover,
html[data-theme="light"] .button-quiet:focus-visible {
  border-color: #11120f;
  background: transparent;
  color: #11120f;
}
html[data-theme="light"] .contact .button {
  border-color: #11120f;
  background: #11120f;
  color: #f5f5f1;
}
html[data-theme="light"] .contact .button:hover,
html[data-theme="light"] .contact .button:focus-visible {
  background: transparent;
  color: #11120f;
}

/* V18 — negro fijo para todos los textos asentados sobre el fondo lima. */
html[data-theme="light"] .contact,
html[data-theme="light"] .contact .eyebrow,
html[data-theme="light"] .contact h2,
html[data-theme="light"] .contact p {
  color: #0a0a0a;
}
html[data-theme="light"] .contact-data {
  border-color: #0a0a0a;
}
html[data-theme="light"] .skip-link,
html[data-theme="light"] .pack-badge {
  color: #0a0a0a;
}

/* V19 — más materia en el gris claro sin ensuciar fotos ni superficies lima. */
html[data-theme="light"] .extra-section,
html[data-theme="light"] .reserve-section,
html[data-theme="light"] footer {
  background-image: var(--paper-grain);
  background-size: 210px 210px;
}

@media (max-width: 760px) {
  .theme-toggle {
    margin-left: auto;
    margin-right: 0.35rem;
    padding: 0.5rem 0.65rem;
  }
  .theme-label {
    display: none;
  }
  html[data-theme="light"] .header nav {
    background: var(--lime);
    color: #0a0a0a;
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  body,
  .header,
  .hero,
  .packs-section,
  .pack-card,
  .extra-section,
  .reserve-section,
  .transfer,
  footer,
  .modal {
    transition: none;
  }
}

/* V20 — tarjetas parejas, Domo horizontal y más profundidad en ambos temas. */
:root {
  --dark-grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='darkPaper'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.56' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23darkPaper)' opacity='.42'/%3E%3C/svg%3E");
}

html:not([data-theme="light"]) body {
  background-color: #090a08;
  background-image:
    var(--dark-grain),
    radial-gradient(
      circle at 12% 22%,
      rgba(214, 245, 72, 0.055),
      transparent 31%
    ),
    radial-gradient(
      circle at 86% 56%,
      rgba(255, 255, 255, 0.045),
      transparent 34%
    ),
    linear-gradient(135deg, #080908 0%, #10110e 48%, #070807 100%);
  background-size:
    180px 180px,
    auto,
    auto,
    auto;
  background-attachment: fixed;
}
html:not([data-theme="light"]) .grain {
  opacity: 0.085;
  mix-blend-mode: soft-light;
}
html:not([data-theme="light"]) .hero {
  background-color: rgba(9, 10, 8, 0.84);
  background-image:
    var(--dark-grain),
    linear-gradient(135deg, rgba(255, 255, 255, 0.028), transparent 58%);
  background-size:
    210px 210px,
    auto;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
html:not([data-theme="light"]) .packs-section {
  background-color: rgba(13, 14, 12, 0.9);
  background-image:
    var(--dark-grain),
    radial-gradient(
      circle at 72% 18%,
      rgba(214, 245, 72, 0.04),
      transparent 27%
    );
  background-size:
    200px 200px,
    auto;
}

.pack-grid {
  align-items: stretch;
}
.pack-card,
.pack-card:nth-child(even) {
  height: 100%;
}
.pack-card .pack-content,
.pack-card:nth-child(even) .pack-content {
  height: 100%;
}
.pack-card .features {
  flex: 1;
}

html:not([data-theme="light"]) .pack-card {
  border-color: rgba(255, 255, 255, 0.13);
  background-color: #10110f;
  background-image:
    var(--dark-grain),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.008) 48%,
      rgba(0, 0, 0, 0.18)
    );
  background-size:
    230px 230px,
    auto;
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}
html:not([data-theme="light"]) .pack-card.featured {
  border-color: rgba(214, 245, 72, 0.82);
  background-color: #11150c;
  background-image:
    var(--dark-grain),
    linear-gradient(
      145deg,
      rgba(214, 245, 72, 0.075),
      rgba(255, 255, 255, 0.012) 52%,
      rgba(0, 0, 0, 0.2)
    );
  box-shadow:
    0 28px 62px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(214, 245, 72, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
}
.pack-card .pack-image {
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  filter: saturate(0.92) contrast(1.055);
}

/* La información secundaria pasa a ser parte central de la lectura. */
.price-block small {
  margin-top: 0.65rem;
  color: #e3e3df;
  font-size: clamp(0.88rem, 0.92vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.035em;
}
.price-block small b {
  font-size: 1.08em;
}
.features {
  border-top-color: rgba(255, 255, 255, 0.22);
}
.features li {
  padding: 0.76rem 0;
  border-bottom-color: rgba(255, 255, 255, 0.22);
  color: #edede8;
  font-size: clamp(0.86rem, 0.9vw, 0.98rem);
  font-weight: 700;
  line-height: 1.5;
}
.features li:before {
  font-size: 0.7em;
}

/* Domo usa la misma tarjeta de packs, en una composición horizontal. */
.extra-section {
  width: min(1440px, calc(100% - (var(--pad) * 2)));
  margin: clamp(1rem, 2vw, 2rem) auto clamp(5rem, 8vw, 9rem);
  padding: 0.7rem;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background-color: #10110f;
  background-image:
    var(--dark-grain),
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.16));
  background-size:
    230px 230px,
    auto;
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.extra-media {
  width: 100%;
  height: auto;
  min-height: 390px;
  aspect-ratio: 7 / 5;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 0.7rem);
  background: #080908;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}
.extra-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.06);
}
.extra-copy {
  min-height: 0;
  padding: clamp(2rem, 4vw, 4rem);
  justify-content: center;
}
.extra-copy h2 {
  font-size: clamp(4.2rem, 6vw, 6.6rem);
}
.extra-copy > p:not(.eyebrow) {
  font-size: clamp(0.86rem, 0.9vw, 0.98rem);
  font-weight: 700;
  color: #edede8;
}
.extra-copy .price-block {
  margin: 1.5rem 0;
}
.extra-copy .price-block > strong {
  font-size: clamp(3.8rem, 5vw, 5.5rem);
}
.extra-copy .price-block small {
  font-size: clamp(0.88rem, 0.92vw, 1rem);
}

html[data-theme="light"] .pack-card {
  box-shadow:
    0 22px 52px rgba(34, 35, 30, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
html[data-theme="light"] .pack-card.featured {
  box-shadow:
    0 24px 56px rgba(79, 91, 20, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
html[data-theme="light"] .price-block small,
html[data-theme="light"] .features li {
  color: #252622;
}
html[data-theme="light"] .features {
  border-top-color: rgba(17, 18, 15, 0.22);
}
html[data-theme="light"] .features li {
  border-bottom-color: rgba(17, 18, 15, 0.22);
}
html[data-theme="light"] .extra-section {
  border-color: #c9cbc3;
  background-color: rgba(255, 255, 252, 0.74);
  background-image:
    var(--paper-grain),
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(205, 208, 198, 0.18));
  background-size:
    230px 230px,
    auto;
  box-shadow:
    0 24px 58px rgba(34, 35, 30, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}
html[data-theme="light"] .extra-copy > p:not(.eyebrow) {
  color: #252622;
}

@media (min-width: 1280px) {
  .pack-card .pack-content,
  .pack-card:nth-child(even) .pack-content {
    min-height: 410px;
  }
  .price-block small,
  .features li {
    font-size: clamp(0.78rem, 0.76vw, 0.9rem);
  }
}

@media (max-width: 1000px) {
  .extra-section {
    grid-template-columns: 1fr;
    padding: 0.6rem;
  }
  .extra-media {
    min-height: 0;
    aspect-ratio: 7 / 5;
    border-radius: calc(var(--radius-lg) - 0.5rem);
  }
  .extra-copy {
    padding: 2.2rem 1.5rem 1.6rem;
  }
}

@media (max-width: 760px) {
  .extra-section {
    width: calc(100% - 40px);
    margin-bottom: 5rem;
    border-radius: 2rem;
    padding: 0.5rem;
  }
  .extra-media {
    border-radius: 1.5rem;
  }
  .extra-copy {
    padding: 2rem 1.1rem 1.1rem;
  }
  .price-block small,
  .features li,
  .extra-copy > p:not(.eyebrow) {
    font-size: 0.9rem;
  }
}

/* V26 — negro profundo, textura contenida, gris sin sombras y Domo 4:3. */
html:not([data-theme="light"]) body {
  background-color: #050605;
  background-image:
    var(--dark-grain),
    radial-gradient(
      circle at 14% 20%,
      rgba(214, 245, 72, 0.026),
      transparent 30%
    ),
    radial-gradient(
      circle at 86% 58%,
      rgba(255, 255, 255, 0.022),
      transparent 34%
    ),
    linear-gradient(135deg, #050605 0%, #090a08 50%, #040504 100%);
}
html:not([data-theme="light"]) .grain {
  opacity: 0.05;
}
html:not([data-theme="light"]) .packs-section {
  background-color: #070807;
  background-image:
    var(--dark-grain),
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 52%);
  background-size:
    260px 260px,
    auto;
}

.extra-section {
  width: min(1280px, calc(100% - (var(--pad) * 2)));
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.92fr);
  padding: 0.65rem;
}
.extra-media {
  min-height: 0;
  aspect-ratio: 4 / 3;
}
.extra-media .extra-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.extra-copy {
  padding: clamp(1.7rem, 3vw, 3rem);
}
.extra-copy h2 {
  font-size: clamp(4rem, 5.2vw, 5.8rem);
}
.extra-copy .price-block > strong {
  font-size: clamp(3.6rem, 4.4vw, 5rem);
}

html[data-theme="light"] .header,
html[data-theme="light"] .pack-card,
html[data-theme="light"] .pack-card.featured,
html[data-theme="light"] .pack-image,
html[data-theme="light"] .extra-section,
html[data-theme="light"] .extra-media,
html[data-theme="light"] .transfer {
  box-shadow: none;
}

@media (max-width: 1000px) {
  .extra-section {
    grid-template-columns: 1fr;
    width: min(720px, calc(100% - (var(--pad) * 2)));
  }
  .extra-media {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 760px) {
  .extra-section {
    width: calc(100% - 40px);
  }
}

/* V27 — gris más oscuro y todas las tarjetas sin sombras. */
html:not([data-theme="light"]) body {
  background-color: #000;
  background-image:
    var(--dark-grain), linear-gradient(135deg, #000, #111210 54%, #030303);
}
html:not([data-theme="light"]) .hero,
html:not([data-theme="light"]) .packs-section,
html:not([data-theme="light"]) .reserve-section,
html:not([data-theme="light"]) footer {
  background-color: #171817;
  background-image:
    var(--dark-grain),
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), transparent 58%);
}
html[data-theme="light"] {
  --black: #dedfd9;
  --panel: #d1d3cc;
}
html[data-theme="light"] body {
  background-color: #dedfd9;
}
html[data-theme="light"] .hero,
html[data-theme="light"] .packs-section {
  background-color: transparent;
  background-image: none;
}
.hero {
  border-bottom-color: transparent;
}

.pack-card,
.pack-card.featured,
.pack-card .pack-image,
.extra-section,
.extra-media,
.transfer,
.modal {
  box-shadow: none !important;
}
.pack-card,
.extra-section,
.transfer {
  transition:
    scale 0.22s ease,
    border-color 0.22s ease,
    background-color 0.35s ease,
    color 0.35s ease;
  transform-origin: center;
}

@media (hover: hover) and (pointer: fine) {
  .pack-card:hover,
  .pack-card.featured:hover,
  .extra-section:hover,
  .transfer:hover {
    scale: 1.015;
    border-color: var(--lime);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pack-card,
  .extra-section,
  .transfer {
    transition: none;
  }
  .pack-card:hover,
  .extra-section:hover,
  .transfer:hover {
    scale: 1;
  }
}

/* V28 — #0F0F0F continuo, textura única y catálogo sin sombras. */
:root {
  --fuoco-dark: #0f0f0f;
  --fuoco-card: #151515;
  --fuoco-dark-texture: url("data:image/svg+xml,%3Csvg viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='fuocoNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23fuocoNoise)' opacity='.2'/%3E%3C/svg%3E");
}

html:not([data-theme="light"]),
html:not([data-theme="light"]) body {
  background-color: var(--fuoco-dark);
  background-image: var(--fuoco-dark-texture);
  background-size: 240px 240px;
  background-attachment: fixed;
}

/* Una sola textura de fondo evita líneas y cambios de tono entre secciones. */
html:not([data-theme="light"]) .hero,
html:not([data-theme="light"]) .packs-section,
html:not([data-theme="light"]) .reserve-section,
html:not([data-theme="light"]) footer {
  background-color: transparent;
  background-image: none;
  border-color: transparent;
}

/* Venta de packs completamente plana. */
.pack-card,
.pack-card.featured,
.pack-card .pack-image,
.extra-section,
.extra-media,
.transfer,
.modal {
  box-shadow: none !important;
}

html:not([data-theme="light"]) .pack-card,
html:not([data-theme="light"]) .pack-card.featured,
html:not([data-theme="light"]) .extra-section,
html:not([data-theme="light"]) .transfer {
  background-color: var(--fuoco-card);
  background-image: none !important;
  border-color: #2d2d2d;
}

@media (hover: hover) and (pointer: fine) {
  html:not([data-theme="light"]) .pack-card:hover,
  html:not([data-theme="light"]) .pack-card.featured:hover,
  html:not([data-theme="light"]) .extra-section:hover,
  html:not([data-theme="light"]) .transfer:hover {
    border-color: var(--lime) !important;
    box-shadow: none !important;
    scale: 1.012;
  }
}



@media (max-width: 760px) {
  .header {
    border-top-right-radius: 24px 16px;
    border-bottom-right-radius: 24px 16px;
  }
}



/* En oscuro el encabezado principal deja de verse como un contenedor elevado. */
html:not([data-theme="light"]) .hero {
  box-shadow: none !important;
  border-color: transparent;
}

@media (max-width: 760px) {
  .header {
    border-top-right-radius: 28px;
    border-bottom-right-radius: 28px;
  }
}

/* V35 — acentos grises, solo en Recepciones y modo claro. */
html[data-theme="light"] .dates,
html[data-theme="light"] .eyebrow,
html[data-theme="light"] .promo-label,
html[data-theme="light"] .pack-tag,
html[data-theme="light"] .price-block > span,
html[data-theme="light"] .features li::before,
html[data-theme="light"] .steps li::before,
html[data-theme="light"] .alias strong,
html[data-theme="light"] .modal-note span {
  color: #888689;
}

/* V36 — catálogo más compacto y con más margen, sin modificar mobile. */
@media (min-width: 761px) {
:root {
  --pad: clamp(24px, 5.5vw, 88px);
}

body {
  font-size: 13px;
}

.header {
  height: 60px;
}

.brand {
  width: clamp(104px, 8vw, 138px);
}

.hero {
  min-height: auto;
  margin-top: 78px;
  padding: 52px var(--pad) 28px;
}

.packs-section {
  padding-top: 50px;
}

.hero-inner {
  width: min(1040px, 100%);
}

.hero .eyebrow {
  margin-bottom: 1rem;
  font-size: clamp(0.7rem, 0.9vw, 0.86rem);
}

.promo-label {
  margin-bottom: 1rem;
  font-size: clamp(0.74rem, 0.95vw, 0.9rem);
}

.hero h1 {
  font-size: clamp(4.7rem, 10.5vw, 10.5rem);
}

.dates {
  font-size: clamp(2.35rem, 4.3vw, 4.25rem);
}

.hero-description {
  max-width: 580px;
  margin-top: 1.15rem;
  font-size: clamp(0.76rem, 0.95vw, 0.9rem);
}

.scroll-link {
  margin-top: 1.6rem;
}

.section-pad {
  padding-top: clamp(4.5rem, 7vw, 7.5rem);
  padding-bottom: clamp(4.5rem, 7vw, 7.5rem);
}

.compact-head h2,
.section-head h2,
.contact h2 {
  font-size: clamp(4.2rem, 7.8vw, 7.8rem);
}

.pack-grid {
  width: min(1520px, 100%);
  margin: 2.8rem auto 0;
  gap: clamp(1.35rem, 1.9vw, 2rem);
}

.pack-card .pack-content,
.pack-card:nth-child(even) .pack-content {
  min-height: 350px;
  padding: clamp(1.25rem, 2vw, 2rem);
}

.pack-content h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(3.45rem, 4.5vw, 5.1rem);
}

.pack-content .price-block {
  margin-bottom: 0.7rem;
}

.pack-content .price-block > strong {
  font-size: clamp(3.3rem, 4.1vw, 4.65rem);
}

.price-block small,
.features li {
  font-size: clamp(0.75rem, 0.76vw, 0.86rem);
}

.features {
  margin-bottom: 0.85rem;
}

.features li {
  padding: 0.55rem 0;
}

.button {
  min-height: 45px;
  padding: 0.72rem 1.25rem;
}

.extra-section {
  width: min(1180px, calc(100% - (var(--pad) * 2)));
  margin-bottom: clamp(4rem, 6vw, 6.5rem);
}

.extra-copy {
  padding: clamp(1.4rem, 2.5vw, 2.5rem);
}

.extra-copy h2 {
  font-size: clamp(3.6rem, 4.6vw, 5.1rem);
}

.extra-copy .price-block > strong {
  font-size: clamp(3.2rem, 4vw, 4.5rem);
}

.reserve-section {
  padding-top: clamp(4rem, 5.5vw, 5.75rem);
  padding-bottom: clamp(4.25rem, 6vw, 6.25rem);
}

.reserve-section .section-head h2 {
  font-size: clamp(4rem, 6vw, 6rem);
}

.steps {
  margin: clamp(2rem, 3vw, 3rem) 0;
}

.steps li {
  padding: 1rem 0;
}

.transfer {
  margin-top: clamp(2rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3vw, 2.8rem);
}

.contact-data {
  margin-top: 3.5rem;
}

@media (min-width: 1280px) {
  .pack-grid {
    width: min(1520px, 100%);
  }

  .pack-card .pack-content,
  .pack-card:nth-child(even) .pack-content {
    min-height: 350px;
    padding: 1.2rem 1.1rem 1.1rem;
  }

  .pack-content h3 {
    font-size: clamp(2.9rem, 2.9vw, 3.75rem);
  }

  .pack-content .price-block > strong {
    font-size: clamp(3rem, 3vw, 3.85rem);
  }
}
}

/* V39 — jerarquía del título de campaña en mobile. */
@media (min-width: 761px) {
  .hero h1 {
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(4.8rem, 22vw, 7rem);
    line-height: 0.82;
    white-space: pre-line;
  }

  .dates {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }
}
