/* ===========================================================
   Bronceado Bogotá — Aero Bronzat
   Estética: dorado #F0AB18 sobre negro, cálida y premium.
   =========================================================== */

:root {
  --gold: #F0AB18;
  --gold-light: #ffd987;
  --gold-bright: #fdd446;
  --gold-deep: #c8881a;
  --wa: #25d366;
  --wa-dark: #1ebe5a;

  --bg: #0a0807;
  --bg-2: #14100c;
  --bg-3: #1c1611;
  --surface: #1a1410;
  --surface-2: #221a13;
  --line: rgba(240, 171, 24, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);

  --text: #f4ece1;
  --text-dim: #b9ab98;
  --text-muted: #8a7d6c;
  --on-gold: #2a1c05;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 18px 40px -18px rgba(240, 171, 24, 0.45);
  --maxw: 1180px;

  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.25rem; }
.gold { color: var(--gold); }
strong { color: #fff; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 820px; }
.center { text-align: center; }
.muted { color: var(--text-muted); }
.small { font-size: 0.86rem; line-height: 1.55; }
.mt { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; border: 0; cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  line-height: 1; text-align: center;
}
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-block { display: flex; width: 100%; }

.btn-wa { background: var(--wa); color: #04210f; box-shadow: 0 12px 28px -12px rgba(37, 211, 102, .7); }
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(37, 211, 102, .8); }

.btn-ghost { background: transparent; color: var(--text); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.wa-ico { width: 19px; height: 19px; flex: 0 0 auto; background: currentColor;
  -webkit-mask: var(--wa-mask) center/contain no-repeat; mask: var(--wa-mask) center/contain no-repeat; }
:root { --wa-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16.04 3C9.4 3 4 8.4 4 15.04c0 2.12.55 4.19 1.6 6.02L4 29l8.13-1.55a12 12 0 0 0 3.9.65h.01C22.68 28.1 28 22.7 28 16.06 28 9.4 22.68 3 16.04 3Zm0 22.04c-1.2 0-2.39-.32-3.42-.93l-.24-.14-4.82.92.92-4.7-.16-.25a9.98 9.98 0 0 1-1.53-5.31c0-5.52 4.5-10.01 10.05-10.01 2.68 0 5.2 1.05 7.1 2.94a9.93 9.93 0 0 1 2.94 7.08c0 5.52-4.5 10.01-10.05 10.01Zm5.5-7.49c-.3-.15-1.78-.88-2.06-.98-.28-.1-.48-.15-.68.15-.2.3-.78.98-.95 1.18-.18.2-.35.22-.65.07-.3-.15-1.27-.47-2.42-1.49-.9-.8-1.5-1.79-1.67-2.09-.18-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.18.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.68-1.63-.93-2.23-.24-.59-.49-.51-.68-.52l-.58-.01c-.2 0-.52.07-.8.37-.27.3-1.05 1.03-1.05 2.5 0 1.48 1.08 2.9 1.23 3.1.15.2 2.12 3.24 5.14 4.54.72.31 1.28.5 1.71.64.72.23 1.37.2 1.89.12.58-.09 1.78-.73 2.03-1.43.25-.7.25-1.3.18-1.43-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E"); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 8, 7, 0.72); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(10, 8, 7, 0.94); box-shadow: 0 8px 30px -16px rgba(0,0,0,.9); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav-link { font-family: var(--font-head); font-weight: 600; font-size: .96rem; color: var(--text-dim); position: relative; padding: 4px 0; transition: color .2s; }
.nav-link:hover { color: var(--gold); }
.nav-link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold); transition: width .25s ease; }
.nav-link:hover::after { width: 100%; }
.nav-cta { margin-left: 6px; padding: 11px 20px; font-size: .92rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2.5px; background: var(--gold); border-radius: 3px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: 120px 0 90px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url("../../imagenes/bg-rostro.webp") right center / cover no-repeat;
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  /* Manto degradado: oscurece el lado del texto (izq), deja ver el rostro (der) */
  background: linear-gradient(90deg,
    rgba(8,6,5,.82) 0%, rgba(8,6,5,.58) 36%, rgba(8,6,5,.18) 66%, rgba(8,6,5,0) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.eyebrow { font-family: var(--font-head); font-weight: 700; text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; color: var(--gold); margin-bottom: 18px; }
.hero h1 { font-size: clamp(2.3rem, 5.6vw, 4rem); font-weight: 800; margin-bottom: 22px; text-shadow: 0 2px 6px rgba(0,0,0,.6), 0 4px 22px rgba(0,0,0,.5); }
.hero-sub { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--text-dim); max-width: 560px; margin-bottom: 34px; }
/* Sombra solo en el texto del hero para legibilidad sobre la foto (no oscurece la imagen) */
.hero .eyebrow,
.hero-sub,
.hero-badges li { text-shadow: 0 1px 2px rgba(0,0,0,.7), 0 2px 10px rgba(0,0,0,.55); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero-badges { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 28px; }
.hero-badges li { position: relative; padding-left: 26px; font-size: .98rem; color: var(--text-dim); }
.hero-badges li::before { content: "✓"; position: absolute; left: 0; top: -1px; color: var(--gold); font-weight: 800; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-dark { background: var(--bg-2); }
.section-head { max-width: 720px; margin: 0 auto clamp(38px, 5vw, 60px); text-align: center; }
.section-lead { color: var(--text-dim); font-size: 1.08rem; margin-top: 14px; }

/* Fondos de sección con imagen (coherencia colorimétrica con el hero) */
#ideal { background: var(--bg) url("../../imagenes/bg-ideal.webp") center / cover no-repeat; }
#como-funciona { background: var(--bg) url("../../imagenes/bg-como.webp") center / cover no-repeat; }
#ideal .section-head,
#como-funciona .section-head { text-shadow: 0 1px 2px rgba(0,0,0,.78), 0 2px 14px rgba(0,0,0,.6); }

/* Fondos sutiles (overlay oscuro fuerte para no afectar legibilidad de tarjetas/texto) */
#sesiones { background:
    linear-gradient(rgba(13,10,8,.88), rgba(13,10,8,.92)),
    url("../../imagenes/bg-sec-c.webp") center / cover no-repeat, var(--bg-2); }
#intensidad { background:
    linear-gradient(rgba(10,8,7,.84), rgba(10,8,7,.9)),
    url("../../imagenes/bg-sec-a.webp") center / cover no-repeat, var(--bg); }
#reservas { background:
    linear-gradient(rgba(13,10,8,.86), rgba(13,10,8,.92)),
    url("../../imagenes/bg-sec-b.webp") center bottom / cover no-repeat, var(--bg-2); }
#testimonios { background:
    linear-gradient(rgba(10,8,7,.85), rgba(10,8,7,.9)),
    url("../../imagenes/bg-sec-c.webp") center / cover no-repeat, var(--bg); }
