/* =============================================
   Clínica Veterinaria Ángel's — Estilos Globales
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #52B788;
  --green-pale:   #D8F3DC;
  --brand-pink:   #DD3375;
  --brand-pink-deep: #B81F5C;
  --brand-pink-soft: #FCE6EF;
  --brand-burgundy: #7A1D45;
  --brand-teal:   #00C4CC;
  --brand-teal-deep: #009AA0;
  --brand-teal-soft: #E0F9FA;
  --accent:       #95D5B2;
  --white:        #FFFFFF;
  --paper:        #FBF7F3;
  --gray-50:      #F8FAF9;
  --gray-100:     #EEF2F0;
  --gray-400:     #9CA3AF;
  --gray-700:     #374151;
  --gray-900:     #111827;
  --whatsapp:     #25D366;
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    18px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:    0 20px 40px rgba(0,0,0,.14);
  --transition:   .3s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--gray-900);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 10000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--brand-burgundy);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── Utilidades ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  color: var(--brand-burgundy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 0 0 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(122,29,69,.22);
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.05;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -.03em;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--gray-700);
  max-width: 540px;
}

/* ── Botones ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .01em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 10px;
  padding: 13px 22px;
  white-space: nowrap;
}
.btn-primary {
  background: #2D6A4F;
  color: var(--white);
  box-shadow: none;
}
.btn-primary:hover {
  background: #1B4332;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--brand-pink-deep);
  border: 2px solid rgba(221,51,117,.6);
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-deep));
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--gray-900);
  border-color: rgba(17,24,39,.14);
  box-shadow: none;
}
.btn-white:hover {
  background: #f5efea;
  transform: translateY(-1px);
}

/* ── HEADER ── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(251,247,243,.96);
  border-bottom: 1px solid rgba(17,24,39,.08);
  box-shadow: none;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  transition: var(--transition);
}
/* El wrapper recorta la fila de íconos del logo (bottom ~28%) */
.logo-img-wrap {
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
}
.logo-img {
  height: 68px;   /* 48 / 0.71 ≈ 68px — los íconos quedan fuera del contenedor */
  width: auto;
  max-width: none;
  display: block;
  filter: brightness(0) invert(1) drop-shadow(0 1px 6px rgba(0,0,0,.20));
  transition: var(--transition);
}
.header.scrolled .logo-img {
  filter: none;
}
/* Footer: logo en blanco sobre fondo oscuro */
.logo-img-wrap--footer {
  height: 52px;
}
.logo-img-wrap--footer .logo-img {
  height: 74px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-deep));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 10px 20px rgba(221,51,117,.22);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.header.scrolled .nav-links a { color: var(--gray-700); }
