/* ============================================================
   draclaudiarivera.com — Ginecología & Obstetricia · Playa del Carmen
   Editorial rose system · 2026 redesign
   Inspirado en angelicacolion.com adaptado a paleta médica original.
   ============================================================ */

:root {
  /* Type families */
  --serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --sans:  "Questrial", "DM Sans", -apple-system, BlinkMacSystemFont, "Helvetica Neue", system-ui, sans-serif;

  /* Palette — rose · mint · slate (paleta original del sitio) */
  --cream:      #FAF6F4;
  --cream-soft: #FFFFFF;
  --paper:      #FFFBF7;
  --rose-pale:  #F8EEF3;
  --rose-soft:  #F0DBE6;
  --rose:       #D6ABC7;
  --rose-deep:  #B87FA1;
  --rose-ink:   #8E5E7B;
  --mint:       #ACE6E6;
  --mint-soft:  #E6F6F6;
  --mint-deep:  #6FBDBD;
  --ink:        #2B2D33;
  --ink-soft:   #4C6B80;
  --ink-mute:   #8A95A0;
  --border:     rgba(43, 45, 51, 0.10);
  --border-soft:rgba(43, 45, 51, 0.06);

  --shadow-soft: 0 4px 20px rgba(184, 127, 161, 0.06);
  --shadow-card: 0 12px 40px rgba(184, 127, 161, 0.10), 0 2px 8px rgba(43, 45, 51, 0.04);
  --shadow-lift: 0 20px 60px rgba(184, 127, 161, 0.18), 0 4px 12px rgba(43, 45, 51, 0.06);

  /* Spacing */
  --s-1: 4px;  --s-2: 8px;   --s-3: 12px;  --s-4: 16px;  --s-5: 20px;
  --s-6: 24px; --s-8: 32px;  --s-10: 40px; --s-12: 48px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px;

  /* Layout */
  --max-w: 1240px;
  --max-w-narrow: 760px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Background layered gradient — soft rose hues from corners */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px circle at 92% -8%, rgba(214, 171, 199, 0.22), transparent 55%),
    radial-gradient(700px circle at -5% 105%, rgba(172, 230, 230, 0.18), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-soft) 100%);
  z-index: -1;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--s-6); }
.container.narrow { max-width: var(--max-w-narrow); }
section { position: relative; }

/* ============================================================
   TYPOGRAPHY — editorial serif headings + sans body
   Italic-rose accent = SIGNATURE move.
   ============================================================ */
.display {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--ink);
}
.display em, .display .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--rose-deep);
}

h1.section-title, h2.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.016em;
  color: var(--ink);
}
.section-title em, .section-title .italic {
  font-style: italic;
  color: var(--rose-deep);
}

h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  letter-spacing: -0.005em;
  color: var(--ink-soft);
  max-width: 58ch;
}
.lede em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
}

.body-large {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.body-large + .body-large { margin-top: 1em; }
.body-large em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-deep);
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--rose-deep);
  display: inline-block;
}
.eyebrow.no-line::before { display: none; }
.eyebrow.on-rose { color: var(--rose-ink); }
.eyebrow.on-rose::before { background: var(--rose-ink); }

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--rose-deep);
}

