:root {
  --cream: #f5f1e6;
  --blue: #153f72;
  --blue-dark: #0d2b52;
  --cream-soft: #fffaf0;
  --white: #ffffff;
  --line: rgba(245, 241, 230, .35);
  --blue-line: rgba(21, 63, 114, .2);
  --gold: #e8c97a;
  --gold-dark: #c9a84c;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--blue);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1180px, 94%);
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--blue-line);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.03em;
  white-space: nowrap;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: var(--blue);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .78;
  padding: 8px 0;
  position: relative;
  white-space: nowrap;
  transition: color .2s ease, opacity .2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 1px;
  background: var(--blue-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav-links a:hover {
  color: var(--blue-dark);
  opacity: 1;
  font-weight: 800;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--blue);
  color: var(--cream) !important;
  min-width: 190px;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .1em;
  opacity: 1 !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--blue-dark);
}

.menu-btn {
  display: none;
  background: transparent;
  border: 0;
  color: var(--blue);
  font-size: 1.8rem;
  cursor: pointer;
}

/* GLOBAL */

section {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}

.eyebrow {
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 900;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: .98;
  letter-spacing: -.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.5rem);
  max-width: 820px;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  max-width: 800px;
}

h3 {
  font-size: 2rem;
}

p {
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 900;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--blue);
  color: var(--cream);
  border-color: var(--blue);
}

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.inline-link {
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 6px;
}

/* HERO */

.hero {
  background: var(--blue);
  color: var(--cream);
}

.hero::after {
  content: "✦  ✧  ✦";
  position: absolute;
  left: 6%;
  bottom: 12%;
  color: var(--cream);
  font-size: 2.4rem;
  letter-spacing: .45em;
  opacity: .16;
  z-index: 0;
}

.hero::before {
  content: "✦";
  position: absolute;
  right: 2.5%;
  top: 15%;
  font-size: 5.4rem;
  color: var(--cream);
  opacity: .14;
  z-index: 0;
  text-shadow: -260px 420px 0 var(--cream);
}

.hero-copy {
  position: relative;
}

.hero-copy::after {
  content: "✧";
  position: absolute;
  left: 48%;
  top: 20%;
  color: var(--cream);
  font-size: 2.2rem;
  opacity: .13;
  text-shadow:
    180px 140px 0 var(--cream),
    -420px 260px 0 var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 78px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.lead {
  max-width: 620px;
  margin: 26px 0 34px;
  color: rgba(245, 241, 230, .84);
  font-size: 1.15rem;
}

.actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero .btn {
  min-height: 50px;
  padding: 0 26px;
  font-size: .92rem;
  letter-spacing: .04em;
}

.hero .btn-blue {
  background: var(--cream);
  color: var(--blue);
  border-color: var(--cream);
}

.hero .btn-outline-blue {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 241, 230, .55);
}

.hero-card {
  background: var(--cream);
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: 44px 36px;
  text-align: center;
  transform: rotate(-1.5deg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18);
  position: relative;
  z-index: 2;
}

.hero-card img {
  width: min(340px, 100%);
  margin: 18px auto 0;
  border-radius: 50%;
}

.sparkles {
  display: block;
  color: var(--blue);
  font-size: 1.8rem;
  letter-spacing: .35em;
  margin-bottom: 10px;
}

/* CLUB PRESENCIAL */

.club-section {
  background: var(--cream);
  color: var(--blue);
}

.presencial-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.presencial-image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(21, 63, 114, .16);
  transform: rotate(-1.3deg);
}

.presencial-copy .text-block {
  display: grid;
  gap: 18px;
  max-width: 650px;
  font-size: 1.12rem;
}

.online-hook {
  margin-top: 34px;
  padding: 24px 34px;
  max-width: 430px;
  min-height: 145px;
  border: 1.5px solid var(--blue);
  border-radius: 28px;
  color: var(--blue);
  background: transparent;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 20px;
  position: relative;
}

.online-hook span {
  grid-column: 1 / -1;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.04em;
}

.online-hook strong {
  font-size: 1.05rem;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.online-hook em {
  position: absolute;
  right: 42px;
  bottom: 10px;
  font-style: normal;
  font-size: 5.6rem;
  line-height: 1;
  color: var(--blue);
  animation: arrowJump 1.2s ease-in-out infinite;
}

@keyframes arrowJump {
  0%, 100% {
    transform: translateY(0);
    opacity: .85;
  }

  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

.online-hook::after {
  content: "✧";
  position: absolute;
  right: -60px;
  top: 48px;
  font-size: 2.2rem;
  color: var(--blue);
  opacity: .8;
}

.club-star {
  position: absolute;
  color: var(--blue);
  opacity: .85;
  z-index: 1;
  pointer-events: none;
}

.star-a { top: 12%; left: 4%; font-size: 1.8rem; }
.star-b { top: 9%; left: 31%; font-size: 2rem; }
.star-c { top: 14%; right: 8%; font-size: 1.7rem; }
.star-d { bottom: 16%; right: 7%; font-size: 2.1rem; }
.star-e { bottom: 10%; left: 36%; font-size: 1.5rem; }

/* CLUB ONLINE */

.cards-section {
  background: var(--blue);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.online-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.online-copy h2 {
  margin-bottom: 24px;
}

.online-lead {
  max-width: 640px;
  color: rgba(245, 241, 230, .84);
  font-size: 1.14rem;
}

.online-lead strong {
  color: var(--gold);
}

.online-pill {
  width: fit-content;
  margin-top: 28px;
  padding: 12px 24px;
  border: 1px solid rgba(245, 241, 230, .35);
  border-radius: 999px;
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--cream);
  font-weight: 900;
}

.online-pill span:first-child {
  color: var(--gold);
}

.online-image img {
  width: 100%;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
  transform: rotate(1.2deg);
}

/* CARDS */

.cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.card {
  min-height: 280px;
  background: var(--cream);
  color: var(--blue);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px 22px;
  align-items: start;
}

.card::after {
  content: "✦";
  position: absolute;
  right: 22px;
  bottom: 12px;
  font-size: 3rem;
  opacity: .14;
}

.card span {
  grid-column: 1 / -1;
  width: fit-content;
  margin-bottom: 8px;
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(21, 63, 114, .08);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.card-icon svg,
.bonus-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  grid-column: 2;
  font-size: 1.85rem;
  line-height: 1.05;
}

.card ul {
  grid-column: 2;
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 8px;
  font-weight: 650;
}

.card li {
  position: relative;
  padding-left: 18px;
}

.card li::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: 0;
  font-size: .75rem;
}

/* CARDS EXTRA */

.extra-card {
  display: none;
}

.extra-card.is-visible {
  display: grid;
}

/* CARRUSEL MOBILE */

.carousel-hint {
  display: none;
}

.carousel-controls {
  display: none;
}

/* BONUS + BOTONES FUERA DE LA CAJA */

.online-actions-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: .9fr 1.2fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 10px;
}

.online-bonus-note {
  padding: 20px 28px;
  border: 1px solid rgba(245, 241, 230, .2);
  border-radius: 24px;
  background: rgba(245, 241, 230, .06);
  display: flex;
  align-items: center;
  gap: 20px;
}

.bonus-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.online-bonus-note span {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.online-bonus-note strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  line-height: 1;
}

.online-bonus-note small {
  display: block;
  margin-top: 5px;
  font-size: .78rem;
  opacity: .78;
}

.online-buttons {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.online-more {
  min-height: 74px;
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245, 241, 230, .55);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  cursor: pointer;
}

.online-more:hover {
  background: rgba(245, 241, 230, .08);
}

.online-more small,
.online-join small {
  display: block;
  margin-top: 4px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  opacity: .82;
}

.online-join {
  min-height: 74px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue);
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ESTRELLAS */

.online-star {
  position: absolute;
  color: var(--cream);
  opacity: .18;
  pointer-events: none;
  z-index: 1;
}

.online-star-a {
  top: 8%;
  right: 7%;
  font-size: 4rem;
}

.online-star-b {
  bottom: 14%;
  left: 5%;
  font-size: 2.8rem;
}

.online-star-c {
  top: 17%;
  left: 42%;
  font-size: 3rem;
  color: var(--gold);
}

.online-star-d {
  bottom: 28%;
  right: 3%;
  font-size: 3.2rem;
  color: var(--gold);
}

/* RESPONSIVE CLUB ONLINE */

