:root {
  --black: #050505;
  --warm-black: #0d0a08;
  --wine: #3b0e18;
  --coffee: #24140d;
  --gold: #d4af37;
  --gold-light: #f2d675;
  --gold-dark: #8a6518;
  --ivory: #f8f0dc;
  --white-warm: #fff9ef;
  --muted: #d8c9aa;
  --line: rgba(212, 175, 55, 0.28);
  --surface: rgba(255, 249, 239, 0.055);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --container: 1180px;
  --title: "Cinzel", Georgia, serif;
  --body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white-warm);
  background:
    radial-gradient(circle at 18% 12%, rgba(59, 14, 24, 0.42), transparent 34rem),
    radial-gradient(circle at 86% 18%, rgba(138, 101, 24, 0.25), transparent 28rem),
    linear-gradient(180deg, var(--black), var(--warm-black) 42%, #070403);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 14%, #000 0, transparent 72%);
}

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

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white-warm);
  font-family: var(--title);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 770px;
  font-size: clamp(2.45rem, 7vw, 5.4rem);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
}

h3 {
  font-size: 1.1rem;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: .75rem 1rem;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 4px;
}

.skip-link:focus {
  top: 1rem;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.top-bar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 14;
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: .4rem 1rem;
  color: var(--black);
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold));
  font-size: .92rem;
}

.top-bar p {
  margin: 0;
  color: var(--black);
}

.top-bar__cta {
  min-height: 32px;
  padding: .22rem .75rem;
  border: 1px solid rgba(5, 5, 5, 0.35);
  border-radius: 4px;
  font-weight: 800;
}

.site-header {
  position: fixed;
  top: 42px;
  right: 0;
  left: 0;
  z-index: 13;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-bottom-color: var(--line);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  width: min(100% - 2rem, var(--container));
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--title);
  font-weight: 700;
}

.brand__mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.22);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .92rem;
  font-weight: 700;
}

.nav__links a {
  color: rgba(255, 249, 239, 0.82);
}

.nav__links a:hover {
  color: var(--gold-light);
}

.nav__cta {
  min-height: 42px;
  padding: .55rem .95rem;
  color: var(--black) !important;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.nav__toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 249, 239, 0.05);
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: calc(100svh - 42px);
  padding: 8.8rem 0 5.5rem;
  overflow: hidden;
}

.hero__particles,
.hero__backdrop {
  position: absolute;
  inset: 0;
}

.hero__particles {
  z-index: 1;
  opacity: .72;
}

.hero__backdrop {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.54) 44%, rgba(5, 5, 5, 0.14)),
    url("/assets/images/fondo-dorado.webp") right center / cover no-repeat;
  filter: saturate(.95);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .9rem;
  color: var(--gold-light);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold));
}

.hero__lead {
  max-width: 680px;
  margin-top: 1.35rem;
  font-size: clamp(1.02rem, 2.4vw, 1.18rem);
}

.hero__quote {
  max-width: 610px;
  margin: 1.3rem 0;
  color: var(--ivory);
  font-family: var(--title);
  font-size: 1.18rem;
}

.price-panel {
  display: grid;
  width: min(100%, 420px);
  gap: .15rem;
  margin: 1.35rem 0 1.5rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.13), rgba(59, 14, 24, 0.18));
  box-shadow: inset 0 0 22px rgba(212, 175, 55, 0.08);
}

.price-panel span,
.price-panel small,
.promo__price span,
.promo__price small {
  color: var(--muted);
  font-size: .9rem;
}

.price-panel del {
  margin-left: .35rem;
  color: rgba(248, 240, 220, 0.72);
}

.price-panel strong {
  color: var(--gold-light);
  font-family: var(--title);
  font-size: clamp(2.35rem, 8vw, 4.2rem);
  line-height: 1;
  text-shadow: 0 0 26px rgba(212, 175, 55, 0.28);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.btn {
  position: relative;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: .82rem 1.12rem;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 900;
  text-align: center;
  isolation: isolate;
}

.btn--primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 48%, #b98725);
  box-shadow: 0 16px 42px rgba(212, 175, 55, 0.22);
}

