/* ============================================
   SINAPSIS · Kinesiología y Osteopatía · v2
   Paleta basada en el logo real de la marca:
   violeta profundo + sage + crema cálido
   ============================================ */

/* ---------- VARIABLES ---------- */
:root {
  /* Marca Sinapsis */
  --violet-deep: #1c1238;        /* violeta casi negro del fondo del logo */
  --violet-mid: #2d1f5f;         /* violeta principal del logo */
  --violet-light: #4a3185;       /* violeta para hovers y acentos */
  --sage: #a4c8b8;               /* verde menta del símbolo del logo */
  --sage-dark: #6fa595;          /* sage saturado para texto y CTAs */
  --sage-darker: #527e72;        /* sage oscuro para hover de CTA */

  /* Neutros cálidos */
  --bg-base: #f6f2ea;            /* off-white cálido */
  --bg-alt: #ffffff;
  --bg-cream: #ebe3d4;
  --bg-dark: var(--violet-deep);

  /* Texto */
  --text-primary: #1c1238;       /* violeta deep en lugar de negro frío */
  --text-muted: #6b5f7a;         /* violeta grisáceo, no gris frío */
  --text-light: #f6f2ea;
  --text-light-muted: rgba(246, 242, 234, 0.7);

  /* Bordes */
  --border: #d8cfc1;
  --border-dark: rgba(246, 242, 234, 0.12);

  /* WhatsApp (no se cambia, es un brand color) */
  --whatsapp: #25d366;
  --whatsapp-hover: #1eb957;

  /* Sistema */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-soft: 0 6px 24px rgba(28, 18, 56, 0.08);
  --shadow-md: 0 16px 48px rgba(28, 18, 56, 0.12);
  --shadow-lg: 0 24px 64px rgba(28, 18, 56, 0.18);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;

  --max-w: 1240px;
  --pad-x: clamp(20px, 4vw, 48px);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ---------- UTILIDADES ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 400;
}

h1 em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
  color: var(--sage-dark);
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 400;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

p { color: var(--text-muted); }

/* SVG del símbolo sinapsis reutilizable */
.sinapsis-mark {
  width: 100%;
  height: 100%;
  display: block;
}

/* ---------- BOTONES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }

.btn-primary {
  background: var(--violet-mid);
  color: var(--text-light);
}
.btn-primary:hover {
  background: var(--violet-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(45, 31, 95, 0.35);
}

.btn-sage {
  background: var(--sage-dark);
  color: var(--text-light);
}
.btn-sage:hover {
  background: var(--sage-darker);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(82, 126, 114, 0.35);
}

.btn-ghost {
  color: var(--text-primary);
  border: 1px solid var(--violet-mid);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--violet-mid);
  color: var(--text-light);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: white;
  width: 100%;
}
.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
}

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 242, 234, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(216, 207, 193, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--violet-deep);
  display: grid;
  place-items: center;
  padding: 8px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  color: var(--text-primary);
}

.nav-desktop {
  display: flex;
  gap: 2rem;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  position: relative;
  padding: 4px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--sage-dark);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after { width: 100%; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: clamp(50px, 7vw, 90px) 0 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 200, 184, 0.25), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-bottom: clamp(60px, 8vw, 100px);
}

.hero-text h1 { margin-bottom: 1.5rem; }

.hero-lead {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  max-width: 540px;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
}

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(28, 18, 56, 0.4));
  pointer-events: none;
}

.hero-deco-1 {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--violet-mid);
  border-radius: 50%;
  z-index: 1;
}

.hero-deco-2 {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: var(--sage);
  border-radius: 50%;
  z-index: 1;
}

.hero-stat {
  position: absolute;
  bottom: 24px;
  left: -8%;
  z-index: 3;
  background: var(--bg-base);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--violet-mid);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.3;
}

/* Hero marquee */
.hero-marquee {
  background: var(--violet-deep);
  border-top: 0;
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  align-items: center;
}

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--text-light);
}

