/* ============================================================
   Vidaintegra — Home redesign
   Design tokens + components. Clean / clinical / airy.
   ============================================================ */

:root {
  /* Corporate palette (brief) */
  --blue:        #4A72B8;
  --blue-700:    #3a5d9a;
  --blue-800:    #2f4d80;
  --blue-050:    #eef3fb;
  --celeste:     #18A7E0;
  --celeste-700: #1390c4;
  --celeste-050: #e7f6fd;
  --green:       #6AC36A;
  --green-700:   #54a854;
  --green-050:   #eef8ee;
  --gray:        #E5E5E5;

  /* Neutrals */
  --ink:    #18293f;
  --slate:  #56657a;
  --muted:  #8593a6;
  --line:   #e6ebf2;
  --line-2: #eef2f7;
  --bg:     #ffffff;
  --bg-soft:#f4f8fc;
  --bg-tint:#eef4fb;

  /* Type */
  --font: "Hanken Grotesk", ui-sans-serif, system-ui, -apple-system, sans-serif;

  /* Radius */
  --r-xs: 8px;
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-pill: 999px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(24,41,63,.06), 0 2px 6px rgba(24,41,63,.05);
  --sh:    0 6px 18px rgba(24,41,63,.08), 0 2px 6px rgba(24,41,63,.05);
  --sh-md: 0 14px 34px rgba(24,41,63,.12), 0 4px 10px rgba(24,41,63,.06);
  --sh-lg: 0 26px 60px rgba(24,41,63,.16), 0 8px 18px rgba(24,41,63,.07);
  --sh-blue: 0 18px 40px rgba(74,114,184,.26);

  --maxw: 1240px;
  --gut: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { overflow-x: hidden; max-width: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.08; }
p { margin: 0; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--cta, var(--blue)); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 48px; padding: 0 24px;
  background: var(--bg); color: var(--fg);
  border-radius: var(--r-pill);
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.01em;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease;
  box-shadow: 0 8px 18px rgba(74,114,184,.22);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--sh-blue); }
.btn:active { transform: translateY(0); }
.btn svg { width: 19px; height: 19px; }
.btn--green { --bg: var(--green); box-shadow: 0 8px 18px rgba(106,195,106,.28); }
.btn--green:hover { box-shadow: 0 16px 34px rgba(106,195,106,.34); }
.btn--celeste { --bg: var(--celeste); box-shadow: 0 8px 18px rgba(24,167,224,.26); }
.btn--ghost {
  --bg: transparent; --fg: var(--blue);
  border: 1.6px solid var(--blue); box-shadow: none;
}
.btn--ghost:hover { background: var(--blue-050); box-shadow: none; }
.btn--white { --bg:#fff; --fg: var(--blue); box-shadow: var(--sh); }
.btn--sm { height: 40px; padding: 0 18px; font-size: 14px; }
.btn--lg { height: 54px; padding: 0 30px; font-size: 16.5px; }

.link-more {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--blue); font-weight: 700; font-size: 15px;
  transition: gap .2s ease, color .2s ease;
}
.link-more:hover { gap: 11px; color: var(--blue-700); }
.link-more svg { width: 17px; height: 17px; }

/* ---------- Section scaffolding ---------- */
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--celeste-700);
}
.eyebrow::before { content:""; width: 22px; height: 2px; background: var(--celeste); border-radius: 2px; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(28px, 3.4vw, 42px); margin-top: 14px; }
.section-head p { color: var(--slate); font-size: 17.5px; margin-top: 14px; line-height: 1.55; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; max-width: none; }

/* prevention document cards */
.doc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-bottom: 8px; }
.doc-card {
  display: flex; align-items: flex-start; gap: 18px; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 28px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.doc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: transparent; }
.doc-ic {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--celeste-050); color: var(--celeste-700);
}
.doc-ic svg { width: 26px; height: 26px; stroke-width: 1.8; }
.doc-copy { flex: 1; }
.doc-copy h3 { font-size: 18.5px; letter-spacing: -0.01em; }
.doc-copy p { margin-top: 7px; color: var(--slate); font-size: 14.5px; line-height: 1.5; }
.doc-tag {
  flex-shrink: 0; align-self: flex-start; font-size: 12px; font-weight: 800; letter-spacing: .04em;
  background: var(--bg-soft); color: var(--slate); border-radius: var(--r-pill); padding: 5px 11px; margin-top: 3px;
}
@media (max-width: 720px) { .doc-grid { grid-template-columns: 1fr; } }

/* derechos y deberes */
.rd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.rd-col-head { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.rd-ic { width: 46px; height: 46px; border-radius: 13px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.rd-ic svg { width: 24px; height: 24px; stroke-width: 1.8; }
.rd-ic--blue { background: var(--blue-050); color: var(--blue-700); }
.rd-ic--green { background: var(--green-050); color: var(--green-700); }
.rd-col-head h2 { font-size: 26px; letter-spacing: -0.02em; }
.rd-list { display: flex; flex-direction: column; gap: 14px; }
.rd-list li {
  position: relative; padding-left: 26px; font-size: 15.5px; line-height: 1.55; color: var(--slate);
}
.rd-list li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 9px; height: 9px; border-radius: 50%;
  background: var(--celeste);
}
.rd-note {
  margin-top: 26px; display: flex; gap: 14px; background: var(--celeste-050); border-radius: var(--r-lg);
  padding: 20px 22px; align-items: flex-start;
}
.rd-note svg { width: 22px; height: 22px; stroke-width: 1.8; color: var(--celeste-700); flex-shrink: 0; margin-top: 2px; }
.rd-note p { font-size: 14.5px; line-height: 1.55; color: var(--celeste-700); font-weight: 600; }
@media (max-width: 860px) { .rd-grid { grid-template-columns: 1fr; gap: 44px; } }

.rd-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.rd-info-card {
  display: block; position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--sh-sm); transition: transform .22s ease, box-shadow .22s ease;
  padding: 0; background: #fff; cursor: pointer; width: 100%; height: 420px;
  font: inherit; text-align: inherit;
}
.rd-info-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }
.rd-info-card img { display: block; width: 100%; height: 100%; object-fit: contain; background: #fff; }
.rd-info-zoom {
  position: absolute; right: 14px; bottom: 14px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(15,23,42,.72); color: #fff; display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(6px); transition: opacity .2s ease, transform .2s ease;
}
.rd-info-zoom svg { width: 19px; height: 19px; stroke-width: 2; }
.rd-info-card:hover .rd-info-zoom { opacity: 1; transform: none; }
@media (max-width: 860px) { .rd-info-grid { grid-template-columns: 1fr; } .rd-info-card { height: 340px; } }

/* lightbox */
.rd-lightbox {
  position: fixed; inset: 0; background: rgba(10,16,28,.88); z-index: 200;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.rd-lightbox.is-open { display: flex; }
.rd-lightbox img { max-width: 100%; max-height: 100%; border-radius: var(--r); box-shadow: var(--sh-lg); }
.rd-lightbox-close {
  position: absolute; top: 22px; right: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff; display: inline-flex; align-items: center; justify-content: center;
}
.rd-lightbox-close:hover { background: rgba(255,255,255,.22); }
.rd-lightbox-close svg { width: 20px; height: 20px; stroke-width: 2.2; }

/* trabaje en vidaintegra */
.job-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 26px; align-items: start; }
.job-card {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-md); border: 1px solid var(--line);
  padding: 40px;
}
.job-ic {
  width: 54px; height: 54px; border-radius: 15px; background: var(--celeste-050); color: var(--celeste-700);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.job-ic svg { width: 27px; height: 27px; stroke-width: 1.8; }
.job-card h2 { font-size: 26px; letter-spacing: -0.02em; }
.job-card > p { margin-top: 14px; color: var(--slate); font-size: 16px; line-height: 1.6; max-width: 540px; }
.job-email { color: var(--celeste-700); font-weight: 700; text-decoration: underline; }
.job-list {
  margin-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 18px;
}
.job-list li {
  position: relative; padding-left: 24px; font-size: 15px; font-weight: 600; color: var(--ink);
}
.job-list li::before {
  content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--green);
}
.job-card .btn { margin-top: 28px; }
.job-side { display: flex; flex-direction: column; gap: 20px; }
@media (max-width: 860px) {
  .job-grid { grid-template-columns: 1fr; }
  .job-card { padding: 28px; }
  .job-list { grid-template-columns: 1fr; }
}