@media (max-width: 1024px) {
  .online-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .online-image img {
    transform: none;
  }

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

  .card {
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .online-actions-row {
    grid-template-columns: 1fr;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .online-buttons {
    grid-template-columns: 1fr 1fr;
  }

  .online-star-c,
  .online-star-d {
    display: none;
  }
}

@media (max-width: 520px) {
  .online-grid {
    gap: 28px;
  }

  .online-copy h2 {
    margin-bottom: 18px;
  }

  .online-lead {
    font-size: .98rem;
    line-height: 1.55;
  }

  .online-pill {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .online-image img {
    border-radius: 26px;
  }

  .cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 14px 14px;
    margin-inline: -14px;
  }

  .cards::-webkit-scrollbar {
    display: none;
  }

  .card {
    min-width: 84%;
    max-width: none;
    margin: 0;
    scroll-snap-align: center;
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 24px;
    min-height: auto;
  }

  .card h3,
  .card ul {
    grid-column: auto;
  }

  .card h3 {
    font-size: 1.85rem;
  }

  .card ul {
    font-size: .95rem;
  }

  .card-icon {
    margin-bottom: 8px;
  }

  .extra-card {
    display: none;
  }

  .extra-card.is-visible {
    display: grid;
  }

  .carousel-hint {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: -2px 0 18px;
    color: var(--cream);
    font-size: .82rem;
    font-weight: 800;
    opacity: .85;
  }

  .carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    grid-column: 1 / -1;
    margin-top: -10px;
  }

  .carousel-prev,
  .carousel-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(245, 241, 230, .45);
    background: transparent;
    color: var(--cream);
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }

  .carousel-prev:active,
  .carousel-next:active {
    transform: scale(.96);
  }

  .online-actions-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 8px;
  }

  .online-bonus-note {
    padding: 20px;
    border-radius: 22px;
    align-items: flex-start;
  }

  .online-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .online-more,
  .online-join {
    width: 100%;
    min-height: 54px;
  }

  .online-star {
    display: none;
  }
}

/* SOBRE */

.about-section {
  background: var(--cream);
  color: var(--blue);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-title h2 {
  font-size: clamp(3.5rem, 6.5vw, 7rem);
}

.about-copy {
  display: grid;
  gap: 28px;
}

.about-copy p {
  font-size: 1.22rem;
  line-height: 1.65;
}

.about-pills {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.about-pills div {
  min-height: 64px;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.about-pills span {
  color: var(--gold-dark);
  font-size: 1.6rem;
}

.about-star {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.star-blue-a { left: 11%; bottom: 18%; color: var(--blue); font-size: 2.2rem; opacity: .55; }
.star-blue-b { right: 8%; top: 9%; color: var(--blue); font-size: 2.8rem; opacity: .55; }
.star-gold-a { left: 41%; top: 12%; color: var(--gold-dark); font-size: 1.6rem; opacity: .75; }
.star-gold-b { left: 47%; top: 43%; color: var(--gold-dark); font-size: 2.2rem; opacity: .75; }
.star-gold-c { right: 5%; top: 34%; color: var(--gold-dark); font-size: 1.6rem; opacity: .75; }

/* COMUNIDAD */

.community-section {
  background: var(--blue);
  color: var(--cream);
}

.community-section .container {
  position: relative;
  z-index: 2;
}

.community-section h2 {
  margin-bottom: 36px;
}

.polaroid-grid {
  display: grid;
  gap: 24px;
}

.polaroid-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 980px;
  margin-inline: auto;
}

.polaroid {
  background: var(--cream);
  color: var(--blue);
  aspect-ratio: 1 / 1.18;
  padding: 14px 14px 58px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
  transform: rotate(-2deg);
}

.polaroid:nth-child(even) {
  transform: rotate(2deg);
}

.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid figcaption {
  margin-top: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-align: center;
}

.community-star {
  position: absolute;
  color: var(--cream);
  opacity: .18;
  pointer-events: none;
  z-index: 1;
}

.community-star-a { top: 10%; left: 3%; font-size: 4rem; }
.community-star-b { top: 18%; right: 9%; font-size: 2.6rem; }
.community-star-c { bottom: 12%; left: 5%; font-size: 2.4rem; }
.community-star-d { bottom: 0%; right: 3%; font-size: 4.4rem; }
.community-star-e { top: 22%; left: 68%; font-size: 3rem; }
.community-star-f { top: 5%; right: 20%; font-size: 2.2rem; }
.community-star-g { top: 10%; left: 28%; font-size: 1.8rem; }
.community-star-h { bottom: 28%; right: 28%; font-size: 2rem; }
.community-star-i { top: 7%; left: 63%; font-size: 1.6rem; }

/* UNIRME */

.join-section {
  background: var(--cream);
  color: var(--blue);
}

.section-head {
  text-align: center;
  margin-bottom: 38px;
}

.section-head h2 {
  margin-inline: auto;
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 920px;
  margin-inline: auto;
}

.plan-card {
  background: var(--white);
  color: #111;
  border: 1px solid rgba(21, 63, 114, .25);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  box-shadow: 12px 12px 0 rgba(21, 63, 114, .13);
}

.plan-card.featured {
  box-shadow: 12px 12px 0 rgba(21, 63, 114, .22);
}

.plan-tag {
  position: absolute;
  top: -18px;
  left: 34px;
  background: var(--blue);
  color: var(--cream);
  border-radius: 8px;
  padding: 9px 22px;
  font-weight: 900;
}

.plan-card h3 {
  margin-top: 18px;
  color: #111;
  font-family: Inter, system-ui, sans-serif;
  font-size: 2rem;
  letter-spacing: -.05em;
  line-height: 1.05;
}

.plan-sub {
  margin: 10px 0 20px;
  color: #333;
  font-weight: 800;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin: 24px 0;
  padding-top: 22px;
  border-top: 1px solid #111;
}

.plan-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 650;
}

.plan-card li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 900;
}

.price {
  color: #111;
  font-size: 2.7rem;
  font-weight: 950;
  letter-spacing: -.07em;
}

.price small {
  font-size: 1rem;
  letter-spacing: 0;
}

.plan-card .btn {
  width: 100%;
  margin-top: 22px;
}

/* CONTACTO */

.contact-section {
  background: var(--blue);
  color: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 76px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  max-width: 620px;
}

.contact-text {
  max-width: 560px;
  margin-top: 28px;
  color: rgba(245, 241, 230, .84);
  font-size: 1.16rem;
  line-height: 1.7;
}

.contact-benefits {
  max-width: 520px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid rgba(245, 241, 230, .22);
  border-radius: 24px;
  background: rgba(245, 241, 230, .06);
  display: grid;
  gap: 18px;
}

.contact-benefits div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: center;
}

.contact-benefits div:not(:last-child) {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(245, 241, 230, .18);
}

.contact-benefits span {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(245, 241, 230, .08);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
}

.contact-benefits strong {
  display: block;
  margin-bottom: 4px;
  color: var(--cream);
}

.contact-benefits p {
  color: rgba(245, 241, 230, .82);
  line-height: 1.45;
}

.contact-signature {
  margin-top: 24px;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-style: italic;
}

.contact-links {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 800;
}

.contact-links a {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.form {
  background: rgba(245, 241, 230, .04);
  color: var(--cream);
  border: 1px solid rgba(245, 241, 230, .28);
  border-radius: 34px;
  padding: 40px;
  display: grid;
  gap: 20px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .14);
  position: relative;
}

.form::before {
  content: "♡";
  position: absolute;
  top: -34px;
  right: 38px;
  width: 78px;
  height: 78px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-size: 2.4rem;
  background: var(--blue);
}

.form label {
  display: grid;
  gap: 9px;
  font-size: .95rem;
  font-weight: 900;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(245, 241, 230, .28);
  border-radius: 18px;
  background: transparent;
  color: var(--cream);
  padding: 16px 18px;
  font-weight: 700;
}

input::placeholder,
textarea::placeholder {
  color: rgba(245, 241, 230, .55);
}

select {
  color: rgba(245, 241, 230, .72);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232, 201, 122, .14);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.form-message {
  color: rgba(245, 241, 230, .82);
  font-size: .92rem;
}

.contact-btn {
  min-height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue);
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.contact-star {
  position: absolute;
  color: var(--cream);
  opacity: .22;
  pointer-events: none;
  z-index: 1;
}

.contact-star-a { top: 12%; left: 15%; font-size: 2rem; color: var(--gold); }
.contact-star-b { bottom: 18%; left: 4%; font-size: 2.4rem; }
.contact-star-c { top: 16%; right: 51%; font-size: 3.2rem; color: var(--gold); }
.contact-star-d { top: 36%; right: 3%; font-size: 3rem; color: var(--gold); }
.contact-star-e { bottom: 8%; right: 4%; font-size: 4rem; }

/* FOOTER HOME */

.site-footer.home-footer {
  background:
    radial-gradient(circle at 50% 8%, rgba(232, 201, 122, .2), transparent 34%),
    radial-gradient(circle at 10% 74%, rgba(21, 63, 114, .06), transparent 26%),
    var(--cream);
  color: var(--blue);
  padding: 82px 0 0;
  position: relative;
  overflow: hidden;
}

.home-footer-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .9fr 1fr;
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
  padding-bottom: 58px;
}

/* Marca */

.home-footer-brand {
  display: grid;
  justify-items: start;
  gap: 18px;
}

.home-footer-book {
  width: 76px;
  height: auto;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-footer-brand h2 {
  max-width: 420px;
  color: var(--blue);
  font-size: clamp(2.7rem, 4.4vw, 4.8rem);
  line-height: .9;
  letter-spacing: -.05em;
}

.home-footer-brand p {
  max-width: 500px;
  color: rgba(21, 63, 114, .86);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.7;
  font-weight: 500;
}

/* Tarjeta central */

.home-footer-card {
  min-height: 360px;
  padding: 34px 30px;
  border: 1px solid rgba(21, 63, 114, .16);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, .78), rgba(245, 241, 230, .52)),
    rgba(255, 255, 255, .22);
  box-shadow: 0 24px 70px rgba(21, 63, 114, .1);
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
  position: relative;
}

