/*
Theme Name: Sabai Nuevo
Description: Theme propio de Sabai Spa Tailandés (rediseño 2026, sin Elementor) — construido para tiempo de carga rápido, sin el peso de Elementor/Elementor Pro.
Author: Activa Digital
Version: 1.0
Text Domain: sabai-nuevo
*/

:root {
  --pink: #BB0E76;
  --pink-dark: #8f0b5c;
  --pink-soft: #fbeaf3;
  --soft: #F5E1CE;
  --accent-cta: #75315A;
  --text: #3C2313;
  --text-muted: #7a6a5c;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --border: #ece1d6;
  --font-heading: 'Quicksand', sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  /* Sombras "soft UI": más difusas y en capas, tono cálido de marca en vez de negro plano. */
  --shadow: 0 2px 6px rgba(60, 35, 19, 0.05), 0 10px 24px rgba(60, 35, 19, 0.07);
  --shadow-hover: 0 6px 14px rgba(187, 14, 118, 0.10), 0 18px 36px rgba(187, 14, 118, 0.14);
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 40px;
  --space-5: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-heading); font-weight: 600; color: var(--text); line-height: 1.25; }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); text-align: center; margin: 0 0 var(--space-3); }
h3 { font-size: 1.15rem; margin: 0 0 8px; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; }
img { max-width: 100%; display: block; border-radius: var(--radius-md); }

a:focus-visible, button:focus-visible { outline: 3px solid var(--pink); outline-offset: 2px; }

/* ============ Top bar ============ */
.top-bar {
  background: var(--text);
  color: #f2e9e0;
  font-size: 0.85rem;
}
.top-bar .container {
  display: flex;
  gap: var(--space-3);
  padding: 8px 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.top-bar a { color: #f2e9e0; text-decoration: none; }
.top-bar a:hover { color: #fff; text-decoration: underline; }

/* ============ Header / Nav ============ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 300;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  max-width: 1140px;
  margin: 0 auto;
  gap: var(--space-2);
}
.logo img { max-height: 54px; width: auto; border-radius: 0; }

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.nav-links {
  display: flex;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  position: relative;
  text-decoration: none;
  font-weight: 500;
  color: var(--text);
  padding: 6px 2px;
  transition: color .2s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 2px; right: 2px; bottom: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--pink); }

.nav-cta {
  display: inline-flex;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  height: 2px;
  background: var(--text);
  transition: transform .25s, opacity .25s;
}
.menu-toggle span { top: 19px; }
.menu-toggle span::before { top: -8px; }
.menu-toggle span::after { top: 8px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-8px) rotate(-45deg); }

/* ============ Buttons ============ */
/* Soft UI: sombra de color propio del botón (no negro plano) en reposo,
   que crece y se acerca al pasar el mouse — la firma visual del estilo. */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background .2s ease, transform .2s ease, box-shadow .25s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, .28);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 10px 24px rgba(37, 211, 102, .36); }
.btn-pink {
  background: var(--pink);
  color: #fff;
  width: 100%;
  text-align: center;
  box-shadow: 0 4px 14px rgba(187, 14, 118, .26);
}
.btn-pink:hover { background: var(--pink-dark); box-shadow: 0 10px 24px rgba(187, 14, 118, .34); }

/* ============ Ícono de WhatsApp reutilizable ============ */
.icon-whatsapp {
  width: 16px;
  height: 16px;
  min-width: 16px;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
}
.topbar-whatsapp, .footer-whatsapp { display: inline-flex; align-items: center; gap: 6px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-5) 0 var(--space-4);
  text-align: center;
  background: linear-gradient(180deg, var(--pink-soft) 0%, #fff 100%);
}
/* Manchas suaves difuminadas de marca — decorativas, puramente CSS, no
   compiten con el contenido ni con los botones (z-index 0, contenido en 1). */
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--pink) 0%, transparent 70%);
  opacity: .16;
  top: -140px; right: -80px;
}
.hero::after {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--soft) 0%, transparent 70%);
  opacity: .5;
  bottom: -120px; left: -80px;
}
.hero > .container { position: relative; z-index: 1; }
.hero h1 { font-size: clamp(1.7rem, 4vw, 2.5rem); margin-bottom: 14px; }
.hero p.lead { max-width: 640px; margin: 0 auto 26px; font-size: 1.1rem; color: var(--text-muted); }

