/* ===========================================================
   CASA AMATISTA · HOJA DE ESTILOS
   Centro de Salud Integrativa y Holística · Paraná, ER
   Identidad basada en el Manual de Marca (B&D Creativa)
   =========================================================== */

:root {
  /* ---- Paleta oficial de marca ---- */
  --violeta:      #6E5A78;  /* Violeta Amatista Profundo */
  --violeta-mid:  #574863;  /* transición */
  --violeta-deep: #3B3047;  /* geoda */
  --violeta-night:#2A2333;  /* fondo oscuro base */
  --lavanda:      #C7BFD1;  /* Lavanda Gris */
  --lavanda-soft: #DED8E4;
  --crema:        #F6F4F1;  /* Blanco Roto */
  --crema-warm:   #FBFAF7;
  --piedra:       #E6DFD6;  /* Beige Piedra */
  --piedra-deep:  #DBD2C6;
  --nude:         #B7A2AC;  /* Nude Rosé (corregido del swatch) */
  --nude-osc:     #ADA2A4;  /* Nude oscuro */
  --negro:        #2E2E2E;  /* Negro Suave */

  --texto:        #4A4048;  /* cuerpo, malva-grisáceo cálido */
  --texto-soft:   #7C727C;
  --linea:        #E3DCE6;

  /* ---- Tipografía ---- */
  --serif:     'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --serif-alt: 'Lora', Georgia, serif;
  --sans:      'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ---- Métrica ---- */
  --container: 1180px;
  --section-y: 108px;
  --radius: 4px;

  --shadow-soft:  0 10px 40px rgba(110, 90, 120, 0.10);
  --shadow-lift:  0 20px 60px rgba(110, 90, 120, 0.18);
  --shadow-photo: 0 24px 60px rgba(42, 35, 51, 0.22);
}

/* ========== RESET ========== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--texto);
  background: var(--crema);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--lavanda); color: var(--violeta-deep); }

/* ========== UTILIDADES ========== */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 26px; }
.section { padding: var(--section-y) 0; }
.section-tint { background: var(--piedra); }
.section-dark { background: var(--violeta-night); color: var(--crema); }
.center { text-align: center; }

/* ========== CABECERAS DE SECCIÓN ========== */
.head { max-width: 680px; margin: 0 0 60px; }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--nude);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.section-dark .eyebrow { color: var(--lavanda); }
.title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: 0.005em;
  color: var(--violeta-deep);
}
.section-dark .title { color: var(--crema); }
.lead {
  margin-top: 22px;
  font-size: 17.5px;
  line-height: 1.75;
  color: var(--texto-soft);
  max-width: 60ch;
}
.center .lead { margin-left: auto; margin-right: auto; }
.section-dark .lead { color: var(--lavanda); }

/* separador de rombo amatista */
.divider-rombo {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 auto;
}
.divider-rombo::before, .divider-rombo::after {
  content: ''; height: 1px; width: 46px; background: var(--lavanda);
}
.divider-rombo span {
  width: 9px; height: 9px; transform: rotate(45deg);
  border: 1px solid var(--nude);
}