.marquee-track .dot {
  color: var(--sage);
  font-size: 1.6rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- SECCIONES GENERAL ---------- */
.section {
  padding: clamp(70px, 10vw, 130px) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-head h2 { margin-bottom: 1.25rem; }

.section-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 580px;
}

/* ---------- SERVICIOS ---------- */
.section-servicios {
  background: var(--bg-alt);
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.servicio-card {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.servicio-card:hover {
  transform: translateY(-4px);
  border-color: var(--sage-dark);
  box-shadow: var(--shadow-md);
}

.servicio-card-featured {
  background: var(--violet-deep);
  border-color: var(--violet-deep);
  position: relative;
}
.servicio-card-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(164, 200, 184, 0.15), transparent 50%);
  pointer-events: none;
}
.servicio-card-featured h3,
.servicio-card-featured .servicio-num,
.servicio-card-featured .precio {
  color: var(--text-light);
}
.servicio-card-featured .servicio-num { color: var(--sage); }
.servicio-card-featured p {
  color: var(--text-light-muted);
}
.servicio-card-featured .modalidad {
  background: rgba(246, 242, 234, 0.1);
  color: var(--text-light);
}

.servicio-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.servicio-card h3 { margin-bottom: 0.75rem; position: relative; z-index: 1; }
.servicio-card p {
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.servicio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.servicio-meta-dual {
  align-items: flex-end;
  gap: 16px;
}

.precio-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
}

.precio-stack .precio {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.precio-stack .precio small {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-style: normal;
}

.precio-alt {
  font-size: 1.15rem !important;
  opacity: 0.75;
}

.precio-alt small {
  color: var(--sage-dark) !important;
}

.servicio-card-featured .precio-stack .precio small {
  color: rgba(246, 242, 234, 0.6);
}

.servicio-card-featured .precio-alt small {
  color: var(--sage) !important;
}

.servicio-card-featured .servicio-meta {
  border-color: rgba(246, 242, 234, 0.18);
}

.precio {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.modalidad {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-cream);
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--text-muted);
}

/* ---------- ENFOQUE ---------- */
.section-enfoque {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.section-enfoque::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 31, 95, 0.06), transparent 70%);
  pointer-events: none;
}

.enfoque-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}

.enfoque-text h2 { margin-bottom: 1.5rem; }
.enfoque-text p { margin-bottom: 1.25rem; font-size: 1.05rem; }

.enfoque-bullets {
  margin-top: 2rem;
  display: grid;
  gap: 14px;
}

.enfoque-bullets li {
  padding: 14px 0 14px 28px;
  border-top: 1px solid var(--border);
  position: relative;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.enfoque-bullets li:last-child {
  border-bottom: 1px solid var(--border);
}

.enfoque-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--sage-dark);
  font-weight: 700;
}

.enfoque-bullets strong {
  color: var(--text-primary);
  font-weight: 600;
}

.enfoque-visual {
  position: relative;
  aspect-ratio: 4/5;
}

.enfoque-photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-cream);
  box-shadow: var(--shadow-md);
}

.enfoque-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enfoque-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--violet-mid);
  color: var(--text-light);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--sage);
}

.badge-label {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  opacity: 0.9;
}

/* ---------- PLACEHOLDERS ---------- */
.placeholder-photo {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-cream), var(--border));
  display: grid;
  place-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: inherit;
}

.placeholder-photo-pro {
  aspect-ratio: 1/1;
}

/* ---------- EQUIPO ---------- */
.section-equipo {
  background: var(--bg-alt);
}

.equipo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.equipo-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin: 0 auto;
}

.equipo-extra {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--bg-base);
  border: 1px dashed var(--sage);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.equipo-extra strong {
  color: var(--text-primary);
}

.equipo-extra a {
  color: var(--sage-dark);
  font-weight: 600;
  margin-left: 6px;
}

.equipo-extra a:hover {
  color: var(--sage-darker);
}

.pro-card {
  background: var(--bg-base);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
}

.pro-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}

.pro-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg-cream);
  position: relative;
}

.pro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pro-card:hover .pro-photo img {
  transform: scale(1.04);
}

.pro-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pro-tag {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--sage-dark);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 999px;
}

.pro-tag-dual {
  background: var(--violet-mid);
}