.home-footer-card::before,
.home-footer-card::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 46px;
  opacity: .32;
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.home-footer-card::before {
  left: -28px;
  top: 52px;
  transform: rotate(-12deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23153f72' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 8c7 0 14 1 22 6v28c-8-5-15-6-22-6z'/%3E%3Cpath d='M56 8c-7 0-14 1-22 6v28c8-5 15-6 22-6z'/%3E%3Cpath d='M32 14v28'/%3E%3C/g%3E%3C/svg%3E");
}

.home-footer-card::after {
  right: -26px;
  bottom: 54px;
  transform: rotate(12deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 64 48' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23c9a84c' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 8c7 0 14 1 22 6v28c-8-5-15-6-22-6z'/%3E%3Cpath d='M56 8c-7 0-14 1-22 6v28c8-5 15-6 22-6z'/%3E%3Cpath d='M32 14v28'/%3E%3C/g%3E%3C/svg%3E");
}

.home-footer-card img {
  width: 118px;
  height: 118px;
  object-fit: contain;
  margin-bottom: 18px;
}

.home-footer-label {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.home-footer-card h3 {
  max-width: 310px;
  margin: 0;
  color: var(--blue);
  font-size: clamp(2.1rem, 3vw, 3.3rem);
  line-height: .95;
}

.home-footer-cta {
  margin-top: 24px;
  min-width: 230px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .18s ease, background .18s ease;
}

.home-footer-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.home-footer-cta span {
  font-size: 1.25rem;
  line-height: 1;
}

/* Enlaces */

.home-footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.home-footer-col {
  display: grid;
  gap: 13px;
}

.home-footer-col h3 {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 2rem;
}

.home-footer-col a {
  width: fit-content;
  color: rgba(21, 63, 114, .86);
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.home-footer-col a:hover {
  color: var(--blue-dark);
  transform: translateX(3px);
}

/* Decoración */

.home-footer-star {
  position: absolute;
  pointer-events: none;
  color: var(--gold-dark);
  opacity: .75;
  z-index: 1;
}

.star-one {
  left: 30%;
  top: 18%;
  font-size: 1.4rem;
}

.star-two {
  right: 2%;
  top: 22%;
  font-size: 2.2rem;
}

.star-three {
  left: 3%;
  bottom: 18%;
  color: var(--blue);
  font-size: 1.4rem;
  opacity: .45;
}

.home-footer-bottom {
  background: var(--blue);
  color: var(--cream);
}

.home-footer-bottom .container {
  min-height: 56px;
  display: grid;
  place-items: center;
  text-align: center;
}

.home-footer-bottom p {
  margin: 0;
  color: var(--cream);
  font-size: .95rem;
  font-weight: 800;
}

/* Responsive footer home */

@media (max-width: 1024px) {
  .site-footer.home-footer {
    padding-top: 68px;
  }

  .home-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: start;
  }

  .home-footer-brand {
    grid-column: 1 / -1;
    max-width: 640px;
  }

  .home-footer-card {
    min-height: 320px;
  }

  .home-footer-links {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  .site-footer.home-footer {
    padding-top: 58px;
  }

  .home-footer-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 42px;
  }

  .home-footer-brand h2 {
    font-size: clamp(2.7rem, 12vw, 3.7rem);
  }

  .home-footer-brand p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .home-footer-card {
    min-height: auto;
    padding: 30px 22px;
    border-radius: 28px;
  }

  .home-footer-card img {
    width: 96px;
    height: 96px;
  }

  .home-footer-card h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .home-footer-cta {
    width: 100%;
    min-width: 0;
    max-width: 320px;
  }

  .home-footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-footer-col {
    gap: 11px;
  }

  .home-footer-col h3 {
    font-size: 1.75rem;
  }

  .home-footer-star,
  .home-footer-card::before,
  .home-footer-card::after {
    opacity: .22;
  }

  .star-two {
    right: 12px;
    top: 48%;
  }

  .home-footer-bottom .container {
    min-height: 62px;
    padding: 0 14px;
  }

  .home-footer-bottom p {
    font-size: .86rem;
  }
}

@media (max-width: 420px) {
  .home-footer-book {
    width: 62px;
  }

  .home-footer-brand h2 {
    font-size: 2.6rem;
  }

  .home-footer-col a {
    font-size: .94rem;
  }
}


/* RESPONSIVE HEADER */

@media (max-width: 1180px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 76px;
    background: var(--cream);
    color: var(--blue);
    border-bottom: 1px solid var(--blue-line);
    padding: 24px 4%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    min-width: auto;
    height: auto;
    padding: 12px 20px;
  }
}

/* TABLET */

@media (max-width: 1024px) {
  section {
    padding: 72px 0;
  }

  .hero {
    padding: 32px 0 72px;
  }

  .hero-grid,
  .presencial-grid,
  .online-grid,
  .about-grid,
  .contact-grid,
  .join-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

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

  .card {
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .online-bottom {
    grid-template-columns: 1fr;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .polaroid-grid-3 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    max-width: 430px;
    margin: 0 auto;
    transform: rotate(-1deg);
  }

  .presencial-image img,
  .online-image img {
    transform: none;
  }

  .about-title h2 {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .form::before {
    display: none;
  }

  .hero-copy::after,
  .star-a,
  .star-b,
  .star-c,
  .star-d,
  .star-e,
  .online-star-c,
  .online-star-d,
  .about-star,
  .community-star-e,
  .community-star-f,
  .community-star-g,
  .community-star-h,
  .community-star-i,
  .contact-star-c {
    display: none;
  }

  .hero::before,
  .hero::after,
  .online-star,
  .community-star,
  .contact-star {
    opacity: .11;
    font-size: 2rem;
    z-index: 0;
  }

  .online-star-a,
  .community-star-a,
  .contact-star-a {
    top: 18px;
    right: 20px;
    left: auto;
  }

  .online-star-b,
  .community-star-b,
  .contact-star-d {
    bottom: 18px;
    left: 20px;
    right: auto;
    top: auto;
  }

  .community-star-c,
  .community-star-d,
  .contact-star-b,
  .contact-star-e {
    display: none;
  }
}

/* MOBILE */

@media (max-width: 520px) {
  .container {
    width: calc(100% - 28px);
  }

  section {
    padding: 52px 0;
  }

  .nav {
    height: 70px;
  }

  .nav-links {
    top: 70px;
  }

  .brand span {
    display: none;
  }

  h1 {
    font-size: clamp(2.6rem, 13vw, 3.7rem);
    line-height: .92;
  }

  h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
    line-height: .95;
  }

  .eyebrow {
    font-size: .68rem;
    letter-spacing: .1em;
  }

  .lead,
  .online-lead,
  .contact-text,
  .text-block {
    font-size: .98rem;
    line-height: 1.55;
  }

  .hero {
    padding: 42px 0 54px;
  }

  .hero-grid,
  .presencial-grid,
  .online-grid,
  .about-grid,
  .contact-grid {
    gap: 30px;
  }

  .actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero .btn,
  .online-more,
  .online-join {
    width: 100%;
    min-height: 52px;
  }

  .hero-card {
    max-width: 280px;
    padding: 22px;
    margin-inline: auto;
    border-radius: 28px;
  }

  .hero-card img {
    width: 220px;
  }

  .sparkles {
    font-size: 1.4rem;
  }

  .presencial-image img,
  .online-image img {
    border-radius: 26px;
    transform: none;
  }

  .online-hook {
    max-width: 100%;
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .online-hook span {
    font-size: 2.35rem;
  }

  .online-hook em {
    font-size: 3.6rem;
    right: 18px;
    bottom: 4px;
  }

  .online-pill {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 14px 14px;
    margin-inline: -14px;
  }

  .cards::-webkit-scrollbar {
    display: none;
  }

  .card {
    min-width: 84%;
    max-width: none;
    margin: 0;
    scroll-snap-align: center;
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 24px;
    min-height: auto;
  }

  .card h3,
  .card ul {
    grid-column: auto;
  }

  .card h3 {
    font-size: 1.85rem;
  }

  .card ul {
    font-size: .95rem;
  }

  .card-icon {
    margin-bottom: 8px;
  }

  .carousel-hint {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: -2px 0 18px;
    color: var(--cream);
    font-size: .82rem;
    font-weight: 800;
    opacity: .85;
  }

  .carousel-hint span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(245, 241, 230, .45);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    line-height: 1;
  }

  .online-bottom {
    margin-top: 0;
    padding: 20px;
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .online-bonus-note {
    width: 100%;
    align-items: flex-start;
  }

  .online-more {
    display: none;
  }

  .online-join {
    width: 100%;
    min-height: 54px;
  }

  .about-copy p {
    font-size: 1rem;
  }

  .about-pills div {
    min-height: auto;
    border-radius: 24px;
    padding: 18px;
    align-items: flex-start;
    font-size: .78rem;
    letter-spacing: .08em;
  }

  .polaroid-grid-3 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 18px;
    margin-inline: -14px;
    padding-inline: 14px;
    padding-bottom: 12px;
  }

  .polaroid-grid-3::-webkit-scrollbar {
    display: none;
  }

  .polaroid {
    min-width: 78%;
    aspect-ratio: auto;
    padding: 12px 12px 54px;
    scroll-snap-align: start;
    transform: rotate(-1deg);
  }

  .polaroid:nth-child(even) {
    transform: rotate(1deg);
  }

  .polaroid img {
    height: 260px;
    object-fit: cover;
  }

  .polaroid figcaption {
    font-size: 1.45rem;
  }

  .join-grid {
    gap: 42px;
  }

  .plan-card,
  .form {
    padding: 24px;
    border-radius: 24px;
  }

  .price {
    font-size: 2.3rem;
  }

  .contact-benefits {
    display: none;
  }

  .contact-signature {
    font-size: 1.35rem;
  }

  textarea {
    min-height: 120px;
  }

  .footer-links {
    flex-direction: column;
    gap: 14px;
  }

  .hero::before,
  .hero::after,
  .hero-copy::after,
  .club-star,
  .online-star,
  .about-star,
  .community-star,
  .contact-star {
    display: none;
  }
}

@media (max-width: 380px) {
  .polaroid img {
    height: 240px;
  }

  .online-hook span {
    font-size: 2.2rem;
  }
}

/* AJUSTES FINALES: VER MÁS, CARRUSEL Y FORMULARIO */

.extra-card {
  display: none;
}

.cards.show-extra .extra-card {
  display: grid;
}

.online-more {
  display: grid;
  place-items: center;
}

.carousel-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 241, 230, .48);
  background: rgba(245, 241, 230, .06);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.carousel-btn:hover {
  background: rgba(245, 241, 230, .14);
}

.form-status {
  min-height: 1.2em;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
}

.form.is-sending {
  opacity: .82;
  pointer-events: none;
}

select option {
  color: var(--blue);
  background: var(--cream);
}

/* MOBILE: carrusel controlado por JS y bonus fuera del carrusel */

@media (max-width: 520px) {
  .cards {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 14px 14px;
    margin-inline: -14px;
  }

  .cards::-webkit-scrollbar {
    display: none;
  }

  .card,
  .cards.show-extra .extra-card {
    display: grid;
    min-width: 84%;
    max-width: none;
    margin: 0;
    scroll-snap-align: center;
  }

  .carousel-hint {
    display: flex;
  }

  .online-more {
    display: grid;
    width: 100%;
    min-height: 54px;
  }

  .online-bottom {
    margin-top: 0;
  }
}

/* POPUP FORMULARIO */

.cute-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13, 43, 82, .48);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 20px;
}