/* ========== BOTONES ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 34px;
  font-family: var(--sans);
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.3px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--violeta); color: var(--crema); border-color: var(--violeta); }
.btn-primary:hover { background: var(--violeta-deep); border-color: var(--violeta-deep); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-outline { background: transparent; color: var(--violeta); border-color: var(--nude); }
.btn-outline:hover { background: var(--violeta); color: var(--crema); border-color: var(--violeta); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--crema); border-color: rgba(246,244,241,.55); }
.btn-ghost:hover { background: var(--crema); color: var(--violeta-deep); border-color: var(--crema); }
.btn-wa { background: #4f9d69; color: #fff; border-color: #4f9d69; }
.btn-wa:hover { background: #418355; border-color: #418355; transform: translateY(-2px); box-shadow: 0 14px 34px rgba(79,157,105,.28); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 22px; font-size: 12.5px; }
.btn svg { width: 18px; height: 18px; }

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  background: rgba(246, 244, 241, 0.72);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(199, 191, 209, 0.35);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.navbar.scrolled { background: rgba(246,244,241,.94); box-shadow: 0 6px 30px rgba(110,90,120,.10); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
.nav-logo img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--violeta-deep);
  position: relative; letter-spacing: 0.1px; padding: 4px 0;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: -3px; height: 1.5px; width: 0;
  background: var(--violeta); transition: width .28s ease;
}
.nav-link:hover { color: var(--violeta); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-size: 13px; font-weight: 600; color: var(--crema);
  background: var(--violeta); padding: 11px 22px; border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .25s ease, transform .25s ease;
}
.nav-cta:hover { background: var(--violeta-deep); transform: translateY(-1px); }
.nav-cta svg { width: 16px; height: 16px; }
.nav-toggle { display: none; width: 30px; height: 22px; position: relative; }
.nav-toggle span { position: absolute; left: 0; height: 2px; width: 100%; background: var(--violeta-deep); border-radius: 2px; transition: transform .3s ease, opacity .3s ease, top .3s ease; }
.nav-toggle span:nth-child(1){ top: 0; }
.nav-toggle span:nth-child(2){ top: 10px; }
.nav-toggle span:nth-child(3){ top: 20px; }
.nav-toggle.active span:nth-child(1){ top: 10px; transform: rotate(45deg); }
.nav-toggle.active span:nth-child(2){ opacity: 0; }
.nav-toggle.active span:nth-child(3){ top: 10px; transform: rotate(-45deg); }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding: 130px 0 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(42,35,51,.62) 0%, rgba(59,48,71,.42) 45%, rgba(42,35,51,.78) 100%),
    radial-gradient(120% 90% at 50% 30%, rgba(110,90,120,.10) 0%, rgba(42,35,51,.55) 100%);
}
#petals {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  -webkit-mask-image: linear-gradient(to top, transparent 0%, black 14%, black 86%, transparent 100%);
  mask-image: linear-gradient(to top, transparent 0%, black 14%, black 86%, transparent 100%);
}
.hero-inner { position: relative; z-index: 3; max-width: 860px; padding: 0 24px; color: var(--crema); }
.hero-iso { width: 62px; margin: 0 auto 26px; opacity: .95; }
.hero-iso img { width: 100%; }
.hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(52px, 11vw, 108px); line-height: .98;
  letter-spacing: 0.01em; color: var(--crema);
  text-shadow: 0 2px 40px rgba(42,35,51,.4);
}
.hero-logo {
  width: min(560px, 80vw); height: auto; margin: 0 auto;
  filter: drop-shadow(0 2px 40px rgba(42,35,51,.4));
}
.hero-tagline {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin: 22px 0 6px; text-transform: uppercase;
  font-size: clamp(12px, 2vw, 15px); letter-spacing: 0.42em; font-weight: 500;
  color: var(--lavanda-soft); padding-left: 0.42em;
}
.hero-tagline .dot { width: 5px; height: 5px; transform: rotate(45deg); background: var(--nude); }
.hero-sub {
  margin: 26px auto 0; max-width: 46ch;
  font-family: var(--serif-alt); font-size: clamp(16px, 2.3vw, 19px);
  line-height: 1.7; color: rgba(246,244,241,.92); font-weight: 400;
}
.hero-ctas { margin-top: 40px; display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  z-index: 3; color: rgba(246,244,241,.7); font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll .arrow { width: 1px; height: 34px; background: linear-gradient(var(--lavanda), transparent); animation: scrollpulse 2.4s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100%{ opacity:.3; transform: scaleY(.7);} 50%{ opacity:1; transform: scaleY(1);} }

/* ========== FILOSOFÍA / EJES ========== */
.filosofia { position: relative; }
.filosofia .lead-serif {
  font-family: var(--serif-alt); font-size: clamp(19px, 2.6vw, 24px);
  line-height: 1.75; color: var(--violeta); max-width: 40ch; margin: 0 auto 8px; font-weight: 400;
}
.ejes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px;
  margin-top: 64px;
}
.eje {
  text-align: center; padding: 40px 28px; background: var(--crema-warm);
  border: none; border-radius: 18px; box-shadow: 0 8px 22px rgba(42,35,51,.07);
  font-family: inherit; cursor: pointer; width: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.eje:hover, .eje:focus-visible {
  transform: scale(1.045); box-shadow: 0 18px 40px rgba(42,35,51,.16); z-index: 2;
}
.eje:focus-visible { outline: 2px solid var(--violeta); outline-offset: 3px; }
.eje-mark {
  width: 58px; height: 58px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--lavanda); border-radius: 50%; color: var(--violeta);
}
.eje-mark svg { width: 28px; height: 28px; }
.eje-badge {
  display: block; font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--nude); margin-bottom: 8px;
}
.eje h3 { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--violeta-deep); margin-bottom: 10px; }
.eje p { font-size: 15.5px; line-height: 1.7; color: var(--texto-soft); max-width: 32ch; margin: 0 auto; }
.eje-line { width: 30px; height: 1px; background: var(--nude); margin: 16px auto 0; }