.nav-links a:hover { color: #fff2f6; }
.header.scrolled .nav-links a:hover { color: var(--brand-burgundy); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.header:not(.scrolled) .lang-switch { color: var(--white) !important; }
.nav-whatsapp-btn {
  font-size: .85rem;
  padding: 10px 20px;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
}
.hamburger span { display: block; width: 24px; height: 2px; background: currentColor; transition: var(--transition); border-radius: 2px; }
.hamburger:focus-visible,
.btn:focus-visible,
.nav-links a:focus-visible,
.footer-pill:focus-visible,
.service-link:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.header.scrolled .hamburger:focus-visible,
.header.scrolled .nav-links a:focus-visible {
  outline-color: rgba(184, 31, 92, 0.55);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(130deg, rgba(184,31,92,.50) 0%, rgba(221,51,117,.42) 48%, rgba(122,29,69,.32) 100%),
    url('../img/hero1.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 120px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(184,31,92,.30) 0%, rgba(184,31,92,0) 70%);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: -5%;
  width: 110%;
  height: 100px;
  background: #FFFFFF;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  pointer-events: none;
}
.hero-content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}
.hero-panel {
  max-width: 720px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  backdrop-filter: none;
  box-shadow: none;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 0 0 10px;
  border-radius: 0;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  box-shadow: none;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: .98;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -.04em;
}
.hero-title span {
  color: #f7d9e5;
  text-shadow: none;
}
.hero-sub {
  font-size: 1.04rem;
  color: rgba(255,248,251,.88);
  margin-bottom: 24px;
  max-width: 520px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-bottom: 28px;
}
.hero-trust span {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: .86rem;
  font-weight: 700;
  opacity: .9;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-secondary-btn {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: none;
}
.hero-secondary-btn:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-1px);
}
.hero-stats {
  display: flex;
  gap: 18px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: left;
  min-width: 168px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-stat strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .01em;
  color: var(--white);
}
.hero-stat span {
  font-size: .8rem;
  color: rgba(255,255,255,.72);
  font-weight: 500;
}

/* ── PRUEBA SOCIAL ── */
.trust-strip {
  padding: 24px;
  background: var(--white);
  border-bottom: 1px solid rgba(122,29,69,.10);
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}
.trust-strip-inner > * {
  display: grid;
  gap: 3px;
  padding: 4px 28px;
  border-right: 1px solid rgba(122,29,69,.12);
}
.trust-strip-inner > *:first-child { padding-left: 0; }
.trust-strip-inner > *:last-child { border-right: 0; }
.trust-strip strong {
  color: var(--brand-burgundy);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.trust-strip span { color: var(--gray-700); font-size: .84rem; }
.trust-strip a:hover strong { color: var(--brand-pink-deep); }

/* ── SERVICIOS ── */
.services {
  padding: 96px 24px;
  background: var(--white);
}
.services-header { text-align: left; margin-bottom: 44px; max-width: 760px; }
.services-header .section-sub { margin: 0; max-width: 760px; }
.services-detail-copy {
  max-width: 940px;
  color: var(--gray-700);
  line-height: 1.76;
}
.services-detail-copy--secondary {
  margin-top: 14px;
}
.services-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}
.services-quick-card {
  display: grid;
  gap: 12px;
  padding: 22px 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #fffafc 100%);
  border: 1px solid rgba(221,51,117,.10);
  box-shadow: 0 16px 32px rgba(184,31,92,.06);
  transition: var(--transition);
}
.services-quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(184,31,92,.10);
  border-color: rgba(221,51,117,.18);
}
.services-quick-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  border: 1px solid rgba(221,51,117,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #fff;
}
.services-quick-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.services-quick-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}
.services-quick-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--gray-900);
}
.services-quick-card p {
  color: #625d69;
  font-size: .92rem;
  line-height: 1.58;
}
.services-overview-cta {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.services-inline-note {
  max-width: 720px;
  margin: 26px auto 0;
  text-align: left;
  color: var(--gray-700);
  line-height: 1.7;
}
.service-card {
  background: linear-gradient(180deg, #fff 0%, #fff8fb 100%);
  border: 1px solid rgba(221,51,117,.10);
  border-radius: 22px;
  padding: 26px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(184,31,92,.05);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-pink), rgba(221,51,117,.18));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(184,31,92,.09);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #fff2f7, var(--brand-pink-soft));
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
  padding: 10px;
  overflow: hidden;
}
.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-deep));
  color: var(--white);
  transform: scale(1.05) rotate(-2deg);
}
.service-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-700);
  margin-bottom: 14px;
  line-height: 1.65;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.service-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff7fb;
  border: 1px solid rgba(221,51,117,.12);
  color: var(--brand-pink-deep);
  font-size: .8rem;
  font-weight: 700;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--brand-pink-deep);
  transition: var(--transition);
}
.service-link:hover { gap: 10px; }