/* ============ Animación de entrada — landing pages de Ads (ej. Masajes Cali) ============ */
.hero-landing h1,
.hero-landing .lead,
.hero-landing .btn-whatsapp,
.hero-landing .gallery img {
  opacity: 0;
  animation-name: sabaiFadeUp;
  animation-duration: .7s;
  animation-timing-function: cubic-bezier(.22, .9, .32, 1);
  animation-fill-mode: forwards;
}
.hero-landing h1 { animation-delay: .05s; }
.hero-landing .lead { animation-delay: .18s; }
.hero-landing .btn-whatsapp {
  animation-name: sabaiFadeUp, sabaiPulse;
  animation-duration: .7s, 2.2s;
  animation-timing-function: cubic-bezier(.22, .9, .32, 1), ease-in-out;
  animation-delay: .3s, 1.6s;
  animation-iteration-count: 1, infinite;
  animation-fill-mode: forwards, none;
}
.hero-landing .gallery img:nth-child(1) { animation-delay: .42s; }
.hero-landing .gallery img:nth-child(2) { animation-delay: .5s; }
.hero-landing .gallery img:nth-child(3) { animation-delay: .58s; }
.hero-landing .gallery img:nth-child(4) { animation-delay: .66s; }

/* Quien pida explícitamente menos movimiento sigue viendo un cambio (fundido),
   solo se le quita el desplazamiento y el pulso continuo del botón. */
@media (prefers-reduced-motion: reduce) {
  .hero-landing h1,
  .hero-landing .lead,
  .hero-landing .btn-whatsapp,
  .hero-landing .gallery img {
    animation-name: sabaiFadeIn;
  }
  .hero-landing .btn-whatsapp { animation-name: sabaiFadeIn; }
}

@keyframes sabaiFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes sabaiFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes sabaiPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .45); }
  50% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* ============ Sections ============ */
section { padding: var(--space-5) 0; }
section.alt { background: #fdfaf6; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-3);
}

/* Soft UI: la profundidad la da la sombra en capas, no un borde duro —
   se deja un borde casi invisible solo para pantallas sin sombra (impresión/alto contraste). */
.card {
  background: #fff;
  border: 1px solid rgba(60, 35, 19, .05);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow);
  transition: box-shadow .25s ease, transform .25s ease;
}
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; margin-bottom: var(--space-2); }

ul.services-list {
  columns: 2;
  column-gap: var(--space-4);
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}
ul.services-list li {
  break-inside: avoid;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
ul.services-list li::before { content: "✓ "; color: var(--pink); font-weight: 700; }

/* Antes era un grid estático (no deslizaba pese a que el texto lo prometía,
   y no se podían ver en grande). Ahora es un carrusel real con scroll-snap
   (funciona con swipe táctil nativo) + flechas para mouse + lightbox al
   tocar cualquier imagen. Todo inyectado por JS (ver assets/main.js), este
   bloque solo define la apariencia. */
.gallery {
  position: relative;
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery img {
  flex: 0 0 auto;
  width: min(220px, 70vw);
  aspect-ratio: 1/1;
  object-fit: cover;
  scroll-snap-align: start;
  cursor: pointer;
  transition: transform .2s ease;
}
.gallery img:hover { transform: scale(1.03); }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--pink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: box-shadow .2s ease;
}
.gallery-arrow:hover { box-shadow: var(--shadow-hover); }
.gallery-arrow.prev { left: 6px; }
.gallery-arrow.next { right: 6px; }
.gallery-arrow svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 640px) {
  /* En celular el swipe táctil nativo ya resuelve el deslizamiento;
     las flechas son para quien navega con mouse en desktop. */
  .gallery-arrow { display: none; }
}

/* ============ Lightbox (galería a pantalla completa) ============ */
.sabai-lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20, 10, 15, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.sabai-lightbox.open { opacity: 1; visibility: visible; }
.sabai-lightbox img {
  max-width: min(900px, 92vw);
  max-height: 82vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.sabai-lightbox-close,
.sabai-lightbox-arrow {
  position: absolute;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.sabai-lightbox-close:hover,
.sabai-lightbox-arrow:hover { background: rgba(255,255,255,.26); }
.sabai-lightbox-close {
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  line-height: 1;
}
.sabai-lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
}
.sabai-lightbox-arrow.prev { left: 14px; }
.sabai-lightbox-arrow.next { right: 14px; }
.sabai-lightbox-arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 640px) {
  .sabai-lightbox img { max-height: 70vh; }
  .sabai-lightbox-arrow { width: 40px; height: 40px; }
}