/* ========== TERAPIAS ========== */
.terapias-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.terapia {
  position: relative; background: var(--crema-warm); padding: 32px 30px;
  border: none; border-radius: 16px; box-shadow: 0 8px 22px rgba(42,35,51,.07);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column; gap: 8px; text-align: left;
  font-family: inherit; cursor: pointer; width: 100%;
}
.terapia:nth-child(even) { background: var(--piedra); }
.terapia:hover, .terapia:focus-visible {
  transform: scale(1.045); z-index: 2;
  box-shadow: 0 18px 40px rgba(42,35,51,.16);
}
.terapia:focus-visible { outline: 2px solid var(--violeta); outline-offset: 3px; }
.terapia-icon {
  width: 48px; height: 48px; margin-bottom: 6px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--lavanda); border-radius: 50%; color: var(--violeta);
  background: rgba(199,191,209,.14);
}
.terapia-icon svg { width: 23px; height: 23px; }
.terapia-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.terapia h3 { font-family: var(--serif); font-size: 25px; font-weight: 600; color: var(--violeta-deep); line-height: 1.15; }
.terapia .modo { font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--nude); font-weight: 600; white-space: nowrap; }
.terapia p { font-size: 14.5px; line-height: 1.65; color: var(--texto-soft); }
.terapias-note { margin-top: 30px; text-align: center; font-size: 14.5px; color: var(--texto-soft); }
.terapias-note strong { color: var(--violeta); font-weight: 600; }

/* ========== PRÁCTICAS ========== */
.practicas-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.practica {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 340px; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-soft);
}
.practica img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.practica::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(42,35,51,0) 30%, rgba(42,35,51,.85) 100%); }
.practica:hover img { transform: scale(1.05); }
.practica-body { position: relative; z-index: 2; padding: 30px 32px; color: var(--crema); }
.practica-body h3 { font-family: var(--serif); font-size: 32px; font-weight: 600; margin-bottom: 6px; }
.practica-body p { font-size: 14.5px; line-height: 1.6; color: rgba(246,244,241,.9); max-width: 40ch; }
.practica-tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: rgba(246,244,241,.9); color: var(--violeta-deep);
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 13px; border-radius: 40px;
}

/* ========== EL ESPACIO (galería, dark) ========== */
.espacio-intro { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.espacio-intro .lead { color: var(--lavanda); }
.espacio-feature { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-photo); }
.espacio-feature img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.espacio-feature figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 22px 24px;
  background: linear-gradient(transparent, rgba(42,35,51,.9));
  color: var(--crema); font-family: var(--serif-alt); font-style: italic; font-size: 16px;
}
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: 14px; }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s ease; }
.gallery figure:hover img { transform: scale(1.06); }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
.gallery figcaption {
  position: absolute; left: 0; bottom: 0; right: 0; padding: 30px 16px 12px;
  background: linear-gradient(transparent, rgba(42,35,51,.82));
  color: var(--crema); font-size: 12.5px; letter-spacing: .04em;
  opacity: 0; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease;
}
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }

/* ========== ALQUILER ========== */
.alquiler-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.oferta {
  background: var(--crema-warm); border: 1px solid var(--linea); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-soft);
}
.oferta-photo { position: relative; height: 230px; }
.oferta-photo img { width: 100%; height: 100%; object-fit: cover; }
.oferta-photo span {
  position: absolute; top: 16px; left: 16px;
  background: var(--violeta); color: var(--crema);
  font-size: 11px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 40px;
}
.oferta-body { padding: 30px 32px 34px; display: flex; flex-direction: column; flex: 1; }
.oferta-body h3 { font-family: var(--serif); font-size: 29px; font-weight: 600; color: var(--violeta-deep); margin-bottom: 6px; }
.oferta-body > p { font-size: 15px; color: var(--texto-soft); line-height: 1.65; margin-bottom: 18px; }
.oferta-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.oferta-list li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--texto); line-height: 1.5; }
.oferta-list li::before {
  content: ''; position: absolute; left: 4px; top: 7px; width: 8px; height: 8px;
  transform: rotate(45deg); border: 1px solid var(--nude);
}
.oferta-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.oferta-modo { font-size: 13.5px; color: var(--texto-soft); }
.oferta-modo strong { color: var(--violeta); font-weight: 600; }

/* ========== CONTACTO ========== */
.contacto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: stretch; }
.contacto-info { display: flex; flex-direction: column; }
.contacto-list { margin: 8px 0 30px; display: flex; flex-direction: column; gap: 22px; }
.ci-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--piedra); color: var(--violeta);
  display: flex; align-items: center; justify-content: center;
}
.ci-icon svg { width: 20px; height: 20px; }
.ci-item h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--nude); font-weight: 600; margin-bottom: 3px; }
.ci-item p, .ci-item a { font-size: 16px; color: var(--texto); line-height: 1.5; }
.ci-item a:hover { color: var(--violeta); }
.contacto-social { display: flex; gap: 12px; margin-top: auto; }
.contacto-social a {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--lavanda);
  display: flex; align-items: center; justify-content: center; color: var(--violeta);
  transition: background .25s ease, color .25s ease, transform .25s ease, border-color .25s ease;
}
.contacto-social a:hover { background: var(--violeta); color: var(--crema); border-color: var(--violeta); transform: translateY(-2px); }
.contacto-social svg { width: 19px; height: 19px; }
.contacto-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 380px; border: 1px solid var(--linea); }
.contacto-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: grayscale(.2) saturate(.9); }

/* ========== FAQ ========== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--linea); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 26px 44px 26px 4px; position: relative;
  font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--violeta-deep);
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--violeta); }
.faq-item summary::after {
  content: '+'; position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 26px; font-weight: 300; color: var(--nude); transition: transform .3s ease;
}
.faq-item[open] summary::after { content: '\2013'; }
.faq-item p { padding: 0 44px 26px 4px; font-size: 15.5px; line-height: 1.75; color: var(--texto-soft); }
.faq-item p a { color: var(--violeta); text-decoration: underline; text-underline-offset: 2px; }

/* ========== CTA FINAL ========== */
.cta-final { position: relative; text-align: center; overflow: hidden; }
.cta-final .container { position: relative; z-index: 2; }
.cta-iso { width: 56px; margin: 0 auto 26px; opacity: .9; }
.cta-final h2 { font-family: var(--serif); font-size: clamp(34px, 5.5vw, 56px); font-weight: 500; color: var(--crema); line-height: 1.08; }
.cta-final p { margin: 20px auto 34px; max-width: 48ch; font-family: var(--serif-alt); font-size: 18px; line-height: 1.7; color: var(--lavanda); }
.cta-final .hero-ctas { margin-top: 0; }