.caption { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.02em; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 246, 244, 0.82);
  border-bottom: 1px solid var(--border-soft);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 18px var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-8);
}
.nav-brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.nav-brand em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-deep);
  font-weight: 500;
}
.nav-brand .suffix {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-left: 4px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--s-8);
}
.nav-links {
  display: flex;
  gap: var(--s-6);
}
.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-soft);
  transition: color .25s;
}
.nav-links a:hover { color: var(--rose-deep); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  transition: transform .25s, box-shadow .25s, background .25s, color .25s;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn .arrow { transition: transform .25s; }
.btn:hover .arrow { transform: translateX(3px); }
.btn-primary {
  background: var(--rose-deep);
  color: white;
  box-shadow: 0 8px 24px rgba(184, 127, 161, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 32px rgba(184, 127, 161, 0.34); background: var(--rose-ink); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--rose-deep); color: var(--rose-deep); }
.btn-mint {
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(172, 230, 230, 0.5);
}
.btn-mint:hover { background: var(--mint-deep); color: white; }
.btn-wa {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}
.btn-wa:hover { background: #128C7E; transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: var(--s-16) 0 var(--s-20);
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--rose-soft);
  border: 1px solid rgba(184, 127, 161, 0.18);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--rose-ink);
  margin-bottom: var(--s-8);
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--rose-deep);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.3); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: var(--s-16);
  align-items: center;
}
.hero-actions {
  margin-top: var(--s-10);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
}
.hero-meta {
  margin-top: var(--s-12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-6);
  padding-top: var(--s-8);
  border-top: 1px solid var(--border-soft);
}
.hero-meta .item .num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
  display: block;
}
.hero-meta .item .num em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-deep);
}
.hero-meta .item .label {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  line-height: 1.4;
}
.hero-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  aspect-ratio: 3 / 4;
  background: var(--rose-soft);
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: -22px -22px auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, var(--mint) 0%, var(--mint-soft) 70%, transparent 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.55;
}
.hero-sticker {
  position: absolute;
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: var(--shadow-card);
  font-family: var(--sans);
}
.hero-sticker.top-right { top: 24px; right: -28px; }
.hero-sticker.bottom-left { bottom: 32px; left: -34px; }
.hero-sticker .ico {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}
.hero-sticker.green .ico { background: rgba(37,211,102,0.15); color: #15803d; }
.hero-sticker strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.hero-sticker .sub {
  display: block;
  font-size: 11px;
  color: var(--ink-mute);
  margin-top: 2px;
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section { padding: var(--s-20) 0; }
.section-head { max-width: 720px; margin-bottom: var(--s-12); }
.section-head.text-center { margin-inline: auto; text-align: center; }
.section-head .lede { margin-top: var(--s-5); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--s-16);
  align-items: center;
}
.about-photo {
  position: relative;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
  background: var(--rose-soft);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: auto auto -20px -20px;
  width: 120px;
  height: 120px;
  background: var(--mint);
  border-radius: 50%;
  opacity: 0.45;
  z-index: -1;
}
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--s-8);
}
.cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  background: white;
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.cred-pill .dot {
  width: 5px;
  height: 5px;
  background: var(--rose-deep);
  border-radius: 50%;
}
.featured-badge {
  margin-top: var(--s-8);
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--mint-soft);
  border: 1px solid rgba(172, 230, 230, 0.6);
}
.featured-badge .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mint-deep);
}
.featured-badge .val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.svc {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--s-8);
  transition: transform .35s, box-shadow .35s, border-color .35s;
  position: relative;
  overflow: hidden;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--rose-deep), var(--mint-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(184, 127, 161, 0.2);
}
.svc:hover::before { transform: scaleX(1); }
.svc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--rose-deep);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: var(--s-3);
}
.svc-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
}
.svc h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.svc h3 em { font-style: italic; color: var(--rose-deep); }
.svc p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ============================================================
   PROCESS — what to expect on first visit
   ============================================================ */
.process {
  background: linear-gradient(180deg, var(--rose-pale) 0%, var(--cream) 100%);
  border-radius: 32px;
  padding: var(--s-20) var(--s-12);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(214,171,199,0.5), transparent 70%);
  border-radius: 50%;
}
.process-head { position: relative; max-width: 680px; margin: 0 auto var(--s-12); text-align: center; }
.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}
.step {
  background: white;
  border-radius: var(--radius);
  padding: var(--s-6);
  position: relative;
  box-shadow: var(--shadow-soft);
}
.step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 36px;
  line-height: 1;
  color: var(--rose-deep);
  margin-bottom: var(--s-3);
  display: block;
}
.step h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.step p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}
.review {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: var(--s-8);
  position: relative;
}
.review .quote-mark {
  font-family: var(--serif);
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  color: var(--rose-soft);
  position: absolute;
  top: 18px;
  right: 22px;
}
.review blockquote {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: var(--s-6);
  position: relative;
  z-index: 1;
}
.review .review-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border-soft);
}
.review .avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  flex-shrink: 0;
}
.review .meta .name {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.review .meta .role {
  font-size: 11.5px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  margin-top: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.faq-item {
  background: white;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] {
  border-color: rgba(184, 127, 161, 0.25);
  box-shadow: var(--shadow-soft);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-6) var(--s-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-6);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--rose-deep);
  line-height: 1;
  transition: transform .25s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 var(--s-8) var(--s-6);
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-item .answer em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--rose-deep);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--s-12);
  align-items: stretch;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}
.location-info {
  padding: var(--s-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info .hospital {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.location-info .hospital em { font-style: italic; color: var(--rose-deep); }
.location-info .address {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: var(--s-6);
}
.location-info .info-rows {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-3);
}
.location-info .row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 14.5px;
  color: var(--ink-soft);
}
.location-info .row svg {
  color: var(--rose-deep);
  flex-shrink: 0;
}
.location-info .row strong {
  color: var(--ink);
  font-weight: 600;
}
.location-map {
  min-height: 420px;
  position: relative;
  background: var(--rose-soft);
  overflow: hidden;
}
.location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92);
}

