/* ============================================================
   Dra. Clara Gutiérrez — Dermatología
   Sistema de diseño: blush aireado + tinta carbón
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Marca (derivada del logo) */
  --blush-50:  #FBF6F7;
  --blush-100: #F6E9ED;
  --blush-200: #EFD3DA;
  --blush-300: #E6C2CC;
  --rose-400:  #D9A6B3;
  --rose-500:  #C27E90;   /* acento fuerte */
  --rose-600:  #A9647A;   /* hover profundo */

  --ink:       #1E181B;   /* titulares / texto principal */
  --ink-soft:  #3B3237;
  --muted:     #726670;   /* texto secundario */
  --line:      #ECE1E5;
  --white:     #FFFFFF;

  /* Tipografía */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;

  /* Espaciado / formas */
  --r-sm: 12px;
  --r:    20px;
  --r-lg: 28px;
  --pill: 999px;
  --maxw: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  /* Sombras (tintadas en rosa) */
  --sh-sm: 0 4px 14px -8px rgba(120, 70, 85, .30);
  --sh:    0 18px 40px -24px rgba(120, 70, 85, .35);
  --sh-lg: 0 40px 80px -40px rgba(120, 70, 85, .40);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--blush-50);
  line-height: 1.65;
  font-size: clamp(15px, 1.05vw, 17px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
[hidden] { display: none !important; }
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* ---------- Tipografía base ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 5.4vw, 4.35rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
p  { color: var(--ink-soft); }

.kicker {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--rose-500);
  display: inline-flex;
  align-items: center;
  gap: .7em;
}
.kicker::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--rose-400);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 10vw, 130px); }
.section--tight { padding-block: clamp(48px, 7vw, 90px); }
.section-head { max-width: 640px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head .kicker { margin-bottom: 20px; }
.section-head p { margin-top: 18px; font-size: 1.08rem; color: var(--muted); }
.center { text-align: center; margin-inline: auto; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  padding: 15px 30px;
  border-radius: var(--pill);
  font-weight: 500;
  font-size: .98rem;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--sh);
}
.btn--primary:hover {
  background: var(--rose-500);
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.btn--rose {
  background: var(--rose-500);
  color: var(--white);
  box-shadow: var(--sh);
}
.btn--rose:hover { background: var(--rose-600); transform: translateY(-3px); box-shadow: var(--sh-lg); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn--ghost:hover { border-color: var(--rose-400); color: var(--rose-600); transform: translateY(-3px); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 18px;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(251, 246, 247, .82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-color: var(--line);
  padding-block: 11px;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: .55em;
  font-family: var(--serif);
  line-height: 1;
}
.brand__mark {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink);
}
.brand__name {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}
.nav__links a {
  font-size: .92rem;
  color: var(--ink-soft);
  position: relative;
  padding-block: 4px;
  transition: color .3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--rose-500);
  transition: width .35s var(--ease);
}
.nav__links a:hover { color: var(--rose-600); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }

/* Menú móvil */
.nav__toggle {
  display: none;
  position: relative;
  z-index: 60;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__mobcta { display: none; }
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}
.nav.is-open .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__toggle span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(112px, 13vh, 150px);
  padding-bottom: clamp(50px, 7vw, 80px);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 55% at 78% 32%, var(--blush-200) 0%, transparent 60%),
    radial-gradient(70% 60% at 15% 12%, var(--blush-100) 0%, transparent 55%),
    var(--blush-50);
}
.hero__blob {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .55;
}
.hero__blob--1 {
  width: 40vw; height: 40vw; max-width: 520px; max-height: 520px;
  right: 4%; top: 14%;
  background: radial-gradient(circle at 35% 35%, var(--blush-300), var(--rose-400));
  opacity: .35;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.hero__content { max-width: 620px; }
.hero__eyebrow { margin-bottom: 26px; }
.hero h1 { margin-bottom: 26px; }
.hero h1 em {
  font-style: italic;
  color: var(--rose-500);
}
.hero__lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 30em;
  margin-bottom: 36px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero__trust {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
}
.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
}
.hero__trust span::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose-400);
}