.btn--secondary {
  color: var(--ivory);
  border-color: var(--line);
  background: rgba(255, 249, 239, 0.055);
}

.btn--full {
  width: 100%;
}

.trust-list,
.check-list {
  display: grid;
  gap: .55rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.trust-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 650px;
}

.trust-list li,
.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-size: .94rem;
}

.trust-list li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold-light);
  content: "✦";
}

.reader-proof {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  max-width: 330px;
  margin-top: 1.2rem;
  padding: .55rem .75rem .55rem .55rem;
  border: 1px solid rgba(242, 214, 117, .34);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.07);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22), inset 0 0 22px rgba(212, 175, 55, .06);
}

.reader-proof img {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(242, 214, 117, .75);
  border-radius: 50%;
  object-fit: cover;
}

.reader-proof span {
  display: grid;
  gap: .1rem;
  text-align: left;
}

.reader-proof strong {
  color: var(--white-warm);
  line-height: 1.1;
}

.reader-proof small {
  color: var(--muted);
  font-size: .78rem;
  line-height: 1.25;
}

.hero__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 56px rgba(212, 175, 55, 0.12);
  transform-style: preserve-3d;
}

.hero__visual picture,
.hero__visual img {
  width: 100%;
  height: 100%;
}

.hero__visual picture {
  display: block;
}

.hero__visual img {
  object-fit: cover;
  object-position: center;
}

.hero__visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 72% 40%, transparent 0 34%, rgba(5, 5, 5, 0.28) 68%), linear-gradient(180deg, transparent, rgba(5, 5, 5, .38));
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.74);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  display: flex;
  min-height: 128px;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  background: rgba(255, 249, 239, 0.035);
}

.trust-item img {
  width: 32px;
  height: 32px;
}

.trust-item h2 {
  font-family: var(--body);
  font-size: .96rem;
  line-height: 1.3;
}

.section {
  position: relative;
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section--deep {
  background:
    linear-gradient(180deg, rgba(36, 20, 13, 0.4), rgba(5, 5, 5, 0.72)),
    radial-gradient(circle at 75% 20%, rgba(212, 175, 55, 0.12), transparent 28rem);
}

.split__grid,
.emotion__grid,
.booking__grid,
.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.split__copy p,
.emotion__copy p,
.booking__copy p {
  font-size: 1.02rem;
}

.framed-image {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .55rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, .18), rgba(255, 249, 239, .035));
  box-shadow: var(--shadow);
}

.framed-image img,
.emotion__media img {
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
}

.framed-image figcaption {
  padding: .8rem .35rem .2rem;
  color: var(--muted);
  font-size: .9rem;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 1rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature-card,
.step,
.booking-form,
.promo__inner {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 249, 239, 0.075), rgba(36, 20, 13, 0.38));
  box-shadow: inset 0 0 0 1px rgba(255, 249, 239, 0.03), 0 20px 46px rgba(0, 0, 0, .22);
}

.feature-card,
.step {
  position: relative;
  min-height: 210px;
  padding: 1.25rem;
  overflow: hidden;
}

.feature-card::before,
.step::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at 85% 0%, rgba(242, 214, 117, 0.18), transparent 45%);
  transition: opacity .25s ease;
}

.feature-card:hover,
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 214, 117, .62);
}

.feature-card:hover::before,
.step:hover::before {
  opacity: 1;
}

.feature-card h3,
.step h3 {
  position: relative;
  margin-bottom: .7rem;
  color: var(--gold-light);
}

.feature-card p,
.step p {
  position: relative;
  margin: 0;
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.step span {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-family: var(--title);
  font-size: 2rem;
}

.emotion {
  overflow: hidden;
}

.emotion__media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.reader-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 16%, rgba(212, 175, 55, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(59, 14, 24, .24));
}

.reader-section__grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.reader-portrait {
  position: relative;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .55rem;
  background: linear-gradient(135deg, rgba(242, 214, 117, .19), rgba(255, 249, 239, .04));
  box-shadow: var(--shadow), 0 0 80px rgba(212, 175, 55, .09);
}

.reader-portrait::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(212, 175, 55, .14);
  border-radius: 12px;
  transform: rotate(-2deg);
}

