/* =========================================================
   Lela Eventos — hoja de estilos
   Sistema de diseño: quincho + naturaleza + descanso + eventos
   ========================================================= */

/* ---------- Tokens ---------- */
:root{
  /* Paleta — inspirada en las fotos reales: paredes cálidas, luces
     de exterior color ámbar, follaje verde oliva y noches profundas. */
  --bg: #FAF5EC;
  --surface: #FFFFFF;
  --surface-2: #F3ECDC;
  --ink: #2A2418;
  --ink-soft: #6B5F4C;
  --ink-faint: #655A49;
  --line: #E8DFCC;

  --primary: #414F2B;
  --primary-dark: #2E3820;
  --primary-tint: #E7ECDD;

  --accent: #D98F2B;
  --accent-dark: #B5721A;
  --accent-tint: #FBEBD2;
  --accent-ink: #82500F; /* variante con contraste AA para texto sobre --bg */

  --danger: #B0402F;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 10px rgba(42,36,24,0.08);
  --shadow-md: 0 10px 30px rgba(42,36,24,0.12);
  --shadow-lg: 0 20px 50px rgba(42,36,24,0.22);

  --nav-h: 64px;
  --bottombar-h: 68px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

@media (prefers-color-scheme: dark){
  :root{
    --bg: #17140F;
    --surface: #201B14;
    --surface-2: #262019;
    --ink: #F3ECDC;
    --ink-soft: #C9BEA9;
    --ink-faint: #8F836E;
    --line: #332C21;
    --primary: #8CA46A;
    --primary-dark: #6E8654;
    --primary-tint: #232A1B;
    --accent-ink: #E8A33D;
    --accent: #E8A33D;
    --accent-dark: #F2B658;
    --accent-tint: #2C2314;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.35);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.45);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.55);
  }
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing:border-box; }
html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
}
body{
  margin:0;
  background:var(--bg);
  color:var(--ink);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.15;
  margin:0 0 .5em;
  color:var(--ink);
}
p{ margin:0 0 1em; color:var(--ink-soft); }
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *, *::before, *::after{
    animation-duration:0.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:0.001ms !important;
    scroll-behavior:auto !important;
  }
}

/* ---------- Skip link ---------- */
.skip-link{
  position:absolute; left:12px; top:-60px;
  background:var(--primary); color:#fff;
  padding:.75rem 1.1rem; border-radius:var(--radius-sm);
  z-index:1000; transition:top .2s var(--ease);
  font-weight:600;
}
.skip-link:focus{ top:12px; }

/* ---------- Focus ---------- */
:focus-visible{
  outline:3px solid var(--accent);
  outline-offset:3px;
  border-radius:6px;
}

/* ---------- Layout helpers ---------- */
.container{
  max-width:var(--container);
  margin-inline:auto;
  padding-inline:20px;
}
.section{ padding:64px 0; }
.section--tight{ padding:40px 0; }
.section-head{
  max-width:640px;
  margin:0 0 36px;
}
.eyebrow{
  display:inline-flex; align-items:center; gap:.5em;
  font-family:var(--font-body);
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--accent-ink);
  margin-bottom:.75em;
}
.eyebrow::before{
  content:""; width:22px; height:2px; background:var(--accent);
  display:inline-block; border-radius:2px;
}
.section-head h2{ font-size:clamp(1.7rem, 1.4rem + 1.4vw, 2.5rem); }
.section-head p{ font-size:1.05rem; }

@media (min-width:960px){
  .section{ padding:96px 0; }
}

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55em;
  padding:.95rem 1.5rem;
  border-radius:var(--radius-pill);
  font-weight:700;
  font-size:1rem;
  line-height:1;
  min-height:48px;
  transition:transform .18s var(--ease), box-shadow .18s var(--ease), background-color .18s var(--ease);
  white-space:nowrap;
}
.btn svg{ width:1.15em; height:1.15em; flex:none; }
.btn:active{ transform:scale(.97); }