.hero__figure {
  position: relative;
  justify-self: center;
}
.hero__disc {
  position: absolute;
  inset: 6% 2% 0 2%;
  background:
    radial-gradient(circle at 50% 40%, var(--white) 0%, var(--blush-100) 55%, var(--blush-200) 100%);
  border-radius: 50% 50% 46% 46% / 55% 55% 45% 45%;
  box-shadow: var(--sh-lg);
  z-index: -1;
}
.hero__photo {
  width: min(78%, 420px);
  margin-inline: auto;
  filter: drop-shadow(0 30px 40px rgba(120, 70, 85, .28));
}
.hero__badge {
  position: absolute;
  left: -4%;
  bottom: 12%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 14px 20px;
  box-shadow: var(--sh);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__badge b { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); line-height: 1; }
.hero__badge small { display: block; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---------- Marquee credenciales ---------- */
.strip {
  border-block: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
}
.strip__track {
  display: flex;
  gap: 56px;
  padding-block: 22px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.strip__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 56px;
}
.strip__track span::after {
  content: "✦";
  font-style: normal;
  font-size: .8rem;
  color: var(--rose-400);
}
@keyframes marquee { to { transform: translateX(-50%); } }
.strip:hover .strip__track { animation-play-state: paused; }

/* ---------- Sobre ---------- */
.about__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about__media { position: relative; }
.about__photo {
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}
.about__frame {
  position: absolute;
  inset: -18px auto auto -18px;
  width: 55%; height: 55%;
  border: 1px solid var(--rose-300, var(--rose-400));
  border-radius: var(--r-lg);
  z-index: -1;
}
.about__quote {
  position: absolute;
  right: -6%;
  bottom: 8%;
  max-width: 240px;
  background: var(--white);
  border-radius: var(--r);
  padding: 20px 22px;
  box-shadow: var(--sh);
  border: 1px solid var(--line);
}
.about__quote p { font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: var(--ink); line-height: 1.35; }

.about h2 { margin-bottom: 22px; }
.about__lead { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 20px; }
.about__text p + p { margin-top: 16px; }

.creds {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.cred {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.cred:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--blush-200); }
.cred__ic {
  flex: none;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--blush-100);
  color: var(--rose-500);
}
.cred__ic svg { width: 20px; height: 20px; }
.cred b { font-family: var(--sans); font-weight: 600; font-size: .96rem; color: var(--ink); display: block; }
.cred span { font-size: .84rem; color: var(--muted); }

/* ---------- Servicios ---------- */
.services { background: linear-gradient(180deg, var(--blush-50), var(--white)); }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.service::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-400), var(--blush-200));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.service:hover::before { transform: scaleX(1); }
.service__ic {
  width: 58px; height: 58px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--blush-100);
  color: var(--rose-500);
  margin-bottom: 22px;
  transition: background .45s var(--ease), color .45s var(--ease);
}
.service:hover .service__ic { background: var(--rose-500); color: var(--white); }
.service__ic svg { width: 28px; height: 28px; }
.service h3 { font-size: 1.5rem; margin-bottom: 14px; }
.service ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service li {
  font-size: .9rem;
  color: var(--muted);
  padding-left: 20px;
  position: relative;
}
.service li::before {
  content: "";
  position: absolute;
  left: 0; top: .62em;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--rose-400);
  border-bottom: 1.5px solid var(--rose-400);
  transform: rotate(-45deg);
}

/* ---------- Obras sociales ---------- */
.obras { background: var(--white); }
.os-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.os-grid li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--blush-50);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: .9rem;
  color: var(--ink-soft);
  letter-spacing: .01em;
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.os-grid li::before {
  content: "";
  flex: none;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose-400);
  transition: transform .3s var(--ease);
}
.os-grid li:hover {
  transform: translateY(-2px);
  border-color: var(--rose-400);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-sm);
}