/* ============================================================
   HEADER
   ============================================================ */
.topbar {
  background: var(--blue-800); color: rgba(255,255,255,.86);
  font-size: 13.5px;
}
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 42px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; padding: 4px 0; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; stroke-width: 1.7; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; }
.topbar-sep { width: 1px; height: 16px; background: rgba(255,255,255,.18); }
.topbar-cta { color: #fff !important; font-weight: 700; }

.header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line-2);
}
.header .wrap { display: flex; align-items: center; gap: 26px; height: 76px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-img { height: 38px; width: auto; display: block; }
.logo-img--white { filter: brightness(0) invert(1); height: 34px; }
.logo-mark { width: 40px; height: 40px; flex-shrink: 0; }
.logo-word { font-size: 24px; font-weight: 800; letter-spacing: -0.035em; color: var(--blue); }
.logo-word b { color: var(--green); font-weight: 800; }
.logo-tag { font-size: 9.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 2px; margin-left: 2px; }
.nav a {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 11px; border-radius: var(--r-pill);
  font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap;
  transition: background .18s, color .18s;
}
.nav a:hover { background: var(--blue-050); color: var(--blue-700); }
.nav a.nav-highlight, .mobile-panel nav a.nav-highlight { background: var(--blue-050); color: var(--blue-700); font-weight: 700; }
.nav a svg { width: 15px; height: 15px; opacity: .5; stroke-width: 1.7; }

/* dropdown submenu */
.nav-item { position: relative; display: inline-flex; }
.nav-item > a { display: inline-flex; align-items: center; gap: 5px; }
.nav-item .chev { width: 13px; height: 13px; opacity: .5; stroke-width: 2.2; transition: transform .22s ease; }
.nav-item:hover .chev { transform: rotate(180deg); }
.nav-item:hover > a { background: var(--blue-050); color: var(--blue-700); }
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 252px;
  background: #fff; border-radius: var(--r); box-shadow: var(--sh-lg);
  border: 1px solid var(--line-2); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 70;
}
.dropdown::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: none; }
.dropdown a {
  display: flex; align-items: center; gap: 11px; padding: 11px 13px; border-radius: var(--r-sm);
  font-size: 14.5px; font-weight: 600; color: var(--ink); white-space: nowrap;
  transition: background .15s, color .15s, padding .15s;
}
.dropdown a svg { width: 18px; height: 18px; color: var(--green-700); stroke-width: 1.8; opacity: .9; flex-shrink: 0; }
.dropdown a:hover { background: var(--green-050); color: var(--green-700); padding-left: 16px; }

.header-actions { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: background .18s, color .18s;
}
.icon-btn:hover { background: var(--blue-050); color: var(--blue); }
.icon-btn svg { width: 21px; height: 21px; stroke-width: 1.7; }
.login-btn {
  display: inline-flex; align-items: center; gap: 9px;
  height: 44px; padding: 0 16px 0 14px; border-radius: var(--r-pill);
  border: 1.5px solid var(--line); font-weight: 700; font-size: 14.5px; color: var(--ink);
  transition: border-color .2s, background .2s;
}
.login-btn:hover { border-color: var(--blue); background: var(--blue-050); }
.login-btn .av {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--celeste), var(--blue));
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
}
.login-btn .av svg { width: 16px; height: 16px; }

.burger { display: none; }

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero { position: relative; background: var(--bg-tint); overflow: hidden; }
.hero-deco {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-deco span {
  position: absolute; border-radius: 50%; filter: blur(2px); opacity: .5;
}
.hero-deco .b1 { width: 520px; height: 520px; right: -160px; top: -200px;
  background: radial-gradient(circle at 30% 30%, rgba(24,167,224,.22), transparent 60%); }
.hero-deco .b2 { width: 460px; height: 460px; left: -180px; bottom: -220px;
  background: radial-gradient(circle at 50% 50%, rgba(106,195,106,.18), transparent 62%); }

.hero-track { position: relative; }
.slide {
  display: grid; grid-template-columns: 1fr 1.28fr; align-items: center;
  gap: 36px; min-height: 480px; padding: 56px 0 96px;
  position: absolute; inset: 0; opacity: 0; visibility: hidden;
  transform: translateY(14px); transition: opacity .6s ease, transform .6s ease;
}
.slide.is-active { position: relative; opacity: 1; visibility: visible; transform: none; }
.slide-copy { max-width: 540px; }
.slide-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: var(--r-pill);
  background: #fff; box-shadow: var(--sh-sm);
  font-size: 13px; font-weight: 700; color: var(--blue-700); margin-bottom: 22px;
}
.slide-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.slide h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.04; }
.slide h1 em { font-style: normal; color: var(--green-700); }
.slide-copy p { margin-top: 20px; font-size: 18.5px; color: var(--slate); line-height: 1.55; max-width: 460px; }
.slide-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }

.slide-media { position: relative; }
.slide-media image-slot {
  width: 100%; height: 440px; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
}
.slide-img {
  width: 100%; height: 440px; object-fit: cover; object-position: center;
  border-radius: var(--r-lg); box-shadow: var(--sh-lg);
}
/* Some campaign creatives already ship as a finished card (own rounded corners,
   shadow and background) — stretching/cropping them with the default treatment
   above doubles the framing. This variant lets the artwork stand on its own. */
.slide-img--flat {
  object-fit: contain; box-shadow: none; border-radius: 0; background: transparent;
}
.slide-graphic {
  width: 100%; height: 440px; border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  background: linear-gradient(135deg, var(--blue) 0%, var(--celeste) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 26px;
  position: relative; overflow: hidden;
}
.slide-graphic::after {
  content:""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.16), transparent 65%);
  right: -120px; bottom: -120px;
}
.slide-graphic .sg-mark { width: 120px; height: 120px; position: relative; z-index: 1; }
.slide-graphic .sg-text {
  position: relative; z-index: 1; color: #fff; text-align: center;
  font-size: 22px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.3;
}
.slide--full-media { grid-template-columns: 1fr; padding: 32px 0 96px; }
.slide--banner { grid-template-columns: 1fr; padding: 32px 0 96px; }
.slide-banner-link { display: block; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); }
.slide-banner-img { width: 100%; height: auto; max-height: 500px; object-fit: contain; background: #fff; display: block; }
.slide-media--full { width: 100%; }
.slide-media--full .slide-img { height: auto; max-height: 500px; }
.slide-badge {
  position: absolute; left: -22px; bottom: 36px;
  background: #fff; border-radius: var(--r); box-shadow: var(--sh-md);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  max-width: 250px;
}
.slide-badge .ic {
  width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-700));
}
.slide-badge .ic svg { width: 23px; height: 23px; stroke-width: 1.8; }
.slide-badge b { display: block; font-size: 15px; }
.slide-badge span { font-size: 13px; color: var(--muted); }

/* carousel controls */
.hero-controls {
  position: absolute; left: 0; right: 0; bottom: 30px; z-index: 5;
  display: flex; align-items: center; gap: 18px;
}
.hero-controls .wrap { display: flex; align-items: center; gap: 18px; }
.dots { display: flex; gap: 9px; }
.dot-btn {
  width: 9px; height: 9px; border-radius: var(--r-pill); background: rgba(24,41,63,.18);
  transition: width .3s ease, background .3s ease;
}
.dot-btn.is-active { width: 30px; background: var(--blue); }
.hero-arrows { display: flex; gap: 8px; margin-left: 6px; }
.arrow-btn {
  width: 44px; height: 44px; border-radius: 50%; background: #fff; box-shadow: var(--sh);
  display: inline-flex; align-items: center; justify-content: center; color: var(--blue);
  transition: transform .2s, box-shadow .2s;
}
.arrow-btn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.arrow-btn svg { width: 20px; height: 20px; stroke-width: 2; }

/* ============================================================
   FRANJA ACCESOS RÁPIDOS (bajo el hero)
   ============================================================ */
