:root {
  --azul: #65c7d5;
  --azul-profundo: #2f8fa4;
  --turquesa: #17c6c7;
  --morado: #d56be7;
  --rosa: #f2a9f4;
  --rosa-suave: #fdeafd;
  --fondo: #f8fdff;
  --texto: #24415a;
  --texto-suave: #5f7181;
  --blanco: #ffffff;
      --nb-azul-morado: #5e16bdc1;
    --nb-morado-profundo: #8220c4c0;
    --nb-turquesa: #5BAEB0;
    --nb-turquesa-profundo: #208b8d;
    --nb-celeste: #E8FBFD;
    --nb-celeste-vivo: #A4E4EA;
    --nb-lila: #B7A7F2;
    --nb-rosa: #EC63DE;
  --borde: rgba(213, 107, 231, 0.22);
  --sombra: 0 18px 45px rgba(47, 143, 164, 0.16);
  --sombra-suave: 0 10px 26px rgba(47, 143, 164, 0.10);
  --radio: 26px;
  --font-title: "Amatic SC", cursive;
  --font-script: "Story Script", cursive;
  --font-body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--texto);
  font-family: var(--font-body);
  line-height: 1.65;
  background:
    radial-gradient(circle at 10% 8%, rgba(242,169,244,0.30), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(101,199,213,0.24), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, var(--fondo) 42%, #fff4ff 100%);
  overflow-x: hidden;
}

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

.page-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 0;
  height: 4px;
  z-index: 1000;
  background: linear-gradient(90deg, var(--turquesa), var(--morado), var(--rosa));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 10px 20px;
  backdrop-filter: blur(12px);
  color: var(--nb-blanco);
  background: linear-gradient(
    135deg,
    var(--nb-turquesa) 0%,
    var(--nb-celeste-vivo) 34%,
    var(--nb-lila) 72%,
    rgba(236, 99, 222, 0.72) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, .64);
  box-shadow: 0 10px 28px rgba(120, 80, 160, .18);
}

.site-header__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex: 0 0 auto;
  min-width: 0;
}

.site-header__logo {
  display: block;
  width: 54px;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .18));
}

.site-header__title {
  margin: 0;
  color: var(--nb-blanco);
  font-family: "Amatic SC", cursive;
  font-weight: 700;
  font-size: clamp(2rem, 3.8vw, 3.1rem);
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-shadow: 0 3px 14px rgba(36, 79, 131, 0.24);
}

.site-header__snowflake {
  display: inline-block;
  margin: 0 5px;
  color: #FDF8FF;
  animation: site-snowflake-spin 10s linear infinite;
}



.site-header__nav::-webkit-scrollbar {
  display: none;
}

.site-header__nav a,
.site-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--texto);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.site-header__nav a:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: translateY(-1px);
}

.site-header__button {
  color: var(--blanco) !important;
  background: linear-gradient(135deg, var(--turquesa), var(--azul-profundo));
  box-shadow: var(--sombra-suave);
}
@media (max-width: 760px) {
  .site-header {
    padding: 10px 14px;
  }

  .site-header__inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .site-header__brand {
    justify-content: center;
  }

  .site-header__logo {
    width: 48px;
  }

  .site-header__title {
    font-size: 2.4rem;
  }

  .site-header__nav {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 2px;
  }

  .site-header__nav a,
  .site-header__button {
    min-height: 36px;
    padding: 8px 13px;
    font-size: 13px;
  }
}

.home-hero,
.content-section,
.site-footer {
  position: relative;
  margin: 0 auto 34px;
  border: 1px solid rgba(255,255,255,0.86);
  border-radius: var(--radio);
  box-shadow: var(--sombra);
  overflow: hidden;
}

.home-hero::before,
.content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top left, rgba(242,169,244,0.20), transparent 34%),
    radial-gradient(circle at bottom right, rgba(23,198,199,0.16), transparent 35%);
  pointer-events: none;
}

.home-hero > *,
.content-section > * { position: relative; z-index: 1; }

.home-hero {
  min-height: calc(100vh - 112px);
  display: grid;
  place-items: center;
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
}