.btn--accent{
  background:var(--accent);
  color:#2A1C05;
  box-shadow:0 10px 24px rgba(217,143,43,.35);
}
.btn--accent:hover{ background:var(--accent-dark); color:#1A1102; box-shadow:0 12px 28px rgba(217,143,43,.45); }

.btn--ghost{
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1.5px solid rgba(255,255,255,.55);
  backdrop-filter:blur(6px);
}
.btn--ghost:hover{ background:rgba(255,255,255,.22); }

.btn--outline{
  background:transparent;
  color:var(--primary);
  border:1.5px solid var(--primary);
}
.btn--outline:hover{ background:var(--primary-tint); }

.btn--block{ width:100%; }
.btn--sm{ padding:.7rem 1.15rem; min-height:40px; font-size:.92rem; }

/* ---------- Header ---------- */
.site-header{
  position:fixed; inset-inline:0; top:0;
  height:var(--nav-h);
  z-index:60;
  display:flex; align-items:center;
  transition:background-color .25s var(--ease), box-shadow .25s var(--ease), backdrop-filter .25s var(--ease);
}
.site-header .container{
  display:flex; align-items:center; justify-content:space-between;
  height:100%;
}
.brand{
  display:flex; align-items:center; gap:.65em;
  font-family:var(--font-display);
  font-weight:700;
  font-size:1.15rem;
  color:#fff;
  min-width:0;
}
.brand__label{
  overflow:hidden; text-overflow:ellipsis; white-space:nowrap;
}
@media (max-width:479.98px){
  .brand__label{ display:none; }
}
.brand__mark{
  width:38px; height:38px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:
    radial-gradient(120% 120% at 30% 22%, #5B6E3E 0%, #414F2B 42%, #2E3820 78%, #232B18 100%);
  border:1px solid rgba(217,143,43,.55);
  color:#E8A33D;
  font-family:var(--font-display);
  font-size:.92rem; font-weight:800; letter-spacing:-.03em;
  flex:none;
  text-shadow:0 1px 0 rgba(255,255,255,.25), 0 -1px 1px rgba(0,0,0,.55);
  box-shadow:
    0 4px 10px rgba(0,0,0,.35),
    inset 0 1px 1px rgba(255,255,255,.3),
    inset 0 -2px 3px rgba(0,0,0,.4);
}
.brand span{ color:inherit; }

.nav-desktop{
  display:none;
}
.nav-desktop ul{ display:flex; align-items:center; gap:2px; }
.nav-desktop a{
  display:inline-block;
  padding:.6rem .9rem;
  font-size:.95rem;
  font-weight:600;
  border-radius:var(--radius-pill);
  color:rgba(255,255,255,.88);
  transition:background-color .2s var(--ease), color .2s var(--ease);
}
.nav-desktop a:hover{ background:rgba(255,255,255,.14); color:#fff; }

.header-cta{ display:none; }

.header-actions{ display:flex; align-items:center; gap:.5rem; }

.header-wa{
  display:inline-flex; align-items:center; justify-content:center;
  width:42px; height:42px; border-radius:50%;
  background:rgba(255,255,255,.16);
  color:#fff;
  border:1px solid rgba(255,255,255,.4);
}

.header-ig{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%;
  background:rgba(255,255,255,.12);
  color:#fff;
  border:1px solid rgba(255,255,255,.32);
  flex:none;
  transition:background-color .2s var(--ease), transform .2s var(--ease);
}
.header-ig:hover{ background:rgba(255,255,255,.22); }

@media (max-width:379.98px){
  .install-btn .btn-label{ display:none; }
  .install-btn{ padding-inline:.65rem; }
}

/* header states */
.site-header{ background:linear-gradient(to bottom, rgba(20,17,10,.55), rgba(20,17,10,0)); }
.site-header.is-solid{
  background:rgba(42,36,24,.92);
  backdrop-filter:blur(10px);
  box-shadow:0 4px 18px rgba(0,0,0,.18);
}

@media (min-width:960px){
  .nav-desktop{ display:block; }
  .header-cta{ display:inline-flex; }
  .header-wa{ display:none; }
}

/* Rango intermedio (tablet horizontal / notebooks chicas):
   la navegación completa entra, pero con menos aire. */
@media (min-width:960px) and (max-width:1219.98px){
  .container{ padding-inline:16px; }
  .brand{ font-size:1rem; }
  .brand__mark{ width:34px; height:34px; font-size:.78rem; }
  .nav-desktop a{ padding:.55rem .58rem; font-size:.86rem; }
  .header-cta{ padding:.7rem 1.15rem; font-size:.9rem; min-height:42px; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex; align-items:flex-end;
  color:#fff;
  overflow:hidden;
}
.hero__media{
  position:absolute; inset:0;
  z-index:0;
  background:
    radial-gradient(130% 75% at 50% 6%, #4C5E37 0%, #3A4826 38%, #263118 68%, #181F10 100%);
  display:flex; align-items:flex-start; justify-content:center;
}
.hero__logo{
  width:min(56vw, 300px);
  height:auto;
  border-radius:50%;
  margin-top:calc(var(--nav-h) + 26px);
  box-shadow:0 24px 50px rgba(0,0,0,.5), 0 4px 14px rgba(0,0,0,.35);
}
@media (min-width:640px){
  .hero__logo{ width:min(38vw, 340px); margin-top:calc(var(--nav-h) + 40px); }
}
@media (min-width:960px){
  .hero__logo{ width:min(24vw, 380px); margin-top:calc(var(--nav-h) + 52px); }
}
.hero__content{
  position:relative; z-index:1;
  width:100%;
  padding-block:calc(var(--nav-h) + 28px) 56px;
}
.hero__eyebrow{
  display:inline-flex; align-items:center; gap:.6em;
  font-size:.78rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent-tint);
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.28);
  padding:.4em .9em;
  border-radius:var(--radius-pill);
  margin-bottom:1.1em;
  backdrop-filter:blur(6px);
}
.hero h1{
  color:#fff;
  font-size:clamp(2.3rem, 1.9rem + 3vw, 4rem);
  max-width:14ch;
  margin-bottom:.32em;
  text-wrap:balance;
}
.hero__lead{
  color:rgba(255,255,255,.92);
  font-size:clamp(1.02rem, 1rem + .4vw, 1.2rem);
  max-width:46ch;
  margin-bottom:1.8em;
}
.hero__ctas{
  display:flex; flex-wrap:wrap; gap:.85rem;
  margin-bottom:2.2em;
}
.hero__stats{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:.7rem;
  max-width:560px;
}
@media (min-width:640px){
  .hero__stats{ grid-template-columns:repeat(4,1fr); }
}
.stat-chip{
  display:flex; align-items:center; gap:.6em;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.22);
  border-radius:var(--radius-md);
  padding:.7rem .85rem;
  backdrop-filter:blur(6px);
}
.stat-chip svg{ width:20px; height:20px; flex:none; color:var(--accent); }
.stat-chip__label{ font-size:.78rem; line-height:1.25; color:rgba(255,255,255,.92); font-weight:600; }

.scroll-cue{
  position:absolute; left:50%; bottom:18px; transform:translateX(-50%);
  z-index:1;
  display:none;
  flex-direction:column; align-items:center; gap:6px;
  color:rgba(255,255,255,.75);
  font-size:.72rem; letter-spacing:.08em; text-transform:uppercase;
  animation:bob 2.4s ease-in-out infinite;
}
@media (min-width:640px){ .scroll-cue{ display:flex; } }
@keyframes bob{ 0%,100%{ transform:translate(-50%,0);} 50%{ transform:translate(-50%,6px);} }

/* ---------- Hero: entrada cinematográfica al cargar ---------- */
@keyframes heroFade{ from{ opacity:0; transform:scale(.94); } to{ opacity:1; transform:scale(1); } }
@keyframes heroRise{ from{ opacity:0; transform:translateY(18px); } to{ opacity:1; transform:translateY(0); } }
.hero__logo{ animation:heroFade 1.1s var(--ease) both; }
.hero__eyebrow, .hero h1, .hero__lead, .hero__ctas, .hero__stats{
  animation:heroRise .85s var(--ease) both;
}
.hero__eyebrow{ animation-delay:.05s; }
.hero h1{ animation-delay:.13s; }
.hero__lead{ animation-delay:.21s; }
.hero__ctas{ animation-delay:.29s; }
.hero__stats{ animation-delay:.37s; }

/* ---------- Experiencia: imagen fija + paneles que se deslizan ---------- */
.experience{
  position:relative;
  background:var(--surface);
}
.experience__grid{
  display:flex;
  flex-direction:column;
}
@media (min-width:960px){
  .experience__grid{ display:grid; grid-template-columns:1fr 1fr; align-items:start; }
}
.experience__sticky{ position:relative; }
@media (min-width:960px){
  .experience__sticky{ position:sticky; top:0; height:100vh; overflow:hidden; }
}
.experience__media{
  position:relative;
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--primary-dark);
}
@media (min-width:960px){
  .experience__media{ position:absolute; inset:0; aspect-ratio:auto; height:100%; }
}
.experience__img{
  position:absolute; inset:0;
  opacity:0;
  transition:opacity .7s var(--ease);
}
.experience__img.is-active{ opacity:1; }
.experience__img img{ width:100%; height:100%; object-fit:cover; }
.experience__panels{
  display:flex;
  flex-direction:column;
}
.experience__panel{
  min-height:52vh;
  display:flex; flex-direction:column; justify-content:center;
  padding:40px 20px;
}
@media (min-width:960px){
  .experience__panel{ min-height:100vh; padding:0 clamp(32px,5vw,72px); max-width:560px; }
}
.experience__panel h3{ font-size:clamp(1.5rem, 1.3rem + 1vw, 2.1rem); }
.experience__panel p{ font-size:1.05rem; max-width:46ch; }

/* ---------- Momento: imagen a pantalla completa con paralaje ---------- */
.statement{
  position:relative;
  min-height:64vh;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  color:#fff;
}
.statement__bg{ position:absolute; inset:-10% -5%; z-index:0; }
.statement__bg img{ width:100%; height:100%; object-fit:cover; will-change:transform; }
.statement__scrim{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(180deg, rgba(23,20,15,.4) 0%, rgba(23,20,15,.58) 55%, rgba(23,20,15,.78) 100%);
}
.statement__content{ position:relative; z-index:2; text-align:center; }
.statement__eyebrow{
  font-size:.8rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase;
  color:var(--accent-tint); margin-bottom:.75em;
}
.statement__content h2{
  color:#fff;
  font-size:clamp(1.8rem, 1.4rem + 2.4vw, 3.2rem);
  max-width:16ch; margin:0 auto; text-wrap:balance;
}
@media (min-width:960px){ .statement{ min-height:80vh; } }

/* ---------- Reveal on scroll ---------- */
.reveal{
  opacity:0;
  transform:translateY(22px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-group .reveal:nth-child(2){ transition-delay:.08s; }
.reveal-group .reveal:nth-child(3){ transition-delay:.16s; }
.reveal-group .reveal:nth-child(4){ transition-delay:.24s; }

/* ---------- Feature cards ---------- */
.cards-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:18px;
}
.feature-card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:26px 22px;
  box-shadow:var(--shadow-sm);
  transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:transparent;
}
.feature-card__icon{
  width:48px; height:48px;
  border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:var(--primary-tint);
  color:var(--primary);
  margin-bottom:16px;
}
.feature-card__icon svg{ width:24px; height:24px; }
.feature-card h3{ font-size:1.12rem; margin-bottom:.35em; }
.feature-card p{ font-size:.94rem; margin:0; }

.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:18px;
}
.service-card{
  background:linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 100%);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:28px 24px;
  box-shadow:var(--shadow-md);
}
.service-card__icon{
  width:48px; height:48px; border-radius:14px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.14);
  margin-bottom:16px;
}
.service-card__icon svg{ width:24px; height:24px; color:var(--accent); }
.service-card h3{ color:#fff; font-size:1.1rem; margin-bottom:.35em; }
.service-card p{ color:rgba(255,255,255,.85); font-size:.94rem; margin:0; }

/* ---------- Gallery ---------- */
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  grid-auto-flow:dense;
  gap:10px;
}
@media (min-width:640px){
  .gallery-grid{ grid-template-columns:repeat(3,1fr); gap:14px; }
}
@media (min-width:960px){
  .gallery-grid{ grid-template-columns:repeat(4,1fr); }
}
.gallery-item{
  position:relative;
  border-radius:var(--radius-md);
  overflow:hidden;
  background:var(--surface-2);
  cursor:zoom-in;
  grid-row:span 1;
}
.gallery-item--tall{ grid-row:span 2; }
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  aspect-ratio:var(--ar, 1/1);
  transition:transform .5s var(--ease);
}
.gallery-item:hover img{ transform:scale(1.06); }
.gallery-item::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(20,17,10,.45), rgba(20,17,10,0) 42%);
  opacity:0; transition:opacity .25s var(--ease);
}
.gallery-item:hover::after{ opacity:1; }
.gallery-item__zoom{
  position:absolute; right:10px; bottom:10px;
  width:32px; height:32px; border-radius:50%;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transform:translateY(6px);
  transition:opacity .25s var(--ease), transform .25s var(--ease);
}
.gallery-item:hover .gallery-item__zoom{ opacity:1; transform:none; }
.gallery-item__zoom svg{ width:16px; height:16px; }