/* ── POR QUÉ NOSOTROS ── */
.why {
  padding: 96px 24px;
  background: linear-gradient(180deg, #fff 0%, #fffafc 100%);
}
.why-inner {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 44px;
  align-items: start;
}
.why-media {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 100%;
  background: #efe6e1;
  box-shadow: 0 22px 48px rgba(122,29,69,.10);
}
.why-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}
.why-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,24,39,.02) 20%, rgba(17,24,39,.54) 100%);
}
.why-media figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: var(--white);
  font-size: .95rem;
  line-height: 1.6;
  max-width: 360px;
}
.why-copy {
  max-width: 760px;
}
.why-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 36px;
  margin: 32px 0;
}
.why-quote {
  padding-left: 18px;
  margin: 18px 0 28px;
  border-left: 3px solid rgba(221,51,117,.32);
  color: var(--gray-700);
  font-style: italic;
}
.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  min-height: 100%;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(221,51,117,.12);
}
.why-feature-icon {
  width: 36px; height: 36px;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.why-feature-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
.why-feature-text span { font-size: .92rem; color: var(--gray-700); line-height: 1.6; }

/* ── HORARIOS ── */
.schedule {
  padding: 88px 24px;
  background: linear-gradient(135deg, #7d1f49 0%, #dd3375 58%, #f08fb4 100%);
}
.schedule-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.schedule h2 { color: var(--white); }
.schedule .section-tag {
  background: transparent;
  color: var(--white);
  border-bottom-color: rgba(255,255,255,.28);
}
.schedule-sub { color: rgba(255,255,255,.75); margin-top: 12px; font-size: 1rem; }
.schedule-table {
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: hidden;
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: var(--transition);
}
.schedule-row:last-child { border-bottom: none; }
.schedule-row:hover { background: rgba(255,255,255,.04); }
.schedule-day { font-weight: 600; color: var(--white); font-size: .95rem; }
.schedule-time {
  font-weight: 700;
  font-size: .9rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
}
.schedule-time.closed {
  color: #FCA5A5;
}
.schedule-cta { margin-top: 28px; }

/* ── CONTACTO ── */
.contact {
  padding: 96px 24px;
  background:
    radial-gradient(circle at top left, rgba(221,51,117,.10), transparent 32%),
    linear-gradient(180deg, #fff9fb 0%, var(--white) 46%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.contact-panel,
.contact-map-card {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.contact-panel {
  padding: 0;
  position: relative;
  overflow: visible;
}
.contact-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-tag {
  background: transparent;
  color: var(--brand-burgundy);
}
.contact-kicker {
  color: var(--brand-pink-deep);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.contact-title {
  max-width: 15ch;
  margin-top: 12px;
  margin-bottom: 16px;
}
.contact-lead {
  font-size: .98rem;
  line-height: 1.72;
  color: var(--gray-700);
  max-width: 50ch;
}
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 0 0 14px;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(221,51,117,.12);
  box-shadow: none;
}
.contact-item-icon {
  width: 34px; height: 34px;
  background: transparent;
  border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: none;
}
.contact-item-text strong { display: block; font-weight: 700; margin-bottom: 2px; }
.contact-item-text span { font-size: .95rem; color: var(--gray-700); line-height: 1.6; }
.contact-item-text a { color: var(--brand-pink-deep); font-weight: 700; }
.contact-item-text a:hover { text-decoration: underline; }
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}
.contact-primary-btn {
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-deep));
  color: var(--white);
  box-shadow: 0 18px 36px rgba(221,51,117,.28);
}
.contact-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(221,51,117,.34);
}
.contact-secondary-btn {
  background: #fff;
  color: var(--brand-pink-deep);
  border: 1px solid rgba(221,51,117,.18);
}
.contact-secondary-btn:hover {
  background: var(--brand-pink-soft);
  transform: translateY(-2px);
}
.contact-map-card {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}
.contact-map-copy {
  margin-bottom: 16px;
}
.contact-map-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-pink-soft);
  color: var(--brand-pink-deep);
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.contact-map-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--gray-900);
}
.contact-map-copy p {
  color: var(--gray-700);
  max-width: 42ch;
}
.contact-map {
  border-radius: 24px;
  overflow: hidden;
  background: var(--gray-100);
  aspect-ratio: 5/4;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--gray-400);
  border: 1px solid rgba(221,51,117,.14);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.65);
}
.contact-map iframe { width: 100%; height: 100%; border: none; }