.home-hero__content {
  width: min(780px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-hero__kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 16px;
  border: 1px solid rgba(213,107,231,0.30);
  border-radius: 999px;
  color: var(--azul-profundo);
  background: rgba(255,255,255,0.76);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.home-hero__logo {
  width: clamp(116px, 18vw, 172px);
  height: auto;
  margin-bottom: 14px;
  border-radius: 12px;
  filter: drop-shadow(0 16px 24px rgba(47,143,164,0.18));
}

.home-hero__title,
.content-section h2,
.final-section h2 {
  margin: 0;
  font-family: var(--font-title);
  font-weight: 700;
  line-height: .95;
  color: var(--azul-profundo);
}

.home-hero__title {
  font-size: clamp(78px, 16vw, 148px);
  color: var(--turquesa);
  text-shadow: 2px 2px 0 rgba(213,107,231,0.18);
}

.home-hero__subtitle {
  margin: 8px 0 12px;
  font-family: var(--font-script);
  font-size: clamp(25px, 4.6vw, 43px);
  line-height: 1.15;
  color: var(--morado);
}

.home-hero__description,
.content-section p,
.waitlist-form small {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  color: var(--texto-suave);
  font-size: 18px;
}

.home-hero__description { margin-top: 0; }

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.home-hero__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  isolation: isolate;
  overflow: hidden;
  color: var(--azul-profundo);
  border: 1px solid rgba(47, 143, 164, 0.22);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.78) 0%, rgba(255,255,255,0.28) 46%, rgba(255,255,255,0.08) 47%),
    linear-gradient(135deg, rgba(36,194,199,0.18), rgba(255,126,214,0.16), rgba(129,85,213,0.14));
  box-shadow:
    0 16px 34px rgba(47,143,164,0.16),
    inset 0 1px 0 rgba(255,255,255,0.90),
    inset 0 -12px 24px rgba(255,255,255,0.30);
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    color .22s ease,
    border-color .22s ease,
    background .22s ease;
}

.home-hero__button::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  background: linear-gradient(120deg, rgba(255,255,255,0), rgba(255,255,255,0.84), rgba(255,255,255,0));
  transform: translateX(-125%) skewX(-18deg);
  transition: transform .55s ease;
}

.home-hero__button::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(255,255,255,0.42);
  transition: opacity .22s ease;
}

.home-hero__button i {
  font-size: 1.08em;
  transition: transform .22s ease;
}

.home-hero__button:hover,
.home-hero__button:focus-visible {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    0 22px 42px rgba(47,143,164,0.24),
    inset 0 1px 0 rgba(255,255,255,0.92),
    inset 0 -12px 24px rgba(255,255,255,0.20);
}

.home-hero__button:hover::before,
.home-hero__button:focus-visible::before {
  transform: translateX(125%) skewX(-18deg);
}

.home-hero__button:hover i,
.home-hero__button:focus-visible i {
  transform: rotate(-5deg) scale(1.14);
}

.home-hero__button--primary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.10) 46%, rgba(0,0,0,0.06) 47%),
    linear-gradient(135deg, #22c7c9 0%, #2f9fbd 45%, #8155d5 100%);
  text-shadow: 0 1px 8px rgba(27, 55, 80, 0.22);
}

.home-hero__button--primary::after {
  background: rgba(255,255,255,0.04);
}

.home-hero__button--primary:hover,
.home-hero__button--primary:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 126, 214, 0.70);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.44) 0%, rgba(255,255,255,0.10) 46%, rgba(0,0,0,0.08) 47%),
    linear-gradient(135deg, #24c2c7 0%, #ff7ed6 55%, #8155d5 100%);
}

.home-hero__button--secondary {
  color: var(--azul-profundo);
}

.home-hero__button--whatsapp {
  color: #128c7e;
  border-color: rgba(37, 211, 102, 0.34);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.34) 46%, rgba(255,255,255,0.06) 47%),
    linear-gradient(135deg, rgba(37,211,102,0.20), rgba(18,140,126,0.12));
}

.home-hero__button--email {
  color: #2f8fa4;
  border-color: rgba(47, 143, 164, 0.30);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.34) 46%, rgba(255,255,255,0.06) 47%),
    linear-gradient(135deg, rgba(66,133,244,0.16), rgba(52,168,83,0.12), rgba(251,188,5,0.12), rgba(234,67,53,0.14));
}

