/* =============================================================
   1. Tokens — Obsidiana & Bronce
   ============================================================= */
:root {
  --bg:          #0A0A0C;
  --bg-2:        #16161A;
  --bg-3:        #1D1B17;
  --bronze:      #D9822E;
  --bronze-glow: #F4A93D;
  --cream:       #F2EFE9;
  --mute:        #8B8680;
  --line:        rgba(242, 239, 233, 0.09);
  --line-bronze: rgba(217,130,46, 0.38);

  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
  --section-gap: 120px;
}

@media (min-width: 720px) {
  :root { --section-gap: 160px; }
}
@media (min-width: 1280px) {
  :root { --section-gap: 180px; }
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
  background: var(--bg);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
  position: relative;
}
@media (min-width: 720px) {
  body { font-size: 18px; }
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  text-wrap: balance;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--cream);
}
em { font-style: italic; color: var(--bronze-glow); }
::selection { background: var(--bronze); color: var(--bg); }

:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 4px; font-weight: 600; font-size: .9rem;
  transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* Sitewide film grain — subtle, cinematic, never flat */
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}
@media (min-width: 720px) { .container { padding-inline: 40px; } }

.kicker {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-glow);
  font-weight: 600;
}
@media (min-width: 720px) { .kicker { font-size: 12px; } }

.section {
  position: relative;
  padding-block: var(--section-gap);
  overflow: clip;
}

.section-head {
  max-width: 46ch;
  margin-bottom: 48px;
}
@media (min-width: 720px) { .section-head { margin-bottom: 64px; } }

/* Ambient bronze halo — breathes behind headings, ties every section together */
.section-halo {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 65%;
  background: radial-gradient(46% 60% at 50% 0%, rgba(217,130,46,0.13), transparent 72%);
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  animation: haloBreathe 10s ease-in-out infinite;
}
.section-halo.low {
  inset: auto -10% -25% -10%;
  height: 60%;
}
@keyframes haloBreathe {
  0%, 100% { opacity: 1; }
  50% { opacity: .55; }
}
@media (prefers-reduced-motion: reduce) {
  .section-halo { animation: none; }
}

/* reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; } /* defensive: never let split text hide */

.reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  filter: blur(3px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out), filter .8s var(--ease-out);
}
.reveal-word.is-visible { opacity: 1; transform: none; filter: blur(0); }

/* =============================================================
   4. Typography scale
   ============================================================= */
.h1 {
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 0.98;
  max-width: 18ch;
}
.h2 {
  font-size: clamp(2rem, 5.6vw, 3.2rem);
  max-width: 16ch;
}
.h3 {
  font-size: clamp(1.4rem, 3.2vw, 1.8rem);
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #ddd7ca;
  max-width: 42ch;
  line-height: 1.7;
}
.body-text {
  color: #cfc9bc;
  max-width: 60ch;
  line-height: 1.75;
}
.body-text + .body-text { margin-top: 1.2em; }

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 1rem 1.9rem;
  font-family: var(--sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: 2px;
  overflow: hidden;
  white-space: nowrap;
}
.btn-primary {
  background: var(--bronze);
  color: #16110b;
  box-shadow: 0 18px 40px -14px rgba(217,130,46,0.55);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,241,222,0.6) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .6s var(--ease-out);
}
.btn-primary:hover::before { transform: translateX(120%); }

.btn-ghost {
  border: 1px solid var(--line-bronze);
  color: var(--cream);
  background: transparent;
  transition: border-color .4s var(--ease-out), background .4s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--bronze); background: rgba(217,130,46,0.08); }

.micro {
  font-size: .8rem;
  color: var(--mute);
  margin-top: .9rem;
}

