/* ====================================================
   CLÍNICA SHALOM — Hoja de estilos v2 (mejorada)
   Paleta: Verde salvia #6B8F71 · Crema #F7F4EF
           Arena #C9B99A · Carbón #2C2C2C
   ==================================================== */

/* ─── Reset & Variables ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --verde: #6B8F71;
  --verde-d: #4E6B54;
  --verde-l: #e8f0e9;
  --verde-xl: #f0f5f1;
  --arena: #C9B99A;
  --arena-l: #E8DDD0;
  --crema: #F7F4EF;
  --carbon: #1E1E1E;
  --carbon-s: #2C2C2C;
  --gris: #6B6B6B;
  --gris-l: #E2E2E2;
  --gris-xl: #F5F5F5;
  --blanco: #FFFFFF;
  --wa: #25D366;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  --radius-sm: 3px;
  --radius: 6px;
  --radius-lg: 12px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow: 0 6px 28px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 16px 56px rgba(0, 0, 0, 0.14);
  --shadow-v: 0 8px 32px rgba(107, 143, 113, 0.18);

  --section-pad: 100px 0;
  --container: 1180px;
  --transition: 0.28s cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  color: var(--carbon-s);
  background: var(--blanco);
  line-height: 1.72;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

strong {
  font-weight: 600;
  color: var(--carbon);
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--carbon);
}

/* ─── Container ─── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--verde);
  color: var(--blanco);
  border-color: var(--verde);
  box-shadow: 0 4px 16px rgba(107, 143, 113, 0.25);
}

.btn-primary:hover {
  background: var(--verde-d);
  border-color: var(--verde-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 143, 113, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--verde);
  border-color: var(--verde);
}

.btn-outline:hover {
  background: var(--verde);
  color: var(--blanco);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--wa);
  color: var(--blanco);
  border-color: var(--wa);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.28);
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ─── Sections ─── */
.section {
  padding: var(--section-pad);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 72px;
}

.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--verde);
  opacity: 0.5;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 20px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.section-sub {
  color: var(--gris);
  font-size: 1.02rem;
  line-height: 1.75;
}

/* ─── Section CTA block ─── */
.section-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--gris-l);
}

.section-cta p {
  color: var(--gris);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ─── Fade-in ─── */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   NAVEGACIÓN
   ============================================================ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
  padding: 12px 0;
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 72px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--transition), height var(--transition);
}

.nav-header.scrolled .logo-img {
  filter: none;
  height: 58px;
}

.logo-nombre {
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  transition: color var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.nav-header.scrolled .logo-nombre {
  color: var(--carbon);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 1);
}

.nav-header.scrolled .nav-links a {
  color: var(--carbon-s);
}

.nav-header.scrolled .nav-links a:hover {
  color: var(--verde);
}

.nav-cta {
  background: var(--verde) !important;
  color: var(--blanco) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 14px rgba(107, 143, 113, 0.3) !important;
}

.nav-cta:hover {
  background: var(--verde-d) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 18px rgba(107, 143, 113, 0.4) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blanco);
  transition: all 0.3s;
  border-radius: 2px;
}

.nav-header.scrolled .hamburger span {
  background: var(--carbon);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s ease;
  transform: scale(1.03);
  animation: heroZoom 8s ease-in-out infinite alternate;
}

.hero-slide.active {
  opacity: 1;
}

@keyframes heroZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.07);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(20, 30, 22, 0.72) 0%,
      rgba(20, 30, 22, 0.55) 50%,
      rgba(20, 30, 22, 0.35) 100%);
}

/* Bottom gradient for readability */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 30, 22, 0.45) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 36px;
  padding-top: 80px;
  max-width: 800px;
  width: 100%;
  margin-left: max(36px, calc((100vw - var(--container)) / 2));
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--arena-l);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--blanco);
  margin-bottom: 24px;
  line-height: 1.1;
  opacity: 0;
  animation: fadeUp 1s ease 0.45s forwards;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.hero-title em {
  font-style: italic;
  color: var(--arena-l);
}

.hero-sub {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 1s ease 0.65s forwards;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1s ease 0.82s forwards;
}

.hero-checks li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-checks .check {
  color: #7fcf88;
  font-size: 1rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s ease 1s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-dots {
  position: absolute;
  bottom: 88px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
  background: var(--blanco);
  transform: scale(1.35);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-arrow {
  width: 14px;
  height: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  transform: rotate(45deg);
  animation: bounce 2s ease infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(5px);
  }
}

/* ============================================================
   ¿POR QUÉ ELEGIRNOS?
   ============================================================ */
.confianza {
  background: var(--verde-xl);
  position: relative;
  overflow: hidden;
}

.confianza::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.confianza .section-eyebrow {
  color: var(--verde);
}

.confianza .section-eyebrow::before,
.confianza .section-eyebrow::after {
  background: var(--verde);
}

.confianza .section-title {
  color: var(--carbon);
}

.confianza .section-sub {
  color: var(--gris);
}

.confianza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.confianza-card {
  padding: 40px 32px;
  background: var(--blanco);
  border-radius: var(--radius);
  border: 1.5px solid var(--gris-l);
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.confianza-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--verde);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
  border-radius: 2px;
}