.price-tag { color: var(--pink); font-weight: 700; margin-top: 4px; }

/* ============ Massage type cards (replaces hover-flip, tap-friendly) ============ */
.massage-card {
  background: #fff;
  border: 1px solid rgba(60, 35, 19, .05);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: box-shadow .25s ease, transform .25s ease;
}
.massage-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.massage-card h3 { color: var(--pink); }
.massage-card .front-desc { color: var(--text-muted); margin: 0; }
.massage-card .back-desc {
  margin: 0;
  padding-top: var(--space-2);
  margin-top: var(--space-2);
  border-top: 1px dashed var(--border);
  display: none;
}
.massage-card.open .back-desc { display: block; }
.massage-card .toggle-hint {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--pink);
  font-weight: 600;
}
.massage-card.open .toggle-hint::after { content: " ▲ Ver menos"; }
.massage-card:not(.open) .toggle-hint::after { content: " ▼ Ver más"; }

/* ============ Pricing ============ */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: var(--space-3); align-items: stretch; }
.price-card {
  background: #fff;
  border: 1px solid rgba(60, 35, 19, .05);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: box-shadow .25s ease, transform .25s ease;
}
.price-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.price-card h3 { color: var(--pink); text-transform: uppercase; font-size: 1.05rem; letter-spacing: .01em; }
.price-card .duration { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 6px; }
.price-card .amount { font-size: 2.1rem; font-weight: 700; color: var(--text); margin: 8px 0 16px; font-family: var(--font-heading); }
.price-card .amount span { font-size: 1rem; color: var(--pink); vertical-align: top; }
.price-card ul { text-align: left; list-style: none; padding: 0; margin: 0 0 12px; }
.price-card ul:last-of-type { flex-grow: 1; }
.price-card ul li { padding: 5px 0; font-size: 0.92rem; }
.price-card ul li::before { content: "✓ "; color: var(--pink); font-weight: 700; }
.price-card ul.benefits li::before { content: "✅ "; }
.price-card .note { font-size: 0.85rem; color: var(--text-muted); font-style: italic; margin: 0 0 12px; }
.price-card .includes-label { font-weight: 700; color: var(--text); margin: 0 0 6px; text-transform: uppercase; font-size: 0.78rem; letter-spacing: .04em; }
.price-card .btn-pink { margin-top: var(--space-2); }

/* ============ Testimonials ============ */
.testimonial {
  position: relative;
  background: #fff;
  border: 1px solid rgba(60, 35, 19, .05);
  border-left: 4px solid var(--pink);
  padding: var(--space-2) 20px var(--space-2) 26px;
  border-radius: var(--radius-md);
  font-style: italic;
  box-shadow: var(--shadow);
  margin: 0;
  transition: box-shadow .25s ease, transform .25s ease;
}
.testimonial:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -6px; left: 14px;
  font-family: var(--font-heading);
  font-style: normal;
  font-size: 3rem;
  line-height: 1;
  color: var(--pink-soft);
}
.testimonial cite { display: block; margin-top: 10px; font-style: normal; font-weight: 700; color: var(--pink); }

/* ============ CTA banner ============ */
.cta-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 76px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(187, 14, 118, .74) 0%, rgba(117, 49, 90, .74) 100%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { width: 100%; height: 300px; border: 0; display: block; }

.cta-center { text-align: center; margin-top: var(--space-3); }

/* ============ Forms ============ */
.hs-form-frame { max-width: 560px; margin: 0 auto; }

/* ============ Footer ============ */
.site-footer {
  background: var(--text);
  color: #f2e9e0;
  padding: var(--space-4) 0 10px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  max-width: 1140px;
  margin: 0 auto var(--space-3);
  padding: 0 20px;
  align-items: flex-start;
}
.footer-inner img { max-height: 56px; filter: brightness(0) invert(1); }
.footer-inner h3 { color: #fff; margin-bottom: 8px; }
.footer-inner p { margin: 4px 0; color: #d9c9ba; }
.footer-inner a { color: var(--soft); text-decoration: none; }
.footer-inner a:hover { text-decoration: underline; }
.footer-note {
  text-align: center;
  font-size: 0.82rem;
  color: #a7927f;
  padding: 14px 0;
  margin: 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ============ Floating WhatsApp button ============ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--whatsapp);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,.28);
  z-index: 250;
}
.whatsapp-float .icon-whatsapp { width: 28px; height: 28px; min-width: 28px; }
.whatsapp-float:hover { background: var(--whatsapp-dark); }