/* Nav */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .5s var(--ease-out), border-color .5s var(--ease-out);
}
.nav.is-solid {
  background: rgba(10,10,12,0.88);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav-inner {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 720px) { .nav-inner { padding-inline: 40px; } }
.nav-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav-brand em { color: var(--bronze-glow); font-style: normal; }
.nav-cta {
  padding: .6rem 1.2rem;
  font-size: .82rem;
}

/* Recurring CTA band */
.cta-band {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 40px;
  background: var(--bg-2);
}
.cta-band-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
@media (min-width: 720px) {
  .cta-band-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-band-text .kicker { display: block; margin-bottom: .4em; }
.cta-band-text p { font-family: var(--serif); font-size: 1.3rem; color: var(--cream); }

/* Cards */
.card {
  background: linear-gradient(165deg, var(--bg-2), var(--bg-3));
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 32px 26px;
  transition: border-color .5s var(--ease-out), transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.card:hover {
  border-color: var(--line-bronze);
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -30px rgba(217,130,46,0.35);
}
.card .num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--bronze-glow);
  margin-bottom: 1.2em;
  display: block;
}
.card h3 { font-size: 1.25rem; margin-bottom: .5em; }
.card p { color: #b9b2a2; font-size: .95rem; line-height: 1.6; }

/* Grid helpers */
.grid-2 { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .grid-2 { grid-template-columns: 1fr 1fr; gap: 28px; } }
.grid-4 { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 540px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Ruta cards */
.ruta {
  padding: 36px 28px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--bg-2), var(--bg));
  position: relative;
  transition: border-color .5s var(--ease-out), transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.ruta:hover { border-color: var(--line-bronze); }
.ruta::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--bronze), transparent);
  opacity: .7;
}
.ruta h3 { font-size: 1.4rem; margin-bottom: .6em; }
.ruta h3 em { color: var(--bronze-glow); font-style: italic; }
.ruta ul { list-style: none; color: #c8c1b3; font-size: .95rem; line-height: 2; }
.ruta ul li::before { content: "— "; color: var(--bronze); }

/* Ruta icons — geometric glyphs for interna/externa, breathing gently */
.ruta-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
}
.ruta-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* Interna: concentric rings around a still core — awareness turning inward */
.ruta-icon-ring {
  fill: none;
  stroke: var(--bronze);
  stroke-width: 1.1;
  transform-origin: 32px 32px;
}
.ruta-icon-ring.ring-1 {
  stroke: var(--line-bronze);
  animation: ringBreatheOut 8s var(--ease-soft) infinite;
}
.ruta-icon-ring.ring-2 {
  animation: ringBreatheIn 8s var(--ease-soft) infinite;
}
.ruta-icon-core {
  fill: var(--bronze-glow);
  transform-origin: 32px 32px;
  animation: coreBreathe 8s var(--ease-soft) infinite;
}
@keyframes ringBreatheOut {
  0%, 100% { transform: scale(1); opacity: .6; }
  50%      { transform: scale(1.08); opacity: 1; }
}
@keyframes ringBreatheIn {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(.92); }
}
@keyframes coreBreathe {
  0%, 100% { opacity: .75; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.25); }
}