.confianza-card:hover {
  background: var(--blanco);
  border-color: var(--verde);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.confianza-card:hover::after {
  transform: scaleX(1);
}

.confianza-icon {
  width: 52px;
  height: 52px;
  color: var(--verde);
  margin-bottom: 22px;
  transition: transform var(--transition);
}

.confianza-card:hover .confianza-icon {
  transform: scale(1.1);
}

.confianza-icon svg {
  width: 100%;
  height: 100%;
}

.confianza-card h3 {
  font-size: 1.15rem;
  color: var(--carbon);
  margin-bottom: 12px;
  font-weight: 500;
}

.confianza-card p {
  color: var(--gris);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============================================================
   NOSOTROS
   ============================================================ */
.nosotros {
  background: var(--crema);
}

.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.nosotros-img-wrap {
  position: relative;
}

.nosotros-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.nosotros-badge {
  position: absolute;
  bottom: -28px;
  right: -28px;
  background: var(--verde);
  color: var(--blanco);
  padding: 28px 32px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-v);
}

.badge-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
}

.badge-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-top: 4px;
  display: block;
}

.nosotros-text .section-eyebrow {
  justify-content: flex-start;
}

.nosotros-text .section-eyebrow::before {
  display: none;
}

.nosotros-text .section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.nosotros-text p {
  color: var(--gris);
  margin-bottom: 18px;
  font-size: 0.96rem;
}

.pilares {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pilar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pilar-icon {
  color: var(--verde);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.pilar strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.12rem;
  margin-bottom: 3px;
  font-weight: 500;
}

.pilar p {
  margin: 0;
  font-size: 0.89rem;
  color: var(--gris);
}

/* ============================================================
   SERVICIOS
   ============================================================ */
.servicios {
  background: var(--blanco);
}

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

.servicio-card {
  padding: 36px 30px;
  border: 1.5px solid var(--gris-l);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition), background var(--transition);
  position: relative;
  overflow: hidden;
}

.servicio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--verde);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.servicio-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow);
  transform: translateY(-5px);
  background: var(--verde-xl);
}

.servicio-card:hover::before {
  transform: scaleX(1);
}

.servicio-icon {
  width: 44px;
  height: 44px;
  color: var(--verde);
  margin-bottom: 20px;
  transition: transform var(--transition);
}

.servicio-card:hover .servicio-icon {
  transform: scale(1.1);
}

.servicio-icon svg {
  width: 100%;
  height: 100%;
}

.servicio-card h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  font-weight: 500;
  transition: color var(--transition);
}

.servicio-card:hover h3 {
  color: var(--verde-d);
}

.servicio-card p {
  color: var(--gris);
  font-size: 0.89rem;
  line-height: 1.7;
}

/* ============================================================
   EQUIPO
   ============================================================ */
.equipo {
  background: var(--crema);
}

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

.terapeuta-card {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}

.terapeuta-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.terapeuta-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.terapeuta-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}

.terapeuta-card:hover .terapeuta-img-wrap img {
  transform: scale(1.04);
}

.terapeuta-colegiado {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--verde);
  color: var(--blanco);
  padding: 6px 14px;
  font-size: 0.73rem;
  letter-spacing: 0.07em;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
}

.terapeuta-info {
  padding: 32px 32px 36px;
}

.terapeuta-info h3 {
  font-size: 1.55rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.terapeuta-titulo {
  font-size: 0.78rem;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 18px;
}

.terapeuta-bio-short {
  color: var(--gris);
  font-size: 0.91rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.terapeuta-especialidades {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.terapeuta-especialidades span {
  font-size: 0.74rem;
  padding: 5px 12px;
  border: 1.5px solid var(--verde);
  color: var(--verde);
  border-radius: 20px;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.btn-perfil {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid var(--gris-l);
  color: var(--carbon-s);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: all var(--transition);
}

.btn-perfil::after {
  content: ' →';
}

.btn-perfil:hover {
  border-color: var(--verde);
  color: var(--verde);
  background: var(--verde-xl);
}

/* ─── Modales de perfil ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--blanco);
  border-radius: var(--radius-lg);
  max-width: 720px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.open .modal-box {
  transform: none;
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  margin: 16px 16px 0 0;
  background: var(--gris-xl);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--gris);
  transition: all var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--verde);
  color: var(--blanco);
}

.modal-content {
  padding: 40px 48px 48px;
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 6px;
}

.modal-titulo {
  font-size: 0.8rem;
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 24px;
}

.modal-section {
  margin-top: 28px;
}

.modal-section h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gris);
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gris-l);
}

.modal-section p {
  color: var(--gris);
  font-size: 0.93rem;
  line-height: 1.75;
  margin-bottom: 10px;
}

.modal-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal-section li {
  font-size: 0.91rem;
  color: var(--gris);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.modal-section li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--verde);
  font-size: 0.6rem;
  top: 5px;
}

.modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modal-tags span {
  font-size: 0.76rem;
  padding: 5px 12px;
  background: var(--verde-l);
  color: var(--verde-d);
  border-radius: 20px;
  font-weight: 500;
}

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
.especialidades {
  background: var(--blanco);
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.esp-card {
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--crema);
  text-align: center;
  transition: all var(--transition);
  cursor: default;
  border: 1.5px solid transparent;
}

.esp-card:hover {
  background: var(--verde);
  border-color: var(--verde);
  transform: translateY(-6px);
  box-shadow: var(--shadow-v);
}

.esp-icon {
  width: 48px;
  height: 48px;
  color: var(--verde);
  margin: 0 auto 18px;
  transition: color var(--transition), transform var(--transition);
}

.esp-card:hover .esp-icon {
  color: var(--blanco);
  transform: scale(1.15);
}

.esp-icon svg {
  width: 100%;
  height: 100%;
}

.esp-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  font-weight: 500;
  transition: color var(--transition);
}

.esp-card:hover h3 {
  color: var(--blanco);
}

.esp-card p {
  font-size: 0.82rem;
  color: var(--gris);
  line-height: 1.65;
  transition: color var(--transition);
}

.esp-card:hover p {
  color: rgba(255, 255, 255, 0.82);
}

/* ============================================================
   GALERÍA
   ============================================================ */
.galeria {
  background: var(--verde-xl);
}

.galeria .section-eyebrow {
  color: var(--verde);
}

.galeria .section-eyebrow::before,
.galeria .section-eyebrow::after {
  background: var(--verde);
}

.galeria .section-title {
  color: var(--carbon);
}

.galeria .section-sub {
  color: var(--gris);
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.galeria-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}

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

/* Eliminar clases especiales para que todas sean iguales */
.galeria-large,
.galeria-tall {
  grid-column: unset;
  grid-row: unset;
}

.galeria-overlay {
  position: absolute;
  inset: 0;
  background: rgba(107, 143, 113, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.galeria-overlay span {
  color: var(--blanco);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}

.galeria-item:hover .galeria-overlay {
  background: rgba(107, 143, 113, 0.5);
}

.galeria-item:hover .galeria-overlay span {
  opacity: 1;
  transform: none;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0, 0, 0, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  text-align: center;
}

.lightbox-img-wrap img {
  max-height: 82vh;
  max-width: 88vw;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.45);
  margin-top: 12px;
  font-size: 0.82rem;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--blanco);
  font-size: 1.8rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--blanco);
  font-size: 2.4rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* ============================================================
   TESTIMONIOS
   ============================================================ */
.testimonios {
  background: var(--crema);
}

.testimonios-carousel {
  position: relative;
  overflow: hidden;
}

.testimonios-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1);
}

.testimonio-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--blanco);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gris-l);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.testimonio-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--verde);
}

.stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonio-text {
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-style: italic;
  color: var(--carbon-s);
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonio-autor {
  font-size: 0.78rem;
  color: var(--gris);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.testimonios-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.t-prev,
.t-next {
  background: none;
  border: 1.5px solid var(--gris-l);
  color: var(--gris);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.t-prev:hover,
.t-next:hover {
  border-color: var(--verde);
  color: var(--verde);
  background: var(--verde-xl);
}

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gris-l);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.t-dot.active {
  background: var(--verde);
  transform: scale(1.3);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: var(--blanco);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gris-l);
  transition: background var(--transition);
}

.faq-item:first-child {
  border-top: 1px solid var(--gris-l);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 4px;
  background: none;
  border: none;
  font-family: var(--ff-display);
  font-size: 1.14rem;
  font-weight: 400;
  color: var(--carbon);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--verde);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--gris-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--verde);
  flex-shrink: 0;
  transition: all var(--transition);
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--verde);
  color: var(--blanco);
  border-color: var(--verde);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s;
}

.faq-answer p {
  padding-bottom: 24px;
  padding-right: 48px;
  color: var(--gris);
  font-size: 0.95rem;
  line-height: 1.78;
}

/* ============================================================
   CONTACTO
   ============================================================ */
.contacto {
  background: var(--crema);
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: start;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: var(--verde-l);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--verde);
}

.info-icon svg {
  width: 20px;
  height: 20px;
}

.info-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.info-item p,
.info-item a {
  color: var(--gris);
  font-size: 0.91rem;
  display: block;
  line-height: 1.65;
}

.info-item a:hover {
  color: var(--verde);
}

.contact-link {
  color: var(--gris);
  transition: color var(--transition);
}

.contact-link:hover {
  color: var(--verde);
}

.respuesta-rapida {
  margin-top: 8px;
  color: var(--verde) !important;
  font-weight: 500;
  font-size: 0.88rem !important;
}

.contacto-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.contacto-btns .btn {
  justify-content: center;
}

/* Form */
.contacto-form-wrap {
  background: var(--blanco);
  padding: 40px 40px 44px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contacto-form h3 {
  font-size: 1.6rem;
  margin-bottom: 28px;
  font-weight: 400;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--carbon-s);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gris-l);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.93rem;
  color: var(--carbon);
  background: var(--blanco);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(107, 143, 113, 0.12);
}

.form-group textarea {
  resize: vertical;
}

.form-note {
  text-align: center;
  color: var(--gris);
  font-size: 0.76rem;
  margin-top: 14px;
  line-height: 1.6;
}

.mapa-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--carbon);
  color: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 80px 36px 52px;
  display: grid;
  grid-template-columns: 2fr 1fr 1.8fr;
  gap: 56px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-brand p {
  font-size: 0.87rem;
  line-height: 1.75;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.65);
  transition: var(--transition);
}

.footer-social-link:hover {
  color: var(--blanco);
  border-color: var(--blanco);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-links a,
.footer-contact a:not(.btn) {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blanco);
}

.footer-contact p {
  font-size: 0.87rem;
  margin-bottom: 8px;
  line-height: 1.7;
}

.footer-horario {
  margin-top: 12px;
  opacity: 0.45;
  font-size: 0.82rem !important;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* WhatsApp flotante */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanco);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