.cute-popup-box {
  width: min(420px, 100%);
  background: var(--cream);
  color: var(--blue);
  border: 1px solid rgba(21, 63, 114, .2);
  border-radius: 30px;
  padding: 42px 32px 34px;
  text-align: center;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
  position: relative;
}

.cute-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.cute-popup-icon {
  font-size: 46px;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.cute-popup-box h3 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 8vw, 2.6rem);
  color: var(--blue);
}

.cute-popup-box p {
  color: var(--blue);
  font-size: 1rem;
}

@media (max-width: 520px) {
  .cute-popup {
    padding: 16px;
  }

  .cute-popup-box {
    border-radius: 24px;
    padding: 38px 22px 30px;
  }

  .cute-popup-icon {
    font-size: 40px;
  }

  .cute-popup-box p {
    font-size: .95rem;
  }
}

@media (max-width: 360px) {
  .cute-popup-box {
    padding: 34px 18px 26px;
  }

  .cute-popup-close {
    top: 12px;
    right: 14px;
  }
}
/* =========================================================
   AJUSTE CLUB ONLINE - estilo exacto referencia 2026-06-09
   Sustituye/override de la sección de cards y CTA desktop.
   ========================================================= */

.cards-section {
  background:
    radial-gradient(circle at 50% 40%, rgba(36, 87, 142, .26), transparent 42%),
    radial-gradient(circle at 4% 72%, rgba(232, 201, 122, .10), transparent 18%),
    var(--blue-dark);
}

.cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 42px;
  align-items: stretch;
}

.card {
  min-height: 360px;
  background: var(--cream-soft);
  color: var(--blue-dark);
  border: 1px solid rgba(232, 201, 122, .28);
  border-radius: 30px;
  padding: 88px 48px 44px;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 86px 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 24px 28px;
  align-items: start;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, .28),
    inset 0 0 30px rgba(232, 201, 122, .12);
}

.card > span {
  position: absolute;
  top: -6px;
  left: 34px;
  width: 58px;
  height: 72px;
  margin: 0;
  padding-top: 14px;
  background: var(--blue-dark);
  color: var(--cream);
  border-radius: 0 0 14px 14px;
  display: grid;
  place-items: start center;
  font-size: 1.45rem;
  font-weight: 950;
  line-height: 1;
  border-bottom: 0;
  box-shadow: 0 -4px 0 rgba(232, 201, 122, .36);
}

.card > span::after {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold-dark);
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.card-icon {
  grid-column: 1;
  grid-row: 1;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(21, 63, 114, .09);
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  align-self: start;
}

.card-icon svg,
.bonus-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  max-width: 310px;
  font-size: clamp(2.05rem, 2.45vw, 2.75rem);
  line-height: .94;
  letter-spacing: -.055em;
}

.card h3::after {
  content: "";
  display: block;
  width: min(100%, 270px);
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.card ul {
  grid-column: 1 / -1;
  grid-row: 2 / 4;
  list-style: none;
  display: grid;
  gap: 18px;
  margin-top: 8px;
  padding-left: 28px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.45;
}

.card li {
  position: relative;
  padding-left: 28px;
}

.card li::before {
  content: "♡";
  position: absolute;
  left: 0;
  top: .08em;
  color: var(--gold-dark);
  font-size: 1rem;
  font-weight: 900;
}

.card::after {
  content: "✦";
  position: absolute;
  right: 28px;
  bottom: 20px;
  font-size: 3rem;
  color: rgba(21, 63, 114, .16);
  opacity: 1;
}

.card:nth-child(3)::before {
  content: "✦";
  position: absolute;
  right: 44px;
  top: 165px;
  font-size: 2.6rem;
  color: rgba(201, 168, 76, .34);
}

.extra-card {
  display: none;
}

.extra-card.is-visible,
.cards.show-extra .extra-card {
  display: grid;
}

.online-actions-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(360px, .95fr) auto auto;
  gap: 28px;
  align-items: center;
  margin-top: 38px;
}

.online-bonus-note {
  min-height: 122px;
  padding: 24px 34px;
  border: 1px solid rgba(245, 241, 230, .22);
  border-radius: 22px;
  background: rgba(245, 241, 230, .055);
  display: flex;
  align-items: center;
  gap: 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.online-bonus-note::after {
  content: "🎁";
  position: absolute;
  right: 44px;
  bottom: -20px;
  font-size: 5.4rem;
  opacity: .06;
  filter: grayscale(1);
}

.bonus-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-dark);
  color: var(--gold-dark);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.online-bonus-note span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-dark);
  font-size: .82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.online-bonus-note strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  line-height: .95;
}

.online-bonus-note small {
  display: block;
  margin-top: 9px;
  font-size: .98rem;
  opacity: .9;
}

.online-buttons {
  display: contents;
}

.online-more,
.online-join {
  min-height: 78px;
  height: 78px;
  border-radius: 999px;
  padding: 0 38px;
  display: grid;
  place-items: center;
  text-align: center;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .11em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
}

.online-more {
  min-width: 230px;
  background: transparent;
  color: var(--cream);
  border: 1.5px solid var(--gold-dark);
  cursor: pointer;
}

.online-more::after {
  content: "→";
  margin-left: 12px;
  color: var(--gold-dark);
  font-size: 1.3rem;
  line-height: 1;
}

.online-more small {
  display: block;
  margin-top: 4px;
  color: var(--cream);
  font-size: .78rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  opacity: .9;
}

.online-join {
  min-width: 320px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark);
}

