/* ============================================================
   ESTETIC DENT · L'Hospitalet — main.592aafab.css  (v2)
   Paleta: porcelana / marino bata / oro empolvado / azul radiografía
   Tipos: Gloock (display) + Archivo Variable (texto)
   Sin dependencias JS. Liquid glass con fallback.
   ============================================================ */

/* ---------- Fuentes ---------- */
@font-face {
  font-family: "Gloock";
  src: url("../fonts/gloock-latin-400-normal.0f08cdb5.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/archivo-var.cd56e2ec.woff2") format("woff2-variations");
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Gloock-fallback";
  src: local("Georgia"), local("Times New Roman");
  size-adjust: 105%; ascent-override: 92%; descent-override: 24%;
}
@font-face {
  font-family: "Archivo-fallback";
  src: local("Arial"), local("Helvetica");
  size-adjust: 99%;
}

/* ---------- Tokens ---------- */
:root {
  --navy-950: #071324;
  --navy-900: #0A1B33;
  --navy-800: #10264A;
  --navy-700: #173563;
  --ink: #132038;
  --muted: #55647E;
  --porcelain: #F6F4EF;
  --white: #FFFFFF;
  --gold: #C9A227;
  --gold-soft: #E0C878;
  --gold-deep: #755C0A;
  --xray: #C7D6E8;
  --line-dark: rgba(19, 32, 56, 0.13);
  --line-light: rgba(246, 244, 239, 0.16);

  --display: "Gloock", "Gloock-fallback", Georgia, serif;
  --sans: "Archivo", "Archivo-fallback", Arial, sans-serif;

  --container: 1240px;
  --pad: clamp(20px, 5vw, 48px);
  --r: 14px;
  --r-lg: 22px;
  --r-xl: 28px;

  --glass-blur: 20px;
  --glass-sat: 165%;

  --shadow: 0 22px 55px -22px rgba(7, 19, 36, 0.34);
  --shadow-deep: 0 34px 80px -30px rgba(7, 19, 36, 0.62);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 78px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--porcelain);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }
a, button, label, summary { -webkit-tap-highlight-color: transparent; }
::selection { background: var(--gold); color: var(--navy-950); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 5px; }
.glass-light :focus-visible { outline-color: var(--gold-deep); }

section[id] { scroll-margin-top: calc(var(--header-h) + 14px); }

.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 300;
  background: var(--gold); color: var(--navy-950);
  padding: 10px 18px; border-radius: 8px; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Tipografía ---------- */
.eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-deep); display: flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: var(--gold); flex: none; border-radius: 2px; }
.on-dark .eyebrow { color: var(--gold-soft); }

h1, h2, .display {
  font-family: var(--display); font-weight: 400; line-height: 1.06;
  letter-spacing: -0.006em; text-wrap: balance; overflow-wrap: break-word;
}
h2 { font-size: clamp(1.9rem, 1.1rem + 3vw, 3.05rem); }
h3 { font-size: 1.05rem; }
.lead { font-size: clamp(1.06rem, 1rem + 0.4vw, 1.24rem); line-height: 1.6; }

/* Arco de sonrisa — elemento firma */
.arc-word { position: relative; display: inline-block; white-space: nowrap; }
.arc-word svg {
  position: absolute; left: -2%; width: 104%; height: 0.34em; bottom: -0.2em; overflow: visible;
}
@media (max-width: 420px) {
  /* El trazo redondeado sobresale ~3px del cuadro del SVG: se mete hacia dentro */
  .arc-word svg { left: 4px; width: calc(100% - 8px); }
}
.arc-word svg path {
  fill: none; stroke: var(--gold); stroke-width: 7; stroke-linecap: round;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 200; stroke-dashoffset: 200;
}
.arc-word.is-drawn svg path { animation: draw 1s var(--ease) forwards; }
html:not(.js-ready) .arc-word svg path { stroke-dashoffset: 0; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ---------- Liquid glass ---------- */
.glass, .glass-light { position: relative; isolation: isolate; border-radius: var(--r-lg); }
.glass {
  background: linear-gradient(150deg, rgba(246,244,239,0.14), rgba(246,244,239,0.05) 55%, rgba(246,244,239,0.09));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.30), 0 24px 60px -26px rgba(3,10,22,0.7);
  color: var(--porcelain);
}
.glass-light {
  background: linear-gradient(150deg, rgba(255,255,255,0.92), rgba(255,255,255,0.80));
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  backdrop-filter: blur(26px) saturate(180%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), var(--shadow-deep);
  color: var(--ink);
}
/* Bisel: borde degradado */
.glass::before, .glass-light::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none; z-index: 2;
}
.glass::before { background: linear-gradient(145deg, rgba(255,255,255,0.55), rgba(255,255,255,0.06) 42%, rgba(201,162,39,0.4)); }
.glass-light::before { background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(19,32,56,0.06) 45%, rgba(201,162,39,0.35)); }
/* Reflejo especular que sigue al puntero */
.glass::after, .glass-light::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none; z-index: 1;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, -20%), rgba(255,255,255,0.18), transparent 62%);
  opacity: 0; transition: opacity 0.45s var(--ease);
}
.glass-light::after { background: radial-gradient(340px circle at var(--mx, 50%) var(--my, -20%), rgba(255,255,255,0.9), transparent 60%); }
.glass:hover::after, .glass-light:hover::after { opacity: 1; }
.glass > *, .glass-light > * { position: relative; z-index: 3; }