/* Lightbox */
.lightbox{
  position:fixed; inset:0; z-index:200;
  background:rgba(12,10,7,.96);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden;
  transition:opacity .3s var(--ease);
  padding:16px;
}
.lightbox.is-open{ opacity:1; visibility:visible; }
.lightbox__figure{
  max-width:min(1100px, 94vw);
  max-height:86vh;
  display:flex; flex-direction:column; align-items:center; gap:14px;
}
.lightbox__img{
  max-width:100%; max-height:74vh;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-lg);
  object-fit:contain;
  background:#000;
}
.lightbox__caption{
  color:rgba(255,255,255,.85);
  font-size:.92rem;
  text-align:center;
  max-width:60ch;
}
.lightbox__close, .lightbox__prev, .lightbox__next{
  position:absolute;
  display:flex; align-items:center; justify-content:center;
  width:46px; height:46px; border-radius:50%;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.3);
  color:#fff;
}
.lightbox__close{ top:16px; right:16px; }
.lightbox__prev{ left:10px; top:50%; transform:translateY(-50%); }
.lightbox__next{ right:10px; top:50%; transform:translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover{ background:rgba(255,255,255,.22); }
.lightbox__counter{
  position:absolute; top:18px; left:18px;
  color:rgba(255,255,255,.7); font-size:.85rem; font-weight:600;
}
@media (min-width:768px){
  .lightbox__prev{ left:24px; }
  .lightbox__next{ right:24px; }
}

/* ---------- Info / condiciones ---------- */
.info-layout{
  display:grid;
  gap:28px;
}
@media (min-width:960px){
  .info-layout{ grid-template-columns:1.1fr .9fr; align-items:start; }
}
.info-block{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:26px;
  box-shadow:var(--shadow-sm);
  margin-bottom:20px;
}
.info-block h3{
  font-size:1.2rem;
  display:flex; align-items:center; gap:.55em;
}
.info-block h3 svg{ width:22px; height:22px; color:var(--accent-dark); flex:none; }
.check-list li{
  display:flex; gap:.7em;
  padding:.5em 0;
  font-size:.98rem;
  color:var(--ink-soft);
  border-bottom:1px dashed var(--line);
}
.check-list li:last-child{ border-bottom:0; }
.check-list li svg{ width:19px; height:19px; flex:none; margin-top:.15em; color:var(--primary); }
.check-list li.warn{ color:var(--danger); font-weight:700; }
.check-list li.warn svg{ color:var(--danger); }

/* Price / reserva card */
.price-card{
  position:sticky; top:calc(var(--nav-h) + 16px);
  background:linear-gradient(165deg, var(--primary) 0%, var(--primary-dark) 100%);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:30px 26px;
  box-shadow:var(--shadow-lg);
}
.price-card__eyebrow{
  font-size:.76rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  color:var(--accent);
  margin-bottom:.6em;
}
.price-card__row{
  display:flex; align-items:baseline; justify-content:space-between;
  padding:14px 0;
  border-bottom:1px solid rgba(255,255,255,.16);
}
.price-card__row:first-of-type{ padding-top:0; }
.price-card__label{ color:rgba(255,255,255,.82); font-size:.96rem; }
.price-card__value{ font-family:var(--font-display); font-size:1.35rem; font-weight:600; }
.price-card__note{
  font-size:.86rem;
  color:rgba(255,255,255,.72);
  margin:16px 0 20px;
}
.price-card .btn{ width:100%; }

/* Medios de pago */
.pay-list{ display:flex; flex-wrap:wrap; gap:10px; }
.pay-pill{
  display:inline-flex; align-items:center; gap:.55em;
  background:var(--surface-2);
  border:1px solid var(--line);
  padding:.6em 1.1em;
  border-radius:var(--radius-pill);
  font-weight:600; font-size:.92rem;
}
.pay-pill svg{ width:18px; height:18px; color:var(--primary); }

/* ---------- Ubicación ---------- */
.location-layout{
  display:grid; gap:24px;
}
@media (min-width:960px){
  .location-layout{ grid-template-columns:1fr 1fr; align-items:stretch; }
}
.map-card{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  min-height:320px;
}
.map-card iframe{ width:100%; height:100%; min-height:320px; border:0; display:block; }
.location-details{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:28px;
  box-shadow:var(--shadow-sm);
  display:flex; flex-direction:column;
  justify-content:center;
  gap:16px;
}
.location-details__addr{
  display:flex; gap:.7em; align-items:flex-start;
  font-size:1.05rem; font-weight:600;
}
.location-details__addr svg{ width:22px; height:22px; color:var(--accent-dark); flex:none; margin-top:.1em; }

/* ---------- Contact CTA final ---------- */
.contact-cta{
  background:linear-gradient(155deg, var(--primary) 0%, var(--primary-dark) 100%);
  color:#fff;
  border-radius:var(--radius-lg);
  padding:44px 28px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.contact-cta h2{ color:#fff; }
.contact-cta p{ color:rgba(255,255,255,.85); max-width:52ch; margin-inline:auto; }
.contact-cta__actions{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center;
  gap:12px; margin-top:8px;
}
.contact-cta__actions .btn{ margin-top:0; }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--ink);
  color:rgba(255,255,255,.72);
  padding:36px 0 calc(28px + env(safe-area-inset-bottom));
  font-size:.88rem;
}
.site-footer a:hover{ color:#fff; }
.footer-grid{
  display:flex; flex-direction:column; gap:6px;
  margin-bottom:18px;
}
.footer-brand{
  font-family:var(--font-display);
  color:#fff; font-size:1.1rem; font-weight:600;
}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding-top:16px;
  display:flex; flex-wrap:wrap; gap:10px;
  justify-content:space-between;
}

@media (min-width:960px){
  .site-footer{ padding-bottom:36px; }
}

/* ---------- Floating WhatsApp button ---------- */
.fab-wa{
  position:fixed;
  right:16px;
  bottom:calc(var(--bottombar-h) + 16px + env(safe-area-inset-bottom));
  z-index:70;
  width:58px; height:58px; border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 26px rgba(37,211,102,.45);
  transition:transform .2s var(--ease), box-shadow .2s var(--ease);
}
.fab-wa svg{ width:28px; height:28px; }
.fab-wa:hover{ transform:scale(1.06); }
.fab-wa:active{ transform:scale(.96); }

@media (min-width:960px){
  .fab-wa{ bottom:26px; }
}

/* ---------- Bottom app nav (mobile) ---------- */
.bottom-nav{
  position:fixed; inset-inline:0; bottom:0;
  z-index:65;
  display:flex;
  background:rgba(250,245,236,.92);
  backdrop-filter:blur(14px);
  border-top:1px solid var(--line);
  padding-bottom:env(safe-area-inset-bottom);
  height:calc(var(--bottombar-h) + env(safe-area-inset-bottom));
}
@media (prefers-color-scheme: dark){
  .bottom-nav{ background:rgba(23,20,15,.92); }
}
.bottom-nav a{
  flex:1;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:4px;
  font-size:.68rem; font-weight:700;
  color:var(--ink-faint);
  letter-spacing:.02em;
}
.bottom-nav a svg{ width:22px; height:22px; }
.bottom-nav a.is-active{ color:var(--primary); }
.bottom-nav a.is-active svg{ color:var(--primary); }

@media (min-width:960px){
  .bottom-nav{ display:none; }
  .fab-wa{ display:none; }
  body{ --bottombar-h:0px; }
}

/* Body padding so bottom bar never covers content on mobile */
body{ padding-bottom:var(--bottombar-h); }
@media (min-width:960px){ body{ padding-bottom:0; } }

/* ---------- Install app button (progressive) ---------- */
.install-btn{ display:none; }
.install-btn.is-visible{ display:inline-flex; }

/* ---------- Utility ---------- */
.mt-0{ margin-top:0; }
.text-center{ text-align:center; }
.pill-badge{
  display:inline-flex; align-items:center; gap:.5em;
  background:var(--accent-tint); color:var(--accent-ink);
  padding:.4em .9em; border-radius:var(--radius-pill);
  font-size:.82rem; font-weight:700;
}