.online-star-a { top: 4%; right: 1.8%; font-size: 4.4rem; opacity: .16; }
.online-star-b { bottom: 25%; left: -1%; font-size: 4rem; opacity: .16; }
.online-star-c { display: none; }
.online-star-d { display: none; }

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin-inline: auto;
  }

  .card {
    width: 100%;
    max-width: none;
    margin-inline: 0;
  }

  .online-actions-row {
    grid-template-columns: 1fr;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .online-buttons {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
  }

  .online-more,
  .online-join {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .cards {
    display: flex;
    max-width: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 14px 18px;
    margin-inline: -14px;
  }

  .card,
  .cards.show-extra .extra-card,
  .extra-card.is-visible {
    display: grid;
    min-width: 84%;
    max-width: none;
    min-height: 430px;
    padding: 76px 24px 34px;
    grid-template-columns: 1fr;
    gap: 18px;
    scroll-snap-align: center;
  }

  .card > span {
    left: 24px;
    width: 54px;
    height: 68px;
  }

  .card-icon,
  .card h3,
  .card ul {
    grid-column: auto;
    grid-row: auto;
  }

  .card h3 {
    font-size: 2rem;
  }

  .card h3::after {
    margin-top: 20px;
  }

  .card ul {
    padding-left: 0;
    font-size: .95rem;
    gap: 14px;
  }

  .online-actions-row {
    gap: 16px;
    margin-top: 18px;
  }

  .online-bonus-note {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .bonus-icon {
    width: 62px;
    height: 62px;
  }

  .online-bonus-note strong {
    font-size: 1.65rem;
  }

  .online-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .online-more,
  .online-join {
    height: 56px;
    min-height: 56px;
    padding: 0 22px;
    font-size: .86rem;
  }
}

/* =========================================================
   AJUSTE FINAL CARDS ONLINE: número y texto más a la izquierda
   ========================================================= */
@media (min-width: 1025px) {
  .cards {
    gap: 34px;
  }

  .card {
    min-height: 360px;
    padding: 82px 42px 42px 38px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 22px 20px;
  }

  .card > span {
    left: 22px;
    top: -6px;
    width: 58px;
    height: 72px;
  }

  .card-icon {
    width: 72px;
    height: 72px;
    justify-self: start;
  }

  .card h3 {
    max-width: 285px;
    justify-self: start;
    text-align: left;
    font-size: clamp(2rem, 2.25vw, 2.55rem);
  }

  .card h3::after {
    width: 100%;
    max-width: 260px;
    margin-top: 26px;
  }

  .card ul {
    padding-left: 66px;
    margin-top: 6px;
    max-width: 440px;
    justify-self: start;
    text-align: left;
  }
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .card {
    padding-left: 32px;
    padding-right: 34px;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 20px 18px;
  }

  .card > span {
    left: 18px;
  }

  .card-icon {
    width: 68px;
    height: 68px;
  }

  .card h3 {
    font-size: clamp(1.85rem, 2.1vw, 2.35rem);
  }

  .card ul {
    padding-left: 54px;
    font-size: .96rem;
  }
}


/* =========================================================
   CORRECCIÓN DEFINITIVA CARDS ONLINE
   - Números pegados al borde izquierdo de cada card
   - Bloque de lista más centrado dentro de la card
   - Cards algo más anchas y con composición menos desplazada
   ========================================================= */

@media (min-width: 1025px) {
  .cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .card {
    min-height: 390px;
    padding: 86px 44px 46px 46px;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 22px 24px;
  }

  .card > span {
    left: 0;
    top: -8px;
    transform: translateX(0);
    width: 58px;
    height: 76px;
    border-radius: 0 0 15px 0;
  }

  .card > span::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 88px;
    height: 5px;
    background: rgba(232, 201, 122, .42);
  }

  .card-icon {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    margin-left: 0;
  }

  .card h3 {
    grid-column: 2;
    grid-row: 1;
    justify-self: start;
    align-self: center;
    text-align: left;
    max-width: 320px;
  }

  .card h3::after {
    width: min(100%, 300px);
    max-width: 300px;
  }

  .card ul {
    grid-column: 1 / -1;
    grid-row: 2;
    width: fit-content;
    max-width: 390px;
    justify-self: center;
    margin-top: 14px;
    padding-left: 0;
    text-align: left;
    gap: 17px;
  }

  .card li {
    padding-left: 30px;
  }

  .card li::before {
    left: 0;
  }
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .card {
    padding: 82px 34px 42px 36px;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 20px 20px;
  }

  .card > span {
    left: 0;
    width: 56px;
  }

  .card > span::before {
    width: 82px;
  }

  .card ul {
    max-width: 350px;
    justify-self: center;
    font-size: .96rem;
  }
}


/* =========================================================
   CLUB ONLINE - AJUSTE EXACTO REFERENCIA
   Pega este bloque al final de styles.css o usa este archivo completo.
   ========================================================= */

@media (min-width: 1025px) {
  .cards-section {
    overflow: visible;
    background:
      radial-gradient(circle at 50% 42%, rgba(36, 87, 142, .24), transparent 42%),
      radial-gradient(circle at 2% 72%, rgba(232, 201, 122, .08), transparent 18%),
      var(--blue-dark);
  }

  .online-grid {
    overflow: visible;
  }

  .cards {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 42px;
    align-items: stretch;
    overflow: visible;
  }

  .card {
    min-height: 430px;
    background: var(--cream-soft);
    color: var(--blue-dark);
    border: 1px solid rgba(232, 201, 122, .28);
    border-radius: 30px;
    padding: 86px 42px 44px;
    position: relative;
    overflow: visible;
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    gap: 26px 26px;
    align-items: start;
    box-shadow:
      0 24px 60px rgba(0, 0, 0, .28),
      inset 0 0 30px rgba(232, 201, 122, .11);
  }

  .card > span {
    position: absolute;
    top: -2px;
    left: 18px;
    width: 54px;
    height: 64px;
    margin: 0;
    padding: 12px 0 0;
    background: var(--blue-dark);
    color: var(--cream);
    border: 0;
    border-radius: 0 0 13px 13px;
    display: grid;
    place-items: start center;
    font-size: 1.42rem;
    font-weight: 950;
    line-height: 1;
    box-shadow: none;
    z-index: 5;
  }

  .card > span::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 48px;
    height: 3px;
    background: rgba(232, 201, 122, .48);
  }

  .card > span::after {
    content: "";
    position: absolute;
    bottom: 16px;
    left: 50%;
    width: 26px;
    height: 2px;
    background: var(--gold-dark);
    transform: translateX(-50%);
  }

  .card-icon {
    grid-column: 1;
    grid-row: 1;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(21, 63, 114, .08);
    color: var(--blue-dark);
    display: grid;
    place-items: center;
    justify-self: start;
    align-self: center;
  }

  .card-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 1.9;
  }

  .card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: start;
    max-width: 320px;
    text-align: left;
    font-size: clamp(2.15rem, 2.35vw, 2.75rem);
    line-height: .94;
    letter-spacing: -.055em;
  }

  .card h3::after {
    content: "";
    display: block;
    width: min(100%, 280px);
    height: 1px;
    margin-top: 30px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  }

  .card ul {
    grid-column: 1 / -1;
    grid-row: 2 / 4;
    width: fit-content;
    max-width: 390px;
    justify-self: center;
    list-style: none;
    display: grid;
    gap: 18px;
    margin-top: 12px;
    padding-left: 0;
    text-align: left;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.45;
  }

  .card li {
    position: relative;
    padding-left: 30px;
  }

  .card li::before {
    content: "♡";
    position: absolute;
    left: 0;
    top: .08em;
    color: var(--gold-dark);
    font-size: 1rem;
    font-weight: 900;
  }

  .card::after {
    content: "✦";
    position: absolute;
    right: 28px;
    bottom: 20px;
    font-size: 3rem;
    color: rgba(21, 63, 114, .15);
    opacity: 1;
    z-index: 1;
  }

  .card:nth-child(3)::before {
    content: "✦";
    position: absolute;
    right: 44px;
    top: 178px;
    font-size: 2.6rem;
    color: rgba(201, 168, 76, .34);
    z-index: 1;
  }

  .online-star {
    z-index: 0;
    pointer-events: none;
  }

  .online-star-a {
    top: 5%;
    right: 2%;
    font-size: 4.2rem;
    opacity: .15;
  }

  .online-star-b {
    left: -14px;
    bottom: 31%;
    font-size: 4rem;
    opacity: .22;
  }

  .online-star-c,
  .online-star-d {
    display: none;
  }

  .online-actions-row {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: minmax(420px, .95fr) 270px 380px;
    gap: 26px;
    align-items: center;
    margin-top: 36px;
  }

  .online-bonus-note {
    min-height: 122px;
    padding: 24px 34px;
    border: 1px solid rgba(245, 241, 230, .22);
    border-radius: 22px;
    background: rgba(245, 241, 230, .055);
    display: flex;
    align-items: center;
    gap: 26px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
  }

  .online-bonus-note::after {
    content: "🎁";
    position: absolute;
    right: 44px;
    bottom: -20px;
    font-size: 5.4rem;
    opacity: .06;
    filter: grayscale(1);
  }

  .bonus-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    border: 1.5px solid var(--gold-dark);
    color: var(--gold-dark);
    display: grid;
    place-items: center;
    flex: 0 0 auto;
  }

  .bonus-icon svg {
    width: 34px;
    height: 34px;
  }

  .online-bonus-note span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-dark);
    font-size: .82rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .18em;
  }

  .online-bonus-note strong {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.1rem;
    line-height: .95;
  }

  .online-bonus-note small {
    display: block;
    margin-top: 9px;
    font-size: .98rem;
    opacity: .9;
  }

  .online-buttons {
    display: contents;
  }

  .online-more,
  .online-join {
    height: 78px;
    min-height: 78px;
    border-radius: 999px;
    padding: 0 34px;
    display: grid;
    place-items: center;
    text-align: center;
    white-space: nowrap;
    font-size: .98rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .11em;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
  }

  .online-more {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid var(--gold-dark);
    cursor: pointer;
  }

  .online-more::after {
    content: "→";
    margin-left: 12px;
    color: var(--gold-dark);
    font-size: 1.25rem;
    line-height: 1;
  }

  .online-more small {
    display: block;
    margin-top: 4px;
    color: var(--cream);
    font-size: .78rem;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0;
    opacity: .9;
  }

  .online-join {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--blue-dark);
  }
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .cards {
    gap: 24px;
  }

  .card {
    min-height: 410px;
    padding: 82px 32px 40px;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 22px 20px;
  }

  .card > span {
    left: 16px;
  }

  .card-icon {
    width: 68px;
    height: 68px;
  }

  .card h3 {
    font-size: clamp(1.9rem, 2.1vw, 2.35rem);
  }

  .card ul {
    max-width: 340px;
    font-size: .96rem;
  }

  .online-actions-row {
    grid-template-columns: minmax(360px, 1fr) 250px 330px;
    gap: 20px;
  }
}