#faq { background:
    linear-gradient(rgba(13,10,8,.88), rgba(13,10,8,.93)),
    url("../../imagenes/bg-sec-a.webp") right top / cover no-repeat, var(--bg-2); }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}

/* ---------- Segments (Ideal para ti) ---------- */
.segments { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.segment {
  text-align: center;
  background: linear-gradient(180deg, rgba(34, 26, 19, 0.92) 0%, rgba(18, 14, 10, 0.96) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px 26px;
  box-shadow: var(--shadow);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.segment:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.seg-icon { display: inline-flex; color: var(--gold); margin-bottom: 14px; }
.seg-icon svg { width: 32px; height: 32px; }
.seg-photo {
  margin: 0 0 16px; border-radius: var(--radius-sm); overflow: hidden;
  aspect-ratio: 4 / 5; border: 1px solid var(--line-soft); background: var(--bg-2);
}
.seg-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.segment:hover .seg-photo img { transform: scale(1.05); }
.segment h3 { color: var(--gold); font-size: 1.15rem; margin-bottom: 6px; }
.segment p { color: var(--text-dim); font-size: .92rem; line-height: 1.55; }

@media (max-width: 600px) {
  .segments { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .segment { padding: 16px 14px 20px; }
  .segment h3 { font-size: 1.02rem; }
  .segment p { font-size: .84rem; }
}

/* ---------- Steps ---------- */
.steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; margin-bottom: 30px; }
.step { text-align: center; padding: 26px 16px; background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius); position: relative; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--on-gold); font-family: var(--font-head); font-weight: 800; font-size: 1.2rem; margin-bottom: 14px; }
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--text-dim); }
.timeline-note { max-width: 760px; margin: 0 auto; }
.timeline-note h3 { color: var(--gold); margin-bottom: 14px; }
.time-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.time-list li { color: var(--text-dim); font-size: .96rem; position: relative; padding-left: 16px; }
.time-list li::before { content: "•"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Plans ---------- */
.plans { align-items: stretch; }
.plan { display: flex; flex-direction: column; padding: 0; overflow: hidden; position: relative; border: 1.5px solid var(--gold); transition: transform .25s ease, box-shadow .25s ease; }
.plan:hover { transform: translateY(-6px); }
.plan-img { aspect-ratio: 3 / 4; overflow: hidden; background: #222; }
.plan-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.plan-body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.plan-name { font-size: 1.5rem; margin-bottom: 4px; }
.plan-price { font-family: var(--font-head); font-weight: 800; font-size: 2rem; color: var(--gold); line-height: 1; margin: 6px 0 2px; }
.plan-duration { color: var(--text-muted); font-size: .9rem; margin-bottom: 16px; }
.plan-features { list-style: none; margin-bottom: 22px; flex: 1; }
.plan-features li { position: relative; padding-left: 26px; margin-bottom: 9px; color: var(--text-dim); font-size: .96rem; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 800; }
.plan-featured { border: 1.5px solid var(--gold); box-shadow: var(--shadow-gold); }
.plan-tag { display: inline-block; align-self: flex-start; margin-bottom: 10px; background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: var(--on-gold); font-family: var(--font-head); font-weight: 700; font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; padding: 6px 13px; border-radius: 999px; }
.casa-card { margin-top: 34px; }
.casa-layout { display: grid; grid-template-columns: minmax(220px, 320px) 1fr; gap: 32px; align-items: center; }
.carpa-photo { margin: 0; }
.carpa-photo img { display: block; width: 100%; height: auto; border-radius: 14px; }
.casa-card h3 { color: var(--gold); margin-bottom: 10px; }
.casa-sub { margin-top: 24px; }
.plans-note { text-align: center; margin-top: 28px; color: var(--text-dim); }
.plans-note a { color: var(--gold); font-weight: 700; border-bottom: 1px solid var(--line); }

/* ---------- Extras ---------- */
.extras { margin-top: 34px; }
.extras-card h3 { color: var(--gold); margin-bottom: 18px; }
.dl { list-style: none; }
.dl li { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; border-bottom: 1px dashed var(--line-soft); font-size: .96rem; color: var(--text-dim); }
.dl li:last-child { border-bottom: 0; }
.dl b { color: var(--gold); white-space: nowrap; font-family: var(--font-head); }

/* ---------- Intensidad (carrusel deslizable) ---------- */
.intensity {
  display: flex; gap: 18px;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 8px 0 16px; margin: 0 -2px;
  scrollbar-width: thin; scrollbar-color: var(--gold-deep) transparent;
}
.intensity::-webkit-scrollbar { height: 6px; }
.intensity::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 999px; }
.intensity::-webkit-scrollbar-track { background: transparent; }
.intensity-card {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  flex: 0 0 calc((100% - 3 * 18px) / 4); scroll-snap-align: start;
  aspect-ratio: 4 / 5; border: 1px solid var(--line); box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.intensity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-gold); }