@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .glass { background: rgba(16, 38, 74, 0.94); }
  .glass-light { background: rgba(255, 255, 255, 0.97); }
  .site-header.is-scrolled { background: rgba(7, 19, 36, 0.96); }
  .sticky-cta { background: rgba(7, 19, 36, 0.97); }
  .chip { background: rgba(246,244,239,0.14); }
  .doctora-chip { background: rgba(7,19,36,0.92); }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 650; font-size: 1rem; letter-spacing: 0.01em; text-decoration: none;
  white-space: nowrap; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
              background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.06s; }
.btn-gold {
  background: linear-gradient(180deg, #D9B23C, var(--gold));
  color: var(--navy-950);
  box-shadow: 0 12px 30px -12px rgba(201,162,39,0.6), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-gold:hover { box-shadow: 0 18px 40px -12px rgba(201,162,39,0.7), inset 0 1px 0 rgba(255,255,255,0.55); }
.btn-gold::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 45%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: translateX(-160%) skewX(-18deg); pointer-events: none;
}
.btn-gold:hover::after { animation: sheen 0.85s var(--ease); }
@keyframes sheen { to { transform: translateX(320%) skewX(-18deg); } }
.btn-ghost-light { border-color: var(--line-light); color: var(--porcelain); }
.btn-ghost-light:hover { border-color: var(--gold-soft); color: var(--gold-soft); background: rgba(246,244,239,0.06); }
.btn-ghost-dark { border-color: var(--line-dark); color: var(--ink); }
.btn-ghost-dark:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.btn-block { width: 100%; }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  transition: background-color 0.45s ease, box-shadow 0.45s ease;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  min-height: var(--header-h);
}
.site-header.is-scrolled {
  background: rgba(7, 19, 36, 0.72);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 1px 0 rgba(246,244,239,0.09), 0 12px 30px -22px rgba(0,0,0,0.8);
}
.brand { display: flex; flex-direction: column; text-decoration: none; color: var(--porcelain); line-height: 1; }
.brand-name { font-family: var(--display); font-size: 1.4rem; }
.brand-name .arc-word svg path { stroke-width: 4; }
.brand-tag {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--xray); margin-top: 7px; font-weight: 500; white-space: nowrap;
}
.header-nav { display: flex; align-items: center; gap: 24px; }
.header-nav a {
  color: rgba(246,244,239,0.82); text-decoration: none; font-size: 0.92rem;
  font-weight: 550; transition: color 0.25s ease;
}
.header-nav a:hover { color: var(--gold-soft); }
.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  color: var(--porcelain); text-decoration: none; font-weight: 600; font-size: 0.95rem;
  display: inline-flex; align-items: center; gap: 8px; transition: color 0.25s ease;
  min-height: 44px; min-width: 44px; justify-content: center;
}
.header-phone svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.header-phone:hover { color: var(--gold-soft); }
.header-cta { padding: 12px 22px; font-size: 0.93rem; }
@media (max-width: 1080px) { .header-nav { display: none; } }
@media (max-width: 860px) {
  .header-phone span { display: none; }
  .header-actions { gap: 10px; }
}
@media (max-width: 720px) {
  /* En móvil el teléfono ya está en la barra fija inferior: aquí manda la cita y el menú */
  .header-phone { display: none; }
  .header-cta { padding: 11px 16px; font-size: 0.85rem; }
  .brand-name { font-size: 1.15rem; }
  .brand-tag { letter-spacing: 0.14em; font-size: 0.52rem; }
  .site-header .container { gap: 10px; }
  .nav-toggle { width: 44px; height: 44px; }
}
@media (max-width: 380px) {
  .header-cta { padding: 10px 13px; font-size: 0.8rem; }
  .brand-tag { display: none; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(900px 620px at 78% 8%, rgba(23, 53, 99, 0.72), transparent 65%), var(--navy-900);
  color: var(--porcelain);
  padding-top: calc(var(--header-h) + clamp(24px, 4vh, 54px));
  padding-bottom: clamp(46px, 7vh, 84px);
}
.hero-photo { position: absolute; top: 0; right: 0; bottom: 0; width: 47%; z-index: 0; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 46% 34%; }
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--navy-900) 0%, rgba(10,27,51,0.88) 20%, rgba(10,27,51,0.14) 60%, rgba(10,27,51,0.05) 100%),
    linear-gradient(180deg, rgba(10,27,51,0.5), transparent 32%, rgba(10,27,51,0.4));
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
  gap: clamp(28px, 4vw, 60px); align-items: center;
}
.hero h1 {
  font-size: clamp(2.35rem, 1.2rem + 4.4vw, 4.4rem);
  margin: 20px 0 18px; color: var(--white);
  text-shadow: 0 2px 34px rgba(7,19,36,0.4);
}
.hero h1 .line { display: block; }
.hero-sub { max-width: 40ch; color: rgba(246,244,239,0.87); font-size: clamp(1rem, 0.96rem + 0.3vw, 1.14rem); }
.hero-sub strong { color: var(--white); font-weight: 600; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 9px 15px; border-radius: 999px;
  background: rgba(246,244,239,0.09); border: 1px solid var(--line-light);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  font-size: 0.82rem; font-weight: 550; color: rgba(246,244,239,0.92);
  text-decoration: none; transition: border-color 0.25s ease, background-color 0.25s ease;
}
.chip:hover { border-color: rgba(224,200,120,0.6); background: rgba(246,244,239,0.14); }
.chip b { color: var(--white); font-weight: 700; }
.chip .stars { color: var(--gold-soft); letter-spacing: 1px; font-size: 0.75rem; }