/* Externa: a core radiating outward rays — energy reaching out */
.ruta-icon-rays {
  transform-origin: 32px 32px;
  animation: raysBreathe 8s var(--ease-soft) infinite;
}
.ruta-icon-rays line {
  stroke: var(--bronze);
  stroke-width: 1.4;
  stroke-linecap: round;
}
@keyframes raysBreathe {
  0%, 100% { transform: scale(1); opacity: .7; }
  50%      { transform: scale(1.14); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .ruta-icon-ring, .ruta-icon-core, .ruta-icon-rays { animation: none; }
}

/* =============================================================
   6. Sections
   ============================================================= */

/* --- Hero — photographic, cinematic, never flat --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 72px;
  overflow: clip;
  isolation: isolate;
}
.hero-media {
  position: absolute;
  inset: -4% -4% -4% -4%; /* slight overscan for parallax headroom */
  z-index: -2;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  will-change: transform;
}
/* Scrim: the only permitted addition over the hero photo — legibility, not treatment */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg,
      rgba(10,10,12,0) 0%,
      rgba(10,10,12,0.04) 10%,
      rgba(10,10,12,0.25) 22%,
      rgba(10,10,12,0.44) 34%,
      rgba(10,10,12,0.46) 58%,
      rgba(10,10,12,0.54) 76%,
      rgba(10,10,12,0.58) 92%,
      rgba(10,10,12,0.59) 100%
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}
.hero-title {
  font-size: clamp(2.15rem, 7.3vw, 4.6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  max-width: 21ch;
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 2px 10px rgba(0,0,0,0.85), 0 6px 34px rgba(0,0,0,0.75);
}
.hero-title em {
  color: var(--bronze-glow);
  text-shadow: 0 1px 3px rgba(0,0,0,0.95), 0 0 34px rgba(244,169,61,0.55), 0 6px 34px rgba(0,0,0,0.75);
}
.hero-sub {
  font-size: clamp(0.98rem, 1.9vw, 1.22rem);
  color: #eae5da;
  max-width: 46ch;
  line-height: 1.6;
  margin-bottom: 28px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.9), 0 2px 16px rgba(0,0,0,0.8);
}
@media (min-width: 720px) {
  .hero-title { font-size: clamp(2.3rem, 5vw, 3.55rem); max-width: 30ch; margin-bottom: 22px; }
  .hero-sub { max-width: 50ch; margin-bottom: 30px; }
}
@media (min-width: 1280px) {
  .hero-title { max-width: 34ch; }
}
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 0; }

.scroll-cue {
  position: absolute;
  bottom: 28px;
  right: 24px;
  z-index: 2;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mute);
}
@media (min-width: 720px) { .scroll-cue { display: flex; right: 40px; } }
.scroll-cue-line {
  width: 1px; height: 34px;
  background: linear-gradient(var(--bronze), transparent);
  animation: scrollCue 2.6s var(--ease-soft) infinite;
}
@keyframes scrollCue {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* --- Espejo (mirror) --- */
.mirror {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mirror-quotes { display: flex; flex-direction: column; gap: 22px; margin-block: 40px; }
.mirror-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3.6vw, 1.9rem);
  color: var(--cream);
  font-style: italic;
}
.mirror-quote::before { content: "\201C"; color: var(--bronze); }
.mirror-quote::after { content: "\201D"; color: var(--bronze); }
.mirror-close { max-width: 52ch; margin-top: 44px; color: #cfc9bc; font-size: 1.05rem; }

/* --- Diagnóstico --- */
.diagnostico .h2 em { color: var(--bronze-glow); }

/* --- Rutas --- */

/* --- Qué incluye --- */

/* --- El camino / diagrama circular (signature) --- */
.camino { position: relative; }
.camino-wrap {
  display: grid;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .camino-wrap { grid-template-columns: 0.9fr 1.1fr; gap: 40px; }
}
.camino-diagram {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
}
.camino-diagram svg { width: 100%; height: 100%; overflow: visible; }
.camino-ring-outer {
  animation: ringSpin 140s linear infinite;
  transform-origin: 210px 210px;
}
@keyframes ringSpin {
  to { transform: rotate(360deg); }
}
.arc {
  fill: none;
  stroke: rgba(242,239,233,0.13);
  stroke-width: 10;
  transition: stroke .7s var(--ease-out), filter .7s var(--ease-out);
}
.arc.is-active {
  stroke: var(--bronze);
  filter: drop-shadow(0 0 12px rgba(217,130,46,0.65));
}
.camino-center {
  font-family: var(--serif);
  font-size: 2.2rem;
  fill: var(--cream);
}
.camino-center-sub {
  font-family: var(--sans);
  font-size: .62rem;
  letter-spacing: .18em;
  fill: var(--mute);
}
.phase-dot {
  transition: fill .6s var(--ease-out), r .6s var(--ease-out);
  fill: rgba(242,239,233,0.32);
}
.phase-dot.is-active { fill: var(--bronze-glow); }

.camino-list { display: flex; flex-direction: column; gap: 4px; }
.camino-item {
  padding: 22px 4px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: baseline;
  opacity: .42;
  transition: opacity .6s var(--ease-out);
}
.camino-item:last-child { border-bottom: 1px solid var(--line); }
.camino-item.is-active { opacity: 1; }
.camino-item .num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--bronze-glow);
  min-width: 2.2ch;
}
.camino-item h4 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: .3em; color: var(--cream); }
.camino-item p { font-size: .92rem; color: #b9b2a2; max-width: 42ch; }
.camino-question {
  margin-top: 40px;
  padding: 22px 24px;
  border-left: 2px solid var(--bronze);
  background: rgba(217,130,46,0.06);
}
.camino-question p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
}
.camino-lede { color: #cfc9bc; max-width: 56ch; line-height: 1.75; margin-bottom: 12px; }

/* --- Para quién --- */
.quien-grid { display: grid; gap: 24px; }
@media (min-width: 720px) { .quien-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.quien-card { padding: 32px 28px; border: 1px solid var(--line); }
.quien-card.si { border-color: var(--line-bronze); background: rgba(217,130,46,0.045); }
.quien-card h3 { font-size: 1.2rem; margin-bottom: .7em; }
.quien-card.si h3 { color: var(--bronze-glow); }
.quien-card p { color: #c8c1b3; line-height: 1.75; }

/* --- Quién te acompaña — foto real, distinto recorte --- */
.acompana { display: grid; gap: 44px; align-items: center; }
@media (min-width: 860px) { .acompana { grid-template-columns: 0.85fr 1.15fr; gap: 60px; } }
.acompana-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: clip;
  border: 1px solid var(--line-bronze);
}
.acompana-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
.acompana-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,12,0.55) 100%);
  pointer-events: none;
}
.acompana-name {
  position: absolute;
  bottom: 18px;
  left: 20px;
  z-index: 1;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: .03em;
}