.pro-card h3 {
  font-size: 1.6rem;
  margin: 4px 0 0;
}

.pro-role {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--sage-dark);
}

.pro-desc {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.pro-services {
  display: grid;
  gap: 8px;
  margin: 8px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.pro-services li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}

.pro-services span {
  color: var(--text-muted);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.pro-services em {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--sage-dark);
  font-weight: 500;
}

.pro-services strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
}

.pro-link-online {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage-dark);
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  padding: 6px 0;
}

.pro-link-online:hover {
  color: var(--sage-darker);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- GALERÍA ---------- */
.section-galeria {
  background: var(--bg-base);
  overflow: hidden;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.galeria-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--bg-cream);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.galeria-item:hover img {
  transform: scale(1.06);
}

/* mosaic: piezas grandes y chicas */
.galeria-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.galeria-item:nth-child(2) { grid-column: span 2; }
.galeria-item:nth-child(3) { grid-column: span 1; }
.galeria-item:nth-child(4) { grid-column: span 1; }
.galeria-item:nth-child(5) { grid-column: span 2; grid-row: span 1; }

/* ---------- CONTACTO ---------- */
.section-contacto {
  background: var(--violet-deep);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.section-contacto::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(164, 200, 184, 0.08), transparent 60%);
  pointer-events: none;
}

.section-contacto .eyebrow { color: var(--sage); }
.section-contacto h2 { color: var(--text-light); }
.section-contacto p { color: var(--text-light-muted); }

.contacto-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contacto-text > p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.contacto-list {
  display: grid;
  gap: 4px;
}

.contacto-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--border-dark);
  transition: padding 0.25s ease;
}

a.contacto-item:hover { padding-left: 12px; }

.contacto-item:last-child {
  border-bottom: 1px solid var(--border-dark);
}

.contacto-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  align-self: center;
}

.contacto-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-light);
}

.contacto-cta {
  background: var(--sage-dark);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: sticky;
  top: 100px;
  overflow: hidden;
  position: relative;
}

.contacto-cta::before {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}

.contacto-cta h3 {
  color: var(--text-light);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}

.contacto-cta p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.75rem;
  position: relative;
}

.contacto-cta .btn {
  background: var(--bg-base);
  color: var(--text-primary);
  width: 100%;
  position: relative;
}

.contacto-cta .btn:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--bg-cream);
  padding: 70px 0 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .logo { margin-bottom: 16px; }

.footer-brand p {
  font-size: 0.9rem;
  max-width: 280px;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--sage-dark); }

.footer-bottom {
  padding-top: 24px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---------- WHATSAPP FLOTANTE ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
  animation: pulse 2.5s ease-in-out infinite;
}

.wa-float:hover {
  background: var(--whatsapp-hover);
  transform: scale(1.08);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
}

/* ---------- HERO RATING (Google) ---------- */
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 2rem;
  padding: 12px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.25s ease;
  text-decoration: none;
}

.hero-rating:hover {
  border-color: var(--sage-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.hero-rating-stars {
  display: flex;
  gap: 2px;
  color: #f5b400;
}

.hero-rating-stars svg {
  width: 16px;
  height: 16px;
}

.hero-rating-text {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-rating-text strong {
  color: var(--text-primary);
  font-weight: 700;
  margin-right: 4px;
}

/* ---------- RESEÑAS ---------- */
.section-resenas {
  background: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.section-resenas::before {
  content: '"';
  position: absolute;
  top: -100px;
  right: 5%;
  font-family: var(--font-display);
  font-size: 28rem;
  font-weight: 600;
  color: var(--sage);
  opacity: 0.18;
  line-height: 1;
  pointer-events: none;
}

.resenas-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 60px);
  position: relative;
  z-index: 1;
}

.resenas-head h2 { margin-top: 1rem; }

.resenas-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.resenas-google-logo {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.resenas-google-logo-sm {
  width: 18px;
  height: 18px;
}

.resenas-summary-data {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.resenas-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.resenas-rating-row strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1;
}

.resenas-stars {
  display: flex;
  gap: 1px;
  color: #f5b400;
}

.resenas-stars svg {
  width: 14px;
  height: 14px;
}

.resenas-rating-meta {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.resenas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.resena {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.25s ease;
}

.resena:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--sage);
}

.resena-stars {
  display: flex;
  gap: 2px;
  color: #f5b400;
}

.resena-stars svg {
  width: 16px;
  height: 16px;
}

.resena p {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-primary);
  flex: 1;
}

.resena p strong {
  color: var(--violet-mid);
  font-weight: 600;
}

.resena-author {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.resenas-cta {
  margin-top: 36px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.resenas-cta .btn {
  background: var(--bg-alt);
  border-color: var(--border);
}

.resenas-cta .btn:hover {
  background: var(--text-primary);
  color: var(--text-light);
  border-color: var(--text-primary);
}

/* ---------- UBICACIÓN / MAPA ---------- */
.section-ubicacion {
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.ubicacion-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 60px);
  align-items: stretch;
}

.ubicacion-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 36px;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.ubicacion-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.ubicacion-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.ubicacion-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-dark);
}