.hero-form { padding: clamp(22px, 2.3vw, 30px); border-radius: var(--r-xl); }
.hero-form h2 { font-size: clamp(1.32rem, 1.1rem + 0.85vw, 1.6rem); line-height: 1.14; color: var(--ink); }
.hero-form .form-sub { margin-top: 8px; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.hero-form .field { margin-top: 14px; }
.hero-form .btn { margin-top: 18px; }
.form-badge {
  display: inline-flex; align-items: center; gap: 7px; margin-bottom: 12px;
  padding: 6px 13px; border-radius: 999px;
  background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.45);
  color: var(--gold-deep); font-size: 0.71rem; font-weight: 700;
  letter-spacing: 0.09em; text-transform: uppercase;
}

@media (max-width: 400px) {
  .hero h1 { font-size: 1.92rem; }
  .hero-servicio h1 { font-size: 1.85rem; }
  h2 { font-size: 1.72rem; }
  .pull-quote { font-size: 1.4rem; }
}
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .hero { padding-top: var(--header-h); }
  .hero-photo {
    position: relative; width: auto; height: clamp(180px, 33vw, 290px);
    margin: 0 calc(var(--pad) * -1) 24px;
  }
  .hero-photo img { object-position: 55% 32%; }
  .hero-photo::after {
    background: linear-gradient(180deg, rgba(10,27,51,0.6) 0%, rgba(10,27,51,0.08) 45%, var(--navy-900) 100%);
  }
}

/* ---------- Franja de confianza ---------- */
.trust { background: var(--white); border-bottom: 1px solid var(--line-dark); }
.trust .container {
  display: flex; gap: 14px 44px; justify-content: space-between;
  padding-block: 20px; overflow-x: auto; scrollbar-width: none;
}
.trust .container::-webkit-scrollbar { display: none; }
.trust-item { flex: none; font-size: 0.87rem; color: var(--muted); display: flex; align-items: baseline; gap: 9px; }
.trust-item strong { font-family: var(--display); font-size: 1.28rem; color: var(--ink); font-weight: 400; }
.trust-item a { text-decoration: none; color: inherit; display: inherit; gap: inherit; align-items: inherit; }
.trust-item a:hover strong { color: var(--gold-deep); }
@media (max-width: 820px) {
  .trust .container {
    mask-image: linear-gradient(90deg, #000 86%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 86%, transparent);
  }
}

/* ---------- Secciones ---------- */
.section { padding-block: clamp(68px, 9.5vh, 128px); position: relative; }
.section-head { max-width: 760px; margin-bottom: clamp(32px, 5vh, 56px); }
.section-head h2 { margin-top: 18px; }
.section-head .lead { margin-top: 15px; color: var(--muted); }
.on-dark .section-head .lead { color: rgba(246,244,239,0.76); }

/* ---------- Manifiesto ---------- */
.manifesto { background: var(--porcelain); }
.manifesto-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(34px, 5vw, 78px); align-items: center;
}
.manifesto-copy p { margin-bottom: 1.15em; }
.promises { list-style: none; margin-top: 28px; display: grid; gap: 15px; }
.promises li { display: flex; gap: 14px; align-items: flex-start; font-weight: 570; }
.promises li small { display: block; font-weight: 400; color: var(--muted); margin-top: 3px; font-size: 0.89rem; }
.promises .arc-ico { flex: none; margin-top: 6px; }
.manifesto-media { position: relative; }
.manifesto-media .frame {
  border-radius: var(--r) var(--r) 190px 190px; overflow: hidden;
  box-shadow: var(--shadow); position: relative;
}
.manifesto-media img { width: 100%; height: auto; aspect-ratio: 4 / 4.5; object-fit: cover; }
.manifesto-media figcaption {
  margin-top: 14px; font-size: 0.83rem; color: var(--muted);
  display: flex; gap: 10px; align-items: center;
}
.pull-quote {
  margin-top: clamp(48px, 7vh, 84px); font-family: var(--display);
  font-size: clamp(1.5rem, 0.95rem + 2.4vw, 2.75rem); line-height: 1.18;
  text-wrap: balance; max-width: 21ch;
}
.pull-quote .arc-word svg path { stroke-width: 5; }
@media (max-width: 900px) {
  .manifesto-grid { grid-template-columns: minmax(0, 1fr); }
  .manifesto-media { max-width: 450px; margin-inline: auto; }
}