/* ─── Barra móvil fija ─── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: var(--blanco);
  border-top: 1px solid var(--gris-l);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 16px;
  gap: 10px;
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 16px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.mobile-bar-cita {
  background: var(--verde);
  color: var(--blanco);
  box-shadow: 0 3px 12px rgba(107, 143, 113, 0.3);
}

.mobile-bar-cita:hover {
  background: var(--verde-d);
}

.mobile-bar-wa {
  background: var(--wa);
  color: var(--blanco);
  box-shadow: 0 3px 12px rgba(37, 211, 102, 0.3);
}

.mobile-bar-wa:hover {
  background: #1da851;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .confianza-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .especialidades-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nosotros-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .nosotros-img {
    height: 400px;
  }

  .nosotros-badge {
    bottom: -20px;
    right: -20px;
  }

  .equipo-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

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

@media (max-width: 768px) {
  :root {
    --section-pad: 72px 0;
  }

  /* Nav mobile */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 320px;
    height: 100vh;
    background: var(--blanco);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 48px 32px;
    box-shadow: -6px 0 40px rgba(0, 0, 0, 0.14);
    transition: right 0.4s cubic-bezier(.4, 0, .2, 1);
    z-index: 1100;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--carbon-s) !important;
    font-size: 1.05rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--gris-l);
    width: 100%;
  }

  .nav-links a:hover {
    color: var(--verde) !important;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 20px;
    display: inline-block !important;
  }

  .hamburger {
    display: flex;
  }

  .logo-img {
    height: 54px;
  }

  .logo-nombre {
    font-size: 0.88rem;
    letter-spacing: 0.08em;
  }

  /* Hero */
  .hero-content {
    margin-left: 0;
    padding: 0 24px;
    padding-top: 80px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(2.1rem, 7vw, 3rem);
  }

  .hero-checks {
    gap: 8px 16px;
  }

  /* Grids */
  .confianza-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .especialidades-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .equipo-grid {
    max-width: 100%;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeria-large,
  .galeria-tall {
    grid-column: unset;
    grid-row: unset;
  }

  .testimonios-track .testimonio-card {
    flex: 0 0 calc(100% - 0px);
  }

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

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

  /* Mobile bar */
  .mobile-bar {
    display: flex;
  }

  .wa-float {
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  body {
    padding-bottom: 70px;
  }

  /* Modal */
  .modal-content {
    padding: 28px 28px 36px;
  }

  .lightbox-prev {
    left: 4px;
  }

  .lightbox-next {
    right: 4px;
  }
}

@media (max-width: 520px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
    padding-top: 80px;
  }

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

  .hero-actions .btn {
    justify-content: center;
  }

  .nosotros-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
    display: inline-flex;
    gap: 14px;
    align-items: center;
    padding: 18px 24px;
  }

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

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

  .galeria-large {
    grid-column: span 1;
  }

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

  .contacto-form-wrap {
    padding: 28px 22px;
  }

  .modal-content {
    padding: 24px 20px 32px;
  }

  .section-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   ADICIONES v3 — Hero más claro · Resultados · CTA emocional
   SEO local · Especialidades con botón · Contacto directo
   ============================================================ */

/* ─── Hero overlay más suave y cálido ─── */
.hero-overlay {
  background: linear-gradient(to right,
      rgba(30, 45, 32, 0.52) 0%,
      rgba(30, 45, 32, 0.38) 55%,
      rgba(30, 45, 32, 0.22) 100%) !important;
}

.hero-overlay::after {
  background: linear-gradient(to top, rgba(30, 45, 32, 0.32) 0%, transparent 55%) !important;
}

/* ─── Logo más grande ─── */
.logo-img {
  height: 80px !important;
  width: auto;
}

.nav-header.scrolled .logo-img {
  height: 62px !important;
}

.logo-nombre {
  font-size: 1.12rem !important;
  letter-spacing: 0.14em !important;
}

@media (max-width: 768px) {
  .logo-img {
    height: 62px !important;
  }

  .nav-header.scrolled .logo-img {
    height: 52px !important;
  }

  .logo-nombre {
    font-size: 0.92rem !important;
  }
}

/* ─── Especialidades con botón "Agendar cita" ─── */
.esp-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.esp-card p {
  flex: 1;
  margin-bottom: 18px;
}

.esp-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 18px;
  background: transparent;
  border: 1.5px solid var(--verde);
  color: var(--verde);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.esp-card:hover .esp-cta {
  background: var(--blanco);
  color: var(--verde-d);
  border-color: var(--blanco);
}

/* Hover más rico en especialidades */
.esp-card {
  transition: all 0.32s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.esp-card:hover {
  background: var(--verde) !important;
  border-color: var(--verde) !important;
  transform: translateY(-8px) !important;
  box-shadow: 0 16px 40px rgba(107, 143, 113, 0.28) !important;
}

/* ─── Sección Resultados terapéuticos ─── */
.resultados {
  background: var(--blanco);
}

.resultados-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.resultado-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px 26px;
  background: var(--crema);
  border-radius: var(--radius);
  border-left: 3px solid var(--verde);
  transition: all var(--transition);
}

.resultado-item:hover {
  background: var(--verde-l);
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.resultado-check {
  font-size: 1.1rem;
  color: var(--verde);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  width: 26px;
  height: 26px;
  background: var(--verde);
  color: var(--blanco);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.resultado-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.08rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--carbon);
}

.resultado-item p {
  font-size: 0.87rem;
  color: var(--gris);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .resultados-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CTA Emocional ─── */
.cta-emocional {
  background: linear-gradient(135deg, var(--verde-d) 0%, var(--verde) 100%);
  position: relative;
  overflow: hidden;
}

.cta-emocional::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-emocional::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-emocional-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-emocional .section-eyebrow {
  color: rgba(255, 255, 255, 0.65) !important;
  justify-content: center !important;
}

.cta-emocional .section-eyebrow::before,
.cta-emocional .section-eyebrow::after {
  background: rgba(255, 255, 255, 0.3) !important;
}

.cta-emocional h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  color: var(--blanco);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.15;
}

.cta-emocional p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.78;
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-emocional strong {
  color: var(--blanco);
  font-weight: 600;
}