@media (max-width: 1024px) {
  .cards {
    max-width: 640px;
    margin-inline: auto;
    grid-template-columns: 1fr;
  }

  .card {
    max-width: none;
    width: 100%;
    margin-inline: 0;
  }

  .online-actions-row {
    grid-template-columns: 1fr;
    max-width: 640px;
    width: 100%;
    margin-inline: auto;
  }

  .online-buttons {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 16px;
  }

  .online-more,
  .online-join {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .cards {
    display: flex;
    max-width: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 14px 18px;
    margin-inline: -14px;
  }

  .card,
  .cards.show-extra .extra-card,
  .extra-card.is-visible {
    display: grid;
    min-width: 84%;
    max-width: none;
    min-height: 430px;
    padding: 76px 24px 34px;
    grid-template-columns: 1fr;
    gap: 18px;
    scroll-snap-align: center;
  }

  .card > span {
    left: 18px;
    width: 54px;
    height: 68px;
  }

  .card > span::before {
    width: 48px;
  }

  .card-icon,
  .card h3,
  .card ul {
    grid-column: auto;
    grid-row: auto;
  }

  .card h3 {
    font-size: 2rem;
  }

  .card h3::after {
    margin-top: 20px;
  }

  .card ul {
    padding-left: 0;
    font-size: .95rem;
    gap: 14px;
  }

  .online-actions-row {
    gap: 16px;
    margin-top: 18px;
  }

  .online-bonus-note {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .bonus-icon {
    width: 62px;
    height: 62px;
  }

  .online-bonus-note strong {
    font-size: 1.65rem;
  }

  .online-buttons {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .online-more,
  .online-join {
    height: 56px;
    min-height: 56px;
    padding: 0 22px;
    font-size: .86rem;
  }
}

/* =========================================================
   FIX VER MÁS: cards 04, 05 y 06 ocultas hasta hacer click
   Debe ir AL FINAL del CSS para ganar a los overrides previos.
   ========================================================= */

.cards .extra-card {
  display: none !important;
}

.cards.show-extra .extra-card,
.cards .extra-card.is-visible {
  display: grid !important;
}

@media (max-width: 520px) {
  .cards .extra-card {
    display: none !important;
  }

  .cards.show-extra .extra-card,
  .cards .extra-card.is-visible {
    display: grid !important;
    min-width: 84%;
    max-width: none;
    min-height: 430px;
    padding: 76px 24px 34px;
    grid-template-columns: 1fr;
    gap: 18px;
    scroll-snap-align: center;
  }
}

/* =========================================================
   AJUSTE FINAL: título H3 más pegado al icono
   Mantiene números a la izquierda, lista centrada y Ver más.
   ========================================================= */

@media (min-width: 1025px) {
  .card {
    grid-template-columns: 74px minmax(0, 1fr) !important;
    column-gap: 12px !important;
  }

  .card-icon {
    justify-self: start !important;
  }

  .card h3 {
    justify-self: start !important;
    margin-left: 0 !important;
    max-width: 330px !important;
  }

  .card h3::after {
    width: min(100%, 310px) !important;
  }

  .card ul {
    justify-self: center !important;
  }
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .card {
    grid-template-columns: 68px minmax(0, 1fr) !important;
    column-gap: 10px !important;
  }

  .card h3 {
    max-width: 315px !important;
  }
}

/* Ver más sigue intacto */
.cards .extra-card {
  display: none !important;
}

.cards.show-extra .extra-card,
.cards .extra-card.is-visible {
  display: grid !important;
}

/* =========================================================
   AJUSTE FINAL: números de cards más a la izquierda
   Mantiene: h3 cerca del icono + Ver más funcionando.
   ========================================================= */

@media (min-width: 1025px) {
  .card > span {
    left: 8px !important;
    top: -2px !important;
    width: 54px !important;
    height: 64px !important;
    border-radius: 0 0 13px 13px !important;
  }

  .card > span::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 34px !important;
    height: 3px !important;
  }
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .card > span {
    left: 6px !important;
  }
}

@media (max-width: 520px) {
  .card > span {
    left: 10px !important;
  }

  .card > span::before {
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 34px !important;
  }
}

/* Ver más intacto */
.cards .extra-card {
  display: none !important;
}

.cards.show-extra .extra-card,
.cards .extra-card.is-visible {
  display: grid !important;
}


/* =========================================================
   CORRECCIÓN FINAL
   Desktop/tablet vuelven a funcionar como antes:
   - Solo 3 cards visibles.
   - "Saber más" muestra las cards extra.

   Solo en móvil:
   - Se ven las 6 cards en carrusel horizontal.
   - Se oculta el botón "Saber más".
   ========================================================= */

@media (min-width: 521px) {
  .online-more {
    display: grid !important;
  }

  .cards .extra-card {
    display: none !important;
  }

  .cards.show-extra .extra-card,
  .cards .extra-card.is-visible {
    display: grid !important;
  }
}

@media (max-width: 520px) {
  .online-more {
    display: none !important;
  }

  .cards .extra-card,
  .cards.show-extra .extra-card,
  .cards .extra-card.is-visible {
    display: grid !important;
    min-width: 84%;
    max-width: none;
    min-height: 430px;
    padding: 76px 24px 34px;
    grid-template-columns: 1fr;
    gap: 18px;
    scroll-snap-align: center;
  }

  .cards {
    display: flex !important;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 14px 18px;
    margin-inline: -14px;
    scrollbar-width: none;
  }

  .cards::-webkit-scrollbar {
    display: none;
  }

  .carousel-hint {
    display: flex !important;
  }

  .online-buttons {
    grid-template-columns: 1fr !important;
  }
}


/* =========================================================
   MOBILE: 6 CARDS EN CARRUSEL + CARRUSEL COMUNIDAD
   Desktop se mantiene igual.
   ========================================================= */

.community-carousel-hint {
  display: none;
}

@media (max-width: 520px) {
  /* Online: en móvil se ven las 6 cards en carrusel */
  .cards {
    display: flex !important;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 14px 18px;
    margin-inline: -14px;
    scrollbar-width: none;
  }

  .cards::-webkit-scrollbar {
    display: none;
  }

  .cards .card,
  .cards .extra-card,
  .cards.show-extra .extra-card,
  .cards .extra-card.is-visible {
    display: grid !important;
    min-width: 84%;
    max-width: none;
    min-height: 430px;
    margin: 0;
    scroll-snap-align: center;
  }

  .online-more {
    display: none !important;
  }

  .carousel-hint {
    display: flex !important;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: -2px 0 18px;
  }

  /* Comunidad: fotos en carrusel móvil con las mismas flechas */
  .polaroid-grid-3 {
    display: flex !important;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin-inline: -14px;
    padding-inline: 14px;
    padding-bottom: 12px;
    scrollbar-width: none;
  }

  .polaroid-grid-3::-webkit-scrollbar {
    display: none;
  }

  .polaroid {
    min-width: 78%;
    scroll-snap-align: center;
  }

  .community-carousel-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }
}


/* =========================================================
   FIX REAL MOBILE/TABLET: carruseles hasta 768px
   Problema anterior: el breakpoint estaba en 520px, por eso en móviles
   grandes / vista responsive seguía saliendo en columna y con "Saber más".
   ========================================================= */

.community-carousel-hint {
  display: none;
}

@media (max-width: 768px) {
  /* ONLINE: 6 cards visibles dentro del carrusel horizontal */
  #online .cards {
    grid-column: 1 / -1;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 14px 18px !important;
    margin-inline: -14px !important;
    scrollbar-width: none;
  }

  #online .cards::-webkit-scrollbar {
    display: none;
  }

  #online .card,
  #online .cards .extra-card,
  #online .cards.show-extra .extra-card,
  #online .cards .extra-card.is-visible {
    display: grid !important;
    flex: 0 0 84% !important;
    min-width: 84% !important;
    max-width: none !important;
    min-height: 430px !important;
    margin: 0 !important;
    scroll-snap-align: center;
  }

  /* En móvil no debe existir el botón Saber más */
  #online .online-more {
    display: none !important;
  }

  #online .online-buttons {
    grid-template-columns: 1fr !important;
  }

  #online .carousel-hint {
    display: flex !important;
    grid-column: 1 / -1;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: -2px 0 18px;
  }

  /* COMUNIDAD: fotos en carrusel móvil con mismas flechas */
  #comunidad .polaroid-grid-3 {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin-inline: -14px !important;
    padding-inline: 14px !important;
    padding-bottom: 12px !important;
    scrollbar-width: none;
  }

  #comunidad .polaroid-grid-3::-webkit-scrollbar {
    display: none;
  }

  #comunidad .polaroid {
    flex: 0 0 78% !important;
    min-width: 78% !important;
    max-width: none !important;
    scroll-snap-align: center;
  }

  #comunidad .community-carousel-hint {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
  }
}

