:root {
  --bg: #1c253c;
  --bg-soft: #212c46;
  --bg-strong: #182135;
  --panel: rgba(242, 233, 205, 0.88);
  --panel-strong: rgba(245, 238, 218, 0.97);
  --ink: #f2e9cd;
  --ink-soft: rgba(242, 233, 205, 0.82);
  --ink-muted: rgba(242, 233, 205, 0.62);
  --ink-faint: rgba(199, 165, 91, 0.34);
  --line: rgba(199, 165, 91, 0.2);
  --line-strong: rgba(199, 165, 91, 0.36);
  --line-accent: rgba(199, 165, 91, 0.46);
  --accent: #9e243a;
  --accent-strong: #7f1b2d;
  --accent-soft: #c7a55b;
  --accent-glow: rgba(199, 165, 91, 0.24);
  --navy: #1d2943;
  --gold: #c7a55b;
  --cream: #f2e9cd;
  --burgundy: #9e243a;
  --radius: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --maxw: 1140px;
  --font-display: "Baskervville", Georgia, serif;
  --font-ui: "Baskervville", Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(rgba(28, 37, 60, 0.96), rgba(28, 37, 60, 0.99)),
    url("./assets/background_azul_oscuro.png") center / cover fixed,
    var(--bg);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open {
  overflow: hidden;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(199, 165, 91, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 165, 91, 0.03) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0%, transparent 74%);
}

body::after {
  background: linear-gradient(180deg, transparent 60%, rgba(28, 37, 60, 0.18));
}

a {
  color: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
  overflow-wrap: anywhere;
}

.landing {
  position: relative;
  overflow: hidden;
}

.hero {
  padding: 72px 24px 56px;
}

.hero__content,
.section-heading,
.legal__inner {
  width: min(100%, var(--maxw));
  margin: 0 auto;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: rgba(18, 28, 49, 0.42);
  box-shadow: 0 18px 44px -34px rgba(0, 0, 0, 0.55);
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
}

.brand {
  color: var(--gold);
  font-size: clamp(0.95rem, 1.6vw, 1.18rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0;
}

.headline {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 32px;
  max-width: 980px;
  font-size: clamp(1.1rem, 2.6vw, 2.25rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.headline__line {
  display: block;
  white-space: nowrap;
}

.headline__accent {
  display: inline-block;
  color: var(--gold);
  background:
    linear-gradient(
      105deg,
      var(--gold) 0%,
      var(--gold) 36%,
      #fff0c6 48%,
      #ffffff 50%,
      #c7a55b 53%,
      var(--gold) 66%,
      var(--gold) 100%
    );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: metallic-shine 4.8s ease-in-out infinite;
}

.serif-em {
  display: inline-block;
  margin-left: 10px;
  color: var(--accent);
  background:
    linear-gradient(
      105deg,
      var(--accent) 0%,
      var(--accent) 36%,
      #f3d1d1 48%,
      #ffffff 50%,
      #c63a3a 53%,
      var(--accent) 66%,
      var(--accent) 100%
    );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: metallic-shine 4.8s ease-in-out infinite;
  font-style: italic;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 30px;
  border-radius: var(--radius-pill);
  background:
    linear-gradient(
      105deg,
      var(--accent) 0%,
      var(--accent) 36%,
      #f3d1d1 48%,
      #ffffff 50%,
      #c63a3a 53%,
      var(--accent) 66%,
      var(--accent) 100%
    );
  background-position: 130% 0;
  background-size: 260% 100%;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 22px 54px -24px var(--accent-glow);
  transition:
    transform 0.15s ease,
    box-shadow 0.2s ease,
    background-position 0.2s ease;
  animation: metallic-shine 4.8s ease-in-out infinite;
}

.hero-cta:hover {
  transform: translateY(-2px);
  background-position: -80% 0;
  box-shadow: 0 28px 64px -22px var(--accent-glow);
}

@keyframes metallic-shine {
  0%,
  46% {
    background-position: 130% 0;
  }

  72%,
  100% {
    background-position: -80% 0;
  }
}

.hero-sub {
  margin-top: 24px;
  max-width: 57ch;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2.1vw, 1.36rem);
  line-height: 1.6;
}

.vsl {
  width: 100%;
  max-width: 780px;
  margin-top: 40px;
}

.vsl__shell {
  position: relative;
}

.vsl__glow {
  position: absolute;
  inset: -8% -6%;
  background: radial-gradient(60% 60% at 50% 35%, var(--accent-glow), transparent 70%);
  filter: blur(38px);
  opacity: 0.9;
}

.vsl__frame,
.proof-card__video {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-accent);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(199, 165, 91, 0.1), transparent 38%),
    linear-gradient(180deg, rgba(29, 41, 67, 0.9), rgba(18, 28, 49, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(242, 233, 205, 0.16),
    0 40px 110px -52px rgba(0, 0, 0, 0.55);
}

.vsl__frame {
  aspect-ratio: 16 / 9;
}

.vsl__preview {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--bg-strong);
  cursor: pointer;
}

.vsl__preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition:
    filter 0.2s ease,
    transform 0.25s ease;
}

.vsl__preview::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(18, 28, 49, 0.06), rgba(18, 28, 49, 0.28)),
    radial-gradient(circle at 50% 50%, transparent 0 18%, rgba(18, 28, 49, 0.38) 72%);
  pointer-events: none;
}

.vsl__play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: clamp(72px, 10vw, 96px);
  height: clamp(72px, 10vw, 96px);
  place-items: center;
  border: 1px solid rgba(242, 233, 205, 0.36);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(158, 36, 58, 0.98), rgba(127, 27, 45, 0.98));
  box-shadow:
    0 22px 52px -20px rgba(0, 0, 0, 0.86),
    0 0 0 10px rgba(158, 36, 58, 0.16);
  transform: translate(-50%, -50%);
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.vsl__play::before {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 24px solid var(--cream);
  content: "";
}