/* ---------- Tratamientos: bento ---------- */
.treatments { background: var(--navy-900); color: var(--porcelain); position: relative; overflow: hidden; }
.treatments::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(760px 460px at 88% 10%, rgba(23,53,99,0.75), transparent 60%);
}
.treatments > .container { position: relative; }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.b-card {
  grid-column: span 2; display: flex; flex-direction: column;
  padding: 22px; text-decoration: none; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.b-card:hover { transform: translateY(-4px); box-shadow: 0 34px 70px -30px rgba(3,10,22,0.85); }
.b-card.span-3 { grid-column: span 3; }
.b-card-media {
  margin: -22px -22px 18px; aspect-ratio: 16 / 9; overflow: hidden;
  position: relative; border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.b-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.b-card:hover .b-card-media img { transform: scale(1.05); }
.b-card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10,27,51,0.6));
}
.b-ico { width: 34px; height: 22px; margin-bottom: 14px; }
.b-ico path, .b-ico circle { fill: none; stroke: var(--gold-soft); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.b-card h3 {
  font-family: var(--display); font-weight: 400; font-size: clamp(1.12rem, 1rem + 0.55vw, 1.45rem);
  line-height: 1.15; transition: color 0.3s ease;
}
.b-card:hover h3 { color: var(--gold-soft); }
.b-card p { margin-top: 8px; font-size: 0.91rem; color: rgba(246,244,239,0.74); line-height: 1.5; }
.b-go {
  margin-top: auto; padding-top: 16px; font-size: 0.82rem; font-weight: 650;
  color: var(--gold-soft); display: inline-flex; align-items: center; gap: 7px;
}
.b-go svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; transition: transform 0.4s var(--ease); }
.b-card:hover .b-go svg { transform: translateX(4px); }
.b-card.urgent { background: linear-gradient(150deg, rgba(201,162,39,0.22), rgba(201,162,39,0.06)); }
.b-card.urgent::before { background: linear-gradient(145deg, rgba(224,200,120,0.8), rgba(201,162,39,0.25)); }
.b-card.urgent h3 { color: var(--gold-soft); }
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .b-card, .b-card.span-3 { grid-column: span 1; padding: 18px; }
  .b-card-media { margin: -18px -18px 14px; }
}
@media (max-width: 560px) { .bento { grid-template-columns: minmax(0, 1fr); } }
.treatments-note { margin-top: 26px; color: rgba(246,244,239,0.68); font-size: 0.91rem; max-width: 66ch; }
.treatments-note a { color: var(--gold-soft); }