/* ── FOOTER ── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.7);
  padding: 48px 24px 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 12px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: #ffcfe1; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-contact-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-pill {
  padding: 0 0 4px;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  font-size: .84rem;
  transition: var(--transition);
}
.footer-pill:hover {
  background: transparent;
  border-color: rgba(255,255,255,.52);
  color: var(--white);
}

/* ── WHATSAPP FLOTANTE ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 100px;
  padding: 14px 22px 14px 18px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}
.wa-float.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 32px rgba(37,211,102,.65);
}
.wa-float-icon { font-size: 1.4rem; }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 100px;
  border: 2px solid var(--whatsapp);
  opacity: .4;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .4; }
  50%  { transform: scale(1.08); opacity: .15; }
  100% { transform: scale(1);   opacity: .4; }
}

/* ── ANIMACIONES DE ENTRADA ── */
.fade-up {
  opacity: 1;
  transform: translateY(0);
}
html.js .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js .fade-up.visible { opacity: 1; transform: translateY(0); }
html.js .fade-up:nth-child(2) { transition-delay: .1s; }
html.js .fade-up:nth-child(3) { transition-delay: .2s; }

/* ── PÁGINA DE SERVICIO ── */
.service-hero {
  min-height: 28vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 24px 48px;
  position: relative;
  overflow: hidden;
}
.service-hero img {
  position: absolute;
  inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.service-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(96,14,47,.88) 0%, rgba(184,31,92,.46) 60%, transparent 100%);
  z-index: 1;
}
.service-hero-content { position: relative; z-index: 2; max-width: 640px; }
.service-hero-content .hero-tag { margin-bottom: 16px; }
.service-hero-content h1 { font-size: clamp(2rem,5vw,3.5rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.service-hero-content p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.services-page-hero-copy {
  max-width: 760px;
  text-align: left;
}
.services-page-hero .back-link {
  color: var(--white);
}
.services-page-hero .hero-sub {
  max-width: 640px;
}
.services-hero-trust {
  margin-bottom: 30px;
}
.services-hero-stats {
  max-width: 960px;
}

.service-body { padding: 80px 24px; }
.service-body-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: start;
}
.service-description { font-size: 1.05rem; color: var(--gray-700); line-height: 1.75; margin-bottom: 32px; }
.service-includes h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 16px; }
.service-includes ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.service-includes ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--gray-700);
}
.service-includes ul li::before {
  content: '✓';
  width: 22px; height: 22px;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gallery-grid img {
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-grid img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16/7;
}
.gallery-grid img:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }

/* ── HUB DE SERVICIOS ── */
.services-page-hero::after {
  background: linear-gradient(to top, rgba(85,8,37,.88) 0%, rgba(184,31,92,.52) 58%, rgba(255,255,255,.08) 100%);
}
.services-page-hero .hero-tag {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.28);
}
.services-page-hero .hero-title span {
  color: #ffd1e2;
}
.services-page-section {
  padding: 84px 24px;
}
.services-intro-section {
  background: linear-gradient(180deg, rgba(251,247,243,.88) 0%, #fff 100%);
}
.services-overview-band {
  padding-top: 56px;
  background: #fff;
}
.services-page-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 32px;
  align-items: start;
}
.business-card,
.business-reviews,
.services-catalog-card,
.services-gallery-card,
.service-extra-card,
.services-cta-card {
  background: var(--white);
  border: 1px solid rgba(221,51,117,.12);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(184,31,92,.08);
}
.business-card,
.business-reviews,
.services-catalog-card,
.services-gallery-card,
.service-extra-card,
.services-cta-card {
  padding: 30px;
}
.services-page-layout {
  display: grid;
  gap: 28px;
}
.business-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.rating-badge {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-deep));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 36px rgba(221,51,117,.24);
}
.rating-badge strong {
  font-size: 1.9rem;
  line-height: 1;
}
.rating-badge span {
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rating-copy h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  margin-bottom: 6px;
}
.rating-copy p {
  color: var(--gray-700);
}
.business-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 28px;
}
.business-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--brand-pink-soft);
  color: var(--brand-pink-deep);
  font-size: .84rem;
  font-weight: 700;
}
.business-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.business-detail {
  padding: 18px;
  border-radius: 20px;
  background: #fff7fb;
  border: 1px solid rgba(221,51,117,.1);
}
.business-detail strong,
.business-hours strong,
.services-catalog-card h3,
.services-gallery-card h3,
.business-reviews h3,
.service-extra-card h3,
.services-cta-card h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}
.business-detail p,
.business-hours p,
.services-gallery-card p,
.services-cta-card p,
.service-extra-card p,
.business-reviews-intro {
  color: var(--gray-700);
}
.business-hours {
  margin-top: 16px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff6fa 0%, #fff 100%);
  border: 1px solid rgba(221,51,117,.12);
}
.hours-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 12px;
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: .95rem;
  color: var(--gray-700);
}
.hours-list span:last-child {
  font-weight: 700;
  color: var(--brand-pink-deep);
}
.review-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.review-card {
  padding: 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(221,51,117,.1);
}
.review-card strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.review-card span {
  color: var(--brand-pink-deep);
  font-weight: 700;
}
.review-card p {
  color: var(--gray-700);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.service-showcase {
  display: grid;
  gap: 34px;
  margin-top: 28px;
}
.service-spotlight {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 30px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(122,29,69,.10);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff 0%, #fffafc 100%);
}
.service-spotlight--reverse .service-spotlight-media {
  order: 2;
}
.service-spotlight--reverse .service-spotlight-copy {
  order: 1;
}
.service-spotlight-media {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #efe6e1;
}
.service-spotlight-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-spotlight-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--brand-burgundy);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.service-spotlight-copy h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.service-spotlight-copy p {
  color: var(--gray-700);
  line-height: 1.72;
  margin-bottom: 18px;
}
.service-spotlight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.service-spotlight-meta span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(122,29,69,.06);
  color: var(--brand-burgundy);
  font-size: .76rem;
  font-weight: 700;
}
.service-spotlight-note {
  margin-bottom: 18px;
  padding: 18px 20px;
  border-left: 3px solid rgba(122,29,69,.65);
  background: rgba(122,29,69,.04);
}
.service-spotlight-note strong {
  display: block;
  font-size: .96rem;
  line-height: 1.5;
  margin-bottom: 8px;
  color: var(--gray-900);
}
.service-spotlight-note p {
  margin-bottom: 0;
  font-size: .94rem;
  line-height: 1.62;
}
.service-spotlight-includes {
  margin-bottom: 12px;
  color: var(--gray-900);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .01em;
}
.service-spotlight-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.service-spotlight-list li {
  display: flex;
  gap: 10px;
  color: var(--gray-700);
  line-height: 1.6;
}
.service-spotlight-list li::before {
  content: '•';
  color: var(--brand-burgundy);
  font-weight: 800;
}
.services-special-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-top: 1px solid rgba(122,29,69,.14);
  background: #fff;
}
.catalog-intro {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--gray-700);
  font-size: 1rem;
  line-height: 1.75;
}
.catalog-item {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(221,51,117,.12);
  background: linear-gradient(180deg, #fff 0%, #fff7fb 100%);
  overflow: hidden;
  position: relative;
}
.catalog-item-media {
  min-height: 150px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(221,51,117,.12), rgba(255,255,255,.95));
  border: 1px solid rgba(221,51,117,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  padding: 20px;
  text-align: center;
}
.catalog-item-media img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.catalog-item-media span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid rgba(221,51,117,.12);
  color: var(--brand-pink-deep);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.catalog-item-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.catalog-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-pink), var(--brand-pink-deep));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 12px 24px rgba(221,51,117,.22);
}
.catalog-item h4 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.catalog-item p {
  color: var(--gray-700);
  margin-bottom: 18px;
  line-height: 1.72;
}
.catalog-item ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.catalog-item li {
  display: flex;
  gap: 10px;
  color: var(--gray-700);
  font-size: .94rem;
}
.catalog-item li::before {
  content: '•';
  color: var(--brand-pink);
  font-weight: 800;
}
.services-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.services-gallery-grid figure {
  overflow: hidden;
  border-radius: 22px;
  position: relative;
  min-height: 220px;
}
.services-gallery-grid figure:first-child {
  grid-column: 1 / -1;
  min-height: 320px;
}
.services-gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.services-gallery-grid figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(17,24,39,.58);
  color: var(--white);
  backdrop-filter: blur(8px);
  font-size: .88rem;
  font-weight: 600;
}
.service-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.services-cta-card {
  background: linear-gradient(135deg, #fff0f6 0%, #fff 100%);
}
.services-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.service-anchor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.service-anchor-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(122,29,69,.10);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #fffafc 100%);
  text-decoration: none;
  color: inherit;
  transition: transform .32s cubic-bezier(.4,0,.2,1), box-shadow .32s cubic-bezier(.4,0,.2,1), border-color .32s ease;
}
.service-anchor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(122,29,69,.14);
  border-color: rgba(122,29,69,.28);
}
.service-anchor-card:focus-visible {
  outline: 3px solid rgba(122,29,69,.24);
  outline-offset: 3px;
}
.service-anchor-media {
  aspect-ratio: 1.35 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #efe6e1;
  position: relative;
}
.service-anchor-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(122,29,69,.18), rgba(221,51,117,.10));
  opacity: 0;
  transition: opacity .32s ease;
  border-radius: 14px;
}
.service-anchor-card:hover .service-anchor-media::after {
  opacity: 1;
}
.service-anchor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .48s cubic-bezier(.4,0,.2,1);
}
.service-anchor-card:hover .service-anchor-media img {
  transform: scale(1.06);
}
.service-anchor-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--brand-burgundy);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.service-anchor-copy strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  line-height: 1.08;
  margin-bottom: 8px;
}
.service-anchor-copy p {
  color: var(--gray-700);
  line-height: 1.62;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-pink-deep);
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: 32px;
  transition: var(--transition);
}
.back-link:hover { gap: 12px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .why-inner,
  .schedule-inner,
  .contact-inner,
  .service-body-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-media img { min-height: 380px; }
  .why-features { grid-template-columns: 1fr; gap: 18px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .service-spotlight,
  .service-spotlight--reverse {
    grid-template-columns: 1fr;
  }
  .service-spotlight--reverse .service-spotlight-media,
  .service-spotlight--reverse .service-spotlight-copy {
    order: initial;
  }
  .services-page-grid,
  .service-extra-grid,
  .business-details { grid-template-columns: 1fr; }
  .service-anchor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-gallery-grid { grid-template-columns: 1fr; }
  .services-gallery-grid figure:first-child { min-height: 260px; }
  .contact-panel,
  .contact-map-card { padding: 26px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: flex;
    position: fixed;
    top: 84px;
    left: 18px;
    right: 18px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 24px 50px rgba(17,24,39,.14);
    border: 1px solid rgba(221,51,117,.10);
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .25s ease, transform .25s ease;
  }
  body.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links a {
    color: var(--gray-900);
    font-size: 1rem;
    padding: 10px 12px;
    border-radius: 14px;
  }
  .nav-links a:hover {
    background: #fff5f9;
    color: var(--brand-pink-deep);
  }
  .hamburger { display: flex; color: var(--white); }
  .header.scrolled .hamburger { color: var(--gray-900); }
  /* En móvil se conserva el switch de idioma junto a la hamburguesa;
     el botón de WhatsApp se omite porque ya aparece en el hero y en el pie. */
  .nav-cta {
    display: flex;
    margin-left: auto;
    margin-right: 14px;
  }
  .nav-cta .nav-whatsapp-btn { display: none; }
  .lang-switch {
    padding: 9px 15px !important;
    margin-right: 0 !important;
  }

  /* Hamburger → X animation */
  body.menu-open .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  body.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  body.menu-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* Overlay backdrop */
  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(17,24,39,.45);
    backdrop-filter: blur(2px);
    z-index: 89;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  body.menu-open .nav-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 104px 18px 64px;
  }
  .hero-panel {
    padding: 0;
    border-radius: 0;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stat {
    min-width: 100%;
  }
  .trust-strip { padding: 18px; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-strip-inner > * {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(122,29,69,.12);
  }
  .trust-strip-inner > *:last-child { border-bottom: 0; }
  .services-page-section {
    padding: 72px 18px;
  }
  .business-card,
  .business-reviews,
  .services-catalog-card,
  .services-gallery-card,
  .service-extra-card,
  .services-cta-card {
    padding: 22px;
    border-radius: 22px;
  }
  .business-rating {
    align-items: flex-start;
  }
  .rating-badge {
    width: 74px;
    height: 74px;
    border-radius: 20px;
  }
  .services-cta-actions .btn,
  .services-overview-cta .btn {
    width: 100%;
    justify-content: center;
  }
  .contact {
    padding: 80px 18px;
  }
  .contact-panel,
  .contact-map-card {
    padding: 0;
    border-radius: 0;
  }
  .contact-title {
    max-width: none;
  }
  .contact-item {
    padding: 0 0 14px;
  }
  .contact-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .why-media {
    border-radius: 18px;
  }
  .why-media img {
    min-height: 300px;
  }
  .why-media figcaption {
    left: 18px;
    right: 18px;
    bottom: 18px;
    font-size: .9rem;
  }
  .services-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .service-anchor-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-showcase {
    gap: 22px;
  }
  .service-spotlight,
  .services-special-card {
    padding: 20px;
    border-radius: 16px;
  }
  .service-spotlight-note {
    padding: 16px;
  }
  .service-spotlight-copy h3 {
    font-size: 1.55rem;
  }
  .catalog-item-media {
    min-height: 132px;
  }
  .catalog-item-media img {
    width: 78px;
    height: 78px;
  }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .wa-float span { display: none; }
  .wa-float { padding: 16px; border-radius: 50%; }
  .hero-stats { gap: 12px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid img:first-child { grid-column: 1; aspect-ratio: 16/9; }
}

/* ══════════════════════════════════════
   UI/UX IMPROVEMENTS
   ══════════════════════════════════════ */

/* ── Botón WhatsApp verde ── */
.btn-whatsapp {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--white);
  box-shadow: none;
  font-size: 1rem;
  padding: 16px 32px;
}
.btn-whatsapp:hover {
  background: rgba(255,255,255,.88);
  transform: translateY(-1px);
  color: var(--gray-900);
}

/* ── Hero trust: texto simple ── */
.hero-trust span::before {
  content: none;
}

/* ── Service card: top accent siempre visible (sutil) ── */
.service-card::before {
  transform: scaleX(1);
  opacity: 0.25;
}
.service-card:hover::before { opacity: 1; }

@media (min-width: 601px) and (max-width: 1100px) {
  .services-quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ── Servicio cards en móvil: 1 columna compacta ── */
@media (max-width: 600px) {
  .service-card {
    padding: 18px 14px;
  }
  .service-icon {
    width: 48px; height: 48px;
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .service-card h3 { font-size: 1rem; margin-bottom: 7px; }
  .service-card p  { font-size: .82rem; margin-bottom: 12px; line-height: 1.55; }
  .service-tags    { gap: 6px; margin-bottom: 12px; }
  .service-tags span { padding: 5px 9px; font-size: .74rem; }
  .service-link    { font-size: .82rem; }
}

/* ── Horarios: indicador "Abierto" sutil ── */
.schedule-row.open .schedule-day::before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  background: #4ade80;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* ── Why-feature: mejor hover ── */
.why-feature {
  transition: var(--transition);
}
.why-feature:hover {
  background: transparent;
  border-color: rgba(221,51,117,.22);
  transform: none;
}

/* ── Contact items: icon limpio ── */
.contact-item-icon {
  background: transparent;
  color: var(--brand-pink-deep);
  border-radius: 0;
  box-shadow: none;
}

/* ── Sección horarios: padding móvil ── */
@media (max-width: 600px) {
  .schedule { padding: 64px 18px; }
  .why      { padding: 72px 18px; }
  .services { padding: 72px 18px; }
  .hero-panel { padding: 0; }
  .hero-tag {
    font-size: .7rem;
    white-space: normal;
    line-height: 1.5;
  }
  .hero-sub {
    font-size: .98rem;
  }
  .services-header,
  .services-inline-note {
    text-align: left;
  }
}

/* ── Services header: título más conciso ── */
.services-header { margin-bottom: 40px; }

/* ── Stats bar del hero: divisor visual ── */
.hero-stats {
  border-top: none;
  padding-top: 0;
}

/* ── CTA de servicios: más prominente ── */
.services-overview-cta .btn {
  font-size: 1rem;
  padding: 16px 36px;
  box-shadow: 0 12px 30px rgba(221,51,117,.3);
}
.services-overview-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(221,51,117,.38);
}

/* ── Footer: línea de acento superior ── */
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
}

/* ── Scroll suave en todas las anclas ── */
html { scroll-padding-top: 80px; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html.js .fade-up,
  html.js .fade-up.visible,
  .wa-float,
  .wa-float.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Footer legal links ── */
.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  padding: 16px 0 8px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .8rem;
  color: rgba(255,255,255,.55);
}
.footer-legal-links a {
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-legal-links a:hover {
  color: var(--brand-pink);
}
.footer-legal-links span {
  color: rgba(255,255,255,.25);
}

/* ── Páginas legales ── */
.legal-hero {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1e1230 100%);
  padding: 120px 0 60px;
  color: var(--white);
}
.legal-hero-tag {
  display: inline-block;
  background: rgba(221,51,117,.18);
  color: var(--brand-pink);
  border: 1px solid rgba(221,51,117,.3);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.legal-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 680px;
  line-height: 1.7;
}
.back-link {
  display: inline-block;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 28px;
  transition: color var(--transition);
}
.back-link:hover { color: var(--white); }

.legal-body {
  padding: 64px 0 80px;
  background: var(--gray-50);
}
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
}
.legal-section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand-pink-soft);
}
.legal-section p {
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-section ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}
.legal-section li {
  display: flex;
  gap: 10px;
  color: var(--gray-700);
  font-size: .95rem;
  line-height: 1.65;
}
.legal-section li::before {
  content: '•';
  color: var(--brand-pink);
  font-weight: 800;
  flex-shrink: 0;
}
.legal-section a {
  color: var(--brand-pink);
  text-decoration: underline;
}
.legal-note {
  margin-top: 14px !important;
  padding: 12px 16px;
  background: var(--brand-pink-soft);
  border-left: 3px solid var(--brand-pink);
  border-radius: 0 8px 8px 0;
  font-size: .9rem;
}
.legal-meta {
  padding-top: 24px;
  border-top: 1px solid var(--gray-100);
}
.legal-back-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .legal-hero { padding: 100px 0 48px; }
  .legal-body { padding: 48px 0 60px; }
  .legal-back-links { flex-direction: column; }
}

/* ── CARRUSEL ── */
.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
}
.carousel-track img {
  min-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.90);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  transition: background .2s ease, transform .2s ease;
  color: var(--gray-900);
  padding: 0;
  font-family: inherit;
}
.carousel-btn:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 4;
}
.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.carousel-dot.active {
  background: rgba(255,255,255,.95);
  transform: scale(1.35);
}
.carousel[data-single] .carousel-btn,
.carousel[data-single] .carousel-dots { display: none; }

/* ── Cookie Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17,24,39,0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9000;
  border-top: 2px solid var(--brand-pink);
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  flex-wrap: wrap;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p {
  font-size: .82rem;
  color: rgba(255,255,255,.78);
  margin: 0;
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
}
.cookie-banner a { color: var(--brand-pink); text-decoration: underline; }
.cookie-banner-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept-btn {
  background: var(--brand-pink);
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background var(--transition);
}
.cookie-accept-btn:hover { background: var(--brand-pink-deep); }