.cta-emocional .btn-lg {
  padding: 17px 40px;
  font-size: 0.9rem;
  margin-top: 16px;
  background: var(--blanco);
  color: var(--verde-d);
  border-color: var(--blanco);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.cta-emocional .btn-lg:hover {
  background: var(--crema);
  border-color: var(--crema);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}

/* ─── SEO Local ─── */
.seo-local {
  background: var(--crema);
}

.seo-local-inner {
  max-width: 860px;
  margin: 0 auto;
}

.seo-local-inner .section-eyebrow {
  justify-content: center;
}

.seo-local-inner .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.seo-local-texto p {
  color: var(--gris);
  font-size: 0.97rem;
  line-height: 1.82;
  margin-bottom: 18px;
}

.seo-local-texto strong {
  color: var(--carbon);
}

/* ─── Contacto directo (3 botones) ─── */
.contacto-directo {
  text-align: center;
  margin-bottom: 56px;
  padding: 40px 36px;
  background: var(--verde-xl);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--verde-l);
}

.contacto-directo-titulo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--carbon);
  margin-bottom: 28px;
}

.contacto-directo-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.contacto-directo-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 22px 32px;
  background: var(--blanco);
  border: 1.5px solid var(--gris-l);
  border-radius: var(--radius);
  text-decoration: none;
  min-width: 160px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.contacto-directo-btn:hover {
  border-color: var(--verde);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.contacto-directo-btn--primary {
  background: var(--verde);
  border-color: var(--verde);
}

.contacto-directo-btn--primary .cd-label,
.contacto-directo-btn--primary .cd-sub {
  color: var(--blanco);
}

.contacto-directo-btn--primary:hover {
  background: var(--verde-d);
  border-color: var(--verde-d);
}

.cd-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.cd-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--carbon);
  letter-spacing: 0.02em;
}

.cd-sub {
  font-size: 0.76rem;
  color: var(--gris);
  letter-spacing: 0.04em;
}

/* ─── Testimonios mejorados ─── */
.testimonio-card {
  background: var(--blanco) !important;
  border-radius: var(--radius-lg) !important;
  padding: 36px 32px 32px !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  border: 1.5px solid var(--gris-l) !important;
  position: relative;
}

.testimonio-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--verde-l);
  pointer-events: none;
}

.testimonio-text {
  font-family: var(--ff-display) !important;
  font-size: 1.1rem !important;
  font-style: italic !important;
  color: var(--carbon-s) !important;
  line-height: 1.72 !important;
  margin-bottom: 22px !important;
  position: relative;
  z-index: 1;
  padding-top: 16px;
}

.stars {
  color: #e8a020 !important;
  font-size: 0.95rem !important;
  letter-spacing: 3px !important;
  margin-bottom: 14px !important;
}

.testimonio-autor {
  font-size: 0.76rem !important;
  color: var(--verde) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.12em !important;
  font-weight: 600 !important;
}

/* ─── Galería fondo crema ─── */
.galeria {
  background: var(--verde-xl) !important;
}