.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--mint-soft);
  border: 1px solid rgba(111, 189, 189, 0.25);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint-deep);
  margin-bottom: var(--s-5);
}
.loc-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--mint-deep);
  border-radius: 50%;
}

/* SECONDARY LOCATION — quieter card under the main location grid */
.location-secondary {
  margin-top: var(--s-6);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--s-6);
  align-items: center;
  padding: var(--s-5) var(--s-8);
  background: transparent;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  transition: border-color .25s, background .25s;
}
.location-secondary:hover {
  border-color: rgba(184, 127, 161, 0.3);
  background: rgba(248, 238, 243, 0.4);
}
.loc-sec-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-sec-body { min-width: 0; }
.loc-sec-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 4px;
}
.loc-sec-address {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.loc-sec-meta {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  flex-shrink: 0;
}
.loc-sec-days {
  font-family: var(--serif);
  font-size: 15px;
  color: var(--ink);
  white-space: nowrap;
}
.loc-sec-days em {
  font-style: italic;
  color: var(--rose-deep);
}
.loc-sec-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--rose-deep);
  white-space: nowrap;
  transition: color .25s;
}
.loc-sec-link:hover { color: var(--rose-ink); }
.loc-sec-link svg { transition: transform .25s; }
.loc-sec-link:hover svg { transform: translate(2px, -2px); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background:
    radial-gradient(900px circle at 80% 0%, rgba(214,171,199,0.4), transparent 50%),
    linear-gradient(135deg, var(--rose-deep) 0%, var(--rose-ink) 100%);
  border-radius: 32px;
  padding: var(--s-20) var(--s-12);
  color: white;
  overflow: hidden;
  position: relative;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(172,230,230,0.22), transparent 70%);
  border-radius: 50%;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-12);
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-band .eyebrow {
  color: rgba(255,255,255,0.85);
}
.cta-band .eyebrow::before {
  background: rgba(255,255,255,0.7);
}
.cta-band h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.018em;
  color: white;
  margin-top: var(--s-5);
}
.cta-band h2 em {
  font-style: italic;
  color: var(--mint);
}
.cta-band .lede {
  color: rgba(255,255,255,0.85);
  margin-top: var(--s-5);
}
.cta-band .lede em { color: var(--mint); }
.cta-rows {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.cta-row {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: var(--s-5) var(--s-6);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  transition: background .25s, transform .25s, border-color .25s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cta-row:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.3);
  transform: translateX(4px);
}
.cta-row .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.cta-row .label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.cta-row .val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: white;
  margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  margin-top: var(--s-24);
  padding: var(--s-16) 0 var(--s-8);
  border-top: 1px solid var(--border-soft);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-12);
}
.footer-brand .wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.footer-brand .wordmark em { font-style: italic; color: var(--rose-deep); }
.footer-brand .suffix {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}
.footer-brand .tag {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-top: var(--s-5);
  max-width: 36ch;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: var(--s-5);
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color .25s;
}
.footer-col a:hover { color: var(--rose-deep); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-6);
  border-top: 1px solid var(--border-soft);
  gap: var(--s-6);
  flex-wrap: wrap;
}
.footer-social {
  display: flex;
  gap: var(--s-3);
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: all .25s;
}
.footer-social a:hover {
  background: var(--rose-deep);
  color: white;
  border-color: var(--rose-deep);
  transform: translateY(-2px);
}
.cedulas {
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-10); }
  .hero-photo { max-width: 480px; margin: 0 auto; }
  .hero-meta { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: var(--s-10); }
  .about-photo { max-width: 380px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 280px; }
  .location-secondary { grid-template-columns: 1fr; gap: var(--s-3); align-items: flex-start; padding: var(--s-5) var(--s-6); }
  .loc-sec-meta { width: 100%; justify-content: space-between; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-inner { padding: 14px var(--s-5); gap: var(--s-3); }
  .nav-menu { gap: var(--s-3); }
  .nav-brand { font-size: 18px; flex-wrap: nowrap; white-space: nowrap; }
  .nav-brand .suffix { display: none; }
  .btn { padding: 10px 16px; font-size: 13px; }
  .hero { padding: var(--s-10) 0 var(--s-12); }
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
  .hero-meta .item .num { font-size: 28px; }
  .hero-sticker.top-right { right: 8px; top: 12px; }
  .hero-sticker.bottom-left { left: 8px; bottom: 12px; }
  .section { padding: var(--s-12) 0; }
  .services-grid { grid-template-columns: 1fr; }
  .process { padding: var(--s-12) var(--s-6); border-radius: 20px; }
  .process-steps { grid-template-columns: 1fr; gap: var(--s-3); }
  .cta-band { padding: var(--s-12) var(--s-6); border-radius: 20px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