/* --- Testimonio --- */
.testimonio {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 780px) {
  .testimonio { grid-template-columns: 0.55fr 1.45fr; gap: 48px; align-items: center; }
}
.testimonio-photo {
  aspect-ratio: 4 / 5;
  max-width: 320px;
  overflow: clip;
  border: 1px solid var(--line-bronze);
  position: relative;
}
.testimonio-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,12,0.35) 100%);
  pointer-events: none;
}
.testimonio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonio-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.3vw, 1.35rem);
  line-height: 1.65;
  color: var(--cream);
}
.testimonio-quote + .testimonio-quote { margin-top: 1.1em; }
.testimonio-quote::before { content: "\201C"; color: var(--bronze); }
.testimonio-attr {
  margin-top: 22px;
  font-family: var(--sans);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--bronze-glow);
}

.testimonios-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-top: 40px;
}
@media (min-width: 780px) {
  .testimonios-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.testimonio-card { display: flex; flex-direction: column; }
.testimonio-card .testimonio-quote { font-size: clamp(1rem, 1.7vw, 1.08rem); }
.testimonio-card .testimonio-attr { margin-top: auto; padding-top: 22px; }

/* --- Garantía --- */
.garantia {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.garantia-inner { max-width: 62ch; }
.garantia .h2 { margin-bottom: 28px; }
.garantia p { margin-bottom: 1.1em; }

/* --- Precio final --- */
.precio { text-align: center; }
.precio-inner { max-width: 560px; margin-inline: auto; }
.precio .h2 { margin-inline: auto; }
.precio-num {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 12vw, 5.5rem);
  color: var(--bronze-glow);
  line-height: 1;
  margin-block: 18px;
}
.precio-num sup { font-size: .4em; top: -1.4em; }
.precio-sub { color: var(--mute); margin-bottom: 36px; }
.precio .btn { margin-inline: auto; }

/* --- Cierre --- */
.cierre { text-align: center; }
.cierre-inner { max-width: 680px; margin-inline: auto; position: relative; z-index: 1; }
.cierre .h2 { margin-inline: auto; max-width: 20ch; }
.cierre-sign {
  margin-top: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--bronze-glow);
}