.vsl__preview:hover img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.035);
}

.vsl__preview:hover .vsl__play,
.vsl__preview:focus-visible .vsl__play {
  box-shadow:
    0 26px 58px -18px rgba(0, 0, 0, 0.9),
    0 0 0 14px rgba(158, 36, 58, 0.2);
  transform: translate(-50%, -50%) scale(1.04);
}

.vsl__preview:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -6px;
}

.vsl__frame::before,
.proof-card__video::before,
.booking__card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(43, 60, 84, 0.06), transparent),
    repeating-linear-gradient(0deg, rgba(43, 60, 84, 0.028) 0 1px, transparent 1px 10px);
  opacity: 0.4;
  pointer-events: none;
}

.vsl__frame iframe,
.proof-card__video iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
}

.resources {
  width: 100%;
  max-width: 1100px;
  margin-top: 56px;
  padding: 10px 0 18px;
  position: relative;
  z-index: 1;
}

.resources__head {
  text-align: center;
}

.resources__head h2 {
  color: var(--cream);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.05;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.resources__warning {
  margin-top: 12px;
  color: var(--burgundy);
  font-family: var(--font-ui);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1.35;
}

.resources__sub {
  max-width: 920px;
  margin: 18px auto 0;
  color: var(--ink-muted);
  font-family: var(--font-ui);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  font-weight: 600;
  line-height: 1.6;
}

.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.resource-card {
  min-height: 100%;
  padding: 28px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(24, 33, 53, 0.54);
  box-shadow: 0 22px 54px -42px rgba(0, 0, 0, 0.9);
  text-align: left;
}

.resource-card__icon {
  width: 42px;
  height: 42px;
  margin: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(158, 36, 58, 0.18);
  color: var(--burgundy);
  font-size: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.resource-card h3 {
  color: var(--cream);
  font-size: clamp(1.15rem, 1.6vw, 1.38rem);
  line-height: 1.3;
}

.resource-card p {
  margin: 14px 0 0;
  color: var(--ink-muted);
  font-family: var(--font-ui);
  font-size: 0.96rem;
  line-height: 1.55;
}

.resource-card .resource-card__result {
  color: var(--cream);
  font-weight: 800;
}

.resource-card__result strong {
  color: var(--cream);
}

.resources__cta {
  width: fit-content;
  min-width: 330px;
  margin: 52px auto 0;
  text-align: center;
}

.legal {
  padding: 40px 24px 48px;
  border-top: 1px solid var(--line);
  background: var(--bg-strong);
}

.legal__inner {
  text-align: center;
}

.legal nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.legal a {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.legal a:hover {
  color: var(--accent);
}

.legal p {
  max-width: 920px;
  margin: 0 auto;
  color: var(--ink-muted);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  line-height: 1.7;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lead-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lead-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 24, 0.78);
  backdrop-filter: blur(14px);
}

.lead-modal__panel {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  padding: 34px;
  border: 1px solid var(--line-accent);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(242, 233, 205, 0.08), rgba(242, 233, 205, 0.03)),
    rgba(24, 33, 53, 0.98);
  box-shadow:
    inset 0 1px 0 rgba(242, 233, 205, 0.1),
    0 36px 110px -34px rgba(0, 0, 0, 0.88);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.2s ease;
}

.lead-modal.is-open .lead-modal__panel {
  transform: none;
}

.lead-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(18, 28, 49, 0.7);
  color: var(--cream);
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 24px;
  line-height: 1;
}

.lead-modal__eyebrow {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lead-modal h2 {
  margin-top: 12px;
  color: var(--cream);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.lead-modal__copy {
  margin-top: 14px;
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.55;
}

.lead-form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  text-align: left;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-family: var(--font-ui);
  font-size: 0.94rem;
  font-weight: 800;
}

.lead-form input[type="text"],
.lead-form input[type="email"],
.lead-form input[type="tel"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: rgba(7, 12, 24, 0.44);
  color: var(--cream);
  font: inherit;
  font-weight: 600;
  outline: none;
  padding: 13px 14px;
}

.lead-form input::placeholder {
  color: rgba(242, 233, 205, 0.42);
}

.lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 165, 91, 0.14);
}

.lead-form__check {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--ink-muted);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.lead-form__check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--gold);
}

.lead-form__check a {
  color: var(--gold);
  font-weight: 800;
  text-underline-offset: 0.15em;
}

.lead-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

[data-rise] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-rise].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }
}

@media (max-width: 900px) {
}

@media (max-width: 760px) {
  .hero,
  .legal {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .brand {
    letter-spacing: 0.14em;
  }

  .brand-lockup {
    margin-top: 24px;
  }

  .headline {
    margin-top: 30px;
    font-size: clamp(1rem, 4.4vw, 1.5rem);
  }

  .serif-em {
    margin-left: 6px;
  }

  .hero-cta {
    padding: 15px 22px;
    font-size: 13px;
  }

  .hero-sub {
    font-size: 1rem;
  }

  .resources__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }

  .resources__cta {
    min-width: 0;
    width: 100%;
    margin-top: 38px;
  }

  .lead-modal {
    padding: 14px;
  }

  .lead-modal__panel {
    padding: 28px 18px 22px;
  }

}

@media (max-width: 560px) {
  .pill {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .headline__line {
    white-space: normal;
  }

  .lead-modal__close {
    top: 10px;
    right: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  [data-rise] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-cta,
  .resources__cta,
  .lead-modal,
  .lead-modal__panel {
    transition: none;
  }

  .headline__accent,
  .serif-em,
  .hero-cta {
    animation: none;
  }
}