.intensity-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.intensity-card:hover img { transform: scale(1.05); }
.intensity-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 12px 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; letter-spacing: .01em;
  color: var(--gold); text-align: center;
  background: linear-gradient(to top, rgba(8, 6, 4, 0.94) 12%, rgba(8, 6, 4, 0));
}

/* ---------- Vegano ---------- */
.section-gold { background: linear-gradient(120deg, #1d1407 0%, var(--bg-2) 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.vegano-grid { display: grid; grid-template-columns: 320px 1fr; gap: 50px; align-items: center; }
.vegano-media { display: flex; justify-content: center; }
.vegano-photo {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line);
  box-shadow: var(--shadow-gold);
}
.vegano-copy h2 { margin-bottom: 16px; }
.vegano-copy > p { color: var(--text-dim); margin-bottom: 22px; }

.check-list { list-style: none; }
.check-list li { position: relative; padding-left: 30px; margin-bottom: 12px; color: var(--text-dim); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%; background: var(--gold); -webkit-mask: var(--check-mask) center/13px no-repeat; mask: var(--check-mask) center/13px no-repeat; }
:root { --check-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E"); }

/* ---------- Reservas ---------- */
.reservas-grid .card h3 { color: var(--gold); margin-bottom: 18px; }
.pay-chips { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
.pay-chips li { background: var(--surface-2); border: 1px solid var(--line-soft); border-radius: 999px; padding: 8px 16px; font-size: .88rem; color: var(--text-dim); }
.policy { color: var(--text-muted); border-top: 1px solid var(--line-soft); padding-top: 14px; margin-top: 14px; }
.reservas-grid + .center { margin-top: 36px; }

/* ---------- Testimonials ---------- */
.testimonial { position: relative; }
.testimonial::before { content: "“"; font-family: var(--font-head); font-size: 4rem; line-height: 1; color: var(--gold); opacity: .35; position: absolute; top: 8px; right: 22px; }
.testimonial p { font-size: 1.12rem; color: var(--text); font-style: italic; margin-bottom: 14px; }
.testimonial cite { color: var(--gold); font-style: normal; font-weight: 700; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq-item { background: var(--surface); border: 1px solid var(--line-soft); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 56px 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; position: relative; transition: color .2s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; font-weight: 600; color: var(--gold); transition: transform .25s; line-height: 1; }
.faq-item[open] summary { color: var(--gold); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body { padding: 0 24px 22px; color: var(--text-dim); }

/* ---------- CTA final ---------- */
.cta-final { background:
    linear-gradient(180deg, rgba(10,8,7,.62) 0%, rgba(10,8,7,.30) 45%, rgba(10,8,7,.20) 100%),
    url("../../imagenes/cta-fondo-dorado.webp") center / cover no-repeat,
    var(--bg); }
.cta-final h2 { margin-bottom: 14px; }
.cta-final .section-lead { max-width: 620px; margin: 0 auto 30px; }
.cta-final h2,
.cta-final .section-lead { text-shadow: 0 1px 2px rgba(0,0,0,.85), 0 2px 16px rgba(0,0,0,.65); }

/* ---------- Footer ---------- */
.site-footer { background: #070504; border-top: 1px solid var(--line-soft); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr 1.3fr; gap: 40px; padding-bottom: 50px; }
.footer-brand img { height: 56px; width: auto; margin-bottom: 14px; }
.tagline { font-family: var(--font-head); color: var(--gold); font-weight: 600; font-style: italic; margin-bottom: 18px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: var(--gold); transition: background .2s, color .2s, transform .2s; }
.socials a:hover { background: var(--gold); color: var(--on-gold); transform: translateY(-2px); }
.footer-col h4 { font-size: 1rem; margin-bottom: 14px; color: #fff; }
.footer-col a, .footer-col p { display: block; color: var(--text-dim); font-size: .94rem; margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 22px 0; }
.footer-bottom p { color: var(--text-muted); font-size: .85rem; text-align: center; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--wa); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.7); transition: transform .2s;
  animation: wa-pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
@keyframes wa-pulse {
  0% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 12px 30px -8px rgba(37,211,102,.7), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal animation ---------- */
.js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .vegano-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .vegano-media { order: -1; }
  .vegano-photo { max-width: 300px; margin: 0 auto; }
  .check-list { display: inline-block; text-align: left; }
}

@media (max-width: 860px) {
  .nav {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(10,8,7,.98); backdrop-filter: blur(14px);
    padding: 12px 22px 26px; border-bottom: 1px solid var(--line);
    transform: translateY(-120%); transition: transform .35s ease; max-height: calc(100vh - 76px); overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav-link { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-link::after { display: none; }
  .nav-cta { margin: 16px 0 0; }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  /* En móvil la clienta ve primero el plan que más se vende; el ancla VIP queda después */
  .plans .plan-featured { order: -1; }
  .casa-layout { grid-template-columns: 1fr; }
  .carpa-photo { max-width: 320px; margin: 0 auto; }
  body { font-size: 16px; }
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
  .intensity-card { flex-basis: 42%; }
  .time-list { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; padding: 90px 0 70px; }
  .hero-cta .btn { flex: 1 1 auto; }
  /* En móvil el texto ocupa todo el ancho sobre la foto: manto vertical más uniforme */
  .hero::after {
    background: linear-gradient(180deg,
      rgba(8,6,5,.62) 0%, rgba(8,6,5,.5) 38%, rgba(8,6,5,.6) 68%, rgba(8,6,5,.88) 100%);
  }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .plans, .testimonials, .reservas-grid, .extras { grid-template-columns: 1fr; }
  .intensity-card { flex-basis: 72%; }
  .steps { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .hero-badges { gap: 10px 20px; }
  .hero-badges li { font-size: .9rem; }
  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }
  .plan-img { aspect-ratio: 4/5; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .wa-float { animation: none; }
}