/* --- FAQ --- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--cream);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  color: var(--bronze);
  flex-shrink: 0;
  transition: transform .4s var(--ease-out);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: #b9b2a2;
  max-width: 56ch;
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding-block: 56px 40px;
  background: var(--bg-2);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 720px) {
  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-end; }
}
.footer-brand { font-family: var(--serif); font-size: 1.4rem; }
.footer-brand em { color: var(--bronze-glow); font-style: normal; }
.footer-line { font-size: .85rem; color: var(--mute); max-width: 34ch; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .78rem;
  color: var(--mute);
}
@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* =============================================================
   7. Premium interactions — cursor, tilt, progress, accordion
   ============================================================= */

/* Scroll progress — thin line filling as the page is read */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  z-index: 110;
  background: transparent;
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--bronze), var(--bronze-glow));
  transform: scaleX(0);
  transform-origin: left;
  box-shadow: 0 0 12px rgba(244,169,61,0.6);
}

/* Custom cursor — desktop, fine pointer only */
.cursor {
  position: fixed;
  top: 0; left: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease-out);
}
.is-cursor-ready .cursor { opacity: 1; }
.cursor-dot {
  width: 5px; height: 5px;
  margin: -2.5px 0 0 -2.5px;
  border-radius: 50%;
  background: var(--bronze-glow);
}
.cursor-ring {
  width: 34px; height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  border: 1px solid var(--line-bronze);
  transition: width .35s var(--ease-out), height .35s var(--ease-out), margin .35s var(--ease-out), border-color .35s var(--ease-out), background .35s var(--ease-out);
}
.is-cursor-hover .cursor-ring {
  width: 56px; height: 56px;
  margin: -28px 0 0 -28px;
  border-color: var(--bronze);
  background: rgba(217,130,46,0.08);
}
.has-cursor, .has-cursor * { cursor: none; }

/* Tilt — subtle 3D lift on cards, JS-driven transform on fine pointers */
.card, .ruta {
  transform-style: preserve-3d;
  will-change: transform;
}
.card.is-tilting, .ruta.is-tilting {
  transition: transform .12s var(--ease-out), border-color .5s var(--ease-out), box-shadow .5s var(--ease-out);
}

/* FAQ — animated height accordion (progressive enhancement over native <details>) */
.faq-body {
  display: block;
  overflow: hidden;
  height: 0;
  transition: height .5s var(--ease-out);
}
.faq-item[open] .faq-body { height: auto; }
.faq-body p { padding: 0 4px 24px; }

/* Precio — framed panel treatment */
.precio-panel {
  position: relative;
  padding: 56px 32px;
  border: 1px solid var(--line-bronze);
  background: linear-gradient(180deg, var(--bg-2), var(--bg-3));
}
@media (min-width: 720px) { .precio-panel { padding: 72px 64px; } }
.precio-panel::before,
.precio-panel::after,
.precio-panel .tick-tl,
.precio-panel .tick-br {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--bronze);
}
.precio-panel::before { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.precio-panel::after { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
.precio-panel .tick-tl { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.precio-panel .tick-br { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }

@media (prefers-reduced-motion: reduce) {
  .cursor-ring { transition: none; }
}

/* =============================================================
   8. Reduced-motion — only truly intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .camino-ring-outer { animation: none; }
  .scroll-cue-line { animation: none; }
  .section-halo { animation: none; }
  .hero-media img { transform: none !important; }
}

/* Hide custom cursor + all JS-only interactions on touch devices */
@media (hover: none), (pointer: coarse) {
  .cursor { display: none; }
}