.home-hero__button--instagram {
  color: #c13584;
  border-color: rgba(193, 53, 132, 0.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.84) 0%, rgba(255,255,255,0.34) 46%, rgba(255,255,255,0.06) 47%),
    linear-gradient(135deg, rgba(254,218,117,0.22), rgba(250,126,30,0.16), rgba(214,41,118,0.15), rgba(150,47,191,0.14), rgba(79,91,213,0.14));
}

.home-hero__button--whatsapp:hover,
.home-hero__button--whatsapp:focus-visible {
  color: #ffffff;
  border-color: rgba(37,211,102,0.78);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.08) 46%, rgba(0,0,0,0.08) 47%),
    linear-gradient(135deg, #25d366 0%, #19b65a 48%, #128c7e 100%);
}

.home-hero__button--email:hover,
.home-hero__button--email:focus-visible {
  color: #ffffff;
  border-color: rgba(234,67,53,0.70);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.08) 46%, rgba(0,0,0,0.08) 47%),
    linear-gradient(135deg, #4285f4 0%, #34a853 34%, #fbbc05 68%, #ea4335 100%);
}

.home-hero__button--instagram:hover,
.home-hero__button--instagram:focus-visible {
  color: #ffffff;
  border-color: rgba(225,48,108,0.72);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.08) 46%, rgba(0,0,0,0.08) 47%),
    linear-gradient(135deg, #feda75 0%, #fa7e1e 25%, #d62976 52%, #962fbf 76%, #4f5bd5 100%);
}

.home-hero__button--primary:hover::after,
.home-hero__button--primary:focus-visible::after,
.home-hero__button--whatsapp:hover::after,
.home-hero__button--whatsapp:focus-visible::after,
.home-hero__button--email:hover::after,
.home-hero__button--email:focus-visible::after,
.home-hero__button--instagram:hover::after,
.home-hero__button--instagram:focus-visible::after {
  opacity: 0;
}

.content-section {
  padding: clamp(32px, 5vw, 58px);
  text-align: center;
}

.content-section h2 {
  font-size: clamp(52px, 8vw, 86px);
}

.content-section h3 {
  margin: 8px 0 10px;
  font-family: var(--font-title);
  font-size: 38px;
  line-height: .95;
  color: var(--azul-profundo);
}

.section-intro { margin-bottom: 24px; }

.steps-grid,
.packs-grid,
.survey-options,
.form-grid {
  display: grid;
  gap: 18px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.step-card,
.pack-card {
  position: relative;
  min-height: 100%;
  padding: 25px;
  border: 1px solid rgba(213,107,231,0.20);
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow: var(--sombra-suave);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.step-card:hover,
.pack-card:hover,
.pack-card:focus-within,
.pack-card.is-open {
  transform: translateY(-6px);
  border-color: rgba(23,198,199,0.45);
  box-shadow: 0 22px 42px rgba(47,143,164,0.18);
}

.step-card span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blanco);
  background: linear-gradient(135deg, var(--morado), var(--turquesa));
  font-weight: 900;
}

.steps-grid p,
.pack-card p { font-size: 16px; }

.packs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  text-align: left;
}

.pack-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
}

.pack-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--blanco);
  background: linear-gradient(135deg, var(--turquesa), var(--morado));
  box-shadow: var(--sombra-suave);
  font-size: 23px;
}