/* FOOTER MOBILE COMPACTO */

@media (max-width: 760px) {
  .site-footer {
    padding: 46px 0 26px;
  }

  .footer-inner {
    gap: 28px;
    text-align: center;
  }

  .footer-about-left {
    justify-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-book-icon {
    width: 44px;
  }

  .footer-about-left h3 {
    font-size: 1.35rem;
  }

  .footer-about-left p {
    max-width: 300px;
    font-size: .9rem;
    line-height: 1.55;
  }

  .footer-center {
    order: -1;
    padding: 0 0 24px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 63, 114, .16);
    gap: 12px;
  }

  .footer-logo {
    width: 82px;
    height: 82px;
  }

  .footer-center > p {
    font-size: .9rem;
    line-height: 1.4;
  }

  .footer-legal {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px 16px;
    flex-wrap: wrap;
  }

  .footer-legal a {
    font-size: .78rem;
  }

  .footer-explore {
    justify-items: center;
    text-align: center;
    gap: 10px;
  }

  .footer-explore h3 {
    font-size: 1.35rem;
  }

  .footer-explore a {
    font-size: .9rem;
  }

  .footer-bottom {
    margin-top: 8px;
    padding-top: 18px;
    text-align: center;
  }

  .footer-bottom p {
    font-size: .78rem;
    line-height: 1.45;
  }

  .site-footer::before,
  .site-footer::after {
    display: none;
  }
}

/* =========================================================
   FOOTER MOBILE - VERSIÓN SIMPLE FINAL
   Solo afecta a móvil/tablet pequeña. Desktop queda igual.
   ========================================================= */

@media (max-width: 760px) {
  .site-footer {
    padding: 42px 0 26px;
    text-align: center;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: center;
    text-align: center;
  }

  .footer-about-left,
  .footer-explore,
  .footer-book-icon,
  .footer-star,
  .site-footer::before,
  .site-footer::after {
    display: none !important;
  }

  .footer-center {
    order: 1;
    width: 100%;
    padding: 0;
    border: 0;
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 22px;
  }

  .footer-logo {
    width: 116px;
    height: 116px;
    margin-inline: auto;
    object-fit: contain;
  }

  .footer-center > p {
    max-width: 330px;
    margin: 0 auto;
    color: var(--blue);
    font-size: 1.05rem;
    line-height: 1.45;
    font-weight: 850;
    text-align: center;
  }

  .footer-legal {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
    margin-top: 4px;
    text-align: center;
  }

  .footer-legal a {
    color: var(--blue);
    font-size: .84rem;
    font-weight: 850;
    line-height: 1.2;
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .footer-legal a::after {
    content: "|";
    display: inline-block;
    margin: 0 14px;
    color: rgba(21, 63, 114, .48);
    font-weight: 500;
    text-decoration: none;
  }

  .footer-legal a:last-child::after {
    display: none;
  }

  .footer-bottom {
    order: 2;
    width: 100%;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(21, 63, 114, .16);
    display: block;
    text-align: center;
  }

  .footer-bottom span {
    display: none !important;
  }

  .footer-bottom p {
    max-width: 340px;
    margin: 0 auto;
    color: var(--blue);
    font-size: .86rem;
    line-height: 1.45;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .footer-logo {
    width: 104px;
    height: 104px;
  }

  .footer-center > p {
    font-size: .98rem;
  }

  .footer-legal a {
    font-size: .8rem;
  }

  .footer-legal a::after {
    margin: 0 10px;
  }
}

/* =========================================================
   HERO NUEVO - GÉNEROS ROMANTASY / ROMANCE / FANTASÍA
   Sustituye visualmente solo la sección #inicio.
   ========================================================= */

.hero.hero-genre {
  background:
    radial-gradient(circle at 58% 44%, rgba(36, 87, 142, .28), transparent 38%),
    radial-gradient(circle at 88% 28%, rgba(232, 201, 122, .08), transparent 20%),
    var(--blue-dark);
  color: var(--cream);
  padding: 62px 0 66px;
  overflow: hidden;
}

.hero.hero-genre::before {
  content: "✦";
  position: absolute;
  right: 3.5%;
  top: 17%;
  color: var(--gold);
  font-size: 3.2rem;
  opacity: .9;
  text-shadow:
    -240px 120px 0 rgba(232, 201, 122, .55),
    -90px 330px 0 rgba(245, 241, 230, .55),
    28px 250px 0 rgba(232, 201, 122, .7);
  z-index: 0;
}

.hero.hero-genre::after {
  content: "✦";
  position: absolute;
  left: 4.2%;
  bottom: 17%;
  color: var(--gold);
  font-size: 1.35rem;
  opacity: .72;
  text-shadow:
    470px -315px 0 rgba(245, 241, 230, .52),
    825px -110px 0 rgba(201, 168, 76, .55),
    1030px 58px 0 rgba(245, 241, 230, .45);
  z-index: 0;
}

.hero-genre-grid {
  display: grid;
  grid-template-columns: minmax(330px, .92fr) minmax(430px, 1fr) minmax(220px, .55fr);
  gap: 42px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-genre .hero-copy {
  position: relative;
  z-index: 3;
}

.hero-genre .eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
}

.hero-genre h1 {
  max-width: 560px;
  color: var(--cream-soft);
  font-size: clamp(3.25rem, 4.8vw, 5.45rem);
  line-height: .94;
}

.hero-genre .lead {
  max-width: 510px;
  margin: 26px 0 34px;
  color: rgba(245, 241, 230, .88);
  font-size: 1.04rem;
  line-height: 1.62;
}

.hero-genre .actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.hero-genre .btn {
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-genre .btn-blue {
  background: linear-gradient(135deg, var(--cream-soft), var(--gold));
  color: var(--blue-dark);
  border-color: transparent;
}

.hero-genre .btn-outline-blue {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 241, 230, .7);
}

.hero-genres {
  display: grid;
  gap: 22px;
  align-self: center;
  min-width: 0;
}

.hero-genres-title {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 950;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .14em;
  white-space: nowrap;
}

.hero-genres-title::before,
.hero-genres-title::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 201, 122, .72));
}

.hero-genres-title::after {
  background: linear-gradient(90deg, rgba(232, 201, 122, .72), transparent);
}

.genre-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.genre-card {
  min-height: 315px;
  padding: 28px 14px 24px;
  border: 1.3px solid var(--gold-dark);
  border-radius: 999px 999px 34px 34px;
  background:
    radial-gradient(circle at 50% 30%, rgba(245, 241, 230, .08), transparent 38%),
    rgba(245, 241, 230, .035);
  display: grid;
  grid-template-rows: 112px auto auto 1fr;
  justify-items: center;
  align-items: start;
  gap: 12px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 28px rgba(232, 201, 122, .06);
}

.genre-card::before {
  content: "✦";
  position: absolute;
  top: 30px;
  left: 22px;
  color: var(--gold);
  font-size: .9rem;
  opacity: .9;
  text-shadow:
    72px 12px 0 rgba(232, 201, 122, .72),
    44px 64px 0 rgba(245, 241, 230, .34);
}

.genre-card img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 0, 0, .22));
  position: relative;
  z-index: 2;
}

.genre-card h2 {
  margin: 0;
  color: var(--cream-soft);
  font-size: clamp(1.55rem, 1.9vw, 2.05rem);
  line-height: .98;
  max-width: none;
}

.genre-heart {
  width: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  color: var(--gold);
  font-size: 1.05rem;
  line-height: 1;
}

.genre-heart::before,
.genre-heart::after {
  content: "";
  height: 1px;
  background: rgba(232, 201, 122, .7);
}

.genre-card p {
  max-width: 142px;
  margin: 0;
  color: rgba(245, 241, 230, .9);
  font-size: .79rem;
  line-height: 1.42;
  align-self: start;
}

.hero-genres-bottom-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
  position: relative;
}

.hero-genres-bottom-line span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  background: var(--blue-dark);
  padding: 0 12px;
  font-size: 1.15rem;
  line-height: 1;
}

.hero-genre .hero-card {
  justify-self: end;
  width: min(282px, 100%);
  min-height: 360px;
  padding: 30px 26px;
  border: 1px solid rgba(232, 201, 122, .5);
  border-radius: 28px;
  background: var(--cream-soft);
  color: var(--blue-dark);
  transform: rotate(-4.5deg);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, .3),
    7px 7px 0 rgba(232, 201, 122, .22);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.hero-genre .hero-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(201, 168, 76, .42);
  border-radius: 24px;
  pointer-events: none;
}

.hero-genre .hero-card::after {
  content: "✦";
  position: absolute;
  right: 26px;
  bottom: 32px;
  color: var(--gold-dark);
  font-size: 1.4rem;
  opacity: .75;
  text-shadow:
    -180px -220px 0 rgba(201, 168, 76, .55),
    -205px -195px 0 rgba(201, 168, 76, .42);
}