/* ========== FOOTER ========== */
.footer { background: var(--violeta-night); color: var(--lavanda); padding: 78px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
.footer-brand .footer-logo { height: 66px; width: auto; margin-bottom: 20px; }
.footer-tagline { text-transform: uppercase; letter-spacing: .35em; font-size: 11px; color: var(--nude); margin-bottom: 16px; }
.footer-mission { font-size: 14.5px; line-height: 1.7; color: rgba(199,191,209,.8); max-width: 34ch; }
.footer-col h4 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--crema); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14px; color: rgba(199,191,209,.78); transition: color .2s ease, padding-left .2s ease; }
.footer-col a:hover { color: var(--crema); padding-left: 4px; }
.footer-social { display: flex; gap: 11px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(199,191,209,.3);
  display: flex; align-items: center; justify-content: center; color: var(--lavanda);
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.footer-social a:hover { background: var(--violeta); color: var(--crema); border-color: var(--violeta); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  margin-top: 54px; padding-top: 26px; border-top: 1px solid rgba(199,191,209,.16);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(199,191,209,.62); }
.footer-meta { font-family: var(--serif-alt); font-style: italic; }

/* ========== MODAL ========== */
.modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.modal[hidden] { display: none; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(42,35,51,.6); backdrop-filter: blur(4px); animation: fade .3s ease; }
.modal-card {
  position: relative; z-index: 2; width: 100%; max-width: 480px;
  background: var(--crema-warm); border-radius: 8px; padding: 40px 38px;
  box-shadow: var(--shadow-lift); max-height: 92vh; overflow-y: auto;
  animation: pop .35s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes fade { from{opacity:0} to{opacity:1} }
@keyframes pop { from{opacity:0; transform: translateY(16px) scale(.98)} to{opacity:1; transform: none} }
.modal-close { position: absolute; top: 16px; right: 18px; font-size: 26px; line-height: 1; color: var(--nude); width: 34px; height: 34px; border-radius: 50%; transition: background .2s, color .2s; }
.modal-close:hover { background: var(--piedra); color: var(--violeta-deep); }
.modal-head { text-align: center; margin-bottom: 26px; }
.modal-badge { display: inline-block; font-family: var(--serif); font-style: italic; font-size: 19px; color: var(--nude); margin-bottom: 6px; }
.modal-head h3 { font-family: var(--serif); font-size: 30px; font-weight: 600; color: var(--violeta-deep); margin-bottom: 8px; }
.modal-head p { font-size: 14.5px; color: var(--texto-soft); line-height: 1.6; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: 13px; font-weight: 600; color: var(--violeta-deep); margin-bottom: 6px; }
.form-field .req { color: var(--nude); }
.form-field .opt { color: var(--texto-soft); font-weight: 400; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px; font-family: var(--sans); font-size: 15px; color: var(--texto);
  background: #fff; border: 1px solid var(--linea); border-radius: var(--radius); transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--violeta); box-shadow: 0 0 0 3px rgba(110,90,120,.12);
}
.form-field textarea { resize: vertical; min-height: 96px; }
.modal .btn { margin-top: 6px; }
.modal-privacy { margin-top: 14px; font-size: 12px; color: var(--texto-soft); text-align: center; line-height: 1.5; }
.modal-privacy a { color: var(--violeta); text-decoration: underline; }
.modal-alt { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--linea); text-align: center; font-size: 13px; color: var(--texto-soft); }
.modal-alt a { color: #4f9d69; font-weight: 600; }
.modal-success { text-align: center; padding: 10px 4px; }
.modal-success[hidden] { display: none; }
.modal-success-icon { width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%; background: var(--piedra); color: var(--violeta); display: flex; align-items: center; justify-content: center; font-size: 30px; }
.modal-success h3 { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--violeta-deep); margin-bottom: 8px; }
.modal-success p { font-size: 14.5px; color: var(--texto-soft); line-height: 1.6; }

/* ---- Modal de terapias ---- */
.modal-card-lg { max-width: 620px; }
.modal-card-lg .modal-head { text-align: left; }
.terapia-modal-body { display: flex; flex-direction: column; gap: 22px; }
.tm-section h4 {
  font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--violeta); margin-bottom: 8px;
}
.tm-section p { font-size: 15px; line-height: 1.7; color: var(--texto); }
.tm-section ul { display: flex; flex-direction: column; gap: 7px; }
.tm-section li {
  position: relative; padding-left: 20px; font-size: 14.5px; line-height: 1.6; color: var(--texto);
}
.tm-section li::before {
  content: ''; position: absolute; left: 0; top: 8px; width: 6px; height: 6px;
  border-radius: 50%; background: var(--violeta);
}
.form-note { margin-top: 16px; padding: 13px 15px; background: rgba(110,90,120,.07); border-left: 3px solid var(--nude); border-radius: 3px; font-size: 12.5px; text-align: left; line-height: 1.55; color: var(--texto); }

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 1500; max-width: 560px; margin: 0 auto;
  background: var(--violeta-night); color: var(--crema); border-radius: 8px; padding: 20px 24px;
  box-shadow: var(--shadow-lift); display: none; align-items: center; gap: 20px; flex-wrap: wrap;
}
.cookie-banner.show { display: flex; animation: pop .4s ease; }
.cookie-banner p { font-size: 13px; line-height: 1.55; flex: 1; min-width: 220px; color: rgba(246,244,241,.85); }
.cookie-banner a { color: var(--lavanda); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 1200;
  width: 46px; height: 46px; border-radius: 50%; background: var(--violeta); color: var(--crema);
  font-size: 20px; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .25s ease; box-shadow: var(--shadow-soft);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--violeta-deep); }

