/* ============================================================
   GRUPO BIO LABORATORIOS — Sistema de diseño
   Paleta tomada de la identidad gráfica de Grupo Bio:
   azul marino profundo, acento dorado y neutros claros.
   ============================================================ */

:root {
  /* Colores de marca Grupo Bio: teal + coral + neutros fríos (identidad nueva) */
  --navy:        #0f3a43;   /* teal profundo (marca oscura: headers, títulos) */
  --navy-dark:   #0a2a30;
  --navy-soft:   #0a5d6b;
  --brand:       #0e8c9e;   /* teal principal */
  --brand-soft:  #e6f5f7;
  --coral:       #f4664c;   /* acento coral / CTA */
  --coral-dark:  #dc4e35;
  --coral-soft:  #ffdbd2;
  --pink-bg:     #f5f8f8;   /* superficie clara fría */
  --pink-soft:   #eaeff0;
  --cream:       #faf8f3;

  --white:       #ffffff;
  --ink:         #102a30;
  --muted:       #647a80;
  --line:        #d7e0e2;

  /* Tipografía: Poppins (títulos) + Mulish (texto) */
  --font-sans:    "Mulish", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Estructura */
  --container: 1180px;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(15, 46, 68, .08);
  --shadow-md: 0 14px 40px rgba(15, 46, 68, .12);
  --shadow-lg: 0 26px 60px rgba(15, 46, 68, .18);
  --header-h: 84px;
  --transition: .25s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; color: var(--navy); margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.5px; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); letter-spacing: -.3px; }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1rem; color: var(--muted); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.bg-pink  { background: var(--pink-bg); }
.bg-navy  { background: var(--navy); color: #d9e6ef; }
.bg-cream { background: var(--cream); }
.center { text-align: center; }
.grid { display: grid; gap: 28px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 2.5px;
  font-size: .76rem; font-weight: 700; color: var(--coral-dark);
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--coral-dark); display: inline-block; }
.center .eyebrow { justify-content: center; }
.lead { font-size: 1.12rem; color: var(--muted); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: .98rem; padding: 14px 28px;
  border-radius: 50px; border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { background: var(--coral-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(244,102,76,.35); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--navy-dark); color: #cdd9e2;
  font-size: .85rem; padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; color: #cdd9e2; transition: var(--transition); }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; }
.topbar__group { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar__social { display: flex; gap: 14px; }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}
.header.is-scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.nav__logo img { height: 52px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 6px; }
.nav__menu a {
  padding: 10px 14px; font-weight: 500; font-size: .96rem; color: var(--navy);
  border-radius: 8px; transition: var(--transition); position: relative;
}
.nav__menu a:hover { color: var(--coral-dark); }
.nav__menu a.active { color: var(--coral-dark); }
.nav__menu a.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--coral); border-radius: 2px;
}
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.nav__toggle span { width: 26px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--pink-bg); overflow: hidden;
  padding: 86px 0 96px;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 span { color: var(--coral-dark); }