@media (max-width: 640px) {
  .contacto-directo-btns {
    flex-direction: column;
    align-items: center;
  }

  .contacto-directo-btn {
    width: 100%;
    max-width: 300px;
    flex-direction: row;
    gap: 14px;
    padding: 16px 24px;
  }

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

  .cta-emocional h2 {
    font-size: 2rem;
  }

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

/* ============================================================
   PATCH v4 — esp-cta oculto por defecto, aparece en hover
   ============================================================ */

/* Ocultar botón por defecto en escritorio */
@media (hover: hover) and (pointer: fine) {
  .esp-cta {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.42s ease, transform 0.42s ease !important;
  }

  .esp-card:hover .esp-cta {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* En móvil/touch: botón siempre visible */
@media (hover: none),
(pointer: coarse) {
  .esp-cta {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }
}

/* Elevación y sombra premium al hacer hover en tarjeta */
.esp-card {
  transition: transform 0.32s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.32s cubic-bezier(.4, 0, .2, 1),
    background 0.32s ease,
    border-color 0.32s ease !important;
}

.esp-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 48px rgba(107, 143, 113, 0.22) !important;
}

/* ============================================================
   PATCH v5 — Botones premium · Footer logo · Hero position
   ============================================================ */

/* ─── Reset base de botones para animaciones limpias ─── */
.btn,
.esp-cta,
.btn-perfil,
.nav-cta,
.mobile-bar-btn,
.contacto-directo-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── Liquid Fill Hover: relleno circular fluido ───
   Una capa de color se expande de forma circular desde el
   centro del botón con un ease-out suave, hasta cubrirlo
   por completo; al salir el cursor, se retrae del mismo modo.
   El texto/ícono cambia de color de forma sincronizada con
   el avance del relleno. ─── */
.btn::before,
.esp-cta::before,
.nav-cta::before,
.btn-perfil::before,
.mobile-bar-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  /* detrás del texto (suelto, sin z-index propio) pero encima del fondo de reposo */
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.40s cubic-bezier(.16, .8, .32, 1);
  /* velocidad de SALIDA */
  pointer-events: none;
  border-radius: inherit;
}

.btn:hover::before,
.esp-cta:hover::before,
.nav-cta:hover::before,
.btn-perfil:hover::before,
.mobile-bar-btn:hover::before {
  clip-path: circle(150% at 50% 50%);
  transition: clip-path 1.60s cubic-bezier(.16, .8, .32, 1);
  /* velocidad de ENTRADA */
}

/* Colores del relleno + color de texto sincronizado por variante */
.btn-primary::before {
  background: var(--verde-d);
}

.btn-primary,
.btn-primary * {
  transition: color 0.44s cubic-bezier(.16, .8, .32, 1);
}

.btn-outline {
  background: transparent !important;
  color: var(--verde) !important;
}

.btn-outline::before {
  background: var(--verde);
}

.btn-outline,
.btn-outline * {
  transition: color 0.44s cubic-bezier(.16, .8, .32, 1);
}

.btn-outline:hover,
.btn-outline:hover * {
  color: var(--blanco) !important;
}

.btn-whatsapp::before {
  background: #1da851;
}

.btn-whatsapp,
.btn-whatsapp * {
  transition: color 0.44s cubic-bezier(.16, .8, .32, 1);
}

.nav-cta::before {
  background: var(--verde-d);
}

.esp-cta::before {
  background: var(--verde);
}

.esp-cta,
.esp-cta * {
  transition: color 0.44s cubic-bezier(.16, .8, .32, 1);
}

.esp-cta:hover,
.esp-cta:hover * {
  color: var(--blanco) !important;
}

.btn-perfil {
  background: transparent !important;
}

.btn-perfil::before {
  background: var(--verde);
}

.btn-perfil,
.btn-perfil * {
  transition: color 0.44s cubic-bezier(.16, .8, .32, 1);
}

.btn-perfil:hover,
.btn-perfil:hover * {
  color: var(--blanco) !important;
  border-color: var(--verde) !important;
}

.mobile-bar-cita::before {
  background: var(--verde-d);
}

.mobile-bar-wa::before {
  background: #1da851;
}

/* ─── btn-lg (sección "Un mensaje para ti"): relleno circular con colores correctos ─── */
.cta-emocional .btn-lg {
  overflow: hidden;
  isolation: isolate;
  position: relative;
}

.cta-emocional .btn-lg::before {
  background: var(--verde-d);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.40s cubic-bezier(.16, .8, .32, 1);
  /* velocidad de SALIDA */
}

.cta-emocional .btn-lg:hover::before {
  clip-path: circle(150% at 50% 50%);
  transition: clip-path 1.60s cubic-bezier(.16, .8, .32, 1);
  /* velocidad de ENTRADA */
}

.cta-emocional .btn-lg,
.cta-emocional .btn-lg * {
  transition: color 0.44s cubic-bezier(.16, .8, .32, 1);
}

.cta-emocional .btn-lg:hover,
.cta-emocional .btn-lg:hover * {
  color: var(--blanco) !important;
}

/* ─── Btn primary — verde → verde oscuro, elevación + sombra verde ─── */
.btn-primary {
  transition:
    background 0.36s cubic-bezier(.4, 0, .2, 1),
    border-color 0.36s cubic-bezier(.4, 0, .2, 1),
    transform 0.36s cubic-bezier(.16, .8, .32, 1),
    box-shadow 0.36s cubic-bezier(.4, 0, .2, 1) !important;
}

.btn-primary:hover {
  background: var(--verde-d) !important;
  border-color: var(--verde-d) !important;
  transform: translateY(-3px) scale(1.015) !important;
  box-shadow:
    0 4px 8px rgba(78, 107, 84, 0.15),
    0 12px 28px rgba(78, 107, 84, 0.35),
    0 0 0 1px rgba(78, 107, 84, 0.08) !important;
}

.btn-primary:active {
  transform: translateY(-1px) scale(1.005) !important;
  box-shadow: 0 4px 12px rgba(78, 107, 84, 0.3) !important;
  transition-duration: 0.1s !important;
}

/* ─── Btn outline ─── */
.btn-outline {
  transition:
    background 0.36s cubic-bezier(.4, 0, .2, 1),
    color 0.28s cubic-bezier(.4, 0, .2, 1),
    border-color 0.36s cubic-bezier(.4, 0, .2, 1),
    transform 0.36s cubic-bezier(.16, .8, .32, 1),
    box-shadow 0.36s cubic-bezier(.4, 0, .2, 1) !important;
}

.btn-outline:hover {
  background: var(--verde) !important;
  color: var(--blanco) !important;
  transform: translateY(-3px) scale(1.015) !important;
  box-shadow:
    0 8px 24px rgba(107, 143, 113, 0.3),
    0 0 0 1px rgba(107, 143, 113, 0.1) !important;
}

.btn-outline:active {
  transform: translateY(-1px) scale(1.005) !important;
  transition-duration: 0.1s !important;
}

/* ─── Btn WhatsApp ─── */
.btn-whatsapp {
  transition:
    background 0.36s cubic-bezier(.4, 0, .2, 1),
    transform 0.36s cubic-bezier(.16, .8, .32, 1),
    box-shadow 0.36s cubic-bezier(.4, 0, .2, 1) !important;
}

.btn-whatsapp:hover {
  background: #1da851 !important;
  border-color: #1da851 !important;
  transform: translateY(-3px) scale(1.015) !important;
  box-shadow:
    0 4px 8px rgba(29, 168, 81, 0.15),
    0 12px 28px rgba(29, 168, 81, 0.38),
    0 0 0 1px rgba(29, 168, 81, 0.08) !important;
}

.btn-whatsapp:active {
  transform: translateY(-1px) scale(1.005) !important;
  transition-duration: 0.1s !important;
}

/* ─── Nav CTA ─── */
.nav-cta {
  transition:
    background 0.29s cubic-bezier(.4, 0, .2, 1),
    transform 0.29s cubic-bezier(.16, .8, .32, 1),
    box-shadow 0.29s cubic-bezier(.4, 0, .2, 1) !important;
}

.nav-cta:hover {
  transform: translateY(-2px) scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(107, 143, 113, 0.45) !important;
}

/* ─── ESP-CTA (especialidades) ─── */
.esp-cta {
  transition:
    opacity 0.42s ease,
    transform 0.42s ease,
    background 0.31s cubic-bezier(.4, 0, .2, 1),
    color 0.31s cubic-bezier(.4, 0, .2, 1),
    border-color 0.31s cubic-bezier(.4, 0, .2, 1),
    box-shadow 0.31s cubic-bezier(.4, 0, .2, 1) !important;
}

.esp-cta:hover {
  background: var(--blanco) !important;
  color: var(--verde-d) !important;
  border-color: var(--blanco) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-1px) !important;
}