.ubicacion-value {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-primary);
}

.ubicacion-value span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--text-muted);
}

.horarios {
  display: grid;
  gap: 8px;
}

.horarios li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--border);
}

.horarios li:last-child {
  border-bottom: none;
}

.horarios li span {
  color: var(--text-muted);
}

.horarios li strong {
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

.ubicacion-tel {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--violet-mid);
  transition: color 0.2s;
}

.ubicacion-tel:hover {
  color: var(--violet-light);
}

.ubicacion-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.ubicacion-actions .btn {
  flex: 1;
  min-width: 140px;
}

.ubicacion-mapa {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-cream);
  min-height: 480px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.ubicacion-mapa iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  filter: grayscale(0.15);
}


.hero-text > * {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.8s ease forwards;
}
.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.25s; }
.hero-text > *:nth-child(3) { animation-delay: 0.4s; }
.hero-text > *:nth-child(4) { animation-delay: 0.55s; }

.hero-visual {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 1s ease 0.4s forwards;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
  .nav-desktop { display: none; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    max-width: 380px;
    margin: 0 auto;
  }

  .servicios-grid,
  .equipo-grid {
    grid-template-columns: 1fr;
  }

  .equipo-grid-2 {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .enfoque-grid,
  .contacto-grid {
    grid-template-columns: 1fr;
  }

  .resenas-head {
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
  }

  .resenas-grid {
    grid-template-columns: 1fr;
  }

  .ubicacion-grid {
    grid-template-columns: 1fr;
  }

  .ubicacion-mapa {
    min-height: 360px;
  }

  .ubicacion-mapa iframe {
    min-height: 360px;
  }

  .enfoque-visual { aspect-ratio: 1/1; max-width: 500px; }

  .contacto-cta { position: static; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Galería en 2 columnas */
  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
  .galeria-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .galeria-item:nth-child(2) { grid-column: span 2; }
  .galeria-item:nth-child(3) { grid-column: span 1; }
  .galeria-item:nth-child(4) { grid-column: span 1; }
  .galeria-item:nth-child(5) { grid-column: span 2; }
}

@media (max-width: 600px) {
  body { font-size: 16px; }

  .footer-cols {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .contacto-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .wa-float {
    bottom: 18px;
    right: 18px;
    width: 52px;
    height: 52px;
  }

  .servicio-card, .pro-body { padding: 24px; }

  .ubicacion-info { padding: 24px; }

  .ubicacion-actions {
    flex-direction: column;
  }

  .ubicacion-actions .btn {
    width: 100%;
  }

  .resena { padding: 22px; }

  .section-resenas::before {
    font-size: 18rem;
    top: -50px;
    right: -5%;
  }

  .hero-rating {
    width: 100%;
    justify-content: center;
  }

  .enfoque-badge {
    bottom: -16px;
    left: -12px;
    padding: 18px 22px;
  }

  .badge-num { font-size: 1.7rem; }

  .hero-deco-1 { width: 80px; height: 80px; }
  .hero-deco-2 { width: 70px; height: 70px; }
}