.pack-card__toggle {
  width: fit-content;
  margin-top: auto;
  padding: 9px 14px;
  border: 1px solid rgba(213,107,231,0.22);
  border-radius: 999px;
  color: var(--azul-profundo);
  background: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.pack-card__more {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease, opacity .25s ease, margin-top .25s ease;
  opacity: 0;
}

.pack-card__more > ul {
  overflow: hidden;
  margin: 0;
  padding-left: 18px;
  color: var(--texto-suave);
  font-size: 15px;
}

.pack-card:hover .pack-card__more,
.pack-card:focus-within .pack-card__more,
.pack-card.is-open .pack-card__more {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 14px;
}

.content-section--accent {
  background: linear-gradient(135deg, rgba(255,255,255,0.86), rgba(253,234,253,0.88));
}

.survey-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.survey-option {
  min-height: 86px;
  padding: 17px;
  border: 1px solid rgba(213,107,231,0.24);
  border-radius: 20px;
  color: var(--azul-profundo);
  background: rgba(255,255,255,0.82);
  box-shadow: var(--sombra-suave);
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.survey-option:hover,
.survey-option.is-selected {
  transform: translateY(-4px);
  color: var(--blanco);
  background: linear-gradient(135deg, var(--morado), var(--turquesa));
}

.waitlist-form {
  width: min(790px, 100%);
  margin: 28px auto 0;
  text-align: left;
}

.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.waitlist-form label {
  display: grid;
  gap: 8px;
  color: var(--azul-profundo);
  font-weight: 800;
}

.waitlist-form input,
.waitlist-form select,
.waitlist-form textarea {
  width: 100%;
  border: 1px solid rgba(101,199,213,0.28);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--texto);
  background: rgba(255,255,255,0.92);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: var(--morado);
  box-shadow: 0 0 0 4px rgba(213,107,231,0.12);
}

.waitlist-form textarea {
  min-height: 128px;
  resize: vertical;
  margin-top: 18px;
}

.form-submit { margin-top: 18px; }

.form-message,
.email-copy-message {
  margin: 14px 0 0;
  color: var(--azul-profundo);
  font-weight: 800;
}
.form-message--success { color: #138a75; }
.form-message--error { color: #c0395a; }
.waitlist-form small { display: block; margin-top: 14px; font-size: 14px; }

.final-section { text-align: center; }

.site-footer {
  width: min(1120px, calc(100% - 36px));
  margin-bottom: 26px;
  padding: 20px;
  text-align: center;
  color: var(--texto-suave);
  box-shadow: var(--sombra-suave);
}
.site-footer p { margin: 0; }

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .steps-grid,
  .packs-grid,
  .survey-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  body { background: linear-gradient(180deg, #ffffff 0%, var(--fondo) 48%, #fff4ff 100%); }
  .site-header { padding: 10px 12px; }
  .site-header__inner { align-items: flex-start; flex-direction: column; gap: 10px; }
  .site-header__brand { width: 100%; justify-content: center; }
  .site-header__title { font-size: 34px; }
  .site-header__nav { width: 100%; justify-content: flex-start; padding-bottom: 2px; }
  .site-header__nav a { min-height: 38px; padding: 8px 12px; font-size: 13px; }
  .home-main { width: min(100% - 22px, 1120px); padding-top: 18px; }
  .home-hero,
  .content-section { margin-bottom: 22px; border-radius: 22px; }
  .home-hero { min-height: auto; padding: 34px 20px; }
  .home-hero__title { font-size: clamp(74px, 24vw, 102px); }
  .home-hero__subtitle { font-size: 31px; }
  .home-hero__description,
  .content-section p { font-size: 16px; }
  .home-hero__actions { width: 100%; }
  .home-hero__button { width: 100%; min-height: 48px; }
  .content-section { padding: 30px 18px; }
  .content-section h2 { font-size: 56px; }
  .steps-grid,
  .packs-grid,
  .survey-options,
  .form-grid { grid-template-columns: 1fr; }
  .pack-card { text-align: center; align-items: center; }
  .pack-card__more > ul { text-align: left; }
  .survey-option { min-height: 66px; }
  .site-footer { width: min(100% - 22px, 1120px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal-on-scroll { opacity: 1; transform: none; }
}

/* =========================
   BOTONES HERO - COLORES ANTIGUOS NEVA BITA
========================= */

.home-hero__actions .home-hero__button {
  position: relative;
  overflow: hidden;
  isolation: isolate;

  min-height: 48px;
  padding: 10px 22px;

  font-family: var(--font-title);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;

  border-radius: 999px;
  border: 2px solid transparent;

  color: #ffffff;
  text-decoration: none;

  box-shadow:
    0 10px 24px rgba(36, 79, 131, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

/* Brillo antiguo suave */
.home-hero__actions .home-hero__button::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0.08) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );

  pointer-events: none;
}

/* Quiero enterarme */
.home-hero__actions .home-hero__button--primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, #244F83 0%, #3269A8 100%) !important;
  border-color: #244F83 !important;
}

/* WhatsApp */
.home-hero__actions a[href*="wa.me"].home-hero__button {
  color: #ffffff !important;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  border-color: #25D366 !important;
}

/* Escríbenos / Email */
.home-hero__actions button.js-copy-email.home-hero__button {
  color: #ffffff !important;
  background: linear-gradient(135deg, #5BAEB0 0%, #3C8E9A 100%) !important;
  border-color: #5BAEB0 !important;
}

/* Instagram */
.home-hero__actions a[href*="instagram"].home-hero__button {
  color: #ffffff !important;
  background: linear-gradient(135deg, #EFD1EF 0%, #C96CCB 45%, #244F83 100%) !important;
  border-color: #C96CCB !important;
}

/* Iconos */
.home-hero__actions .home-hero__button i {
  color: #ffffff;
  font-size: 0.95em;
  transition: transform 0.25s ease;
}

/* Hover común */
.home-hero__actions .home-hero__button:hover,
.home-hero__actions .home-hero__button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 30px rgba(36, 79, 131, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.home-hero__actions .home-hero__button:hover i,
.home-hero__actions .home-hero__button:focus-visible i {
  transform: rotate(-5deg) scale(1.12);
}

.home-hero__actions .home-hero__button:focus-visible {
  outline: none;
  box-shadow:
    0 14px 30px rgba(36, 79, 131, 0.22),
    0 0 0 4px rgba(91, 174, 176, 0.22);
}

/* Responsive */
@media (max-width: 760px) {
  .home-hero__actions .home-hero__button {
    width: 100%;
    min-height: 50px;
    padding: 11px 18px;
    font-size: 25px;
  }
}

/* =========================
   FIX FINAL BOTONES HERO
   Colores antiguos visibles desde el inicio
========================= */

.home-hero__actions .home-hero__button {
  min-height: 48px !important;
  padding: 10px 22px !important;
  font-family: var(--font-title) !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.5px !important;
  border-radius: 999px !important;
  border: 2px solid transparent !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(36, 79, 131, 0.10) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease !important;
}

.home-hero__actions .home-hero__button::after {
  opacity: 0 !important;
}

.home-hero__actions .home-hero__button::before {
  z-index: -1 !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.06) 48%, rgba(0,0,0,0.04) 100%) !important;
  transform: none !important;
  inset: 0 !important;
}

.home-hero__actions .home-hero__button--primary,
.home-hero__actions a[href="#lista-espera"].home-hero__button {
  background: linear-gradient(135deg, #244F83 0%, #3269A8 100%) !important;
  border-color: #244F83 !important;
}

.home-hero__actions .home-hero__button--whatsapp,
.home-hero__actions a[href*="wa.me"].home-hero__button {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
  border-color: #25D366 !important;
}

.home-hero__actions .home-hero__button--email,
.home-hero__actions a[href^="mailto:"].home-hero__button {
  background: linear-gradient(135deg, #5BAEB0 0%, #3C8E9A 100%) !important;
  border-color: #5BAEB0 !important;
}

.home-hero__actions .home-hero__button--instagram,
.home-hero__actions a[href*="instagram"].home-hero__button {
  background: linear-gradient(135deg, #EFD1EF 0%, #C96CCB 45%, #244F83 100%) !important;
  border-color: #C96CCB !important;
}

.home-hero__actions .home-hero__button i {
  color: #ffffff !important;
  font-size: 0.92em !important;
}

.home-hero__actions .home-hero__button:hover,
.home-hero__actions .home-hero__button:focus-visible {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 26px rgba(36, 79, 131, 0.18) !important;
}

@media (max-width: 760px) {
  .home-hero__actions .home-hero__button {
    width: 100% !important;
    min-height: 50px !important;
    padding: 11px 18px !important;
    font-size: 25px !important;
  }
}

.coming-soon-partner {
  max-width: 820px;
  margin: 2rem auto 1.8rem;
  padding: 1.8rem 2rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.55);
  text-align: center;
}

.coming-soon-partner__eyebrow {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #a85ee8;
}

.coming-soon-partner__brand {
  display: flex;
  justify-content: center;
  margin: 0.9rem 0 1.4rem;
}

.coming-soon-partner__logo {
  width: 115px;
  max-width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.coming-soon-partner p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #282533;
}

.coming-soon-partner strong {
  color: #c77bea;
  font-weight: 800;
}

.waitlist-form label.form-consent {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  margin: 18px 0 !important;
  color: #24485a !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  max-width: 760px !important;
}

.waitlist-form label.form-consent input[type="checkbox"] {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  max-width: 18px !important;
  margin: 3px 0 0 0 !important;
  padding: 0 !important;
  flex: 0 0 18px !important;
  accent-color: #2b8fa3;
}

.waitlist-form label.form-consent span {
  display: inline !important;
  margin: 0 !important;
}