.quickband {
  background: linear-gradient(100deg, var(--green) 0%, var(--green-700) 100%);
  position: relative; z-index: 21;
}
.quickband-inner { display: grid; grid-template-columns: repeat(7, 1fr); }
.qitem {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  padding: 24px 14px; color: #fff; text-align: center;
  position: relative; transition: background .2s ease;
}
.qitem:not(:first-child)::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%;
  width: 1px; background: rgba(255,255,255,.22);
}
.qitem:hover { background: rgba(255,255,255,.13); }
.qic {
  width: 50px; height: 50px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25);
  transition: transform .22s ease, background .22s ease;
}
.qic svg { width: 25px; height: 25px; stroke-width: 1.7; color: #fff; }
.qic img { width: 30px; height: 30px; object-fit: contain; }
.kine-ico { display: inline-block; background: currentColor;
  -webkit-mask: var(--ki) center / contain no-repeat; mask: var(--ki) center / contain no-repeat;
  --ki: url(assets/icons/kinesiologia.png); }
.dl-bic .kine-ico { width: 30px; height: 30px; }
.den-pin .kine-ico { width: 24px; height: 24px; }
.cta-band-icon .kine-ico { width: 120px; height: 120px; color: rgba(255,255,255,.9); }
.dental-ico { display: inline-block; background: currentColor;
  -webkit-mask: url(assets/icons/dental.png) center / contain no-repeat; mask: url(assets/icons/dental.png) center / contain no-repeat; }
.qic .dental-ico { width: 25px; height: 25px; color: #fff; }
.den-pin .dental-ico { width: 24px; height: 24px; }
.rh-ic .dental-ico { width: 27px; height: 27px; }
.qitem:hover .qic { transform: translateY(-4px); background: rgba(255,255,255,.26); }
.qitem span {
  font-size: 13px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  line-height: 1.2;
}

/* ============================================================
   ACCESOS DESTACADOS  (key section)
   ============================================================ */
.accesos { position: relative; margin-top: 56px; z-index: 20; }
.accesos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.acard {
  position: relative; background: var(--accent-soft, #fff); border-radius: var(--r-lg);
  box-shadow: var(--sh-md); padding: 26px 24px 24px;
  display: flex; flex-direction: column;
  border: 1px solid rgba(24,41,63,.05);
  transition: transform .22s ease, box-shadow .28s ease;
  overflow: hidden;
}
.acard::before {
  content:""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--accent, var(--blue));
}
.acard:hover { transform: translateY(-7px); box-shadow: var(--sh-lg); }
.acard-ic {
  width: 56px; height: 56px; border-radius: 16px; margin-bottom: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent, var(--blue)); color: #fff;
  box-shadow: 0 8px 18px color-mix(in srgb, var(--accent, var(--blue)) 32%, transparent);
}
.acard-ic svg { width: 28px; height: 28px; stroke-width: 1.7; }
.acard h3 { font-size: 20px; letter-spacing: -0.02em; }
.acard > p { color: var(--slate); font-size: 14.5px; margin-top: 10px; line-height: 1.5; }
.acard-foot { margin-top: auto; padding-top: 22px; }
.acard-btn { width: 100%; --bg: var(--accent); }

/* express card: next-slot chip */
.next-slot {
  display: flex; align-items: center; gap: 13px; margin-top: 18px;
  padding: 13px 15px; border-radius: var(--r-sm);
  background: #fff; border: 1px solid rgba(106,195,106,.25);
}
.next-slot .pulse {
  width: 11px; height: 11px; border-radius: 50%; background: var(--green); position: relative; flex-shrink: 0;
}
.next-slot .pulse::after {
  content:""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid var(--green); opacity: .6; animation: ping 1.8s ease-out infinite;
}
@keyframes ping { 0%{transform:scale(.6);opacity:.7} 100%{transform:scale(1.7);opacity:0} }
.next-slot b { font-size: 15px; display: block; }
.next-slot span { font-size: 12.5px; color: var(--green-700); font-weight: 700; }

/* reserva card: tabs of links */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 13px; border-radius: var(--r-pill);
  background: #fff; border: 1px solid rgba(24,41,63,.06);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  transition: all .18s ease;
}
.chip svg { width: 15px; height: 15px; stroke-width: 1.8; color: var(--accent, var(--blue)); }
.chip:hover { background: var(--accent, var(--blue)); border-color: var(--accent, var(--blue)); color: #fff; transform: translateY(-2px); }
.chip:hover svg { color: #fff; }

/* manejo card: split actions */
.split-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.mini-action {
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  padding: 13px; border-radius: var(--r-sm); border: 1px solid rgba(24,41,63,.06);
  background: #fff; transition: all .18s ease;
}
.mini-action svg { width: 20px; height: 20px; stroke-width: 1.7; color: var(--accent, var(--blue)); }
.mini-action span { font-size: 14px; font-weight: 700; }
.mini-action:hover { border-color: var(--accent); background: var(--accent-soft); transform: translateY(-2px); }

.acard-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 800; font-size: 15px; color: var(--accent, var(--blue));
  transition: gap .2s ease;
}
.acard-link svg { width: 17px; height: 17px; stroke-width: 2.2; }
.acard:hover .acard-link { gap: 11px; }

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
.esp-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.esp-tile {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  padding: 26px 14px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line-2);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.esp-tile:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.esp-tile .ic {
  width: 54px; height: 54px; border-radius: 15px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--celeste-050); color: var(--celeste-700);
  transition: background .2s, color .2s;
}
.esp-tile:nth-child(3n+1) .ic { background: var(--blue-050); color: var(--blue); }
.esp-tile:nth-child(3n+3) .ic { background: var(--green-050); color: var(--green-700); }
.esp-tile:hover .ic { background: var(--blue); color: #fff; }
.esp-tile .ic svg { width: 27px; height: 27px; stroke-width: 1.6; }
.esp-tile span { font-size: 14.5px; font-weight: 700; }
.esp-tile--more { background: var(--blue); border-color: transparent; }
.esp-tile--more .ic { background: rgba(255,255,255,.18); color: #fff; }
.esp-tile--more:hover .ic { background: rgba(255,255,255,.28); color: #fff; }
.esp-tile--more span { color: #fff; }

/* ============================================================
   TELEMEDICINA band (split)
   ============================================================ */
.band {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px;
  background: linear-gradient(120deg, var(--blue-800), var(--blue));
  border-radius: var(--r-lg); padding: 56px; color: #fff; overflow: hidden; position: relative;
}
.band::after {
  content:""; position: absolute; right: -120px; top: -120px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(24,167,224,.4), transparent 65%); border-radius: 50%;
}
.band .eyebrow { color: #fff; }
.band .eyebrow::before { background: var(--celeste); }
.band h2 { color: #fff; font-size: clamp(28px, 3.2vw, 40px); margin-top: 14px; }
.band p { color: rgba(255,255,255,.82); font-size: 17.5px; margin-top: 16px; line-height: 1.55; }
.band-list { display: flex; flex-direction: column; gap: 12px; margin: 24px 0 30px; }
.band-list li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; color: rgba(255,255,255,.92); }
.band-list .tick {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.16); color: #fff;
}
.band-list .tick svg { width: 15px; height: 15px; stroke-width: 2.4; }
.band-media { position: relative; z-index: 1; }
.band-media image-slot { width: 100%; height: 360px; border-radius: var(--r); box-shadow: var(--sh-lg); }
.band-media .float {
  position: absolute; right: -18px; bottom: 28px; background: #fff; color: var(--ink);
  border-radius: var(--r); box-shadow: var(--sh-lg); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
}
.band-media .float .ic { width: 40px; height: 40px; border-radius: 11px; background: var(--green-050); color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center; }
.band-media .float .ic svg { width: 21px; height: 21px; stroke-width: 1.8; }
.band-media .float b { display: block; font-size: 14.5px; }
.band-media .float span { font-size: 12.5px; color: var(--muted); }

/* links band (info destacada) */
.linksband { grid-template-columns: 0.74fr 1.65fr; gap: 44px; align-items: center; }
.linksband .band-head .eyebrow { color: #fff; }
.linksband .band-head .eyebrow::before { background: var(--celeste); }
.linksband .band-head h2 { color: #fff; font-size: clamp(28px, 3.2vw, 40px); margin-top: 14px; }
.linksband .band-head p { color: rgba(255,255,255,.82); font-size: 16.5px; margin-top: 16px; line-height: 1.55; max-width: 340px; }
.links-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; position: relative; z-index: 1; }
.info-link {
  display: flex; align-items: center; gap: 13px;
  padding: 13px 16px; border-radius: var(--r-sm);
  background: #fff; box-shadow: var(--sh-sm);
  color: var(--blue-700); font-size: 14px; font-weight: 600; line-height: 1.3;
  transition: transform .18s ease, box-shadow .22s ease;
}
.info-link b { font-weight: 800; color: var(--blue-800); }
.info-link .arrow {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue); color: #fff; transition: background .2s ease;
}
.info-link .arrow svg { width: 16px; height: 16px; stroke-width: 2.4; }
.info-link:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.info-link:hover .arrow { background: var(--green); }
.info-link--green { background: var(--green); }
.info-link--green b { color: #fff; }
.info-link--green span { color: #fff; }
.info-link--green .arrow { background: #fff; color: var(--green-700); }
.info-link--green:hover .arrow { background: var(--blue-700); color: #fff; }

/* ============================================================
   EXÁMENES / quick service strip
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  display: flex; gap: 18px; padding: 28px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line-2);
  transition: transform .2s, box-shadow .25s;
}
.svc:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.svc .ic {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-050); color: var(--blue);
}
.svc:nth-child(2) .ic { background: var(--celeste-050); color: var(--celeste-700); }
.svc:nth-child(3) .ic { background: var(--green-050); color: var(--green-700); }
.svc .ic svg { width: 26px; height: 26px; stroke-width: 1.7; }
.svc h3 { font-size: 18px; }
.svc p { color: var(--slate); font-size: 14.5px; margin-top: 7px; line-height: 1.5; }
.svc .link-more { margin-top: 12px; font-size: 14px; }

/* ============================================================
   CENTROS MÉDICOS
   ============================================================ */
.centros-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.centro-card {
  display: flex; flex-direction: column;
  --cbg: var(--blue); --cfg: var(--blue);
  background: var(--cbg); border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(24,41,63,.05); box-shadow: var(--sh-md);
  transition: transform .22s ease, box-shadow .28s ease;
}
.centro-card:nth-child(even) { --cbg: var(--green-700); --cfg: var(--green-700); }
.centro-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.centro-map {
  position: relative; height: 178px; background: var(--bg-tint); overflow: hidden;
}
.centro-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.centro-map .open-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px; border-radius: var(--r-pill);
  background: #fff; box-shadow: var(--sh-sm);
  font-size: 12px; font-weight: 800; color: var(--green-700);
}
.centro-map .open-badge .d { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.centro-map .open-badge.closed { color: var(--muted); }
.centro-map .open-badge.closed .d { background: var(--muted); }
.centro-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.centro-body h3 { font-size: 18px; letter-spacing: -0.02em; color: #fff; }
.centro-meta { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.centro-meta li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: rgba(255,255,255,.9); line-height: 1.4; }
.centro-meta svg { width: 16px; height: 16px; stroke-width: 1.9; color: #fff; opacity: .82; flex-shrink: 0; margin-top: 1px; }
.centro-body .btn { margin-top: auto; width: 100%; height: 44px; font-size: 14.5px; }
.centro-body .btn--ghost { --fg: var(--cfg); border: 0; background: #fff; box-shadow: 0 6px 16px rgba(24,41,63,.16); }
.centro-body .btn--ghost:hover { background: #fff; --fg: var(--cfg); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(24,41,63,.2); }

/* ============================================================
   BENEFICIOS
   ============================================================ */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.benefit { text-align: left; }
.benefit .ic {
  width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-050); color: var(--blue);
}
.benefit:nth-child(2) .ic { background: var(--celeste-050); color: var(--celeste-700); }
.benefit:nth-child(3) .ic { background: var(--green-050); color: var(--green-700); }
.benefit:nth-child(4) .ic { background: var(--blue-050); color: var(--blue); }
.benefit .ic svg { width: 26px; height: 26px; stroke-width: 1.7; }
.benefit h3 { font-size: 18px; }
.benefit p { color: var(--slate); font-size: 14.5px; margin-top: 8px; line-height: 1.55; }

/* convenios logos */
.convenios { margin-top: 64px; padding-top: 44px; border-top: 1px solid var(--line); text-align: center; }
.convenios > span { font-size: 13.5px; font-weight: 700; letter-spacing: .04em; color: var(--muted); text-transform: uppercase; }
.logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; margin-top: 26px; }
.logos .lg {
  height: 30px; padding: 0 6px; display: inline-flex; align-items: center;
  font-weight: 800; font-size: 17px; color: var(--muted); letter-spacing: -0.02em;
  opacity: .7; transition: opacity .2s, color .2s; filter: grayscale(1);
}
.logos .lg:hover { opacity: 1; color: var(--blue); filter: none; }

/* ============================================================
   CTA APP band
   ============================================================ */
.appcta {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center;
  background: var(--bg-soft); border-radius: var(--r-lg); padding: 18px 56px; overflow: hidden;
  border: 1px solid var(--line-2);
}
.appcta-copy { padding: 40px 0; }
.appcta h2 { font-size: clamp(26px, 3vw, 36px); }
.appcta p { color: var(--slate); font-size: 17px; margin-top: 14px; max-width: 420px; line-height: 1.55; }
.stores { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
.store {
  display: inline-flex; align-items: center; gap: 11px; height: 54px; padding: 0 20px;
  background: var(--ink); color: #fff; border-radius: 14px;
  transition: transform .2s, box-shadow .25s;
}
.store:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.store svg { width: 26px; height: 26px; }
.store small { display: block; font-size: 10.5px; opacity: .75; letter-spacing: .04em; }
.store b { display: block; font-size: 16px; margin-top: -2px; }
.appcta-media { align-self: end; position: relative; height: 100%; min-height: 280px; }
.appcta-media image-slot { position: absolute; bottom: 0; right: 0; width: 84%; height: 320px; border-radius: var(--r) var(--r) 0 0; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 64px 0 0; margin-top: 84px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 36px; padding-bottom: 48px; }
.footer-brand .logo-word { color: #fff; }
.footer-brand .logo-word b { color: var(--green); }
.footer-brand p { margin-top: 18px; font-size: 14.5px; line-height: 1.6; max-width: 280px; }
.footer-social { display: flex; gap: 11px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: inline-flex; align-items: center; justify-content: center; color: #fff;
  transition: background .2s, transform .2s;
}
.footer-social a:hover { background: var(--blue); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 18px; }
.footer-col a { display: block; font-size: 14px; padding: 6px 0; transition: color .18s, padding .18s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-contact { display: flex; align-items: center; gap: 11px; font-size: 14px; padding: 6px 0; }
.footer-contact svg { width: 17px; height: 17px; color: var(--celeste); stroke-width: 1.8; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 100; background: rgba(24,41,63,.4);
  opacity: 0; visibility: hidden; transition: opacity .28s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(86%, 380px); max-width: 100%;
  background: #fff; padding: 22px; transform: translateX(100%); transition: transform .32s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column; gap: 6px; overflow-y: auto;
}
.mobile-menu.open .mobile-panel { transform: none; }
.mobile-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mobile-panel nav a {
  display: flex; align-items: center; gap: 12px; padding: 14px 12px; border-radius: var(--r-sm);
  font-size: 16px; font-weight: 600; color: var(--ink); transition: background .15s;
}
.mobile-panel nav a:hover { background: var(--blue-050); }
.mobile-panel nav a svg { width: 20px; height: 20px; color: var(--blue); stroke-width: 1.7; }
.mobile-panel nav a .dental-ico { width: 20px; height: 20px; color: var(--blue); }
.m-sub { display: flex; flex-direction: column; padding-left: 44px; margin: -2px 0 4px; }
.m-sub a { padding: 9px 12px; font-size: 14.5px; font-weight: 500; color: var(--slate); border-radius: var(--r-sm); }
.m-sub a:hover { background: var(--green-050); color: var(--green-700); }
.mobile-panel .btn { margin-top: 14px; width: 100%; }

/* ---------- Tweak-driven variants ---------- */
body.no-tint .section--soft { background: #fff; }
body.acard-nobar .acard::before { opacity: 0; }
body.acard-nobar .acard { padding-top: 26px; }

/* ============================================================
   PÁGINAS INTERIORES
   ============================================================ */
.page-hero { position: relative; background: var(--bg-tint); overflow: hidden; padding: 30px 0 70px; }
.crumbs { display: flex; align-items: center; gap: 8px; position: relative; z-index: 2; padding: 14px 0 30px; font-size: 13.5px; }
.crumbs a { color: var(--slate); font-weight: 600; transition: color .18s; }
.crumbs a:hover { color: var(--blue); }
.crumbs span { color: var(--blue-700); font-weight: 800; }
.crumbs svg { width: 14px; height: 14px; color: var(--muted); stroke-width: 2; }
.page-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center; }
.page-hero-copy h1 { font-size: clamp(34px, 4.4vw, 54px); margin-top: 14px; }
.page-hero-copy > p { margin-top: 18px; font-size: 18px; color: var(--slate); line-height: 1.55; max-width: 520px; }
.page-hero-actions { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }
.page-hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: #fff; border-radius: var(--r); box-shadow: var(--sh); padding: 22px 24px;
  border: 1px solid var(--line-2);
}
.stat-card b { display: block; font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--blue); line-height: 1; }
.stat-card:nth-child(2) b { color: var(--celeste-700); }
.stat-card:nth-child(3) b { color: var(--green-700); }
.stat-card span { display: block; margin-top: 8px; font-size: 13.5px; color: var(--slate); font-weight: 600; }

/* services grid */
.srv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.srv-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); padding: 28px;
  border: 1px solid var(--line-2); box-shadow: var(--sh);
  transition: transform .22s ease, box-shadow .28s ease, border-color .2s;
  overflow: hidden;
}
.srv-card::before {
  content:""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px;
  background: var(--accent); transform: scaleY(0); transform-origin: top; transition: transform .26s ease;
}
.srv-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.srv-card:hover::before { transform: scaleY(1); }
.srv-ic {
  width: 58px; height: 58px; border-radius: 16px; margin-bottom: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  transition: background .22s ease, color .22s ease;
}
.srv-ic svg { width: 29px; height: 29px; stroke-width: 1.7; }
.srv-card:hover .srv-ic { background: var(--accent); color: #fff; }
.srv-card h3 { font-size: 20px; letter-spacing: -0.02em; }
.srv-card > p { margin-top: 9px; color: var(--slate); font-size: 14.5px; line-height: 1.5; }
.srv-link {
  margin-top: auto; padding-top: 20px;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent); font-weight: 800; font-size: 14.5px;
  transition: gap .2s ease;
}
.srv-link svg { width: 17px; height: 17px; stroke-width: 2.2; }
.srv-card:hover .srv-link { gap: 11px; }

/* CTA band */
.cta-band { grid-template-columns: 1.4fr .6fr; }
.cta-band .band-copy h2 { color: #fff; font-size: clamp(28px, 3.2vw, 40px); margin-top: 14px; }
.cta-band-icon { display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; }
.cta-band-icon svg { width: 120px; height: 120px; color: rgba(255,255,255,.9); stroke-width: 1.2; }
.btn--ghost-white { --fg: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* horarios */
.hr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
/* convenios grid */
.cv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.cv-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border-radius: var(--r); padding: 20px 22px;
  border: 1px solid var(--line-2); box-shadow: var(--sh);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.cv-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.cv-logo {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--accent) 30%, transparent);
}
.cv-logo svg { width: 28px; height: 28px; stroke-width: 1.7; }
.cv-body { flex: 1; min-width: 0; }
.cv-body h3 { font-size: 16.5px; letter-spacing: -0.015em; line-height: 1.25; color: var(--ink); }
.cv-body p { font-size: 13px; color: var(--muted); margin-top: 4px; font-weight: 600; }
.cv-tag {
  display: inline-flex; align-items: center; gap: 5px; flex-shrink: 0;
  font-size: 12px; font-weight: 800; color: var(--green-700);
}
.cv-tag svg { width: 14px; height: 14px; stroke-width: 2.6; }
.page-hero-copy strong { color: var(--celeste-700); font-weight: 800; }
/* empresas prestaciones */
.emp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.emp-chip {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border-radius: var(--r); padding: 18px 20px;
  border: 1px solid var(--line-2); box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.emp-chip:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.emp-chip-ic {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  transition: background .2s, color .2s;
}
.emp-chip:hover .emp-chip-ic { background: var(--accent); color: #fff; }
.emp-chip-ic svg { width: 24px; height: 24px; stroke-width: 1.7; }
.emp-chip > span:last-child { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
/* por qué elegirnos */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-item {
  display: flex; flex-direction: column; gap: 16px;
  background: #fff; border-radius: var(--r); padding: 28px 24px;
  border: 1px solid var(--line-2); box-shadow: var(--sh);
  font-size: 17px; font-weight: 700; letter-spacing: -0.01em; line-height: 1.3;
  transition: transform .2s ease, box-shadow .25s ease;
}
.why-item:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.why-ic {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--blue-050); color: var(--blue);
}
.why-item:nth-child(2) .why-ic { background: var(--celeste-050); color: var(--celeste-700); }
.why-item:nth-child(3) .why-ic { background: var(--green-050); color: var(--green-700); }
.why-item:nth-child(4) .why-ic { background: var(--blue-050); color: var(--blue); }
.why-ic svg { width: 26px; height: 26px; stroke-width: 1.7; }
/* embed (iframe) */
.page-hero--compact { padding: 30px 0 36px; }
.embed-frame { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--line); background: #fff; }
.embed-bar { display: flex; align-items: center; gap: 8px; padding: 12px 18px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.embed-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.embed-dot:nth-child(1) { background: #ff5f57; } .embed-dot:nth-child(2) { background: #febc2e; } .embed-dot:nth-child(3) { background: #28c840; }
.embed-url { margin-left: 14px; font-size: 13px; color: var(--muted); font-weight: 600; }
.embed-open { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 700; color: var(--blue); transition: gap .2s; }
.embed-open svg { width: 15px; height: 15px; stroke-width: 2; }
.embed-open:hover { gap: 10px; color: var(--blue-700); }
.embed-iframe { width: 100%; height: 1400px; border: 0; display: block; background: #fff; }
/* formas de pago */
.pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pay-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); padding: 32px 30px;
  border: 1px solid var(--line-2); box-shadow: var(--sh);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.pay-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.pay-ic {
  width: 62px; height: 62px; border-radius: 17px; margin-bottom: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  transition: background .22s, color .22s;
}
.pay-card:hover .pay-ic { background: var(--accent); color: #fff; }
.pay-ic svg { width: 30px; height: 30px; stroke-width: 1.6; }
.pay-card h3 { font-size: 22px; letter-spacing: -0.02em; }
.pay-card > p { margin-top: 10px; color: var(--slate); font-size: 15px; line-height: 1.5; }
.pay-badge {
  margin-top: 18px; align-self: flex-start;
  display: inline-flex; align-items: center; padding: 7px 14px; border-radius: var(--r-pill);
  background: var(--accent); color: #fff; font-size: 13px; font-weight: 800;
}
.pay-note {
  display: flex; align-items: center; gap: 11px; margin-top: 32px;
  padding: 16px 20px; border-radius: var(--r); background: var(--bg-soft);
  font-size: 14.5px; color: var(--slate); font-weight: 600;
}
.pay-note svg { width: 20px; height: 20px; stroke-width: 1.8; color: var(--blue); flex-shrink: 0; }
/* contacto */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 26px; align-items: stretch; }
.contact-call {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 6px;
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-800) 100%);
  border-radius: var(--r-lg); padding: 40px; color: #fff; position: relative; overflow: hidden;
  box-shadow: var(--sh-blue); transition: transform .2s ease, box-shadow .25s ease;
}
.contact-call::after { content:""; position: absolute; right: -90px; bottom: -90px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(24,167,224,.45), transparent 65%); }
.contact-call:hover { transform: translateY(-5px); box-shadow: 0 26px 60px rgba(74,114,184,.4); }
.cc-badge { position: relative; z-index: 1; display: inline-flex; padding: 6px 13px; border-radius: var(--r-pill); background: rgba(255,255,255,.18); font-size: 12.5px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.cc-ic { position: relative; z-index: 1; width: 58px; height: 58px; border-radius: 16px; margin: 18px 0 14px; display: inline-flex; align-items: center; justify-content: center; background: rgba(255,255,255,.16); }
.cc-ic svg { width: 30px; height: 30px; stroke-width: 1.7; }
.contact-call b { position: relative; z-index: 1; font-size: clamp(32px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.cc-tap { position: relative; z-index: 1; margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 700; color: rgba(255,255,255,.92); }
.cc-tap svg { width: 17px; height: 17px; stroke-width: 2.4; transition: transform .2s; }
.contact-call:hover .cc-tap svg { transform: translateX(4px); }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.ci-card { display: flex; gap: 18px; background: #fff; border-radius: var(--r-lg); padding: 28px; border: 1px solid var(--line-2); box-shadow: var(--sh); flex: 1; }
.ci-card--accent { background: var(--green-050); border-color: rgba(106,195,106,.3); }
.ci-ic { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--blue-050); color: var(--blue); }
.ci-card--accent .ci-ic { background: var(--green); color: #fff; }
.ci-ic svg { width: 26px; height: 26px; stroke-width: 1.7; }
.ci-card h3 { font-size: 18px; letter-spacing: -0.015em; }
.ci-card p { margin-top: 8px; color: var(--slate); font-size: 15px; line-height: 1.6; }
.ci-card p b { color: var(--ink); }
.ci-phone { color: var(--green-700); font-weight: 800; border-bottom: 2px solid rgba(106,195,106,.4); }
.ci-phone:hover { border-color: var(--green); }

/* ============================================================
   LANDING CONVENIOS DENTALES
   ============================================================ */
.dl-hero { position: relative; background: var(--bg-tint); overflow: hidden; padding: 30px 0 70px; }
.dl-hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.dl-hero-copy h1 { font-size: clamp(34px, 4.6vw, 56px); line-height: 1.04; margin-top: 18px; }
.dl-hero-copy h1 em { font-style: normal; color: var(--green-700); }
.dl-hero-copy > p { margin-top: 20px; font-size: 18.5px; color: var(--slate); line-height: 1.55; max-width: 480px; }
.dl-hero-copy strong { color: var(--ink); font-weight: 800; }
.dl-hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.dl-trust { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 22px; }
.dl-trust span { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 700; color: var(--slate); }
.dl-trust svg { width: 18px; height: 18px; stroke-width: 2.4; color: var(--green); }
.dl-hero-media { position: relative; }
.dl-hero-img { width: 100%; height: 460px; object-fit: cover; border-radius: var(--r-lg); box-shadow: var(--sh-lg); }
.dl-price-badge {
  position: absolute; left: -22px; bottom: 34px;
  background: #fff; border-radius: var(--r); box-shadow: var(--sh-lg); padding: 18px 24px; text-align: center;
}
.dl-price-badge span { display: block; font-size: 12.5px; color: var(--muted); font-weight: 700; }
.dl-price-badge b { display: block; font-size: 38px; font-weight: 800; letter-spacing: -0.03em; color: var(--green-700); line-height: 1.1; margin: 2px 0; }
.dl-price-badge span:last-child { color: var(--green-700); }

.dl-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.dl-benefit {
  display: flex; flex-direction: column;
  background: #fff; border-radius: var(--r-lg); padding: 28px 26px;
  border: 1px solid var(--line-2); box-shadow: var(--sh);
  transition: transform .2s ease, box-shadow .25s ease, border-color .2s;
}
.dl-benefit:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: transparent; }
.dl-bic {
  width: 58px; height: 58px; border-radius: 16px; margin-bottom: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
}
.dl-bic svg { width: 29px; height: 29px; stroke-width: 1.7; }
.dl-benefit h3 { font-size: 18px; letter-spacing: -0.02em; line-height: 1.25; }
.dl-benefit p { margin-top: 9px; color: var(--slate); font-size: 14.5px; line-height: 1.5; }

.dl-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: dl; }
.dl-step { background: #fff; border-radius: var(--r-lg); padding: 30px 26px; border: 1px solid var(--line-2); box-shadow: var(--sh); position: relative; }
.dl-step-n {
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--green); color: #fff; font-size: 19px; font-weight: 800;
  box-shadow: 0 8px 18px rgba(106,195,106,.34);
}
.dl-step h4 { font-size: 17px; letter-spacing: -0.015em; }
.dl-step p { margin-top: 8px; color: var(--slate); font-size: 14px; line-height: 1.5; }

.dl-faq-wrap { max-width: 820px; }
.dl-faqs { display: flex; flex-direction: column; gap: 14px; }
.dl-faq { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); box-shadow: var(--sh-sm); overflow: hidden; }
.dl-faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer;
  padding: 20px 24px; font-size: 16.5px; font-weight: 700; letter-spacing: -0.01em; list-style: none;
}
.dl-faq summary::-webkit-details-marker { display: none; }
.dl-faq summary svg { width: 20px; height: 20px; stroke-width: 2; color: var(--green-700); flex-shrink: 0; transition: transform .25s ease; }
.dl-faq[open] summary svg { transform: rotate(180deg); }
.dl-faq p { padding: 0 24px 22px; color: var(--slate); font-size: 15px; line-height: 1.6; }
.dl-cta .cta-band-icon svg { color: rgba(255,255,255,.9); }

/* especialidades listado */
.spec-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.spec-tile {
  display: flex; align-items: center; gap: 14px;
  background: #fff; border-radius: var(--r); padding: 16px 18px;
  border: 1px solid var(--line-2); box-shadow: var(--sh-sm);
  transition: transform .18s ease, box-shadow .22s ease, border-color .2s;
}
.spec-tile:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.spec-ic {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
  transition: background .2s, color .2s;
}
.spec-tile:hover .spec-ic { background: var(--accent); color: #fff; }
.spec-ic svg { width: 23px; height: 23px; stroke-width: 1.7; }
.spec-ic .dental-ico { width: 23px; height: 23px; }
.cta-band-icon .dental-ico { width: 120px; height: 120px; color: rgba(255,255,255,.9); }
.spec-name { flex: 1; font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; }
.spec-arrow { width: 18px; height: 18px; stroke-width: 2.2; color: var(--muted); opacity: 0; transform: translateX(-6px); transition: opacity .2s, transform .2s, color .2s; }
.spec-tile:hover .spec-arrow { opacity: 1; transform: none; color: var(--accent); }

/* ============================================================
   ODONTOLOGÍA (DENTAL)
   ============================================================ */
.spec-tile--static { cursor: default; }
.spec-tile--static:hover { transform: none; box-shadow: var(--sh-sm); border-color: var(--line-2); }
.spec-tile--static:hover .spec-ic { background: var(--accent-soft); color: var(--accent); }
.page-hero-lead { font-size: 20px !important; font-weight: 800; color: var(--green-700) !important; margin-top: 10px !important; letter-spacing: -0.015em; }
.den-highlight {
  display: flex; align-items: center; gap: 20px;
  background: linear-gradient(120deg, var(--green-050), #fff);
  border: 1px solid rgba(106,195,106,.35); border-left: 5px solid var(--green);
  border-radius: var(--r-lg); padding: 24px 28px; box-shadow: var(--sh-sm);
}
.den-highlight-ic { width: 56px; height: 56px; border-radius: 15px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--green); color: #fff; box-shadow: 0 8px 18px rgba(106,195,106,.34); }
.den-highlight-ic svg { width: 28px; height: 28px; stroke-width: 1.7; }
.den-highlight b { display: block; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); }
.den-highlight > div span { display: block; margin-top: 5px; color: var(--slate); font-size: 15px; line-height: 1.5; }
.den-highlight--link { text-decoration: none; transition: box-shadow .18s ease, transform .18s ease, border-color .18s ease; }
.den-highlight--link:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--green); }
.den-highlight-cta { display: inline-flex; align-items: center; gap: 5px; margin-top: 8px; color: var(--green-700); font-weight: 800; }
.den-highlight-cta svg { width: 16px; height: 16px; transition: transform .18s ease; }
.den-highlight--link:hover .den-highlight-cta svg { transform: translateX(3px); }

.den-war-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 26px; align-items: start; }
.war-list { display: flex; flex-direction: column; gap: 12px; }
.war-row { display: flex; align-items: center; gap: 16px; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh-sm); transition: transform .18s ease, box-shadow .22s ease; }
.war-row:hover { transform: translateX(4px); box-shadow: var(--sh); }
.war-ic { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: var(--green-050); color: var(--green-700); }
.war-ic svg { width: 24px; height: 24px; stroke-width: 1.8; }
.war-row b { font-size: 16px; letter-spacing: -0.015em; }
.war-row > div span { display: block; margin-top: 3px; color: var(--slate); font-size: 14px; }
.den-excl { background: var(--bg-soft); border: 1px solid var(--line-2); border-radius: var(--r-lg); padding: 26px 28px; }
.den-excl h3 { font-size: 17px; letter-spacing: -0.015em; }
.den-excl ul { margin-top: 16px; display: flex; flex-direction: column; gap: 13px; }
.den-excl li { display: flex; align-items: flex-start; gap: 11px; font-size: 14px; color: var(--slate); line-height: 1.5; }
.den-excl svg { width: 18px; height: 18px; stroke-width: 1.9; color: var(--muted); flex-shrink: 0; margin-top: 1px; }

.den-centros { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.den-centro { background: #fff; border: 1px solid var(--line-2); border-top: 4px solid var(--accent); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--sh); transition: transform .2s ease, box-shadow .25s ease; }
.den-centro:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.den-centro-head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.den-pin { width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); }
.den-pin svg { width: 22px; height: 22px; stroke-width: 1.8; }
.den-centro h4 { font-size: 16.5px; letter-spacing: -0.02em; line-height: 1.2; }
.den-hours { display: flex; flex-direction: column; gap: 10px; }
.den-hours li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--slate); line-height: 1.4; }
.den-hours svg { width: 16px; height: 16px; stroke-width: 1.8; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   LABORATORIO
   ============================================================ */
.lab-net { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.proc-card { background: #fff; border: 1px solid var(--line-2); border-top: 4px solid var(--accent); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--sh-sm); transition: transform .2s ease, box-shadow .2s ease; }
.proc-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.proc-list { display: flex; flex-direction: column; gap: 9px; }
.proc-list li { position: relative; padding-left: 18px; font-size: 14.5px; color: var(--slate); line-height: 1.4; }
.proc-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.lab-desc { color: var(--slate); font-size: 14.5px; line-height: 1.55; }
.lab-exams { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lab-exam {
  display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-sm);
  padding: 14px 16px; font-size: 14.5px; font-weight: 600; color: var(--ink);
  transition: transform .16s ease, box-shadow .2s ease, border-color .2s;
}
.lab-exam:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: transparent; }
.lab-exam svg { width: 17px; height: 17px; stroke-width: 2.4; color: var(--celeste-700); flex-shrink: 0; }
.lab-certs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.cert-item { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.cert-item img {
  width: 100%; aspect-ratio: 3 / 2; border-radius: var(--r);
  background: #fff; object-fit: contain; padding: 10px;
  border: 1px solid var(--line, #e4ebf3); display: block;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cert-item:hover img { transform: translateY(-4px); box-shadow: var(--sh); }
.cert-item image-slot {
  width: 100%; aspect-ratio: 3 / 2; border-radius: var(--r);
  background: #f1f5fb;
  padding: 0; overflow: hidden;
  transition: transform .2s ease;
}
.cert-item:hover image-slot { transform: translateY(-4px); }
.cert-item figcaption { font-size: 13.5px; font-weight: 700; color: var(--slate); text-align: center; line-height: 1.35; letter-spacing: -0.01em; }
.cert-subhead { display: flex; align-items: center; gap: 11px; font-size: 18px; letter-spacing: -0.02em; margin-bottom: 22px; color: var(--ink); }
.cert-subhead svg { width: 24px; height: 24px; stroke-width: 1.8; color: var(--green-700); }
.hr-card { scroll-margin-top: 100px; }
/* hero centro chips */
.centro-chip { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; text-decoration: none; transition: transform .2s ease, box-shadow .25s ease, border-color .2s; }
.centro-chip .cc-ic { width: 38px; height: 38px; border-radius: 11px; display: inline-flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--accent) 12%, #fff); color: var(--accent); margin-bottom: 10px; }
.centro-chip .cc-ic svg { width: 20px; height: 20px; stroke-width: 1.8; }
.centro-chip b { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--accent); line-height: 1.1; }
.centro-chip span { font-size: 12.5px; color: var(--slate); font-weight: 600; margin-top: 4px; }
.centro-chip:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: transparent; }
.hr-card {
  background: #fff; border-radius: var(--r-lg); padding: 28px 28px 8px;
  border: 1px solid var(--line-2); box-shadow: var(--sh);
  position: relative; overflow: hidden;
}
.hr-card::before { content:""; position: absolute; left: 0; top: 0; right: 0; height: 5px; background: var(--accent); }
.hr-card-head { padding-bottom: 18px; margin-bottom: 8px; border-bottom: 1px solid var(--line); }
.hr-card-head h3 { font-size: 22px; letter-spacing: -0.02em; color: var(--accent); }
.hr-card-head p { display: flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 14px; color: var(--slate); }
.hr-card-head p svg { width: 16px; height: 16px; stroke-width: 1.8; color: var(--accent); flex-shrink: 0; }
.hr-block { padding: 16px 0; border-bottom: 1px solid var(--line-2); }
.hr-block:last-child { border-bottom: 0; }
.hr-block-head { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.hr-bic {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent);
}
.hr-bic svg { width: 19px; height: 19px; stroke-width: 1.8; }
.hr-block-head h4 { font-size: 15.5px; font-weight: 800; letter-spacing: -0.01em; }
.hr-rows { display: flex; flex-direction: column; gap: 7px; }
.hr-rows li { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; font-size: 14.5px; }
.hr-day { color: var(--slate); font-weight: 600; }
.hr-time { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .login-btn span { display: none; }
  .login-btn { padding: 0; width: 44px; justify-content: center; }
  .esp-grid { grid-template-columns: repeat(4, 1fr); }
  .accesos-grid { grid-template-columns: repeat(2, 1fr); }
  .quickband-inner { grid-template-columns: repeat(3, 1fr); }
  .qitem:nth-child(3n+1)::before { display: none; }
  .srv-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .slide { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding: 44px 0 90px; }
  .slide-media { display: none; }
  .slide-media--full { display: block; }
  .slide-media--full .slide-img { max-height: 340px; }
  .slide-copy { max-width: 600px; }
  .band { grid-template-columns: 1fr; gap: 34px; padding: 40px; }
  .band-media image-slot { height: 280px; }
  .centros-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: 1fr; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-band { grid-template-columns: 1fr; }
  .cta-band-icon { display: none; }
  .appcta { grid-template-columns: 1fr; padding: 0 36px; }
  .appcta-media { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  /* tablet: 2-col layouts */
  .cv-grid { grid-template-columns: repeat(2, 1fr); }
  .emp-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .dl-benefits { grid-template-columns: repeat(2, 1fr); }
  .dl-steps { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .den-centros { grid-template-columns: repeat(2, 1fr); }
  .den-war-grid { grid-template-columns: 1fr; }
  .lab-net { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .lab-exams { grid-template-columns: repeat(3, 1fr); }
  .lab-certs { grid-template-columns: repeat(3, 1fr); }
  .pay-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .linksband { grid-template-columns: 1fr; }
  .dl-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .dl-hero-media { display: none; }
}
@media (max-width: 680px) {
  .section { padding: 60px 0; }
  .wrap { padding: 0 18px; }
  .header .wrap { gap: 12px; }
  .header-actions { gap: 8px; }
  .header-actions .icon-btn:not(.burger) { display: none; }
  .logo-img { height: 32px; }
  .topbar-left { display: none; }
  .topbar .wrap { justify-content: center; }
  .accesos-grid { grid-template-columns: 1fr; }
  .centros-grid { grid-template-columns: 1fr; }
  .quickband-inner { grid-template-columns: repeat(2, 1fr); }
  .qitem::before { display: none; }
  .qitem { padding: 20px 10px; }
  .links-grid { grid-template-columns: 1fr; }
  .srv-grid { grid-template-columns: 1fr; }
  .page-hero-stats { grid-template-columns: 1fr 1fr; }
  /* phone: single column */
  .cv-grid { grid-template-columns: 1fr; }
  .emp-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .dl-benefits { grid-template-columns: 1fr; }
  .dl-steps { grid-template-columns: 1fr; }
  .hr-grid { grid-template-columns: 1fr; }
  /* small tiles stay 2-col */
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .den-centros { grid-template-columns: 1fr; }
  .lab-net { grid-template-columns: 1fr; }
  .proc-grid { grid-template-columns: 1fr; }
  .lab-exams { grid-template-columns: repeat(2, 1fr); }
  .lab-certs { grid-template-columns: repeat(2, 1fr); }
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .section-head--row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .slide-actions { flex-direction: column; align-items: stretch; }
  .slide-actions .btn { width: 100%; }
  .dl-hero-actions { flex-direction: column; align-items: stretch; }
  .dl-hero-actions .btn { width: 100%; }
  .page-hero-actions .btn { width: 100%; }
  .accesos { margin-top: 40px; }
  .band { padding: 30px 24px; }
  .contact-call { padding: 32px 28px; }
  .ci-card { padding: 24px; }
  .pay-card { padding: 28px 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}
@media (max-width: 460px) {
  .esp-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .quickband-inner { grid-template-columns: 1fr; }
  .lab-exams { grid-template-columns: 1fr; }
  .page-hero-stats { grid-template-columns: 1fr; }
  .slide h1 { font-size: 30px; }
  .dl-hero-copy h1 { font-size: 30px; }
  .page-hero-copy h1 { font-size: 30px; }
}

/* ============================================================
   BUSCADOR GLOBAL DEL SITIO
   ============================================================ */
.site-search-overlay {
  position: fixed; inset: 0; z-index: 999; display: none;
  background: rgba(24,41,63,.55); backdrop-filter: blur(4px);
  padding: 90px 20px; overflow-y: auto;
}
.site-search-overlay.is-open { display: block; }
.site-search-modal {
  max-width: 640px; margin: 0 auto; background: #fff; border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); overflow: hidden;
}
.site-search-head { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-bottom: 1px solid var(--line); }
.site-search-head svg { width: 22px; height: 22px; stroke-width: 1.8; color: var(--muted); flex-shrink: 0; }
.site-search-input { flex: 1; border: 0; outline: 0; font: inherit; font-size: 17px; color: var(--ink); background: none; }
.site-search-input::placeholder { color: var(--muted); }
.site-search-close { width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--muted); flex-shrink: 0; }
.site-search-close:hover { background: var(--blue-050); color: var(--blue); }
.site-search-close svg { width: 16px; height: 16px; stroke-width: 2; }
.site-search-results { max-height: 55vh; overflow-y: auto; padding: 8px; }
.site-search-item { display: flex; flex-direction: column; gap: 3px; padding: 12px 16px; border-radius: var(--r-sm); }
.site-search-item:hover, .site-search-item:focus { background: var(--blue-050); }
.site-search-item-title { font-weight: 700; font-size: 15px; color: var(--ink); }
.site-search-item-desc { font-size: 13.5px; color: var(--slate); }
.site-search-empty { padding: 30px 24px 34px; text-align: center; font-size: 14.5px; color: var(--muted); }

/* ============================================================
   BUSCADOR DE INDICACIONES DE EXÁMENES
   ============================================================ */
.ex-search-card {
  background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg);
  border: 1px solid var(--line); padding: 30px 32px 26px; margin-top: -34px;
  position: relative; z-index: 3;
}
.ex-search-label { display: block; font-size: 13.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--slate); margin-bottom: 10px; }
.ex-input-row { display: flex; gap: 12px; }
.ex-input-wrap { position: relative; flex: 1; }
.ex-input-wrap svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px; color: var(--muted); stroke-width: 2; pointer-events: none; }
.ex-input {
  width: 100%; height: 56px; border-radius: var(--r-pill); border: 1.5px solid var(--line-2);
  background: var(--bg-soft); padding: 0 48px; font-size: 16.5px; font-weight: 600; color: var(--ink);
  font-family: inherit; transition: border-color .18s, background .18s;
}
.ex-input:focus { outline: none; border-color: var(--celeste); background: #fff; }
.ex-input::placeholder { color: var(--muted); font-weight: 500; }
.ex-clear {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px;
  border-radius: 50%; display: none; align-items: center; justify-content: center; color: var(--muted);
}
.ex-clear:hover { background: var(--blue-050); color: var(--blue); }
.ex-clear.is-visible { display: inline-flex; }
.ex-clear svg { width: 17px; height: 17px; stroke-width: 2.2; }
.ex-hint { margin-top: 12px; font-size: 13.5px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.ex-hint svg { width: 15px; height: 15px; stroke-width: 2; flex-shrink: 0; }
.ex-summary { margin-top: 22px; font-size: 14.5px; font-weight: 700; color: var(--ink); }
.ex-summary b { color: var(--celeste-700); }

.ex-results { margin-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.ex-row-head {
  display: grid; grid-template-columns: 110px 1.6fr 90px 110px 120px 1.8fr; gap: 18px;
  padding: 0 22px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted);
}
.ex-row {
  display: grid; grid-template-columns: 110px 1.6fr 90px 110px 120px 1.8fr; gap: 18px; align-items: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px 22px;
  transition: border-color .18s, box-shadow .18s;
}
.ex-row:hover { border-color: var(--line-2); box-shadow: var(--sh-sm); }
.ex-cell { font-size: 14.5px; color: var(--ink); line-height: 1.5; }
.ex-cell--codigo { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--slate); font-size: 13px; word-break: break-all; }
.ex-cell--examen { font-weight: 800; letter-spacing: -0.01em; }
.ex-cell--prep { color: var(--slate); font-size: 13.5px; line-height: 1.55; }
.ex-badge {
  display: inline-flex; align-items: center; justify-content: center; padding: 5px 10px; border-radius: var(--r-pill);
  font-size: 12.5px; font-weight: 700; white-space: nowrap;
}
.ex-badge--day { background: var(--blue-050); color: var(--blue-700); }
.ex-badge--plazo { background: var(--green-050); color: var(--green-700); }
.ex-badge--instr { background: var(--celeste-050); color: var(--celeste-700); }
.ex-badge--none { background: var(--bg-soft); color: var(--muted); }
.ex-badges-inline { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }

.ex-empty, .ex-noresults {
  text-align: center; padding: 56px 24px; color: var(--slate);
}
.ex-empty svg, .ex-noresults svg { width: 46px; height: 46px; stroke-width: 1.4; color: var(--muted); margin: 0 auto 16px; }
.ex-empty h3, .ex-noresults h3 { font-size: 18px; color: var(--ink); margin-bottom: 8px; }
.ex-empty p, .ex-noresults p { font-size: 14.5px; max-width: 380px; margin: 0 auto; line-height: 1.5; }

@media (max-width: 900px) {
  .ex-row-head { display: none; }
  .ex-row { grid-template-columns: 1fr; gap: 8px; padding: 18px; }
  .ex-cell { display: flex; flex-direction: column; gap: 3px; }
  .ex-cell::before { content: attr(data-label); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
  .ex-cell--top { display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 12px; }
  .ex-cell--top::before { display: none; }
  .ex-badges-inline { display: flex; gap: 8px; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .ex-search-card { padding: 24px 18px; margin-top: -24px; }
  .ex-input { padding-left: 44px; }
}

/* Reserva de horas: 4 cajas en una linea en escritorio, apiladas en movil */
@media (min-width:900px){.accesos-grid--4{grid-template-columns:repeat(4,1fr)}}

/* Recuadros de iframe: 600px centrados, responsivos en movil */
.express-frame-box{max-width:600px!important;width:100%;margin-left:auto;margin-right:auto}
.embed-frame{max-width:600px;width:100%;margin-left:auto;margin-right:auto}
.express-frame-box{border-radius:0;box-shadow:none}
.embed-frame{border-radius:0;box-shadow:none}
@media (max-width:640px){.express-frame-box iframe{height:78vh;min-height:520px}.embed-iframe{height:78vh;min-height:520px}}