/* ---------- Oferta ---------- */
.precios { background: var(--porcelain); }
.precios-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(34px, 5vw, 74px); align-items: center;
}
.precios-copy p { margin-top: 17px; color: var(--muted); }
.precios-copy p strong { color: var(--ink); }
.offer-card {
  background: var(--navy-900); color: var(--porcelain); border-radius: var(--r-xl);
  padding: clamp(26px, 3.4vw, 40px); box-shadow: var(--shadow-deep);
  position: relative; overflow: hidden;
}
.offer-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 280px at 88% -10%, rgba(201,162,39,0.28), transparent 62%);
}
.offer-card > * { position: relative; }
.offer-eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.17em; text-transform: uppercase; color: var(--gold-soft); }
.offer-card h3 {
  font-family: var(--display); font-weight: 400; font-size: clamp(1.55rem, 1.2rem + 1.4vw, 2.2rem);
  margin-top: 12px; line-height: 1.1; color: var(--white);
}
.offer-price {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 8px 18px; border-radius: 999px;
  background: rgba(246,244,239,0.1); border: 1px solid var(--line-light);
  font-weight: 650; font-size: 0.92rem;
}
.offer-includes { list-style: none; margin-top: 21px; display: grid; gap: 11px; font-size: 0.95rem; }
.offer-includes li { display: flex; gap: 12px; align-items: flex-start; color: rgba(246,244,239,0.88); }
.offer-includes .arc-ico { margin-top: 6px; flex: none; }
.offer-card .btn { margin-top: 25px; }
.offer-fine { margin-top: 13px; font-size: 0.78rem; color: rgba(246,244,239,0.6); }
@media (max-width: 900px) { .precios-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Doctora ---------- */
.doctora { background: var(--white); }
.doctora-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 5vw, 80px); align-items: center;
}
.doctora-media { position: relative; max-width: 440px; }
.doctora-media .frame { border-radius: 195px 195px var(--r) var(--r); overflow: hidden; box-shadow: var(--shadow); }
.doctora-media img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.doctora-media::after {
  content: ""; position: absolute; inset: 14px -14px -14px 14px;
  border-radius: 195px 195px var(--r) var(--r);
  border: 1.5px solid rgba(201,162,39,0.42); z-index: -1;
}
.doctora-chip {
  position: absolute; left: 16px; right: 16px; bottom: 18px;
  padding: 12px 16px; border-radius: 14px; font-size: 0.85rem; line-height: 1.4;
  background: linear-gradient(150deg, rgba(7,19,36,0.80), rgba(7,19,36,0.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 14px 34px -18px rgba(3,10,22,0.8);
}
.doctora-chip::before { background: linear-gradient(145deg, rgba(255,255,255,0.4), rgba(255,255,255,0.05) 45%, rgba(201,162,39,0.35)); }
.doctora-chip strong { display: block; font-size: 0.97rem; }
.doctora-copy h2 { margin-top: 18px; }
.doctora-copy > p { margin-top: 17px; }
.review-quote {
  margin-top: 26px; background: var(--porcelain); border-radius: var(--r);
  padding: 22px 24px; border: 1px solid var(--line-dark);
}
.review-quote .stars { color: var(--gold-deep); letter-spacing: 3px; font-size: 0.81rem; }
.review-quote blockquote { font-family: var(--display); font-size: 1.18rem; line-height: 1.35; margin-top: 10px; }
.review-quote cite { display: block; margin-top: 11px; font-style: normal; font-size: 0.82rem; color: var(--muted); }
.colegiadas { margin-top: 23px; padding-top: 19px; border-top: 1px solid var(--line-dark); font-size: 0.89rem; color: var(--muted); }
.colegiadas a { color: var(--gold-deep); }
@media (max-width: 900px) {
  .doctora-grid { grid-template-columns: minmax(0, 1fr); }
  .doctora-media { margin-inline: auto; }
}

/* ---------- Opiniones ---------- */
.opiniones { background: var(--porcelain); overflow: hidden; }
.opiniones-head {
  display: flex; flex-wrap: wrap; gap: 18px; align-items: flex-end;
  justify-content: space-between; margin-bottom: clamp(28px, 4vh, 50px);
}
.rating-line { display: flex; align-items: center; gap: 12px; font-weight: 600; flex-wrap: wrap; }
.rating-line .stars { color: var(--gold-deep); letter-spacing: 3px; }
.rating-line a { color: var(--muted); font-weight: 500; font-size: 0.88rem; text-underline-offset: 3px; }
.rating-line a:hover { color: var(--gold-deep); }
.marquee {
  display: flex; gap: 20px; overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee-track { display: flex; gap: 20px; flex: none; animation: marquee 46s linear infinite; }
.marquee:hover .marquee-track, .marquee:focus-within .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(calc(-100% - 20px)); } }
.review-card {
  flex: none; width: min(400px, 80vw); background: var(--white);
  border: 1px solid var(--line-dark); border-radius: var(--r); padding: 24px 26px;
}
.review-card .stars { color: var(--gold-deep); letter-spacing: 3px; font-size: 0.79rem; }
.review-card p { font-family: var(--display); font-size: 1.12rem; line-height: 1.4; margin-top: 11px; }
.review-card footer { margin-top: 14px; font-size: 0.79rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(28px, 4vw, 66px); }
.faq-list { border-top: 1px solid var(--line-dark); }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 18px; padding: 21px 4px; font-weight: 600; font-size: 1.03rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none; width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--line-dark);
  display: grid; place-items: center; position: relative;
  transition: transform 0.45s var(--ease), background-color 0.3s, border-color 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--ink); border-radius: 2px; transition: background-color 0.3s;
}
.faq-icon::before { width: 12px; height: 1.8px; }
.faq-icon::after { width: 1.8px; height: 12px; }
.faq-item[open] .faq-icon { transform: rotate(135deg); background: var(--gold); border-color: var(--gold); }
.faq-item[open] .faq-icon::before, .faq-item[open] .faq-icon::after { background: var(--navy-950); }
.faq-body { padding: 0 4px 23px; color: var(--muted); max-width: 64ch; }
.faq-body a { color: var(--gold-deep); }
.faq-aside {
  align-self: start; padding: 26px; border-radius: var(--r-lg);
  background: var(--porcelain); border: 1px solid var(--line-dark);
}
.faq-aside h3 { font-family: var(--display); font-weight: 400; font-size: 1.32rem; line-height: 1.2; }
.faq-aside p { margin-top: 10px; font-size: 0.91rem; color: var(--muted); }
.faq-aside .btn { margin-top: 17px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Contacto ---------- */
.contacto { background: var(--navy-900); color: var(--porcelain); position: relative; overflow: hidden; }
.contacto::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 460px at 12% 6%, rgba(23,53,99,0.75), transparent 62%);
}
.contacto > .container { position: relative; }
.contacto-grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(34px, 5vw, 76px); align-items: start;
}
.contact-info h2 { margin-top: 18px; }
.contact-info > p { margin-top: 15px; color: rgba(246,244,239,0.8); max-width: 44ch; }
.nap { margin-top: 28px; display: grid; gap: 19px; }
.nap-item { display: flex; gap: 15px; align-items: flex-start; }
.nap-ico {
  flex: none; width: 44px; height: 44px; border-radius: 13px;
  background: rgba(246,244,239,0.07); border: 1px solid var(--line-light);
  display: grid; place-items: center;
}
.nap-ico svg { width: 19px; height: 19px; stroke: var(--gold-soft); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.nap-item strong {
  display: block; font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(246,244,239,0.58); font-weight: 600; margin-bottom: 4px;
}
.nap-item > div { min-width: 0; }
.nap-item a { color: var(--porcelain); text-decoration: none; font-size: 1.06rem; font-weight: 600; overflow-wrap: break-word; }
.nap-item a:hover { color: var(--gold-soft); }
.nap-item .sub { font-size: 0.84rem; color: rgba(246,244,239,0.6); margin-top: 3px; }
.map-facade {
  margin-top: 30px; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--r-lg);
  border: 1px solid var(--line-light); color: var(--porcelain);
  background: radial-gradient(400px 200px at 32% 42%, rgba(199,214,232,0.13), transparent 70%), rgba(23,53,99,0.3);
  display: grid; place-items: center; gap: 4px; font-weight: 600;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}