/* ─── Btn perfil ─── */
.btn-perfil {
  transition:
    border-color 0.31s ease,
    color 0.31s ease,
    background 0.31s ease,
    transform 0.31s cubic-bezier(.16, .8, .32, 1),
    box-shadow 0.31s ease !important;
}

.btn-perfil:hover {
  border-color: var(--verde) !important;
  color: var(--verde) !important;
  background: var(--verde-xl) !important;
  transform: translateY(-2px) translateX(2px) !important;
  box-shadow: 0 4px 14px rgba(107, 143, 113, 0.18) !important;
}

/* ─── Contacto directo btns ─── */
.contacto-directo-btn {
  transition:
    border-color 0.34s ease,
    background 0.34s ease,
    transform 0.34s cubic-bezier(.16, .8, .32, 1),
    box-shadow 0.34s ease !important;
}

.contacto-directo-btn:not(.contacto-directo-btn--primary):hover {
  border-color: var(--verde) !important;
  background: var(--verde-xl) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 28px rgba(107, 143, 113, 0.18) !important;
}

.contacto-directo-btn--primary {
  transition:
    background 0.34s ease,
    transform 0.34s cubic-bezier(.16, .8, .32, 1),
    box-shadow 0.34s ease !important;
}

.contacto-directo-btn--primary:hover {
  background: var(--verde-d) !important;
  border-color: var(--verde-d) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 28px rgba(78, 107, 84, 0.35) !important;
}

/* ─── Mobile bar btns ─── */
.mobile-bar-btn {
  transition:
    filter 0.26s ease,
    transform 0.26s cubic-bezier(.16, .8, .32, 1) !important;
}

.mobile-bar-btn:active {
  transform: scale(0.97) !important;
  filter: brightness(0.92) !important;
}

/* ─── CTA emocional btn grande ─── */
.cta-emocional .btn-lg {
  transition:
    background 0.36s cubic-bezier(.4, 0, .2, 1),
    transform 0.36s cubic-bezier(.16, .8, .32, 1),
    box-shadow 0.36s cubic-bezier(.4, 0, .2, 1) !important;
}

.cta-emocional .btn-lg:hover {
  background: var(--crema) !important;
  border-color: var(--crema) !important;
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.12),
    0 20px 40px rgba(0, 0, 0, 0.2) !important;
}

.cta-emocional .btn-lg:active {
  transform: translateY(-2px) scale(1.01) !important;
  transition-duration: 0.1s !important;
}

/* ─── WA float ─── */
.wa-float {
  transition:
    transform 0.36s cubic-bezier(.16, .8, .32, 1),
    box-shadow 0.28s ease !important;
}

.wa-float:hover {
  transform: scale(1.14) !important;
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.55) !important;
}

.wa-float:active {
  transform: scale(1.06) !important;
  transition-duration: 0.1s !important;
}

/* ─── Footer logo más grande (~65%) ─── */
.footer-logo {
  height: 82px !important;
  width: auto !important;
  opacity: 0.9 !important;
  margin-bottom: 20px !important;
}

/* ─── Hero — centrar verticalmente imagen vertical ─── */
.hero-slide {
  background-position: center center !important;
}