.reader-portrait img {
  width: 100%;
  max-height: 760px;
  border-radius: 6px;
  object-fit: cover;
  object-position: center top;
}

.reader-section__copy {
  max-width: 650px;
}

.reader-section__copy p {
  font-size: 1.03rem;
}

.reader-signature {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin: 1.35rem 0 1.5rem;
}

.reader-signature span {
  padding: .42rem .72rem;
  color: var(--gold-light);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 249, 239, .055);
  font-size: .86rem;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: .5rem;
  color: var(--gold-light);
  font-weight: 900;
  border-bottom: 1px solid var(--gold);
}

.promo {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, .88), rgba(59, 14, 24, .58)),
    url("/assets/images/referencia-visual.webp") center / cover fixed;
}

.promo__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: center;
  gap: 2rem;
  padding: clamp(1.25rem, 4vw, 2.4rem);
}

.promo__price {
  display: grid;
  justify-items: start;
  gap: .35rem;
}

.promo__price strong {
  color: var(--gold-light);
  font-family: var(--title);
  font-size: 4.8rem;
  line-height: .95;
}

.booking {
  background: linear-gradient(180deg, rgba(5,5,5,0), rgba(36,20,13,.45));
}

.booking-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.form-row {
  display: grid;
  gap: .35rem;
}

label,
.consent {
  color: var(--ivory);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  color: var(--white-warm);
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 4px;
  background: rgba(5, 5, 5, 0.52);
  padding: .78rem .85rem;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: rgba(248, 240, 220, .48);
}

.consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: .7rem;
  align-items: start;
  font-size: .9rem;
  line-height: 1.45;
}

.consent input {
  min-height: auto;
  height: 20px;
  margin-top: .12rem;
}

.field-error {
  min-height: 1.2em;
  margin: 0;
  color: #ffccbc;
  font-size: .86rem;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--gold-light);
  font-weight: 700;
}

.faq__grid {
  align-items: start;
}

.accordion {
  display: grid;
  gap: .7rem;
}

.accordion__item {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 249, 239, 0.045);
}

.accordion__item button {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .95rem 1rem;
  color: var(--white-warm);
  border: 0;
  background: transparent;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.accordion__item button::after {
  flex: 0 0 auto;
  color: var(--gold-light);
  content: "+";
  font-size: 1.35rem;
}

.accordion__item button[aria-expanded="true"]::after {
  content: "−";
}

.accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}

.accordion__panel p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0 1rem;
}

.accordion__item button[aria-expanded="true"] + .accordion__panel {
  grid-template-rows: 1fr;
}

.accordion__item button[aria-expanded="true"] + .accordion__panel p {
  padding-bottom: 1rem;
}

.final-cta {
  padding: clamp(5rem, 10vw, 8rem) 0;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .58), rgba(5, 5, 5, .95)),
    url("/assets/images/lectura-cafe.webp") center / cover no-repeat;
}

.final-cta__inner {
  max-width: 760px;
  margin-inline: auto;
}

.final-cta__inner p {
  margin-top: 1rem;
}

.site-footer {
  padding: 3rem 0 1.2rem;
  border-top: 1px solid var(--line);
  background: #030302;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .6fr .6fr;
  gap: 2rem;
}

.site-footer h2 {
  margin-bottom: .8rem;
  color: var(--gold-light);
  font-family: var(--body);
  font-size: .92rem;
}

.site-footer a:not(.brand) {
  display: block;
  margin-bottom: .35rem;
  color: var(--muted);
}

.footer__note {
  width: min(100% - 2rem, var(--container));
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 175, 55, .18);
  font-size: .86rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 12;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: #1f9f5a;
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
}

.whatsapp-float img {
  filter: brightness(0) invert(1);
}

.legal-page {
  padding: 7rem 0 4rem;
}

.legal-body .site-header {
  top: 0;
}

.legal-page article {
  max-width: 860px;
  margin-inline: auto;
}

.legal-page h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.legal-page h2 {
  margin-top: 2rem;
  margin-bottom: .8rem;
  color: var(--gold-light);
  font-family: var(--body);
  font-size: 1.25rem;
}

.legal-page ul {
  color: var(--muted);
}