/* ---------- Consultorios ---------- */
.offices__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.office {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.office:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.office__map { position: relative; aspect-ratio: 16 / 10; background: var(--blush-100); }
.office__map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25) contrast(1.02); }
.office__body { padding: 28px 30px 30px; }
.office__body h3 { margin-bottom: 12px; }
.office__addr { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.office__addr svg { width: 20px; height: 20px; flex: none; color: var(--rose-500); margin-top: 3px; }
.office__addr address { font-style: normal; line-height: 1.5; }
.office__note { margin-top: 16px; font-size: .88rem; color: var(--muted); }
.office__actions { margin-top: 22px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.office__map-link {
  font-size: .9rem;
  font-weight: 500;
  color: var(--rose-600);
  display: inline-flex;
  align-items: center;
  gap: .4em;
  transition: gap .3s var(--ease), color .3s var(--ease);
}
.office__map-link::after { content: "→"; transition: transform .3s var(--ease); }
.office__map-link:hover { color: var(--rose-500); }
.office__map-link:hover::after { transform: translateX(4px); }

/* ---------- Formulario / CTA ---------- */
.appt {
  background:
    radial-gradient(80% 120% at 100% 0%, var(--blush-100) 0%, transparent 55%),
    var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.appt__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.appt .kicker { color: var(--rose-400); }
.appt .kicker::before { background: var(--rose-400); }
.appt h2 { color: var(--white); margin-block: 20px 22px; }
.appt__lead { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 34em; }
.appt__alt {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
}
.appt__alt a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--sh-lg);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--blush-50);
  color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose-400);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217, 166, 179, .22);
}
.field input::placeholder,
.field textarea::placeholder { color: #b9adb2; }
.form .btn { width: 100%; margin-top: 6px; }
.form__legal { margin-top: 16px; font-size: .78rem; color: var(--muted); text-align: center; }

/* ---------- Footer ---------- */
.footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-block: clamp(48px, 7vw, 76px) 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}
.footer__brand .brand { margin-bottom: 18px; }
.footer__brand p { color: var(--muted); font-size: .92rem; max-width: 34ch; }
.footer h4 {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-500);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer li, .footer address { font-size: .92rem; color: var(--ink-soft); font-style: normal; line-height: 1.5; }
.footer a:hover { color: var(--rose-600); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .82rem;
  color: var(--muted);
}
.footer__bottom a { color: var(--muted); }

/* ---------- WhatsApp flotante ---------- */
.wafab {
  position: fixed;
  right: clamp(16px, 3vw, 30px);
  bottom: clamp(16px, 3vw, 30px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: #1E181B;
  color: #fff;
  border-radius: var(--pill);
  padding: 14px;
  box-shadow: 0 16px 34px -12px rgba(30,24,27,.5);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease), padding .4s var(--ease);
  overflow: hidden;
}
.wafab svg { width: 26px; height: 26px; flex: none; }
.wafab__label {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  font-size: .92rem;
  font-weight: 500;
  transition: max-width .5s var(--ease), opacity .4s var(--ease), margin .5s var(--ease);
}
.wafab:hover {
  background: var(--rose-500);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -14px rgba(194,126,144,.6);
  padding-right: 22px;
}
.wafab:hover .wafab__label { max-width: 200px; opacity: 1; margin-left: 10px; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(82vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: var(--white);
    box-shadow: var(--sh-lg);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 50;
  }
  .nav__links a { font-size: 1.15rem; }
  .nav.is-open .nav__links { transform: none; }
  .nav__cta .btn--nav { display: none; }
  .nav__mobcta { display: block; margin-top: 12px; }
  .nav__mobcta a { font-size: 1rem; }

  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { max-width: 600px; margin-inline: auto; }
  .hero__eyebrow, .hero .kicker { justify-content: center; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__figure { order: -1; margin-bottom: 20px; }
  .hero__photo { width: min(68%, 320px); }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 440px; margin-inline: auto; }
  .appt__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .services__grid { grid-template-columns: 1fr; }
  .offices__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .creds { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .about__quote { position: static; max-width: none; margin-top: 16px; }
  .hero__badge { left: 0; }
}

/* ---------- CTA reserva online (sección turnos) ---------- */
.booking-cta { text-align: center; }
.booking-cta__ic {
  width: 64px; height: 64px; margin: 0 auto 18px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: var(--blush-100);
  color: var(--rose-500);
}
.booking-cta__ic svg { width: 32px; height: 32px; }
.booking-cta h3 { font-size: 1.6rem; margin-bottom: 10px; }
.booking-cta p { color: var(--muted); margin-bottom: 22px; }
.booking-cta .form__legal { margin-top: 14px; }

/* ---------- Crédito de diseño en footer ---------- */
.footer__credit { color: var(--muted); font-size: .82rem; }
.footer__credit a { color: var(--ink-soft); border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.footer__credit a:hover { color: var(--rose-600); border-color: var(--rose-400); }