/* Primera slide (photo_martita) centra en la parte superior del cuerpo */
.hero-slide:first-child {
  background-position: center 20% !important;

  /* ============================================================
   BORDER GLOW + SPOTLIGHT v2 — Clínica Shalom
   Paleta: Verde salvia · Verde menta · Beige cálido
   Secciones: confianza · especialidades · resultados · faq
   Solo escritorio. Móvil: versión estática optimizada.
   ============================================================ */

  /* ── Custom properties base en cada tarjeta glow ── */
  .glow-card {
    --gx: 50%;
    /* posición X del cursor (%) */
    --gy: 50%;
    /* posición Y del cursor (%) */
    --gop: 0;
    /* opacidad del glow 0→1 */
    --gsz: 340px;
    /* tamaño del spotlight */
    --gbsz: 180px;
    /* tamaño del border glow */

    /* Colores del glow — verdes Shalom */
    --gc1: rgba(107, 180, 120, 0.70);
    /* verde brillante centro */
    --gc2: rgba(107, 143, 113, 0.38);
    /* verde salvia medio */
    --gc3: rgba(201, 185, 154, 0.15);
    /* beige borde exterior */
    --gspot: rgba(139, 195, 145, 0.13);
    /* spotlight interior */

    position: relative;
    isolation: isolate;
    z-index: 0;
  }

  /* ── Layer 1: Spotlight interior (sigue al cursor dentro de la tarjeta) ── */
  .glow-card::before {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 1;
    background: radial-gradient(var(--gsz) circle at var(--gx) var(--gy),
        var(--gspot) 0%,
        transparent 70%);
    opacity: var(--gop);
    transition: opacity 0.5s ease;
    will-change: background, opacity;
  }

  /* ── Layer 2: Border glow exterior (sigue al cursor en el borde) ── */
  .glow-card::after {
    content: '';
    pointer-events: none;
    position: absolute;
    inset: -1.5px;
    border-radius: inherit;
    z-index: -1;
    background: radial-gradient(var(--gbsz) circle at var(--gx) var(--gy),
        var(--gc1) 0%,
        var(--gc2) 30%,
        var(--gc3) 60%,
        transparent 80%);
    opacity: var(--gop);
    transition: opacity 0.5s ease;
    will-change: background, opacity;
  }

  /* ── Contenido siempre encima de los efectos ── */
  .glow-card>* {
    position: relative;
    z-index: 2;
  }

  /* ── Botones dentro de cards encima de todo ── */
  .glow-card .btn,
  .glow-card .esp-cta,
  .glow-card .btn-perfil,
  .glow-card a,
  .glow-card button {
    position: relative;
    z-index: 3;
  }

  /* ══════════════════════════════════════════════
   HOVER STATES POR SECCIÓN
   Elevación + escala + sombra profunda
   ══════════════════════════════════════════════ */

  @media (hover: hover) and (pointer: fine) {

    /* ── Base transition para todas las glow-cards ── */
    .glow-card {
      transition:
        transform 0.35s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow 0.35s cubic-bezier(.4, 0, .2, 1),
        border-color 0.35s ease !important;
      will-change: transform, box-shadow;
    }

    /* ── CONFIANZA — la más llamativa ── */
    .confianza-card.glow-card {
      --gsz: 380px;
      --gbsz: 200px;
      --gspot: rgba(139, 195, 145, 0.16);
      background: var(--blanco);
      border: 1.5px solid var(--gris-l);
    }

    .confianza-card.glow-card:hover {
      transform: translateY(-12px) scale(1.025) !important;
      box-shadow:
        0 0 0 1.5px rgba(107, 180, 120, 0.55),
        0 8px 20px rgba(107, 143, 113, 0.18),
        0 20px 48px rgba(107, 143, 113, 0.22),
        0 40px 80px rgba(107, 143, 113, 0.10) !important;
      border-color: rgba(107, 180, 120, 0.6) !important;
    }

    /* ── ESPECIALIDADES ── */
    .esp-card.glow-card {
      --gsz: 320px;
      --gbsz: 160px;
      --gspot: rgba(139, 195, 145, 0.14);
    }

    .esp-card.glow-card:hover {
      transform: translateY(-12px) scale(1.03) !important;
      box-shadow:
        0 0 0 1.5px rgba(107, 180, 120, 0.5),
        0 8px 20px rgba(107, 143, 113, 0.20),
        0 20px 44px rgba(107, 143, 113, 0.18),
        0 36px 72px rgba(107, 143, 113, 0.09) !important;
      border-color: rgba(107, 180, 120, 0.55) !important;
      /* Mantener fondo verde en hover */
      background: var(--verde) !important;
    }

    /* Cuando esp-card está en hover verde, ajustar gspot para que se vea sobre verde */
    .esp-card.glow-card:hover {
      --gspot: rgba(255, 255, 255, 0.10);
      --gc1: rgba(255, 255, 255, 0.55);
      --gc2: rgba(255, 255, 255, 0.22);
      --gc3: rgba(255, 255, 255, 0.08);
    }

    /* ── RESULTADOS TERAPÉUTICOS ── */
    .resultado-item.glow-card {
      --gsz: 260px;
      --gbsz: 130px;
      --gspot: rgba(139, 195, 145, 0.12);
    }

    .resultado-item.glow-card:hover {
      transform: translateX(8px) scale(1.02) !important;
      box-shadow:
        0 0 0 1px rgba(107, 180, 120, 0.4),
        4px 6px 20px rgba(107, 143, 113, 0.18),
        8px 16px 40px rgba(107, 143, 113, 0.12) !important;
      border-left-color: var(--verde) !important;
      background: var(--verde-l) !important;
    }

    /* Border glow lateral para resultado */
    .resultado-item.glow-card::after {
      inset: -1px -1px -1px -2px;
    }

    /* ── FAQ ── */
    .faq-item.glow-card {
      --gsz: 300px;
      --gbsz: 150px;
      --gspot: rgba(139, 195, 145, 0.09);
      border-radius: var(--radius);
      padding: 0 12px;
      margin: 0 -12px;
      border-bottom: 1px solid var(--gris-l) !important;
      border-top: none !important;
      border-left: none !important;
      border-right: none !important;
    }

    .faq-item.glow-card:hover {
      transform: translateY(-3px) !important;
      box-shadow:
        0 0 0 1px rgba(107, 180, 120, 0.25),
        0 6px 20px rgba(107, 143, 113, 0.14),
        0 14px 36px rgba(107, 143, 113, 0.08) !important;
      background: rgba(240, 245, 241, 0.6) !important;
    }

    /* Ajustar borde exterior del FAQ para no verse doble */
    .faq-item.glow-card::after {
      inset: -1px;
      border-radius: var(--radius);
    }
  }

  /* ══════════════════════════════════════════════
   MÓVIL — Versión estática optimizada
   Sin tracking de cursor, con feedback táctil
   ══════════════════════════════════════════════ */
  @media (hover: none),
  (pointer: coarse) {

    .glow-card::before,
    .glow-card::after {
      display: none !important;
    }

    .glow-card {
      transition: box-shadow 0.25s ease, transform 0.25s ease !important;
    }

    /* Feedback visual en tap */
    .confianza-card.glow-card:active,
    .esp-card.glow-card:active,
    .resultado-item.glow-card:active,
    .faq-item.glow-card:active {
      transform: scale(0.985) !important;
      box-shadow: 0 4px 16px rgba(107, 143, 113, 0.22) !important;
    }

    /* Sombra estática suave en móvil para dar profundidad */
    .confianza-card.glow-card,
    .esp-card.glow-card {
      box-shadow: 0 2px 10px rgba(107, 143, 113, 0.10);
    }
  }


  /* ── CitaGTx Embedded Booking Section ───────────────────────────────────────── */
  .agenda {
    background: #f8f7f5;
  }

  .agenda-embed {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  /* Strip the outer padding/margin citagtx adds when standalone */
  .agenda-embed>div {
    max-width: 100% !important;
    padding: 0 !important;
  }
}