/* ========== PÁGINAS LEGALES ========== */
.legal-page { padding: 140px 0 90px; background: var(--crema); }
.legal-box { max-width: 800px; margin: 0 auto; }
.legal-back { display: inline-block; font-size: 13px; color: var(--nude); margin-bottom: 24px; font-weight: 600; }
.legal-back:hover { color: var(--violeta); }
.legal-box h1 { font-family: var(--serif); font-size: clamp(34px, 5vw, 48px); font-weight: 500; color: var(--violeta-deep); margin-bottom: 8px; }
.legal-date { font-size: 13.5px; color: var(--texto-soft); margin-bottom: 40px; }
.legal-box h2 { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--violeta); margin: 36px 0 12px; }
.legal-box h3 { font-size: 17px; font-weight: 600; color: var(--violeta-deep); margin: 24px 0 8px; }
.legal-box p, .legal-box li { font-size: 15px; line-height: 1.75; color: var(--texto); margin-bottom: 12px; }
.legal-box ul, .legal-box ol { margin: 0 0 16px 22px; }
.legal-box ul li { list-style: disc; }
.legal-box ol li { list-style: decimal; }
.legal-box a { color: var(--violeta); text-decoration: underline; text-underline-offset: 2px; }
.legal-note { margin-top: 40px; padding: 22px 26px; background: rgba(110,90,120,.06); border-left: 3px solid var(--nude); border-radius: 3px; font-size: 14px; font-style: italic; color: var(--texto-soft); }

/* ========== ANIMACIÓN DE ENTRADA (una sola, discreta) ========== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ========== RESPONSIVE ========== */
@media (max-width: 960px) {
  :root { --section-y: 80px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 100%; right: 0; left: auto; bottom: auto;
    max-height: 75vh; overflow-y: auto; width: min(320px, 82vw);
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 26px;
    background: var(--crema); padding: 34px 40px 40px; transform-origin: top right;
    transform: scaleY(0); opacity: 0; visibility: hidden; pointer-events: none;
    transition: transform .3s ease, opacity .25s ease, visibility 0s linear .3s;
    box-shadow: 0 22px 50px rgba(42,35,51,.18); border-radius: 0 0 var(--radius) var(--radius);
    z-index: 999;
  }
  .nav-links.open {
    transform: scaleY(1); opacity: 1; visibility: visible; pointer-events: auto;
    transition: transform .3s ease, opacity .25s ease, visibility 0s;
  }
  .nav-link { font-size: 19px; }
  .ejes { grid-template-columns: 1fr; gap: 40px; max-width: 380px; margin-inline: auto; }
  .terapias-grid { grid-template-columns: repeat(2, 1fr); }
  .espacio-intro { grid-template-columns: 1fr; gap: 36px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .contacto-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 620px) {
  .container { padding: 0 24px; }
  .nav-inner { padding-top: 22px; padding-bottom: 22px; }
  .practicas-grid, .alquiler-grid { grid-template-columns: 1fr; }
  .terapias-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: span 2; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery .wide, .gallery .tall { grid-column: auto; grid-row: auto; }
  .hero-tagline { gap: 10px; letter-spacing: .3em; }
  .footer-bottom { justify-content: center; text-align: center; }
  .modal-card { padding: 32px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .12s !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