.map-facade:hover { border-color: var(--gold-soft); }
.map-facade small { font-weight: 400; color: rgba(246,244,239,0.6); }
.map-wrap { margin-top: 30px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-light); }
.map-wrap iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }
@media (max-width: 980px) { .contacto-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Formularios ---------- */
.form-card { padding: clamp(24px, 3.3vw, 40px); border-radius: var(--r-xl); }
.form-card h2 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.42rem, 1.15rem + 1vw, 1.9rem); line-height: 1.15; color: var(--ink);
}
.form-card .form-sub { margin-top: 9px; color: var(--muted); font-size: 0.92rem; }
.field { margin-top: 17px; }
.field > label, .field legend {
  display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 7px;
}
.field input[type="text"], .field input[type="tel"], .field select {
  width: 100%; padding: 14px 15px; border-radius: 13px;
  border: 1.5px solid rgba(19,32,56,0.16);
  background: rgba(255,255,255,0.88); color: var(--ink); font: inherit;
  appearance: none; -webkit-appearance: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%23132038' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}
.field input:hover, .field select:hover { border-color: rgba(19,32,56,0.3); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--gold-deep); background: var(--white);
  box-shadow: 0 0 0 4px rgba(201,162,39,0.2);
}
.field input[aria-invalid="true"] { border-color: #B4452F; }
.field .err { display: none; color: #9C3823; font-size: 0.8rem; margin-top: 6px; }
.field.show-err .err { display: block; }
.chips-row { display: flex; flex-wrap: wrap; gap: 9px; }
.chips-row input { position: absolute; opacity: 0; pointer-events: none; }
.chips-row label {
  display: inline-flex; margin: 0; padding: 10px 16px; border-radius: 999px;
  border: 1.5px solid rgba(19,32,56,0.16); background: rgba(255,255,255,0.72);
  font-size: 0.83rem; font-weight: 600; letter-spacing: 0; text-transform: none;
  cursor: pointer; transition: all 0.25s ease; color: var(--ink);
}
.chips-row label:hover { border-color: rgba(19,32,56,0.32); }
.chips-row input:checked + label { background: var(--navy-800); border-color: var(--navy-800); color: var(--porcelain); }
.chips-row input:focus-visible + label { outline: 3px solid var(--gold-deep); outline-offset: 2px; }
.consent { margin-top: 19px; display: flex; gap: 11px; align-items: center; font-size: 0.82rem; color: var(--muted); }
.consent input { width: 24px; height: 24px; margin-top: 0; accent-color: var(--navy-800); flex: none; cursor: pointer; }
.consent a { color: var(--gold-deep); }
.consent-err { display: none; color: #9C3823; font-size: 0.8rem; margin-top: 7px; }
.consent-err.show { display: block; }
.form-note { margin-top: 12px; font-size: 0.8rem; color: var(--muted); text-align: center; }
.form-status { display: none; margin-top: 15px; padding: 13px 15px; border-radius: 12px; font-size: 0.89rem; }
.form-status.ok { display: block; background: #E6F0E3; color: #2B5030; }
.form-status.ko { display: block; background: #F7E8E3; color: #8A3826; }
.hp-field { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.btn[aria-busy="true"] { opacity: 0.7; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(246,244,239,0.7); font-size: 0.89rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.3fr 1.5fr; gap: clamp(30px, 5vw, 68px); padding-block: clamp(46px, 7vh, 76px); }
.site-footer .brand { color: var(--porcelain); }
.footer-note { margin-top: 16px; max-width: 34ch; line-height: 1.6; }
.site-footer h3 { color: var(--porcelain); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-bottom {
  border-top: 1px solid rgba(246,244,239,0.09); padding-block: 20px;
  display: flex; flex-wrap: wrap; gap: 10px 26px; justify-content: space-between;
  font-size: 0.77rem; color: rgba(246,244,239,0.6);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; } }

/* ---------- Barra fija móvil ---------- */
.sticky-cta {
  position: fixed; inset-inline: 0; bottom: 0; z-index: 90; display: none; gap: 8px;
  padding: 9px max(12px, env(safe-area-inset-left)) max(9px, env(safe-area-inset-bottom));
  background: rgba(7,19,36,0.86);
  -webkit-backdrop-filter: blur(16px) saturate(160%); backdrop-filter: blur(16px) saturate(160%);
  border-top: 1px solid rgba(246,244,239,0.12);
  transform: translateY(115%); transition: transform 0.5s var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta a {
  flex: 1; display: grid; place-items: center; gap: 2px; padding: 8px 6px; border-radius: 13px;
  text-decoration: none; font-size: 0.75rem; font-weight: 650; color: var(--porcelain);
  border: 1px solid rgba(246,244,239,0.18); min-height: 48px;
}
.sticky-cta a svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sticky-cta .cta-main { background: linear-gradient(180deg, #D9B23C, var(--gold)); color: var(--navy-950); border-color: var(--gold); }
@media (max-width: 820px) { .sticky-cta { display: flex; } }

/* ---------- Revelados ---------- */
.js-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.js-ready [data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- Páginas simples y legales ---------- */
.page-simple {
  background: radial-gradient(800px 500px at 70% 0%, rgba(23,53,99,0.7), transparent 60%), var(--navy-900);
  color: var(--porcelain); min-height: 100svh; display: grid; place-items: center;
  padding: 110px var(--pad) 70px; text-align: center;
}
.page-simple h1 { font-size: clamp(2.1rem, 1.3rem + 3.2vw, 3.5rem); color: var(--white); }
.page-simple .lead { color: rgba(246,244,239,0.82); max-width: 52ch; margin: 20px auto 0; }
.page-simple .btn { margin-top: 30px; }
.page-simple .arc-line { margin: 0 auto 26px; }
.legal-page { background: var(--porcelain); padding: 130px 0 80px; }
.legal-page h1 { font-size: clamp(1.9rem, 1.4rem + 2vw, 2.9rem); margin-bottom: 8px; }
.legal-page .updated { color: var(--muted); font-size: 0.85rem; margin-bottom: 36px; }
.legal-page h2 { font-size: 1.28rem; margin: 34px 0 10px; }
.legal-page p, .legal-page li { color: #3A4658; max-width: 74ch; margin-bottom: 11px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--gold-deep); }
.legal-wrap { max-width: 860px; }

/* ---------- Movimiento reducido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js-ready [data-reveal] { opacity: 1 !important; transform: none !important; }
  .arc-word svg path { stroke-dashoffset: 0 !important; }
  .marquee { overflow-x: auto; }
  .marquee-track { animation: none; }
  .btn:hover, .b-card:hover { transform: none; }
}

/* ============================================================
   v3 — MULTIPÁGINA
   ============================================================ */

/* ---------- Migas de pan ---------- */
.crumbs { background: var(--navy-900); color: rgba(246,244,239,0.6); padding-top: var(--header-h); }
.crumbs ol {
  list-style: none; display: flex; flex-wrap: wrap; gap: 8px;
  padding-block: 12px; font-size: 0.8rem;
}
.crumbs li + li::before { content: "›"; margin-right: 8px; opacity: 0.55; }
.crumbs a { color: inherit; text-decoration: none; }
.crumbs a:hover { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 3px; }
.crumbs [aria-current] { color: rgba(246,244,239,0.9); }
.crumbs + main .hero { padding-top: clamp(24px, 4vh, 54px); }
.crumbs + main .hero-photo { top: 0; }

/* ---------- Menú móvil ---------- */
.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line-light);
  border-radius: 13px; background: rgba(246,244,239,0.07);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.nav-toggle span {
  display: block; width: 18px; height: 1.8px; background: var(--porcelain); border-radius: 2px;
  transition: transform 0.4s var(--ease), opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.4px) rotate(-45deg); }
.nav-toggle:hover { background: rgba(246,244,239,0.13); border-color: var(--gold-soft); }
@media (max-width: 1080px) { .nav-toggle { display: flex; } }

.nav-panel {
  position: fixed; inset: 0 0 0 auto; width: min(360px, 88vw); z-index: 150;
  padding: calc(var(--header-h) + 18px) 24px 28px;
  overflow-y: auto; border-radius: 0;
  background: linear-gradient(160deg, rgba(10,27,51,0.94), rgba(7,19,36,0.97));
  transform: translateX(100%); transition: transform 0.45s var(--ease);
  overscroll-behavior: contain;
}
.nav-panel[hidden] { display: block; visibility: hidden; }
.nav-panel.is-open { transform: translateX(0); visibility: visible; }
.nav-panel::before { border-radius: 0; }
.nav-panel-tit {
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 700; margin: 18px 0 10px;
}
.nav-panel-tit:first-child { margin-top: 0; }
.nav-panel ul { list-style: none; display: grid; gap: 2px; margin-bottom: 6px; }
.nav-panel ul a {
  display: block; padding: 11px 12px; margin-inline: -12px; border-radius: 10px;
  color: var(--porcelain); text-decoration: none; font-weight: 550; font-size: 0.98rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.nav-panel ul a:hover { background: rgba(246,244,239,0.09); color: var(--gold-soft); }
.nav-panel .btn { margin-top: 14px; }
.nav-scrim {
  position: fixed; inset: 0; z-index: 140; background: rgba(4,10,20,0.55);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity 0.4s ease; border: 0;
}
.nav-scrim.is-open { opacity: 1; }
body.nav-abierto { overflow: hidden; }

/* ---------- Hero de página de servicio ---------- */
.hero-photo picture { display: block; width: 100%; height: 100%; }
.hero-servicio .hero-photo img { object-position: center; }
.hero h1 { text-wrap: balance; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Bloque destacado de carga inmediata ---------- */
.destacado-ci {
  background:
    radial-gradient(760px 460px at 85% 12%, rgba(23,53,99,0.85), transparent 62%),
    var(--navy-950);
  color: var(--porcelain); overflow: hidden;
}
.ci-grid {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.destacado-ci .lead { color: rgba(246,244,239,0.84); }
.destacado-ci p { color: rgba(246,244,239,0.76); }
.destacado-ci strong { color: var(--white); }
.ci-media .frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-deep);
  border: 1px solid var(--line-light);
}
.ci-media img { width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }
@media (max-width: 900px) { .ci-grid { grid-template-columns: minmax(0, 1fr); } }

/* ---------- Pasos ---------- */
.pasos { background: var(--navy-900); color: var(--porcelain); position: relative; overflow: hidden; }
.pasos::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 420px at 10% 8%, rgba(23,53,99,0.7), transparent 60%);
}
.pasos > .container { position: relative; }
.steps { list-style: none; display: grid; gap: 12px; counter-reset: paso; }
@media (min-width: 780px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step { display: flex; gap: 18px; align-items: flex-start; padding: 22px 24px; }
.step-n {
  font-family: var(--display); font-size: 1.6rem; line-height: 1;
  color: var(--gold-soft); flex: none; min-width: 2ch; opacity: 0.9;
}
.step h3 {
  font-family: var(--display); font-weight: 400; font-size: 1.22rem; line-height: 1.2;
}
.step p { margin-top: 7px; font-size: 0.94rem; color: rgba(246,244,239,0.76); line-height: 1.55; }
.step p strong { color: var(--white); }
.step p a { color: var(--gold-soft); }
.step-meta {
  margin-top: 10px !important; font-size: 0.78rem !important; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--gold-soft) !important; font-weight: 600;
}

/* ---------- Sí / No (candidatura honesta) ---------- */
.sino-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 900px) { .sino-grid { grid-template-columns: minmax(0, 1fr); } }
.sino-card {
  padding: clamp(22px, 3vw, 34px); border-radius: var(--r-lg);
  border: 1px solid var(--line-dark); background: var(--white);
}
.sino-card h3 {
  font-family: var(--display); font-weight: 400; font-size: clamp(1.15rem, 1rem + 0.6vw, 1.42rem);
  line-height: 1.2; margin-bottom: 16px;
}
.sino-card ul { list-style: none; display: grid; gap: 12px; }
.sino-card li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; line-height: 1.5; }
.sino-card .arc-ico { flex: none; margin-top: 7px; }
.sino-si { border-color: rgba(78,122,70,0.35); background: linear-gradient(160deg, #F1F5EF, var(--white)); }
.sino-si h3 { color: #3C6135; }
.sino-no { border-color: rgba(156,107,58,0.32); background: linear-gradient(160deg, #F8F2EC, var(--white)); }
.sino-no h3 { color: #7A4F26; }
.sino-cierre {
  margin-top: 28px; max-width: 74ch; color: var(--muted); font-size: 1.02rem; line-height: 1.6;
}
.sino-cierre a { color: var(--gold-deep); }

/* ---------- Equipo ---------- */
.equipo { background: var(--porcelain); }
.equipo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .equipo-grid { grid-template-columns: minmax(0, 1fr); } }
.equipo-card {
  padding: clamp(24px, 3vw, 34px); border-radius: var(--r-lg);
  background: var(--white); border: 1px solid var(--line-dark);
}
.equipo-card h3 {
  font-family: var(--display); font-weight: 400; font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); line-height: 1.15;
}
.equipo-rol {
  margin-top: 6px; font-size: 0.78rem; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 700;
}
.equipo-card p:last-child { margin-top: 14px; color: var(--muted); font-size: 0.95rem; line-height: 1.6; }
.equipo-card.destacada { border-color: rgba(201,162,39,0.45); box-shadow: var(--shadow); }

/* ---------- Cabecera de contacto ---------- */
.contacto-top {
  background: radial-gradient(800px 480px at 20% 0%, rgba(23,53,99,0.8), transparent 62%), var(--navy-900);
  color: var(--porcelain); padding-block: clamp(48px, 7vh, 86px) clamp(10px, 2vh, 20px);
}
.contacto-top h1 { font-size: clamp(2.1rem, 1.3rem + 3.3vw, 3.5rem); color: var(--white); }
.contacto-top .lead { color: rgba(246,244,239,0.8); }

/* ---------- Ajustes de secciones repetidas ---------- */
.manifesto + .manifesto, .doctora + .doctora { padding-top: 0; }
.section.doctora .manifesto-grid { align-items: center; }