.hero-genre .hero-card .sparkles {
  display: none;
}

.hero-genre .hero-card img {
  width: min(205px, 76%);
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

@media (max-width: 1240px) {
  .hero-genre-grid {
    grid-template-columns: minmax(310px, .9fr) minmax(390px, 1fr) minmax(190px, .5fr);
    gap: 30px;
  }

  .hero-genre h1 {
    font-size: clamp(3rem, 4.55vw, 4.8rem);
  }

  .genre-card {
    min-height: 300px;
  }

  .genre-card img {
    width: 102px;
    height: 102px;
  }

  .genre-card p {
    font-size: .74rem;
  }

  .hero-genre .hero-card {
    width: 240px;
    min-height: 318px;
  }
}

@media (max-width: 1024px) {
  .hero.hero-genre {
    padding: 50px 0 58px;
  }

  .hero-genre-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
  }

  .hero-genre .hero-copy {
    max-width: 660px;
    padding-right: 245px;
    min-height: 325px;
    position: relative;
  }

  .hero-genre .hero-card {
    position: absolute;
    right: 0;
    top: 4px;
    width: 220px;
    min-height: 292px;
  }

  .hero-genres {
    max-width: 720px;
    width: 100%;
    margin-inline: auto;
  }

  .genre-card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .hero.hero-genre {
    padding: 36px 0 40px;
  }

  .hero.hero-genre::before,
  .hero.hero-genre::after,
  .hero-copy::after {
    display: none;
  }

  .hero-genre-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-genre .hero-copy {
    min-height: 488px;
    padding-right: 168px;
  }

  .hero-genre .eyebrow {
    margin-bottom: 14px;
    font-size: .66rem;
    letter-spacing: .13em;
  }

  .hero-genre h1 {
    max-width: 270px;
    font-size: clamp(2.45rem, 12vw, 3.45rem);
    line-height: .92;
  }

  .hero-genre .lead {
    max-width: 250px;
    margin: 16px 0 20px;
    font-size: .88rem;
    line-height: 1.55;
  }

  .hero-genre .actions {
    width: min(100%, 208px);
    display: grid;
    gap: 10px;
    align-items: stretch;
  }

  .hero-genre .btn {
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    font-size: .68rem;
  }

  .hero-genre .hero-card {
    position: absolute;
    top: 64px;
    right: 0;
    width: 158px;
    min-height: 228px;
    padding: 18px 14px;
    border-radius: 22px;
    transform: rotate(-6deg);
    z-index: 2;
  }

  .hero-genre .hero-card::before {
    inset: 10px;
    border-radius: 18px;
  }

  .hero-genre .hero-card img {
    width: 116px;
  }

  .hero-genres {
    width: 100%;
    gap: 15px;
    margin-top: -34px;
  }

  .hero-genres-title {
    grid-template-columns: 1fr auto 1fr;
    gap: 10px;
    font-size: .65rem;
    letter-spacing: .12em;
  }

  .genre-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .genre-card {
    min-height: 292px;
    padding: 16px 7px 15px;
    border-radius: 999px 999px 28px 28px;
    grid-template-rows: 80px auto auto 1fr;
    gap: 8px;
  }

  .genre-card::before {
    top: 13px;
    left: 13px;
    font-size: .66rem;
    text-shadow:
      42px 11px 0 rgba(232, 201, 122, .62),
      28px 54px 0 rgba(232, 201, 122, .36);
  }

  .genre-card img {
    width: 74px;
    height: 80px;
  }

  .genre-card h2 {
    font-size: clamp(1.03rem, 4.8vw, 1.32rem);
  }

  .genre-heart {
    width: 52px;
    gap: 5px;
    font-size: .92rem;
  }

  .genre-card p {
    max-width: 96px;
    font-size: .64rem;
    line-height: 1.28;
  }

  .hero-genres-bottom-line {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-genre .hero-copy {
    padding-right: 136px;
    min-height: 470px;
  }

  .hero-genre .hero-card {
    width: 132px;
    min-height: 198px;
    top: 72px;
  }

  .hero-genre .hero-card img {
    width: 96px;
  }

  .hero-genre h1 {
    max-width: 230px;
    font-size: 2.48rem;
  }

  .hero-genre .lead {
    max-width: 218px;
    font-size: .82rem;
  }

  .hero-genre .actions {
    width: 190px;
  }

  .genre-card {
    min-height: 276px;
    padding-inline: 6px;
  }

  .genre-card img {
    width: 64px;
    height: 72px;
  }

  .genre-card p {
    font-size: .6rem;
  }
}

/* =========================================================
   BOTÓN COMUNIDAD - Lo que hemos leído en el club
   Baja el CTA para que no se meta detrás de las fotos.
   ========================================================= */

#comunidad .community-section-actions {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 100px;
  padding-bottom: 6px;
  clear: both;
}

#comunidad .community-readings-btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 34px;
  border: 1.5px solid rgba(245, 241, 230, .62);
  border-radius: 999px;
  background:
    linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue-dark);
  font-size: .92rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, .24),
    inset 0 1px 0 rgba(255, 250, 240, .45);
  overflow: hidden;
  transform: translateY(0);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

#comunidad .community-readings-btn::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: -1;
  border: 1px solid rgba(13, 43, 82, .18);
  border-radius: inherit;
}

#comunidad .community-readings-btn::after {
  content: "✦";
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--cream);
  font-size: .95rem;
  line-height: 1;
  transform: rotate(0deg);
  transition: transform .2s ease;
}

#comunidad .community-readings-btn:hover {
  transform: translateY(-4px);
  border-color: var(--cream);
  box-shadow:
    0 28px 58px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 250, 240, .55);
}

#comunidad .community-readings-btn:hover::after {
  transform: rotate(18deg) scale(1.06);
}

#comunidad .community-readings-btn:focus-visible {
  outline: 3px solid rgba(245, 241, 230, .78);
  outline-offset: 5px;
}

@media (max-width: 768px) {
  #comunidad .community-section-actions {
    margin-top: 34px;
    padding-inline: 14px;
  }

  #comunidad .community-readings-btn {
    width: min(100%, 420px);
    min-height: 58px;
    padding: 0 24px;
    font-size: .82rem;
    letter-spacing: .06em;
  }
}

@media (max-width: 420px) {
  #comunidad .community-section-actions {
    margin-top: 28px;
  }

  #comunidad .community-readings-btn {
    min-height: 56px;
    padding: 0 18px;
    font-size: .76rem;
  }

  #comunidad .community-readings-btn::after {
    width: 30px;
    height: 30px;
    font-size: .82rem;
  }
}


/* =========================================================
   AJUSTE CLUB ONLINE — PASTILLA NOVEDAD + PRIMER ENCUENTRO
   Pegar al final del CSS original o usar este archivo completo.
   ========================================================= */

.cards-section {
  background:
    radial-gradient(circle at 24% 18%, rgba(245, 241, 230, .08), transparent 28%),
    radial-gradient(circle at 72% 12%, rgba(232, 201, 122, .09), transparent 26%),
    var(--blue);
}

.online-grid {
  align-items: start;
}

.online-kicker {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.online-kicker .eyebrow {
  margin-bottom: 0;
  color: var(--cream);
}

.online-launch-tabs {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 40px;
  border: 1px solid rgba(232, 201, 122, .95);
  border-radius: 999px;
  overflow: hidden;
  color: var(--cream);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.online-launch-tab {
  min-height: 40px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.online-launch-tab.is-new {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.online-launch-tab.is-new::before {
  content: "✦";
  font-size: 1rem;
  line-height: 1;
}

.online-launch-tab.is-date {
  background: rgba(13, 43, 82, .18);
  color: var(--cream);
  border-left: 1px solid rgba(232, 201, 122, .95);
  letter-spacing: .01em;
}

.online-copy h2 {
  margin-bottom: 24px;
  max-width: 690px;
}

.online-lead {
  max-width: 660px;
}

.online-pill {
  margin-top: 30px;
  min-height: 52px;
  padding: 0 26px;
  border-color: rgba(245, 241, 230, .38);
  background: rgba(245, 241, 230, .02);
  box-shadow: inset 0 0 0 1px rgba(245, 241, 230, .04);
}

.online-pill span:first-child {
  color: var(--gold);
}

.online-image {
  align-self: center;
}

.online-image img {
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .26);
}

@media (max-width: 1024px) {
  .online-kicker {
    margin-bottom: 14px;
  }

  .online-copy h2 {
    max-width: 780px;
  }

  .online-lead {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .online-launch-tabs {
    width: 100%;
    min-height: 0;
  }

  .online-launch-tab {
    flex: 1 1 50%;
    min-height: 38px;
    padding: 0 14px;
    font-size: .76rem;
    text-align: center;
  }

  .online-launch-tab.is-new {
    letter-spacing: .08em;
  }
}

@media (max-width: 420px) {
  .online-launch-tabs {
    display: grid;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .online-launch-tab {
    width: 100%;
    min-height: 40px;
  }

  .online-launch-tab.is-date {
    border-left: 0;
    border-top: 1px solid rgba(232, 201, 122, .95);
  }

  .online-pill {
    min-height: 48px;
    padding: 10px 18px;
    gap: 10px;
  }
}