/* ============ Mobile nav ============ */
.nav-close { display: none; }
.header-contact-icons { display: none; }

@media (max-width: 860px) {
  .menu-toggle { display: block; }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 15, .45);
    backdrop-filter: blur(2px);
    z-index: 295;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .nav-backdrop.open { opacity: 1; visibility: visible; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    z-index: 296;
    height: 100vh;
    width: min(72vw, 280px);
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 28px;
    gap: var(--space-3);
    border-radius: 20px 0 0 20px;
    transform: translateX(105%);
    opacity: 0;
    transition: transform .35s cubic-bezier(.32, .72, .35, 1), opacity .25s ease;
    box-shadow: -12px 0 32px rgba(60, 35, 19, .18);
  }
  .main-nav.open { transform: translateX(0); opacity: 1; }

  .nav-close {
    display: block;
    align-self: flex-end;
    background: var(--pink-soft);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--pink);
    cursor: pointer;
    margin-bottom: var(--space-2);
  }

  .nav-links { flex-direction: column; gap: 4px; width: 100%; }
  .nav-links a {
    display: block;
    font-size: 1.02rem;
    padding: 10px 4px;
    opacity: 0;
    transform: translateX(14px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .main-nav.open .nav-links a {
    opacity: 1;
    transform: translateX(0);
  }
  .main-nav.open .nav-links li:nth-child(1) a { transition-delay: .08s; }
  .main-nav.open .nav-links li:nth-child(2) a { transition-delay: .13s; }
  .main-nav.open .nav-links li:nth-child(3) a { transition-delay: .18s; }
  .main-nav.open .nav-links li:nth-child(4) a { transition-delay: .23s; }

  .header-contact-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
    margin-right: 10px;
  }
  .header-contact-icons a { color: var(--text); line-height: 0; }
  .header-contact-icons a:hover { color: var(--pink); }
  .header-contact-icons svg { width: 19px; height: 19px; fill: currentColor; }

  .nav-cta { width: 100%; margin-top: auto; }
  .nav-cta .btn { width: 100%; text-align: center; }
}

@media (max-width: 640px) {
  /* Reduce el espaciado base en todo el sitio: secciones, tarjetas, grids y
     encabezados usan estas variables, así que compactan de una sola vez. */
  :root {
    --space-3: 16px;
    --space-4: 26px;
    --space-5: 38px;
  }

  .container { padding: 0 16px; }

  ul.services-list { columns: 1; }
  .pricing-grid { grid-template-columns: 1fr; }

  /* Top nav compacto en celular: en vez de WhatsApp se deja la dirección (WhatsApp queda en el menú) */
  .top-bar .container {
    padding: 5px 16px;
    justify-content: center;
    gap: var(--space-1);
  }
  .top-bar .topbar-whatsapp { display: none; }
  .top-bar { font-size: 0.75rem; }

  .header-inner { padding: 8px 16px; }
  .logo img { max-height: 38px; }
  .menu-toggle { width: 34px; height: 34px; }
  .menu-toggle span { top: 16px; }
  .menu-toggle span::before { top: -7px; }
  .menu-toggle span::after { top: 7px; }

  /* Tipografía y componentes más compactos */
  .hero h1 { font-size: 1.5rem; }
  h2 { font-size: 1.35rem; margin-bottom: var(--space-2); }
  h3 { font-size: 1.05rem; }
  .hero { padding: var(--space-4) 0 var(--space-3); }
  .hero p.lead { font-size: 0.98rem; margin-bottom: var(--space-2); }

  .btn { padding: 9px 20px; font-size: 0.9rem; }

  .card, .massage-card, .price-card { padding: var(--space-2); }
  .price-card .amount { font-size: 1.6rem; margin: 4px 0 10px; }
  .price-card h3 { font-size: 0.95rem; }

  .testimonial { padding: var(--space-1) 14px var(--space-1) 20px; font-size: 0.92rem; }

  .cta-banner { padding: 40px 16px; }

  .map-embed iframe { height: 220px; }

  .gallery { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: var(--space-1); }

  .whatsapp-float { width: 48px; height: 48px; bottom: 14px; right: 14px; }
  .whatsapp-float .icon-whatsapp { width: 24px; height: 24px; min-width: 24px; }

  .footer-inner { gap: var(--space-3); }
  .footer-inner img { max-height: 42px; }
}