.hero p { font-size: 1.15rem; max-width: 540px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero__stats { display: flex; gap: 38px; margin-top: 46px; flex-wrap: wrap; }
.hero__stat strong { display: block; font-size: 2.1rem; color: var(--navy); font-weight: 800; line-height: 1; }
.hero__stat span { font-size: .9rem; color: var(--muted); }
.hero__visual { position: relative; }
.hero__visual img { border-radius: 24px; box-shadow: var(--shadow-lg); }
.hero__badge {
  position: absolute; bottom: -22px; left: -22px; background: #fff;
  border-radius: 18px; padding: 18px 22px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.hero__badge .icon { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 12px; background: var(--pink-soft); display: grid; place-items: center; }
.hero__badge .icon svg { width: 24px; height: 24px; color: var(--coral); }
.hero__badge strong { color: var(--navy); font-size: .98rem; display: block; }
.hero__badge span { font-size: .8rem; color: var(--muted); }

/* puntos decorativos al estilo de las piezas de marca */
.dots { position: absolute; display: grid; grid-template-columns: repeat(4, 9px); gap: 9px; opacity: .5; }
.dots i { width: 9px; height: 9px; border-radius: 50%; background: var(--coral); display: block; }
.dots--tl { top: 34px; left: 30px; }
.dots--br { bottom: 40px; right: 36px; }

/* ---------- Tarjetas ---------- */
.card {
  background: #fff; border-radius: var(--radius); padding: 32px 28px;
  border: 1px solid var(--line); transition: var(--transition); height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card__icon {
  width: 60px; height: 60px; border-radius: 16px; background: var(--pink-bg);
  display: grid; place-items: center; margin-bottom: 20px; transition: var(--transition);
}
.card__icon svg { width: 30px; height: 30px; color: var(--coral); }
.card:hover .card__icon { background: var(--coral); }
.card:hover .card__icon svg { color: #fff; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; margin: 0; }

/* tarjeta de servicio con enlace */
.svc { position: relative; }
.svc__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--coral); font-weight: 600; font-size: .9rem; }
.svc__link svg { width: 16px; height: 16px; transition: var(--transition); }
.svc:hover .svc__link svg { transform: translateX(4px); }

/* ---------- Feature / split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img { border-radius: 20px; box-shadow: var(--shadow-md); }
.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .tick {
  flex: 0 0 28px; width: 28px; height: 28px; border-radius: 50%;
  background: var(--coral); color: #fff; display: grid; place-items: center; margin-top: 2px;
}
.feature-list .tick svg { width: 15px; height: 15px; }
.feature-list strong { color: var(--navy); display: block; }
.feature-list span { font-size: .94rem; color: var(--muted); }

/* ---------- Pasos ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step__num {
  width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.25rem; margin-bottom: 18px;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: .95rem; margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 28px; padding: 56px; color: #fff; position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.4fr auto; gap: 30px; align-items: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.82); margin: 0; max-width: 560px; }
.cta-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-banner::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px;
  border-radius: 50%; background: rgba(192,152,90,.22);
}

/* ---------- Page header (interior) ---------- */
.page-head {
  background: var(--navy); color: #fff; padding: 64px 0; position: relative; overflow: hidden;
}
.page-head h1 { color: #fff; margin-bottom: 10px; }
.page-head p { color: rgba(255,255,255,.8); max-width: 620px; margin: 0; }
.page-head::after {
  content: ""; position: absolute; right: -40px; bottom: -80px; width: 320px; height: 320px;
  border-radius: 50%; background: rgba(192,152,90,.20);
}
.breadcrumb { font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 14px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { margin: 0 8px; }

/* ---------- Listado de análisis (servicios) ---------- */
.analisis-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.analisis-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 18px; display: flex; align-items: center; gap: 12px; transition: var(--transition);
}
.analisis-item:hover { border-color: var(--coral); transform: translateX(4px); }
.analisis-item .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--coral); flex: 0 0 10px; }
.analisis-item span { color: var(--navy); font-weight: 500; }

/* ---------- Equipo ---------- */
.member { text-align: center; }
.member__avatar {
  width: 130px; height: 130px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--pink-soft); display: grid; place-items: center; overflow: hidden;
  border: 4px solid #fff; box-shadow: var(--shadow-sm);
}
.member__avatar svg { width: 60px; height: 60px; color: var(--coral); }
.member h3 { margin-bottom: 2px; }
.member .role { color: var(--coral); font-weight: 600; font-size: .9rem; }
.member .mat { font-size: .82rem; color: var(--muted); }

/* ---------- Formularios ---------- */
.form-card {
  background: #fff; border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: .97rem; color: var(--ink); background: #fff; transition: var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(192,152,90,.25);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }

/* ---------- Info / contacto cards ---------- */
.info-card { display: flex; gap: 16px; align-items: flex-start; }
.info-card .ic {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 14px; background: var(--pink-bg);
  display: grid; place-items: center;
}
.info-card .ic svg { width: 24px; height: 24px; color: var(--coral); }
.info-card strong { color: var(--navy); display: block; margin-bottom: 2px; }
.info-card span, .info-card a { color: var(--muted); font-size: .95rem; }
.info-card a:hover { color: var(--coral); }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- Sucursal card ---------- */
.branch { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.branch__body { padding: 26px 28px; }
.branch h3 { margin-bottom: 12px; }
.branch ul { display: grid; gap: 10px; margin-bottom: 18px; }
.branch li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--muted); }
.branch li svg { width: 18px; height: 18px; color: var(--coral); flex: 0 0 18px; margin-top: 3px; }

/* ---------- FAQ ---------- */
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 24px; font-weight: 600; color: var(--navy); font-size: 1.02rem; font-family: inherit;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: var(--transition); flex: 0 0 20px; }
.faq-q .chev svg { width: 20px; height: 20px; color: var(--coral); }
.faq-item.is-open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 20px; margin: 0; font-size: .96rem; }

/* ---------- Stat band ---------- */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-band .num { font-size: 2.6rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-band .lbl { color: rgba(255,255,255,.75); font-size: .92rem; margin-top: 6px; }

/* ---------- Logos / aliados ---------- */
.allies { display: flex; flex-wrap: wrap; gap: 18px 40px; align-items: center; justify-content: center; }
.allies span { font-weight: 700; color: var(--navy); opacity: .55; font-size: 1.1rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy-dark); color: #b9c7d2; padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer img { height: 50px; margin-bottom: 18px; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 18px; }
.footer a { color: #b9c7d2; transition: var(--transition); }
.footer a:hover { color: var(--coral-soft); }
.footer ul { display: grid; gap: 10px; font-size: .94rem; }
.footer__contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--coral); flex: 0 0 17px; margin-top: 3px; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer__social a:hover { background: var(--coral); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom {
  margin-top: 56px; border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .85rem; color: #8295a3;
}

/* ---------- WhatsApp flotante ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Galería "día a día" ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery figure {
  margin: 0; border-radius: var(--radius); overflow: hidden; position: relative;
  box-shadow: var(--shadow-sm); background: var(--navy);
}
.gallery img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5; transition: transform .5s ease; display: block; }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(13,35,54,.78));
  color: #fff; font-size: .88rem; font-weight: 600;
}
.gallery--feature { grid-template-columns: repeat(4, 1fr); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid, .split, .cta-banner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stat-band { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .cta-banner { text-align: center; }
  .cta-banner__actions { justify-content: center; }
}
/* Menú colapsa a hamburguesa en tablets para alojar todos los ítems */
@media (max-width: 1024px) {
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0; background: #fff;
    flex-direction: column; align-items: stretch; gap: 0; padding: 12px 20px 24px;
    box-shadow: var(--shadow-md); transform: translateY(-150%); transition: transform .3s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav__menu.is-open { transform: none; }
  .nav__menu a { padding: 14px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav__menu a.active::after { display: none; }
  .nav__toggle { display: flex; }
}
@media (max-width: 760px) {
  .nav__cta .btn--turnos { display: none; }
  .cols-2, .cols-3, .cols-4, .analisis-grid, .field--row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .topbar__group--left { display: none; }
  .cta-banner { padding: 38px 26px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge { position: static; margin-top: 18px; max-width: none; }
}

/* Galería responsive */
@media (max-width: 980px) { .gallery, .gallery--feature { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gallery, .gallery--feature { grid-template-columns: 1fr; } }

/* ============================================================
   PORTAL DE PACIENTES / PANEL ADMIN
   ============================================================ */
.portal-user { font-weight: 600; color: var(--navy); font-size: .92rem; margin-right: 4px; }
.btn--sm { padding: 9px 16px; font-size: .86rem; }

.portal-filters {
  display: flex; gap: 16px; align-items: flex-end; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 22px; margin-bottom: 26px; box-shadow: var(--shadow-sm);
}
.portal-filters .field input { min-width: 180px; }
.portal-filters__actions { display: flex; gap: 10px; }

.portal-table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: #fff; }
.portal-table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.portal-table thead th {
  text-align: left; background: var(--navy); color: #fff; font-weight: 600;
  padding: 14px 16px; font-size: .82rem; text-transform: uppercase; letter-spacing: .5px;
}
.portal-table tbody td { padding: 14px 16px; border-top: 1px solid var(--line); color: var(--ink); vertical-align: middle; }
.portal-table tbody tr:hover { background: var(--pink-bg); }

.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: .78rem; font-weight: 600; }
.badge--ok { background: #e3f6ea; color: #1c7a45; }
.badge--wait { background: #fff3da; color: #8a6100; }
.badge--off { background: #f0f0f0; color: #777; }

/* Tabla responsive: se convierte en tarjetas en móvil */
@media (max-width: 720px) {
  .portal-table thead { display: none; }
  .portal-table, .portal-table tbody, .portal-table tr, .portal-table td { display: block; width: 100%; }
  .portal-table tr { border-top: 1px solid var(--line); padding: 8px 0; }
  .portal-table td { border: 0; padding: 6px 16px; display: flex; justify-content: space-between; gap: 16px; text-align: right; }
  .portal-table td::before { content: attr(data-label); font-weight: 600; color: var(--navy); text-align: left; }
  .portal-filters .field input { min-width: 0; width: 100%; }
}

/* ============================================================
   AJUSTES IDENTIDAD NUEVA (teal + coral)  —  override final
   ============================================================ */
.btn { font-family: var(--font-display); }
/* Acento teal en eyebrows e íconos de tarjeta */
.eyebrow { color: var(--navy-soft); }
.eyebrow::before { background: var(--navy-soft); }
.card__icon { background: var(--brand-soft); }
.card__icon svg { color: var(--brand); }
.card:hover .card__icon { background: var(--brand); }
.card:hover .card__icon svg { color: #fff; }
/* Íconos informativos / ticks en teal coherente */
.info-card .ic { background: var(--brand-soft); }
.info-card .ic svg { color: var(--brand); }
.feature-list .tick { background: var(--brand); }
/* Enlaces de servicio y activos del nav en coral de marca */
.svc__link { color: var(--coral-dark); }
.nav__menu a:hover, .nav__menu a.active { color: var(--coral-dark); }
.nav__menu a.active::after { background: var(--coral); }
/* Banda de stats / page-head con teal profundo (ya via --navy) + detalle */
.page-head::after { background: rgba(14,140,158,.20); }
.cta-banner::after { background: rgba(244,102,76,.20); }
