/* Fuente principal del sitio: Sumptuous Light (Locomotype), incrustada localmente */
@font-face{
  font-family:'Sumptuous Light';
  src:url('sumptuous-light.otf') format('opentype');
  font-weight:100 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Sumptuous Light';
  src:url('sumptuous-light-italic.otf') format('opentype');
  font-weight:100 900;
  font-style:italic;
  font-display:swap;
}
/* ==========================================================
   IMEDENT LEBU — Sistema rediseñado
   Paleta y tipografía conservadas. Layout y experiencia nuevos.
   ========================================================== */

:root{
  /* Marca */
  --teal:        #2EA89C;
  --teal-deep:   #1F7C73;
  --teal-darker: #155650;
  --teal-soft:   #B9E0DC;
  --lime:        #8DC63F;          /* Solo fondos, bordes y acentos NO textuales */
  --lime-deep:   #557E22;          /* Lima para TEXTO: oscurecido a ~4.8:1 sobre blanco (AA) */
  --lime-soft:   #DDEFC0;

  /* Neutros (con tinte teal sutil, saturación bajísima) */
  --paper:       #FFFFFF;
  --bone:        #F4F8F7;
  --bone-2:      #E9F1EF;
  --rule:        #D7E5E2;
  --rule-soft:   #E8EFEE;
  --ink:         #143C38;
  --ink-soft:    #2A4F4A;
  --muted:       #6B8580;
  --muted-2:     #93A8A4;

  /* Tipografía */
  --font-display: 'Sumptuous Light', 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:    'Sumptuous Light', 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Layout */
  --container: 1280px;
  --container-wide: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.22, 1, .36, 1);

  --safe-top:    env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left:   env(safe-area-inset-left, 0px);
  --safe-right:  env(safe-area-inset-right, 0px);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  font-feature-settings: "kern" 1, "ss01" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  min-height: 100dvh;
  /* Justificación global del texto (solicitado). Los componentes con
     alineación propia —centrados, flex, etc.— la conservan por especificidad. */
  text-align: justify;
  hyphens: auto; -webkit-hyphens: auto;
}
/* Títulos grandes: alineación natural (sin justificar) para evitar los huecos feos
   del justificado completo en líneas con pocas palabras. */
h1.display,
.section-title,
.pros-title,
.tech-care h2,
.service-detail-title,
.faq-aside h3,
.hero-slide-name,
.svc-tile-name,
.team-info h3,
.footer-brand-name,
.about-image-caption .title {
  text-align: left;
  text-align-last: auto;
}
img, svg, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button {
  font: inherit; cursor: pointer; border: 0; background: none; color: inherit;
  -webkit-tap-highlight-color: transparent; touch-action: manipulation;
}
::selection { background: var(--lime); color: white; }

/* Accesibilidad: foco visible por teclado */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible,
.services-tab:focus-visible,
.carousel-dot:focus-visible,
.carousel-arrow:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
/* En superficies oscuras, foco en lima para contraste */
.section--ink a:focus-visible,
.section--ink button:focus-visible,
.section--ink input:focus-visible,
.section--ink select:focus-visible,
.section--ink textarea:focus-visible,
.footer a:focus-visible,
.action-bar a:focus-visible,
.fab:focus-visible {
  outline-color: var(--lime);
}

/* Skip link — oculto hasta recibir foco */
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000;
  background: var(--teal-deep); color: #fff;
  padding: 12px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transform: translateY(-150%);
  transition: transform .25s var(--ease);
}
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--lime); outline-offset: 2px; }

.container {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding-left: max(var(--gutter), var(--safe-left));
  padding-right: max(var(--gutter), var(--safe-right));
}
.container--wide { max-width: var(--container-wide); }

/* ==========================================================
   TOPBAR
   ========================================================== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid var(--rule-soft);
  padding-top: var(--safe-top);
  transition: box-shadow .35s var(--ease), background .3s var(--ease);
}
.topbar.is-scrolled { background: rgba(255, 255, 255, 0.94); box-shadow: 0 1px 14px rgba(20, 60, 56, 0.06); }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 20px; min-height: 70px;
}

/* Brand mark */
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-mark { width: 46px; height: 46px; flex-shrink: 0; }
.brand-img { height: 44px; width: auto; display: block; }
@media (max-width: 600px) { .brand-img { height: 36px; } }
@media (max-width: 380px) { .brand-img { height: 32px; } }
.brand-text { display: flex; flex-direction: column; line-height: 1; min-width: 0; }
.brand-name {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(22px, 4vw, 26px); letter-spacing: -0.02em;
  color: var(--teal-deep); white-space: nowrap;
}
.brand-tagline {
  font-family: var(--font-body); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime-deep); font-weight: 600;
  margin-top: 4px; white-space: nowrap;
}

/* Nav */
.nav { display: flex; gap: clamp(20px, 2.4vw, 32px); align-items: center; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 10px 0;
  transition: color .25s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { color: var(--teal-deep); }
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 4px;
  height: 1px; background: var(--lime);
  transition: right .35s var(--ease);
}
.nav-link:hover::after { right: 0; }
.nav-link.has-menu::after { display: none; }

.nav-menu-wrap { position: relative; }
.nav-menu {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(-8px);
  background: white; border: 1px solid var(--rule);
  border-radius: 6px; padding: 14px;
  box-shadow: 0 30px 60px -20px rgba(20,60,56,0.18);
  min-width: 320px; opacity: 0; visibility: hidden;
  transition: all .3s var(--ease);
  display: grid; gap: 4px;
}
.nav-menu-wrap:hover .nav-menu,
.nav-menu-wrap:focus-within .nav-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 4px;
  font-size: 14px; color: var(--ink-soft);
  transition: background .25s var(--ease), color .25s var(--ease);
}
.nav-menu a:hover { background: var(--bone); color: var(--teal-deep); }
.nav-menu a strong {
  font-weight: 500; font-size: 14px; color: var(--teal-deep);
  display: block; margin-bottom: 2px;
}
.nav-menu a span {
  font-size: 12px; color: var(--muted); font-weight: 400;
  letter-spacing: 0.02em;
}
.nav-menu .menu-icon {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--bone); display: grid; place-items: center;
  color: var(--teal-deep); flex-shrink: 0;
}
.nav-menu .menu-icon svg { width: 18px; height: 18px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; background: var(--teal-deep); color: white;
  border-radius: 100px; font-size: 14px; font-weight: 500;
  letter-spacing: 0.005em; min-height: 48px; cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap; border: 1px solid transparent;
}
.btn:hover { background: var(--teal-darker); transform: translateY(-1px); box-shadow: 0 12px 24px -10px rgba(20,60,56,0.3); }
.btn:active { transform: translateY(0) scale(0.98); }
.btn--lime { background: var(--lime); }
.btn--lime:hover { background: var(--lime-deep); }
.btn--ghost { background: transparent; color: var(--teal-deep); border-color: var(--rule); }
.btn--ghost:hover { background: var(--bone); border-color: var(--teal-deep); transform: translateY(-1px); box-shadow: none; }
/* Portal Paciente (nav): al pasar el mouse, el texto y borde toman el teal de marca del logo */
.nav .btn--ghost:hover { color: var(--teal); border-color: var(--teal); }
.btn--white { background: white; color: var(--teal-deep); }
.btn--white:hover { background: var(--bone); color: var(--teal-darker); }
.btn--outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.4); }
.btn--outline-white:hover { background: white; color: var(--teal-deep); border-color: white; box-shadow: none; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav-toggle {
  display: none; width: 44px; height: 44px;
  align-items: center; justify-content: center; flex-shrink: 0;
  margin-right: 0; color: var(--teal-deep);
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ==========================================================
   ANNOUNCEMENT BAR
   ========================================================== */
.announce {
  background: var(--teal-darker); color: white;
  font-size: 13px; padding: 10px 0;
  letter-spacing: 0.02em; text-align: center;
  position: relative; z-index: 99;
}
.announce-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.announce strong { color: var(--lime); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; }
.announce a { border-bottom: 1px solid rgba(255,255,255,0.4); }
.announce a:hover { border-bottom-color: var(--lime); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative; padding: clamp(56px, 8vw, 110px) 0 clamp(64px, 9vw, 130px);
  background: var(--paper);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(20,60,56,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,60,56,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 70% 40%, black, transparent 75%);
}
.hero-bg::after {
  content: ""; position: absolute; top: -10%; right: -5%;
  width: 60%; height: 80%;
  background: radial-gradient(closest-side, rgba(141,198,63,0.10), transparent 70%);
}

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px); align-items: center;
  position: relative; z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lime-deep); font-weight: 600; margin-bottom: 28px;
}
.eyebrow::before {
  content: ""; width: 32px; height: 1px; background: var(--lime); flex-shrink: 0;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime); display: inline-block;
  box-shadow: 0 0 0 4px rgba(141,198,63,0.18);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(141,198,63,0.18); }
  50% { box-shadow: 0 0 0 8px rgba(141,198,63,0.06); }
}

/* Ajuste de ritmo cuando el eyebrow precede al tagline pill (no toca el H1) */
.hero-text .eyebrow { margin-bottom: 16px; }

/* ==========================================================
   TAGLINE PILL (glassmorphism) — encima del H1 del hero
   ========================================================== */
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  max-width: 100%;
  padding: 6px 18px 6px 6px; margin-bottom: 24px;
  border-radius: 100px;
  /* Glass: teal translúcido + blur + borde sutil */
  background: rgba(31, 124, 115, 0.14);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(31, 124, 115, 0.24);
  box-shadow: 0 6px 18px -10px rgba(20, 60, 56, 0.28);
  font-family: var(--font-body);
  font-size: 14px; font-weight: 500; line-height: 1.35;
  color: var(--ink); letter-spacing: 0.005em;
}
.hero-pill-text { text-align: left; }
.hero-pill-badge {
  flex-shrink: 0;
  display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 100px;
  background: var(--teal-deep); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; white-space: nowrap;
}
/* Fallback sin backdrop-filter: fondo sólido semitransparente más opaco (mantiene AA) */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .hero-pill { background: rgba(214, 229, 226, 0.96); border-color: rgba(31,124,115,0.28); }
}

h1.display {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(34px, 5.4vw, 66px); line-height: 1.06;
  letter-spacing: -0.035em; color: var(--teal-deep);
  margin-bottom: 28px;
  word-break: keep-all; overflow-wrap: break-word;
}
h1.display em { font-style: italic; font-weight: 300; color: var(--teal); }
h1.display .underline {
  background-image: linear-gradient(var(--lime), var(--lime));
  background-repeat: no-repeat;
  background-size: 100% 7px;
  background-position: 0 100%;
  padding: 0 4px 5px;
}

.hero-lede {
  font-size: clamp(16px, 2.2vw, 19px); line-height: 1.6;
  color: var(--ink-soft); max-width: 540px; margin-bottom: clamp(28px, 3vw, 40px);
  font-weight: 400;
}
/* Titular del hero en dos líneas (comentario del usuario): tamaño ajustado y
   keyword "Cone Beam 3D" sin cortar entre líneas. */
#inicio h1.display { font-size: clamp(26px, 3.6vw, 46px); text-wrap: balance; }
#inicio h1.display em { white-space: nowrap; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: clamp(12px, 2vw, 26px); margin-bottom: clamp(34px, 4.5vw, 52px); }
.hero-cta .btn { min-width: 160px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  padding-top: clamp(24px, 2.6vw, 34px); border-top: 1px solid var(--rule);
}
.stat-num {
  font-family: var(--font-display); font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 300; line-height: 1; letter-spacing: -0.025em;
  color: var(--teal-deep); display: block; margin-bottom: 8px;
}
.stat-num em { font-style: italic; color: var(--teal); font-weight: 300; }
.stat-label {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}

/* ==========================================================
   HERO CARDS — grupo de 3 tarjetas (columna derecha del hero)
   1 grande arriba + 2 menores abajo. Fondo: imagen real de assets/
   con overlay teal para legibilidad AA. Radio generoso (~2rem).
   ========================================================== */
.hero-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "big big" "s1 s2";
  gap: 14px;
  align-self: stretch;
  min-width: 0;
}
.hero-card {
  position: relative; display: block; overflow: hidden;
  border-radius: 26px;
  background: var(--teal-darker);
  color: #fff; min-width: 0;
  box-shadow: 0 30px 60px -30px rgba(20,60,56,0.45), 0 10px 24px -16px rgba(20,60,56,0.28);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.hero-card:hover { transform: translateY(-4px); box-shadow: 0 42px 72px -28px rgba(20,60,56,0.52); }
.hero-card:active { transform: translateY(-1px) scale(0.995); }
.hero-card--big { grid-area: big; min-height: clamp(280px, 34vh, 340px); }
.hero-card--s1 { grid-area: s1; }
.hero-card--s2 { grid-area: s2; }
.hero-card--s1, .hero-card--s2 { min-height: clamp(190px, 24vh, 220px); }

.hero-card-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
/* Overlay teal para contraste (bottom-heavy: el texto vive abajo en las menores) */
.hero-card::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(155deg, rgba(13,61,58,0.58) 0%, rgba(13,61,58,0.34) 42%, rgba(13,61,58,0.86) 100%);
}
.hero-card--big::after {
  background: linear-gradient(155deg, rgba(13,61,58,0.72) 0%, rgba(13,61,58,0.44) 52%, rgba(13,61,58,0.82) 100%);
}
.hero-card--s2::after {
  background: linear-gradient(150deg, rgba(21,86,80,0.86) 0%, rgba(13,61,58,0.82) 100%);
}

.hero-card-content {
  position: relative; z-index: 2; height: 100%;
  padding: clamp(20px, 2.4vw, 30px);
  display: flex; flex-direction: column; justify-content: space-between;
  text-align: left; gap: 14px;
}
.hero-card-invite, .hero-card-cap, .hero-card-num, .hero-card-sub {
  text-shadow: 0 1px 12px rgba(13,61,58,0.5);
}

/* Tarjeta grande: invitación + botón circular con flecha */
.hero-card-invite {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(21px, 2.2vw, 28px); line-height: 1.16;
  letter-spacing: -0.02em; color: #fff; max-width: none;
  hyphens: none; -webkit-hyphens: none;
  overflow-wrap: normal; word-break: normal;
}
.hero-card-invite em { font-style: italic; color: var(--lime); font-weight: 300; }
.hero-card-arrow {
  position: absolute; right: clamp(20px, 2.4vw, 30px); bottom: clamp(20px, 2.4vw, 30px);
  flex-shrink: 0;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--lime); color: var(--teal-darker);
  display: grid; place-items: center;
  box-shadow: 0 12px 26px -8px rgba(141,198,63,0.55);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.hero-card--big:hover .hero-card-arrow { transform: translateX(4px) scale(1.06); background: var(--lime-deep); color: #fff; }
.hero-card-arrow svg { width: 26px; height: 26px; }

/* Badge pill translúcido */
.hero-card-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center;
  padding: 6px 13px; border-radius: 100px;
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.26);
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff; white-space: nowrap;
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))) {
  .hero-card-badge { background: rgba(13,61,58,0.6); }
}
.hero-card-cap {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(17px, 2vw, 21px); line-height: 1.2;
  letter-spacing: -0.015em; color: #fff; max-width: 16ch;
}
.hero-card-stat { display: flex; flex-direction: column; }
.hero-card-num {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(40px, 5.5vw, 58px); line-height: 0.9;
  letter-spacing: -0.03em; color: #fff;
}
.hero-card-num span { font-style: italic; color: var(--lime); font-size: 0.5em; letter-spacing: 0; }
.hero-card-sub { font-size: 12.5px; color: rgba(255,255,255,0.88); margin-top: 8px; letter-spacing: 0.01em; }

/* Animación de entrada escalonada (fade-up 700ms). Respeta reduced-motion. */
@media (prefers-reduced-motion: no-preference) {
  .hero-card { opacity: 0; animation: heroCardIn .7s cubic-bezier(.16,1,.3,1) both; }
  .hero-card--big { animation-delay: 0.06s; }
  .hero-card--s1 { animation-delay: 0.20s; }
  .hero-card--s2 { animation-delay: 0.32s; }
}
@keyframes heroCardIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* Hero visual: cinematic radiograph card */
.hero-visual {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: 6px; overflow: hidden;
  background: linear-gradient(160deg, var(--teal-darker) 0%, var(--teal-deep) 60%, #0d3d3a 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 40px 80px -30px rgba(20,60,56,0.45),
    0 16px 32px -16px rgba(20,60,56,0.25);
  max-height: 640px;
}
.hero-visual::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.16) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 80%, rgba(141,198,63,0.15) 0%, transparent 50%);
}
.hero-visual::after {
  content: ""; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2'/><feColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 .5 0'/></filter><rect width='120' height='120' filter='url(%23n)' opacity='.4'/></svg>");
  mix-blend-mode: overlay; opacity: 0.22; pointer-events: none;
}

.hero-svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }

.hero-frame-corners {
  position: absolute; inset: 16px; pointer-events: none; z-index: 2;
}
.hero-frame-corners::before, .hero-frame-corners::after,
.hero-frame-corners > i::before, .hero-frame-corners > i::after {
  content: ""; position: absolute; width: 18px; height: 18px;
  border: 1px solid rgba(255,255,255,0.5);
}
.hero-frame-corners::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.hero-frame-corners::after { top: 0; right: 0; border-left: 0; border-bottom: 0; }
.hero-frame-corners > i::before { bottom: 0; left: 0; border-right: 0; border-top: 0; }
.hero-frame-corners > i::after { bottom: 0; right: 0; border-left: 0; border-top: 0; }

.hero-meta-card {
  position: absolute; left: 16px; right: 16px; bottom: 16px; z-index: 3;
  background: rgba(20,60,56,0.55);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px; padding: 14px 16px;
  display: flex; justify-content: space-between; align-items: center;
  color: white; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 500; gap: 12px;
}
.hero-meta-card .lime { color: var(--lime); }

.hero-floating {
  position: absolute; top: 24px; right: 24px;
  background: white; color: var(--teal-deep);
  border-radius: 100px; padding: 10px 16px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 14px 30px -12px rgba(20,60,56,0.4);
  z-index: 4;
}
.hero-floating .pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--lime);
  box-shadow: 0 0 0 3px rgba(141,198,63,0.25);
  animation: pulse 2s var(--ease) infinite;
}

/* Hero slider — vitrina rotativa de estudios (reutiliza el marco .hero-visual) */
.hero-slider { padding: 0; }
.hero-slider-viewport { position: absolute; inset: 0; overflow: hidden; border-radius: 6px; z-index: 1; }
.hero-slider-track { display: flex; height: 100%; transition: transform .6s var(--ease-out); will-change: transform; }
.hero-slide { position: relative; flex: 0 0 100%; width: 100%; height: 100%; overflow: hidden; }
.hero-slide-visual { position: absolute; inset: 0; display: grid; place-items: center; }
.hero-slide-visual--icon { background: linear-gradient(155deg, var(--teal-darker), var(--teal-deep)); }
.hero-slide-visual--icon::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-slide-visual--icon svg { position: relative; z-index: 1; width: 62%; height: auto; max-height: 58%; }
.hero-slide-visual--photo { background: #000; }
.hero-slide-visual--photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 26px; }
.hero-slide-tag {
  position: absolute; top: 16px; left: 16px; z-index: 3;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 7px 13px; border-radius: 100px;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; font-weight: 600;
}
.hero-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 26px 22px 52px;
  background: linear-gradient(to top, rgba(13,61,58,0.95) 32%, rgba(13,61,58,0));
  color: #fff;
}
.hero-slide-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); font-weight: 600; margin-bottom: 9px; }
.hero-slide-name { font-family: var(--font-display); font-weight: 300; font-size: clamp(20px, 2.6vw, 26px); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 8px; color: #fff; }
.hero-slide-desc { font-size: 13.5px; line-height: 1.5; color: rgba(255,255,255,0.82); max-width: 330px; }
.hero-slider-arrow {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 5;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.92); color: var(--teal-deep);
  display: grid; place-items: center;
  box-shadow: 0 8px 20px -8px rgba(20,60,56,0.5);
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.hero-slider-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
.hero-slider-arrow:active { transform: translateY(-50%) scale(0.96); }
.hero-slider-arrow.prev { left: 14px; }
.hero-slider-arrow.next { right: 14px; }
.hero-slider-arrow svg { width: 20px; height: 20px; }
.hero-slider-dots { position: absolute; bottom: 18px; left: 22px; z-index: 6; display: flex; gap: 8px; }
.hero-slider-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(255,255,255,0.4); padding: 0;
  transition: background .3s var(--ease), width .3s var(--ease);
}
.hero-slider-dots button.is-active { background: var(--lime); width: 26px; border-radius: 100px; }
.hero-slider-dots button:hover:not(.is-active) { background: rgba(255,255,255,0.7); }
.hero-slider button:focus-visible { outline: 2px solid var(--lime); outline-offset: 2px; }

/* ==========================================================
   TICKER
   ========================================================== */
.ticker {
  background: var(--teal-darker); color: white;
  padding: clamp(16px, 3vw, 22px) 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker-track {
  display: flex; gap: clamp(40px, 6vw, 64px);
  animation: ticker 50s linear infinite;
  white-space: nowrap; width: max-content;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: clamp(40px, 6vw, 64px);
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(18px, 3vw, 28px); letter-spacing: -0.015em; color: white;
}
.ticker-item::after {
  content: "✦"; font-style: normal;
  color: var(--lime); font-size: 0.65em;
}
@keyframes ticker { to { transform: translateX(-50%); } }

/* ==========================================================
   SECTION SHELL
   ========================================================== */
.section { padding: clamp(64px, 9vw, 140px) 0; position: relative; }
.section--bone { background: var(--bone); }
.section--paper { background: var(--paper); }
.section--ink {
  background: var(--teal-darker); color: white;
  position: relative; overflow: hidden;
}
.section--ink::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.section--ink::after {
  content: ""; position: absolute; bottom: -40%; left: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(closest-side, rgba(141,198,63,0.12), transparent 70%);
  pointer-events: none;
}
.section--ink > .container { position: relative; z-index: 1; }

.section-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(24px, 4vw, 60px);
  margin-bottom: clamp(44px, 7vw, 80px);
  align-items: start;
}
.section-num {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 13px; color: var(--lime-deep); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 12px;
  padding-top: 0.65em;
}
.section--ink .section-num { color: var(--lime); }
.section-num::before {
  content: ""; width: 24px; height: 1px; background: var(--lime);
}
.section-title {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(32px, 5.5vw, 60px); line-height: 1.05;
  letter-spacing: -0.03em; color: var(--teal-deep);
  margin-top: 14px;
  word-break: keep-all; overflow-wrap: break-word;
}
.section--ink .section-title { color: white; }
.section-title em { font-style: italic; color: var(--teal); font-weight: 300; }
.section--ink .section-title em { color: var(--lime); }
.section-intro {
  font-size: clamp(15px, 2vw, 17px); line-height: 1.65;
  color: var(--ink-soft); max-width: 520px;
}
.section--ink .section-intro { color: rgba(255,255,255,0.78); }

/* #servicios: encabezado redimensionado — el título competía en tamaño con el mosaico (comentario de Fran) */
#servicios .section-title { font-size: clamp(27px, 4.2vw, 46px); }
#servicios .section-intro { max-width: 560px; }

/* #proceso: título ajustado a una escala más contenida (comentario del usuario) */
#proceso .section-title { font-size: clamp(26px, 4vw, 44px); }

/* ==========================================================
   ABOUT
   ========================================================== */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px); align-items: center;
}

/* Acordeón de Nosotros: cada punto se abre uno a uno (single-open) */
.about-acc { margin-top: 26px; border-top: 1px solid var(--rule); }
.about-acc-item { border-bottom: 1px solid var(--rule); }
.about-acc-head {
  width: 100%; display: flex; align-items: center; gap: 16px;
  padding: 16px 0; min-height: 58px; text-align: left; cursor: pointer;
  background: none; border: 0; color: var(--teal-deep);
  transition: color .2s var(--ease);
}
.about-acc-head:hover { color: var(--teal); }
.about-acc-head .feature-num { padding-top: 0; flex-shrink: 0; }
.about-acc-title {
  flex: 1; font-family: var(--font-display); font-weight: 500;
  font-size: clamp(16px, 2.4vw, 18px); letter-spacing: -0.01em; color: inherit;
}
.about-acc-chevron { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; transition: transform .3s var(--ease), color .2s var(--ease); }
.about-acc-head[aria-expanded="true"] .about-acc-chevron { transform: rotate(180deg); color: var(--teal-deep); }
.about-acc-body { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .38s var(--ease); }
.about-acc-item.open .about-acc-body { grid-template-rows: 1fr; }
.about-acc-body-inner { overflow: hidden; min-height: 0; }
.about-acc-body-inner p { font-size: 14px; color: var(--muted); line-height: 1.6; padding: 0 0 18px 32px; }
.about-text p {
  font-size: clamp(15px, 2.1vw, 17px); line-height: 1.75;
  color: var(--ink-soft); margin-bottom: 22px;
}
.about-text p:first-child::first-letter {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(3.4em, 7vw, 4em); line-height: 0.85;
  float: left; margin: 8px 14px 0 0;
  color: var(--teal); font-weight: 300;
}

.about-features {
  display: grid; gap: 0; margin-top: 32px;
  border-top: 1px solid var(--rule);
}
.feature-row {
  display: grid; grid-template-columns: 36px 1fr;
  gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--rule);
}
.feature-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; color: var(--lime-deep); font-weight: 400;
  padding-top: 4px;
}
.feature-text strong {
  display: block; font-family: var(--font-display);
  font-weight: 500; font-size: clamp(16px, 2.4vw, 18px);
  color: var(--teal-deep); margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.feature-text span {
  font-size: 14px; color: var(--muted); line-height: 1.55;
}

.about-image {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: 6px; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-darker), var(--teal-deep) 60%, var(--teal));
  box-shadow: 0 30px 60px -25px rgba(20,60,56,0.4);
  max-height: 660px;
}
.about-image-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-image-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 22px 24px;
  background: linear-gradient(to top, rgba(13,61,58,0.92), rgba(13,61,58,0.0));
  color: white;
}
.about-image-caption .label {
  font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--lime); font-weight: 600; margin-bottom: 6px;
}
.about-image-caption .title {
  font-family: var(--font-display); font-style: italic;
  font-weight: 300; font-size: clamp(15px, 2.4vw, 18px); color: white;
}

.about-badges {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 32px;
}
.about-badge {
  background: white; border: 1px solid var(--rule);
  border-radius: 6px; padding: 18px 20px;
  display: flex; align-items: center; gap: 14px;
}
.about-badge .badge-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--bone-2); display: grid; place-items: center;
  color: var(--teal-deep); flex-shrink: 0;
}
.about-badge .badge-icon svg { width: 20px; height: 20px; }
.about-badge .badge-text { display: flex; flex-direction: column; gap: 2px; }
.about-badge .badge-label {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.about-badge .badge-value {
  font-family: var(--font-display); font-size: 15px;
  font-weight: 500; color: var(--teal-deep); letter-spacing: -0.01em;
}

/* ==========================================================
   SERVICES
   ========================================================== */
.services-layout {
  display: grid; grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
}
.services-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  border-bottom: 1px solid var(--rule);
  padding-bottom: 0; margin-bottom: clamp(28px, 4vw, 40px);
}
.services-tab {
  padding: 14px 20px; font-size: 13px;
  font-weight: 500; letter-spacing: 0.02em;
  color: var(--muted); position: relative;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color .25s var(--ease), border-color .3s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px;
}
.services-tab:hover { color: var(--teal-deep); }
.services-tab.is-active {
  color: var(--teal-deep); border-bottom-color: var(--lime);
  font-weight: 600;
}
.services-tab .tab-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 12px; color: var(--lime-deep); font-weight: 400;
}

.service-panel { flex: 0 0 100%; min-width: 0; }
.service-panel[inert] { pointer-events: none; }

/* Carousel */
.services-carousel { position: relative; min-width: 0; }
.services-viewport { overflow: hidden; border-radius: 6px; min-width: 0; }
.services-track {
  display: flex; align-items: stretch;
  transition: transform .55s var(--ease-out);
  will-change: transform;
}
.carousel-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: clamp(20px, 3vw, 28px);
}
.carousel-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--rule);
  background: white; color: var(--teal-deep);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.carousel-arrow:hover { background: var(--teal-deep); color: white; border-color: var(--teal-deep); transform: translateY(-2px); }
.carousel-arrow:active { transform: scale(.95); }
.carousel-arrow:disabled { opacity: .35; cursor: default; pointer-events: none; }
.carousel-arrow svg { width: 20px; height: 20px; }
.carousel-dots { display: flex; align-items: center; gap: 10px; }
.carousel-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rule); padding: 0;
  transition: background .3s var(--ease), transform .3s var(--ease), width .3s var(--ease);
}
.carousel-dot.is-active { background: var(--lime); width: 28px; border-radius: 100px; }
.carousel-dot:hover:not(.is-active) { background: var(--muted-2); }
.carousel-counter {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: 14px; color: var(--muted); letter-spacing: 0.02em;
  min-width: 56px; text-align: center;
  font-variant-numeric: tabular-nums;
}
.carousel-counter b { color: var(--teal-deep); font-style: normal; font-weight: 500; }

.service-detail {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 5vw, 64px); align-items: stretch;
  background: white; border: 1px solid var(--rule); border-radius: 6px;
  overflow: hidden;
}
.service-detail-visual {
  background: linear-gradient(155deg, var(--teal-darker), var(--teal-deep));
  position: relative; min-height: 360px; display: grid; place-items: center;
  overflow: hidden;
}
.service-detail-visual::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.service-detail-visual svg { position: relative; z-index: 1; max-width: 70%; max-height: 70%; }
.service-detail-tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px; border-radius: 100px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: white; font-weight: 600;
}
.service-detail-num {
  position: absolute; bottom: 20px; right: 24px; z-index: 2;
  font-family: var(--font-display); font-style: italic;
  font-weight: 200; font-size: 84px; line-height: 0.8;
  color: rgba(255,255,255,0.28); letter-spacing: -0.04em;
  pointer-events: none;
}

.service-detail-body {
  padding: clamp(28px, 4vw, 48px);
  display: flex; flex-direction: column; gap: 20px;
}
.service-detail-eyebrow {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime-deep); font-weight: 600;
}
.service-detail-title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(24px, 3.8vw, 36px); line-height: 1.1;
  letter-spacing: -0.025em; color: var(--teal-deep);
}
.service-detail-title em { font-style: italic; color: var(--teal); font-weight: 300; }
.service-detail-desc {
  font-size: clamp(15px, 1.9vw, 16px); line-height: 1.7;
  color: var(--ink-soft);
}
.service-detail-list {
  list-style: none; display: grid; gap: 8px;
  margin: 4px 0; padding: 0;
}
.service-detail-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0; border-top: 1px solid var(--rule-soft);
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
}
.service-detail-list li:last-child { border-bottom: 1px solid var(--rule-soft); }
.service-detail-list li::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--lime); margin-top: 9px; flex-shrink: 0;
}
.service-detail-meta {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; padding-top: 20px;
  border-top: 1px solid var(--rule);
}
.service-detail-meta dt {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 6px;
}
.service-detail-meta dd {
  font-family: var(--font-display); font-size: 15px;
  font-weight: 500; color: var(--teal-deep); letter-spacing: -0.01em;
  line-height: 1.3;
}
.service-detail-cta {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto;
  padding-top: 12px;
}

/* Mosaico / vitrina rápida de estudios (#servicios) */
.services-mosaic{
  --mosaic-gap: clamp(12px, 2vw, 18px);
  /* Imagen compartida del mosaico "masked cards".
     REEMPLAZAR: cambia esta URL por la foto horizontal real (local/equipo/atención, ~3:1). */
  --mosaic-img: url('servicios-mosaic.png');
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 205px;
  gap: var(--mosaic-gap);
  margin-bottom: clamp(40px, 6vw, 64px);
}
.svc-tile{
  position: relative; display: block; overflow: hidden;
  border-radius: 6px; border: 1px solid var(--rule);
  background: linear-gradient(155deg, var(--teal-darker), var(--teal-deep));
  color: #fff;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.svc-tile:hover{ transform: translateY(-4px); box-shadow: 0 30px 60px -28px rgba(20,60,56,.35); border-color: var(--teal-soft); }
.svc-tile--feature{ grid-column: 1 / 3; grid-row: 1 / 3; }
.svc-tile--tall{ grid-column: 3; grid-row: 1 / 3; }
.svc-tile--photo{ background: #000; }

.svc-tile-visual{ position: absolute; inset: 0; z-index: 0; }
.svc-tile--icon .svc-tile-visual{ display: grid; place-items: center; padding-bottom: 40%; }
.svc-tile--icon .svc-tile-visual::before{
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.svc-tile--icon .svc-tile-visual svg{ position: relative; z-index: 1; width: 46%; max-width: 118px; height: auto; opacity: .92; }
.svc-tile--feature .svc-tile-visual svg{ width: 34%; }
.svc-tile--photo .svc-tile-visual img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 22px; }

.svc-tile-tag{
  position: absolute; top: 14px; left: 14px; z-index: 3;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.2);
  padding: 6px 12px; border-radius: 100px;
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: #fff; font-weight: 600;
}
.svc-tile-body{
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 22px 20px 20px;
  background: linear-gradient(to top, rgba(13,61,58,.96) 42%, rgba(13,61,58,0));
}
.svc-tile-label{ display: block; font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--lime); font-weight: 600; margin-bottom: 8px; }
.svc-tile-name{ font-family: var(--font-display); font-weight: 300; font-size: clamp(17px, 2vw, 20px); line-height: 1.2; letter-spacing: -.015em; color: #fff; margin-bottom: 7px; }
.svc-tile--feature .svc-tile-name{ font-size: clamp(24px, 3.2vw, 32px); }
.svc-tile-desc{ font-size: 13px; line-height: 1.5; color: rgba(255,255,255,.82); max-width: 440px; }
.svc-tile--feature .svc-tile-desc{ font-size: 14.5px; }
.svc-tile-more{
  display: inline-flex; align-items: center; gap: 8px; margin-top: 12px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--lime);
}
.svc-tile-more svg{ width: 15px; height: 15px; transition: transform .3s var(--ease); }
.svc-tile:hover .svc-tile-more svg{ transform: translateX(4px); }

/* Tratamiento activo (destacado) sólido vs. inactivas en glass translúcido.
   El texto del caption conserva su fondo casi opaco (rgba .96), por lo que
   el contraste AA no depende del blur. */
.svc-tile:not(.svc-tile--feature){
  background: rgba(20,60,56,0.70);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--teal-soft);
}
.svc-tile--photo:not(.svc-tile--feature) .svc-tile-visual img{ opacity: .5; }
/* Fallback si el navegador no soporta backdrop-filter: fondo sólido semitransparente más opaco */
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))){
  .svc-tile:not(.svc-tile--feature){ background: rgba(20,60,56,0.85); }
}

/* ==========================================================
   MASKED CARDS — una sola imagen compartida repartida en las
   3 tarjetas contiguas de la fila inferior (Panorámica / Intraorales / ATM).
   Cada tarjeta muestra una "ventana" distinta de la misma foto.
   El ancho de fondo = 3 tiles + 2 gaps, por lo que la alineación entre
   ventanas es exacta (incluye el hueco del grid).
   ========================================================== */
.svc-tile.svc-tile--masked{
  background-color: var(--teal-deep);              /* color base mientras carga la imagen */
  background-image: var(--mosaic-img);
  background-repeat: no-repeat;
  background-size: calc(300% + 2 * var(--mosaic-gap)) 100%;
  -webkit-backdrop-filter: none; backdrop-filter: none;
  border-color: var(--teal-soft);
}
.svc-tile--masked.mask-0{ background-position: left center; }   /* 0%  — 1ª ventana */
.svc-tile--masked.mask-1{ background-position: center center; } /* 50% — 2ª ventana */
.svc-tile--masked.mask-2{ background-position: right center; }  /* 100%— 3ª ventana */
/* El icono decorativo se oculta: la ventana de la foto compartida es el fondo */
.svc-tile--masked .svc-tile-visual{ display: none; }
/* Overlay semitransparente para asegurar contraste AA del texto sobre la foto */
.svc-tile--masked::after{
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(13,61,58,0.82) 0%, rgba(13,61,58,0.30) 48%, rgba(13,61,58,0.50) 100%);
}

@media (max-width: 980px){
  .services-mosaic{ grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
  .svc-tile--feature{ grid-column: 1 / 3; grid-row: auto; min-height: 260px; }
  .svc-tile--tall{ grid-column: auto; grid-row: auto; }
  /* La fila de 3 se rompe: cada ventana pasa a mostrar la imagen recortada individualmente */
  .svc-tile--masked{ background-size: cover; background-position: center; }
}
@media (max-width: 600px){
  .services-mosaic{ grid-template-columns: 1fr; grid-auto-rows: auto; }
  .svc-tile{ grid-column: auto !important; grid-row: auto !important; min-height: 230px; }
  .svc-tile--feature{ min-height: 300px; }
}

/* ==========================================================
   PROCESS
   ========================================================== */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3.5vw, 36px);
}
.process-step {
  position: relative; padding-top: 52px;
}
.process-step::before {
  content: ""; position: absolute; top: 18px; left: 0; right: 0;
  height: 1px; background: rgba(255, 255, 255, 0.18);
}
.process-step::after {
  content: ""; position: absolute; top: 14px; left: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(141, 198, 63, 0.18);
}
.process-step .step-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 13px; color: var(--lime); margin-bottom: 14px; display: block;
}
.process-step h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(19px, 2.6vw, 23px); line-height: 1.25;
  letter-spacing: -0.015em; margin-bottom: 12px; color: white;
}
.process-step p {
  font-size: 14px; line-height: 1.65;
  color: rgba(255,255,255,0.74);
}
.process-step .step-icon {
  position: absolute; top: 30px; right: 0;
  width: 32px; height: 32px; color: rgba(255,255,255,0.35);
  transition: color .35s var(--ease);
}
.process-step:hover .step-icon { color: var(--lime); }
.process-step .step-icon svg { width: 100%; height: 100%; }

/* ==========================================================
   QUOTE
   ========================================================== */
.quote-section { text-align: center; padding: clamp(72px, 12vw, 160px) 0; }
.big-quote {
  font-family: var(--font-display); font-weight: 200; font-style: italic;
  font-size: clamp(19px, 2.6vw, 32px); line-height: 1.32;
  letter-spacing: -0.02em; color: var(--teal-deep);
  max-width: 1040px; margin: 0 auto;
  text-wrap: balance;
}
.big-quote em { color: var(--teal); font-style: italic; }
.big-quote .q-key { color: var(--lime-deep); font-style: italic; }
.big-quote::before, .big-quote::after {
  content: ""; display: block; width: 44px; height: 1px;
  background: var(--lime); margin: 0 auto 32px;
}
.big-quote::after { margin: 32px auto 0; }
.quote-author {
  margin-top: 28px; font-size: 12px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime-deep); font-weight: 600;
}

/* ==========================================================
   FOR PROFESSIONALS BANNER
   ========================================================== */
.pros-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-darker), var(--teal-deep) 70%, var(--lime-deep));
  color: white; padding: clamp(56px, 8vw, 96px);
  border-radius: 8px;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 56px); align-items: center;
  box-shadow: 0 40px 80px -30px rgba(20,60,56,0.35);
}
.pros-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 80% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 80% 40%, black, transparent 75%);
  pointer-events: none;
}
.pros-content { position: relative; z-index: 1; }
.pros-eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lime); font-weight: 600; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.pros-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--lime); }
.pros-title {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(28px, 4.5vw, 44px); line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 18px;
}
.pros-title em { font-style: italic; color: var(--lime); font-weight: 300; }
.pros-desc {
  font-size: clamp(15px, 2vw, 17px); line-height: 1.65;
  color: rgba(255,255,255,0.85); margin-bottom: 28px; max-width: 520px;
}
.pros-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* ==========================================================
   TECH & CARE — Video Showcase
   ========================================================== */
.tech-care {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: center;
}
.tech-care-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--lime-deep); margin-bottom: 20px;
}
.tech-care-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: var(--lime);
}
.tech-care h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 300; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 22px;
}
.tech-care h2 em {
  font-style: italic; font-weight: 400; color: var(--teal-deep);
}
.tech-care-lead {
  font-size: 17px; line-height: 1.65; color: var(--ink-soft);
  margin-bottom: 28px; max-width: 520px;
}
.tech-care-points {
  list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 14px;
}
.tech-care-points li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: var(--ink); line-height: 1.5;
}
.tech-care-points li svg {
  flex-shrink: 0; width: 22px; height: 22px;
  color: var(--lime-deep); margin-top: 1px;
}
.tech-care-points li strong {
  display: block; font-weight: 600; color: var(--ink); margin-bottom: 2px;
}
.tech-care-points li span {
  color: var(--muted); font-size: 14px;
}

.video-frame {
  position: relative; aspect-ratio: 4/5;
  border-radius: 24px; overflow: hidden;
  background: linear-gradient(135deg, var(--teal-darker), var(--teal-deep));
  box-shadow: 0 30px 80px -20px rgba(20, 60, 56, 0.45),
              0 8px 24px -8px rgba(20, 60, 56, 0.25);
}
.video-frame video,
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border: 0;
}
.video-frame-poster {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(141,198,63,0.18), transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(46,168,156,0.25), transparent 60%),
    linear-gradient(135deg, #0a3d39, var(--teal-darker) 60%, var(--teal-deep));
  color: #fff; padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease);
}
.video-frame-poster:hover { transform: scale(1.01); }
.video-frame-poster::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}
.video-play-button {
  position: relative; z-index: 1;
  width: 96px; height: 96px;
  border-radius: 50%;
  background: var(--lime);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 0 rgba(141, 198, 63, 0.6);
  animation: videoPulse 2.4s ease-in-out infinite;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  border: none; cursor: pointer;
}
.video-play-button:hover {
  transform: scale(1.08);
  background: var(--lime-deep);
}
.video-play-button svg {
  width: 36px; height: 36px; color: #143C38;
  margin-left: 6px;
}
@keyframes videoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(141, 198, 63, 0.55); }
  50% { box-shadow: 0 0 0 22px rgba(141, 198, 63, 0); }
}
.video-frame-poster-label {
  position: relative; z-index: 1;
  margin-top: 28px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--lime);
}
.video-frame-poster-title {
  position: relative; z-index: 1;
  margin-top: 10px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px); font-weight: 400;
  color: #fff; max-width: 380px; line-height: 1.3;
}
.video-frame-meta {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  z-index: 2; pointer-events: none;
}
.video-frame-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.95);
  border-radius: 99px;
  font-size: 12px; font-weight: 600;
  color: var(--teal-darker);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.video-frame-tag::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--lime-deep);
}
.video-frame-runtime {
  font-size: 12px; color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
  background: rgba(0,0,0,0.4); padding: 6px 12px; border-radius: 99px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 980px) {
  .tech-care { grid-template-columns: 1fr; gap: 40px; }
  .video-frame { aspect-ratio: 16/10; }
}
@media (max-width: 600px) {
  .video-frame { aspect-ratio: 4/3; }
  .video-play-button { width: 76px; height: 76px; }
  .video-play-button svg { width: 28px; height: 28px; }
}
.pros-features {
  position: relative; z-index: 1;
  display: grid; gap: 14px;
}
.pros-feature {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 18px 20px; border-radius: 6px;
  display: flex; gap: 14px; align-items: flex-start;
}
.pros-feature .pf-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(141,198,63,0.2);
  border: 1px solid rgba(141,198,63,0.3);
  display: grid; place-items: center;
  color: var(--lime); flex-shrink: 0;
}
.pros-feature .pf-icon svg { width: 18px; height: 18px; }
.pros-feature strong {
  display: block; font-family: var(--font-display);
  font-weight: 500; font-size: 15px; color: white;
  margin-bottom: 4px; letter-spacing: -0.005em;
}
.pros-feature span {
  font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.5;
}

/* ==========================================================
   CONVENIOS
   ========================================================== */
.convenios-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(12px, 2vw, 18px);
}
.convenio-card {
  background: white; border: 1px solid var(--rule); border-radius: 6px;
  padding: clamp(24px, 4vw, 32px) 20px;
  text-align: center; transition: all .3s var(--ease);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  min-height: 150px; gap: 14px;
}
.convenio-card:hover {
  border-color: var(--teal); transform: translateY(-3px);
  box-shadow: 0 16px 30px -16px rgba(20,60,56,0.18);
}
.convenio-logo {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--bone); display: grid; place-items: center;
  color: var(--teal-deep); font-family: var(--font-display);
  font-weight: 500; font-size: 19px; letter-spacing: -0.02em;
}
.convenio-name {
  font-family: var(--font-display); font-weight: 500;
  font-size: 15px; color: var(--teal-deep); letter-spacing: -0.01em;
  line-height: 1.2;
}
.convenio-type {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
/* Carrusel de logos de convenios (marquee automático) */
.convenios-marquee{
  position: relative; overflow: hidden; padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.convenios-track{
  display: flex; width: max-content;
  animation: convenios-scroll 34s linear infinite;
}
.convenios-marquee:hover .convenios-track,
.convenios-marquee:focus-within .convenios-track{ animation-play-state: paused; }
.convenio-logo-card{
  flex: 0 0 auto;
  width: clamp(160px, 22vw, 230px); height: 120px;
  margin-right: clamp(12px, 2vw, 18px);
  background: #fff; border: 1px solid var(--rule); border-radius: 6px;
  display: grid; place-items: center; padding: 22px 28px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.convenio-logo-card:hover{ border-color: var(--teal); box-shadow: 0 16px 30px -16px rgba(20,60,56,0.18); }
.convenio-logo-card img{ max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
@keyframes convenios-scroll{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce){
  .convenios-track{ animation: none; flex-wrap: wrap; justify-content: center; width: 100%; gap: clamp(12px,2vw,18px); }
  .convenios-track .convenio-dup{ display: none; }
  .convenio-logo-card{ margin-right: 0; }
}
.convenios-note {
  margin-top: clamp(28px, 5vw, 40px);
  padding: 22px 26px; background: white;
  border: 1px solid var(--rule);
  border-left: 3px solid var(--lime);
  border-radius: 0 4px 4px 0;
  font-size: 14px; line-height: 1.65;
  color: var(--ink-soft);
}
.convenios-note strong { color: var(--teal-deep); font-weight: 600; }

/* ==========================================================
   TEAM
   ========================================================== */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
/* Compensa el header fijo al llegar por el menú / enlace directo (mismo landing que el scroll manual) */
#nosotros, #servicios, #convenios, #equipo, #ubicacion, #contacto { scroll-margin-top: 92px; }
.team-card {
  background: white; border: 1px solid var(--rule);
  border-radius: 6px; overflow: hidden;
  transition: all .35s var(--ease);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -28px rgba(20,60,56,0.25);
  border-color: var(--teal-soft);
}
.team-photo {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--teal-darker), var(--teal-deep));
  position: relative; overflow: hidden;
}
.team-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.team-photo .team-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: rgba(255,255,255,0.5);
}
.team-photo .team-placeholder svg { width: 90px; height: 90px; }
.team-photo .team-tag {
  position: absolute; top: 14px; left: 14px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime); font-weight: 600;
  background: rgba(13,61,58,0.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  padding: 6px 10px; border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.16);
}
.team-info { padding: clamp(22px, 3.5vw, 28px); }
.team-info .role {
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lime-deep);
  font-weight: 600; margin-bottom: 10px;
}
.team-info h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(19px, 2.6vw, 22px); line-height: 1.2;
  color: var(--teal-deep); margin-bottom: 8px;
  letter-spacing: -0.015em;
}
.team-info .credentials {
  font-size: 13px; color: var(--muted); line-height: 1.5;
  margin-bottom: 12px;
}
.team-info .specialty {
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
.faq-aside h3 {
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(28px, 4vw, 40px); line-height: 1.1;
  letter-spacing: -0.025em; color: var(--teal-deep);
  margin-bottom: 18px;
}
.faq-aside h3 em { font-style: italic; color: var(--teal); font-weight: 300; }
.faq-aside p {
  font-size: clamp(14px, 1.9vw, 16px); line-height: 1.65;
  color: var(--ink-soft); margin-bottom: 24px;
}
.faq-aside .btn { width: auto; }

.faq-list { display: grid; gap: 0; }
.faq-item {
  border-top: 1px solid var(--rule);
  transition: background .3s var(--ease);
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-question {
  width: 100%; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(16px, 2.4vw, 18px); color: var(--teal-deep);
  letter-spacing: -0.01em; min-height: 64px;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--rule); display: grid; place-items: center;
  flex-shrink: 0; transition: all .35s var(--ease);
  color: var(--teal-deep);
}
.faq-item[open] .faq-icon {
  background: var(--lime); border-color: var(--lime);
  color: white; transform: rotate(45deg);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer {
  padding: 0 0 26px;
  font-size: 15px; line-height: 1.7;
  color: var(--ink-soft);
  max-width: 820px;
}
.faq-question::-webkit-details-marker, .faq-question::marker { display: none; content: ""; }

/* ==========================================================
   LOCATION
   ========================================================== */
.location-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(28px, 4vw, 48px); align-items: stretch;
}
.location-info {
  background: white; border: 1px solid var(--rule);
  border-radius: 6px; padding: clamp(28px, 4vw, 40px);
  display: flex; flex-direction: column; gap: 24px;
}
.location-info-block { padding-bottom: 22px; border-bottom: 1px solid var(--rule); }
.location-info-block:last-child { border-bottom: 0; padding-bottom: 0; }
.location-info-block label {
  display: block; font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--lime-deep);
  font-weight: 600; margin-bottom: 10px;
}
.location-info-block p, .location-info-block a {
  font-family: var(--font-display); font-size: 17px;
  font-weight: 400; color: var(--teal-deep); line-height: 1.5;
  letter-spacing: -0.005em;
}
.location-info-block a { display: block; }
.location-info-block a:hover { color: var(--teal); }
.location-info-block p.small {
  font-family: var(--font-body); font-size: 14px;
  color: var(--muted); line-height: 1.6;
}
.location-map {
  border-radius: 6px; overflow: hidden;
  border: 1px solid var(--rule); min-height: 420px;
  position: relative;
}
.location-map iframe {
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.18) contrast(1.04);
  position: absolute; inset: 0;
}

/* ==========================================================
   CONTACT
   ========================================================== */
.contact-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px); align-items: start;
}
/* La sección Contacto se sentía demasiado ancha: acotamos el contenido a un
   ancho de lectura cómodo y lo centramos (mejor legibilidad y foco en el formulario). */
#contacto .container { max-width: 1040px; }
.contact-info-block { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.contact-info-block:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-info-block label {
  display: block; font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--lime); font-weight: 600;
  margin-bottom: 12px;
}
.contact-info-block p, .contact-info-block a {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(18px, 2.6vw, 22px); line-height: 1.4;
  color: white; letter-spacing: -0.01em;
  word-break: break-word;
}
.contact-info-block a {
  display: inline-block; border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease); min-height: 32px;
}
.contact-info-block a:hover { border-bottom-color: var(--lime); }
.contact-info-block .secondary {
  font-family: var(--font-body); font-size: 14px;
  color: rgba(255,255,255,0.7); margin-top: 6px; display: block;
}

.form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field label {
  display: block; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 8px; font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding: 12px 0; color: white;
  font-family: var(--font-body);
  font-size: 16px;  /* iOS: previene auto-zoom */
  outline: none; transition: border-color .3s var(--ease);
  border-radius: 0; min-height: 44px;
  -webkit-appearance: none; appearance: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-bottom-color: var(--lime); }
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-field textarea { min-height: 88px; resize: vertical; padding: 12px 0 4px; }
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-width='1'/></svg>");
  background-repeat: no-repeat; background-position: right 0 center;
  padding-right: 24px;
}
.form-field select option { background: var(--teal-darker); color: white; }
.form-submit {
  margin-top: 8px; background: var(--lime); color: white;
  padding: 14px 24px; border-radius: 100px;
  font-weight: 600; font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background .3s var(--ease), transform .3s var(--ease);
  justify-self: start;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 46px; cursor: pointer; border: 0;
  width: auto; max-width: 260px;
}
.form-submit svg { width: 14px; height: 14px; }
.form-submit:hover { background: var(--lime-deep); transform: translateY(-1px); }
.form-submit:active { transform: scale(0.98); }
.form-success, .form-error {
  padding: 16px 20px; border-radius: 4px;
  margin-bottom: 20px; font-size: 14px;
  line-height: 1.5; color: white;
}
.form-success { background: rgba(141,198,63,0.18); border: 1px solid var(--lime); }
.form-error { background: rgba(255,100,100,0.18); border: 1px solid #FF7070; }

.consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 12px; color: rgba(255,255,255,0.7);
  line-height: 1.5; margin-top: -4px;
}
.consent input { width: 16px; height: 16px; margin-top: 2px; accent-color: var(--lime); }
.consent a { color: var(--lime); text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--teal-darker); color: white;
  padding: clamp(48px, 8vw, 80px) 0 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-bottom: max(32px, calc(32px + var(--safe-bottom)));
  position: relative; overflow: hidden;
}
.footer::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 30% 50%, black, transparent 75%);
  pointer-events: none;
}
.footer > .container { position: relative; z-index: 1; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 0.9fr 0.9fr 0.9fr;
  gap: clamp(28px, 5vw, 56px);
  margin-bottom: clamp(40px, 6vw, 56px);
  padding-bottom: clamp(32px, 5vw, 48px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand-mark {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
}
.footer-brand-mark .brand-mark { width: 52px; height: 52px; }
.footer-brand-name {
  font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 28px);
  font-weight: 300; letter-spacing: -0.02em; color: white;
}
.footer-brand-name em { color: var(--lime); font-style: italic; font-weight: 300; }
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.7);
  line-height: 1.65; max-width: 340px;
}
.footer h6 {
  font-family: var(--font-body); font-size: 11px;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime); font-weight: 600; margin-bottom: 18px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  font-size: 14px; color: rgba(255,255,255,0.78);
  transition: color .3s var(--ease);
  display: inline-block; padding: 4px 0;
}
.footer ul a:hover { color: var(--lime); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0;
  font-size: 12px; color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em; flex-wrap: wrap; gap: 16px;
}
.footer-bottom a:hover { color: var(--lime); }
.social { display: flex; gap: 10px; }
.social a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%; display: grid; place-items: center;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  color: white;
}
.social a:hover { background: var(--lime); border-color: var(--lime); transform: translateY(-2px); }
.social svg { width: 14px; height: 14px; }

/* ==========================================================
   FAB WhatsApp
   ========================================================== */
.fab {
  position: fixed;
  bottom: max(20px, calc(20px + var(--safe-bottom)));
  right: max(20px, calc(20px + var(--safe-right)));
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: white;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,0.5);
  z-index: 50; transition: transform .3s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab:active { transform: scale(0.95); }
.fab svg { width: 28px; height: 28px; }
.fab::before {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #25D366; opacity: 0.4;
  animation: ping 2.4s var(--ease) infinite; pointer-events: none;
}
@keyframes ping {
  0% { transform: scale(0.95); opacity: 0.5; }
  70%,100% { transform: scale(1.4); opacity: 0; }
}

/* ==========================================================
   MOBILE ACTION BAR — solo móvil, fija abajo
   ========================================================== */
.action-bar {
  display: none; /* oculta por defecto (desktop) */
  position: fixed; left: 0; right: 0;
  bottom: 0; z-index: 90;
  gap: 8px;
  padding: 10px max(10px, var(--safe-left)) max(10px, var(--safe-bottom)) max(10px, var(--safe-right));
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid var(--rule);
  box-shadow: 0 -8px 24px -12px rgba(20,60,56,0.18);
  transition: transform .35s var(--ease);
}
.action-bar.is-hidden { transform: translateY(120%); }
.action-bar a {
  flex: 1 1 0; min-width: 0;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 50px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: background .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap; padding: 0 12px;
}
.action-bar a:active { transform: scale(0.97); }
.action-bar svg { width: 18px; height: 18px; flex-shrink: 0; }
.action-bar .ab-primary {
  flex: 1.5 1 0;
  background: var(--lime); color: white;
}
.action-bar .ab-primary:active { background: var(--lime-deep); }
.action-bar .ab-secondary {
  background: var(--bone); color: var(--teal-deep);
  border-color: var(--rule);
}
.action-bar .ab-whatsapp {
  background: #25D366; color: white;
}
.action-bar .ab-label-sm { display: none; }

/* Reveal / animaciones de entrada escalonadas al hacer scroll.
   Estado oculto GATED tras .has-anim (lo añade el JS): si el JS falla,
   nada queda en opacity:0 permanente y todo el contenido es visible. */
.reveal { transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.has-anim .reveal { opacity: 0; transform: translateY(24px); }
.reveal.in { opacity: 1; transform: none; }
.has-anim [data-anim] { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.has-anim [data-anim].is-in { opacity: 1; transform: none; }

/* ==========================================================
   MOBILE MENU
   ========================================================== */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--paper); z-index: 200;
  padding: calc(80px + var(--safe-top)) max(24px, var(--safe-right)) max(32px, var(--safe-bottom)) max(24px, var(--safe-left));
  flex-direction: column; gap: 20px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px; padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.mobile-menu-close {
  width: 44px; height: 44px; display: grid; place-items: center;
  font-size: 28px; color: var(--teal-deep); background: transparent;
  border-radius: 50%;
}
.mobile-menu-close:active { background: var(--bone); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--font-display); font-size: clamp(26px, 5.5vw, 34px);
  font-weight: 300; letter-spacing: -0.02em;
  border-bottom: 1px solid var(--rule);
  padding: 14px 0; color: var(--teal-deep);
  min-height: 56px; display: flex; align-items: center;
  justify-content: space-between;
  transition: color .25s var(--ease);
}
.mobile-menu nav a:hover { color: var(--teal); }
.mobile-menu nav a .arrow { font-size: 20px; color: var(--lime-deep); }
.mobile-menu-footer { margin-top: auto; padding-top: 32px; }
.mobile-menu-footer .btn { width: 100%; }

/* ==========================================================
   BREAKPOINTS
   ========================================================== */
@media (max-width: 1180px) {
  .hero-grid { gap: 40px; }
  .footer-top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-top > div:nth-child(4) { grid-column: span 3; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .topbar .btn--primary, .topbar > .container > .btn { display: none; }

  /* Barra de acción móvil */
  .action-bar { display: flex; }
  .fab { display: none; } /* el WhatsApp ya está en la barra */
  body { padding-bottom: calc(72px + var(--safe-bottom)); }
  .footer { padding-bottom: max(40px, calc(40px + var(--safe-bottom))); }

  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-height: 540px; max-width: 520px; margin: 0 auto; width: 100%; }
  .hero-cards { max-width: 560px; margin: 0 auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-height: 520px; max-width: 520px; margin: 0 auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 44px; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail-visual { min-height: 280px; }
  .pros-banner { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:nth-child(4) { grid-column: span 2; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); }
  .form-row { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 320px; }
}

@media (max-width: 600px) {
  .topbar-inner { padding: 12px 0; min-height: 60px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-name { font-size: 22px; }
  .brand-tagline { font-size: 8px; letter-spacing: 0.16em; }

  .announce-inner { font-size: 12px; gap: 10px; }
  .announce strong { font-size: 10px; }

  .hero { padding: 48px 0 64px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px 12px; }
  .stat-num { font-size: 26px; }
  .stat-label { font-size: 10px; letter-spacing: 0.1em; }

  .services-tabs { gap: 4px; padding-bottom: 4px; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .services-tab { white-space: nowrap; padding: 12px 14px; font-size: 12px; }
  .service-detail-meta { grid-template-columns: 1fr; gap: 12px; }

  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-step { padding-top: 44px; }

  .team-grid { grid-template-columns: 1fr; }
  .convenios-grid { grid-template-columns: 1fr 1fr; }
  .convenio-card { min-height: 130px; padding: 22px 12px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-top > div:nth-child(4) { grid-column: 1; padding-top: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 18px; }

  .pros-banner { padding: 40px 28px; }
  .pros-cta .btn, .pros-cta .btn--ghost { width: 100%; }

  .big-quote::before, .big-quote::after { width: 32px; }
  .fab { width: 52px; height: 52px; }
  .fab svg { width: 26px; height: 26px; }
}

@media (max-width: 430px) {
  :root { --gutter: 18px; }
  .topbar-inner { gap: 12px; }
  .brand { gap: 10px; }
  .brand-mark { width: 36px; height: 36px; }
  .brand-tagline { display: none; }
}

@media (max-width: 380px) {
  body { font-size: 15px; }
  .hero { padding: 40px 0 56px; }
  h1.display { font-size: 34px; line-height: 1.06; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .convenios-grid { grid-template-columns: 1fr; }
  .form-submit { font-size: 13px; padding: 14px 24px; }
}

@media (max-width: 980px) and (orientation: landscape) {
  .hero { padding: 40px 0; }
  .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 32px; }
  .hero-visual { max-height: 380px; }
  .mobile-menu { padding-top: 60px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-track { animation: none; }
  .reveal, [data-anim] { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================
   CONSULTA TU EXAMEN — selector interactivo (JS puro)
   ========================================================== */
.consulta-selector {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(18px, 3vw, 30px); align-items: stretch;
}
.consulta-choices {
  background: #fff; border: 1px solid var(--rule);
  border-radius: 20px; padding: clamp(22px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 26px;
}
.consulta-fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.consulta-legend {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime-deep); font-weight: 600; margin-bottom: 12px; padding: 0;
}
.consulta-radios { display: grid; gap: 10px; }
.consulta-radios--row { grid-template-columns: 1fr 1fr; }

.consulta-radio {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 13px 15px; border: 1px solid var(--rule); border-radius: 14px;
  cursor: pointer; background: var(--paper); min-height: 50px;
  font-size: 14px; color: var(--ink-soft);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.consulta-radio:hover { border-color: var(--teal-soft); background: var(--bone); }
.consulta-radio input {
  position: absolute; width: 1px; height: 1px; opacity: 0; margin: 0; pointer-events: none;
}
.consulta-dot {
  width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid var(--muted-2); flex-shrink: 0;
  display: grid; place-items: center;
  transition: border-color .2s var(--ease);
}
.consulta-dot::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--teal-deep); transform: scale(0);
  transition: transform .2s var(--ease);
}
.consulta-radio input:checked ~ .consulta-dot { border-color: var(--teal-deep); }
.consulta-radio input:checked ~ .consulta-dot::after { transform: scale(1); }
.consulta-radio:has(input:checked) {
  border-color: var(--teal-deep); background: #fff;
  box-shadow: inset 0 0 0 1px var(--teal-deep);
}
.consulta-radio-label { font-weight: 500; color: var(--ink); line-height: 1.3; }
.consulta-radio input:focus-visible ~ .consulta-dot {
  outline: 2px solid var(--teal); outline-offset: 3px;
}

.consulta-check {
  display: flex; align-items: center; gap: 12px; cursor: pointer;
  font-size: 14px; color: var(--ink); min-height: 44px;
}
.consulta-check input {
  position: absolute; width: 1px; height: 1px; opacity: 0; margin: 0; pointer-events: none;
}
.consulta-check-box {
  width: 22px; height: 22px; border-radius: 7px;
  border: 2px solid var(--muted-2); flex-shrink: 0;
  display: grid; place-items: center; color: #fff;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.consulta-check-box svg { width: 14px; height: 14px; transform: scale(0); transition: transform .2s var(--ease); }
.consulta-check input:checked ~ .consulta-check-box { background: var(--teal-deep); border-color: var(--teal-deep); }
.consulta-check input:checked ~ .consulta-check-box svg { transform: scale(1); }
.consulta-check input:focus-visible ~ .consulta-check-box { outline: 2px solid var(--teal); outline-offset: 3px; }
.consulta-check-opt { color: var(--muted); font-size: 13px; }

.consulta-summary { border-radius: 20px; overflow: hidden; }
.consulta-summary-inner {
  height: 100%; padding: clamp(24px, 3.5vw, 38px);
  /* Degradado teal→lime OSCURECIDO para asegurar AA del texto blanco */
  background: linear-gradient(140deg, var(--teal-darker) 0%, var(--teal-deep) 52%, var(--lime-deep) 128%);
  color: #fff; display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
}
.consulta-summary-inner::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 80% 20%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 80% 20%, black, transparent 75%);
}
.consulta-summary-inner > * { position: relative; z-index: 1; }
.consulta-summary-label {
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime-soft); font-weight: 600;
}
.consulta-summary-text {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(22px, 2.8vw, 30px); line-height: 1.22;
  letter-spacing: -0.02em; color: #fff; text-align: left;
  text-shadow: 0 1px 12px rgba(13,61,58,0.45);
}
.consulta-summary-hint {
  font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.9);
  text-align: left;
}
.consulta-cta {
  margin-top: auto; display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; background: #fff; color: var(--teal-deep);
  border-radius: 100px; padding: 16px 24px; min-height: 54px;
  font-weight: 600; font-size: 14px; letter-spacing: 0.005em; text-align: center;
  box-shadow: 0 14px 30px -14px rgba(0,0,0,0.35);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.consulta-cta:hover { background: var(--bone); color: var(--teal-darker); transform: translateY(-2px); }
.consulta-cta:active { transform: translateY(0) scale(0.99); }
.consulta-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

@media (max-width: 900px) {
  .consulta-selector { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .consulta-radios--row { grid-template-columns: 1fr; }
}

@media print {
  .topbar, .nav-toggle, .mobile-menu, .fab, .ticker, .hero-cta, .form-submit, .announce { display: none !important; }
  body { background: white; color: black; }
  .section { padding: 20px 0; page-break-inside: avoid; }
}

/* ==========================================================
   CTA BAND — enlace a la landing de Servicios (#servicios)
   ========================================================== */
.services-cta-band{
  display: grid; grid-template-columns: 1fr auto; align-items: center;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
  background: var(--bone);
  border: 1px solid var(--rule);
  border-radius: 8px;
}
.services-cta-eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime-deep); font-weight: 600; margin-bottom: 12px;
}
.services-cta-eyebrow::before{ content: ""; width: 28px; height: 1px; background: var(--lime); }
.services-cta-title{
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(20px, 2.6vw, 28px); line-height: 1.2;
  letter-spacing: -0.02em; color: var(--teal-deep);
  max-width: 640px; text-align: left;
}
.services-cta-btn{ flex-shrink: 0; min-height: 52px; padding: 16px 28px; }
.services-cta-btn svg{ transition: transform .3s var(--ease); }
.services-cta-btn:hover svg{ transform: translateX(4px); }
@media (max-width: 760px){
  .services-cta-band{ grid-template-columns: 1fr; gap: 22px; }
  .services-cta-btn{ width: 100%; }
}

/* ==========================================================
   LANDING DE SERVICIOS (Servicios.html)
   ========================================================== */
.svc-back{
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  padding: 10px 16px 10px 12px; border-radius: 100px;
  border: 1px solid var(--rule); background: #fff;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.svc-back:hover{ color: var(--teal-deep); border-color: var(--teal-deep); background: var(--bone); }
.svc-back svg{ width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc-back:hover svg{ transform: translateX(-3px); }

/* Encabezado de la landing */
.svc-hero{ position: relative; overflow: hidden; padding: clamp(48px, 7vw, 92px) 0 clamp(36px, 5vw, 56px); background: var(--paper); }
.svc-hero .hero-bg{ position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.svc-hero-inner{ position: relative; z-index: 1; }
.svc-hero-eyebrow{
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lime-deep); font-weight: 600; margin-bottom: 20px;
}
.svc-hero-eyebrow::before{ content: ""; width: 32px; height: 1px; background: var(--lime); }
.svc-hero h1{
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(32px, 5.4vw, 58px); line-height: 1.05;
  letter-spacing: -0.035em; color: var(--teal-deep); margin-bottom: 20px;
  text-align: left;
}
.svc-hero h1 em{ font-style: italic; font-weight: 300; color: var(--teal); }
.svc-hero-lede{ font-size: clamp(16px, 2vw, 19px); line-height: 1.6; color: var(--ink-soft); max-width: 620px; }

/* Índice de estudios (chips que anclan a cada bloque) */
.study-index{
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: clamp(24px, 3vw, 32px); border-top: 1px solid var(--rule);
}
.study-index a{
  display: inline-flex; align-items: center; gap: 9px;
  padding: 10px 16px; border-radius: 100px;
  border: 1px solid var(--rule); background: #fff;
  font-size: 13px; font-weight: 500; color: var(--ink-soft);
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
}
.study-index a:hover{ color: var(--teal-deep); border-color: var(--teal-soft); background: var(--bone); transform: translateY(-2px); }
.study-index a .idx{ font-family: var(--font-display); font-style: italic; font-size: 12px; color: var(--lime-deep); }

/* Bloque de estudio */
.study{ scroll-margin-top: 96px; padding: clamp(48px, 7vw, 88px) 0; border-top: 1px solid var(--rule); }
.study:first-of-type{ border-top: 0; }
.study-grid{ display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: stretch; }
.study-visual-col{ display: grid; min-width: 0; }
.study:nth-child(even) .study-visual-col{ order: 2; }

.study-visual{
  position: relative; min-height: 460px;
  border-radius: 8px; overflow: hidden;
  background: linear-gradient(155deg, var(--teal-darker), var(--teal-deep));
  box-shadow: 0 40px 80px -34px rgba(20,60,56,0.42);
  display: grid; place-items: center;
}
.study-visual::before{
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}
.study-visual--photo{ background: #000; }
.study-visual svg{ position: relative; z-index: 1; width: 66%; max-height: 62%; }
.study-visual--photo img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; padding: 24px; }
/* CTA de WhatsApp sobre la imagen del estudio ("Agenda aquí") */
.study-visual-cta{
  position: absolute; left: 18px; bottom: 18px; z-index: 4;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; border-radius: 100px;
  background: #fff; color: var(--teal-deep);
  font-size: 13px; font-weight: 600; letter-spacing: 0.01em; white-space: nowrap;
  box-shadow: 0 12px 26px -10px rgba(0,0,0,0.45);
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.study-visual-cta:hover{ transform: translateY(-2px); background: var(--bone); }
.study-visual-cta:active{ transform: translateY(0) scale(0.98); }
.study-visual-cta svg{ width: 18px; height: 18px; color: #25D366; flex-shrink: 0; }
.study-visual-tag{
  position: absolute; top: 18px; left: 18px; z-index: 3;
  background: rgba(255,255,255,0.13); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 14px; border-radius: 100px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #fff; font-weight: 600;
}
.study-visual-num{
  position: absolute; bottom: 14px; right: 22px; z-index: 2;
  font-family: var(--font-display); font-style: italic; font-weight: 200;
  font-size: clamp(64px, 9vw, 104px); line-height: 0.8;
  color: rgba(255,255,255,0.26); letter-spacing: -0.04em; pointer-events: none;
}

.study-eyebrow{ font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime-deep); font-weight: 600; margin-bottom: 14px; }
.study-title{
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(26px, 4vw, 40px); line-height: 1.08;
  letter-spacing: -0.025em; color: var(--teal-deep); margin-bottom: 18px; text-align: left;
}
.study-title em{ font-style: italic; color: var(--teal); font-weight: 300; }
.study-desc{ font-size: clamp(15px, 1.9vw, 17px); line-height: 1.7; color: var(--ink-soft); margin-bottom: 22px; }

/* FAQ específico del estudio */
.study-faq{ margin-top: 26px; padding-top: 8px; }
.study-faq-label{ font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 4px; }

.study-cta{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }

@media (max-width: 900px){
  .study-grid{ grid-template-columns: 1fr; gap: 32px; align-items: stretch; }
  .study--rev .study-visual-col{ order: 0; }
  .study-visual-col{ display: block; }
  .study-visual{ aspect-ratio: 4/5; min-height: 0; max-height: 520px; max-width: 480px; margin: 0 auto; width: 100%; }
}

/* ==========================================================
   LANDING DE PREGUNTAS (Preguntas.html)
   ========================================================== */
.faq-block{ padding: clamp(40px, 6vw, 72px) 0; border-top: 1px solid var(--rule); }
.faq-block:first-of-type{ border-top: 0; padding-top: clamp(20px, 3vw, 36px); }
.faq-block-head{ margin-bottom: clamp(24px, 3vw, 36px); max-width: 720px; }
.faq-block-title{
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(26px, 4vw, 42px); line-height: 1.08;
  letter-spacing: -0.03em; color: var(--teal-deep); text-align: left;
}
.faq-block-title em{ font-style: italic; color: var(--teal); font-weight: 300; }
.faq-block-note{
  margin-top: 12px; font-size: clamp(14px, 1.8vw, 16px); line-height: 1.6;
  color: var(--ink-soft);
}
.faq-block-note a{ color: var(--teal-deep); font-weight: 600; border-bottom: 1px solid var(--lime); }
.faq-block-note a:hover{ color: var(--teal); }

.faq-group{ scroll-margin-top: 96px; margin-top: clamp(28px, 4vw, 44px); }
.faq-group:first-of-type{ margin-top: 0; }
.faq-group-head{
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 4px;
}
.faq-group-title{
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(18px, 2.4vw, 22px); letter-spacing: -0.015em;
  color: var(--teal-deep); text-align: left;
}
.faq-group-link{
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lime-deep); white-space: nowrap;
}
.faq-group-link svg{ width: 14px; height: 14px; transition: transform .3s var(--ease); }
.faq-group-link:hover{ color: var(--teal-deep); }
.faq-group-link:hover svg{ transform: translateX(3px); }
/* Encabezado de grupo alineado con el ancla del índice */
.faq-block[id]{ scroll-margin-top: 90px; }

/* Teaser de preguntas en la home (enlaza a la landing Preguntas.html) */
.faq-teaser{
  background: #fff; border: 1px solid var(--rule); border-radius: 20px;
  padding: clamp(24px, 3.5vw, 34px); display: flex; flex-direction: column; gap: 18px;
}
.faq-teaser-label{
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime-deep); font-weight: 600;
}
.faq-teaser-list{ list-style: none; display: grid; gap: 0; margin: 0; padding: 0; }
.faq-teaser-list li{
  padding: 13px 0; border-top: 1px solid var(--rule-soft);
  font-size: 15px; color: var(--ink-soft); line-height: 1.4;
  display: flex; align-items: center; gap: 12px; text-align: left;
}
.faq-teaser-list li:first-child{ border-top: 0; }
.faq-teaser-list li::before{
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--lime); flex-shrink: 0;
}
.faq-teaser .btn{ align-self: flex-start; margin-top: 4px; }
.faq-teaser .btn svg{ width: 16px; height: 16px; transition: transform .3s var(--ease); }
.faq-teaser .btn:hover svg{ transform: translateX(4px); }

/* ==========================================================
   BLOG — landing + artículos (reutiliza el sistema del sitio)
   ========================================================== */
.blog-hero{ position: relative; overflow: hidden; padding: clamp(48px,7vw,92px) 0 clamp(30px,4vw,44px); background: var(--paper); }
.blog-hero .hero-bg{ position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.blog-hero-inner{ position: relative; z-index: 1; }
.blog-pill{
  display: inline-flex; align-items: center; gap: 10px; max-width: 100%;
  padding: 6px 18px 6px 6px; margin-bottom: 22px; border-radius: 100px;
  background: rgba(46,168,156,0.12);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(46,168,156,0.30);
  box-shadow: 0 6px 18px -10px rgba(20,60,56,0.28);
  font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: 0.005em;
}
.blog-pill-badge{
  flex-shrink: 0; display: inline-flex; align-items: center;
  padding: 5px 12px; border-radius: 100px; background: var(--lime-deep); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
}
@supports not ((backdrop-filter: blur(2px)) or (-webkit-backdrop-filter: blur(2px))){
  .blog-pill{ background: rgba(214,229,226,0.96); border-color: rgba(46,168,156,0.4); }
}
.blog-hero h1{
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(32px,5.4vw,58px); line-height: 1.05; letter-spacing: -0.035em;
  color: var(--teal-deep); margin-bottom: 18px; text-align: left;
}
.blog-hero h1 em{ font-style: italic; color: var(--teal); font-weight: 300; }
.blog-hero-lede{ font-size: clamp(16px,2vw,19px); line-height: 1.6; color: var(--ink-soft); max-width: 600px; }

.blog-grid{ display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,24px); padding-bottom: clamp(56px,8vw,96px); }
.blog-card{
  position: relative; display: flex; flex-direction: column; overflow: hidden;
  border-radius: 20px; border: 1px solid var(--rule); background: #fff; color: inherit;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  min-width: 0;
}
a.blog-card:hover{ transform: translateY(-4px); box-shadow: 0 30px 60px -28px rgba(20,60,56,0.22); border-color: var(--teal-soft); }
.blog-card--feature{ grid-column: span 2; grid-row: span 2; }
.blog-card--soon{ background: var(--bone); }
.blog-card-media{ position: relative; aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(155deg, var(--teal-darker), var(--teal-deep)); }
.blog-card--feature .blog-card-media{ aspect-ratio: 16/9; }
.blog-card-media::before{
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.05) 1px,transparent 1px);
  background-size: 34px 34px;
}
.blog-card-media img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-card-media svg{ position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42%; height: auto; opacity: 0.92; z-index: 1; }
.blog-card--feature .blog-card-media svg{ width: 30%; }
.blog-card-media-badge{ position: absolute; top: 14px; left: 14px; z-index: 2; }
.blog-card-body{ display: flex; flex-direction: column; gap: 11px; padding: clamp(20px,2.4vw,26px); flex: 1; }
.blog-card-cat{ font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lime-deep); font-weight: 600; }
.blog-card-title{ font-family: var(--font-display); font-weight: 400; font-size: clamp(18px,2.1vw,22px); line-height: 1.22; letter-spacing: -0.015em; color: var(--teal-deep); text-align: left; }
.blog-card--feature .blog-card-title{ font-size: clamp(24px,3vw,34px); font-weight: 300; }
.blog-card-excerpt{ font-size: 14px; line-height: 1.6; color: var(--ink-soft); }
.blog-card-foot{ margin-top: auto; display: flex; align-items: center; gap: 12px; padding-top: 6px; }
.blog-card-more{ display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-deep); }
.blog-card-more svg{ width: 15px; height: 15px; transition: transform .3s var(--ease); }
a.blog-card:hover .blog-card-more svg{ transform: translateX(4px); }

.blog-badge{ display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 100px; font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.blog-badge .dot{ width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.blog-badge--pub{ background: var(--teal-deep); color: #fff; }
.blog-badge--soon{ background: var(--lime); color: var(--teal-darker); border: 1px solid rgba(255,255,255,0.35); }

/* Entrada escalonada de tarjetas (gated para reduced-motion) */
@media (prefers-reduced-motion: no-preference){
  .js-anim .blog-card{ opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
  .js-anim .blog-card.in{ opacity: 1; transform: none; }
}

@media (max-width: 900px){
  .blog-grid{ grid-template-columns: 1fr 1fr; }
  .blog-card--feature{ grid-column: 1 / -1; grid-row: auto; }
}
@media (max-width: 600px){
  .blog-grid{ grid-template-columns: 1fr; }
  .blog-card--feature{ grid-column: auto; }
  .blog-card-media{ aspect-ratio: 16/10; }
}

/* Artículo */
.breadcrumb{ font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb a{ color: var(--ink-soft); border-bottom: 1px solid transparent; }
.breadcrumb a:hover{ color: var(--teal-deep); border-bottom-color: var(--lime); }
.breadcrumb .sep{ color: var(--muted-2); }
.breadcrumb [aria-current]{ color: var(--muted); }
.article-hero{ padding: clamp(30px,4vw,52px) 0 clamp(18px,3vw,28px); background: var(--paper); position: relative; overflow: hidden; }
.article-hero .hero-bg{ position:absolute; inset:0; z-index:0; pointer-events:none; }
.article-hero-inner{ position: relative; z-index: 1; }
.article-wrap{ max-width: 760px; margin: 0 auto; }
.article-eyebrow{ display: inline-flex; align-items: center; gap: 12px; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime-deep); font-weight: 600; margin: 22px 0 16px; }
.article-eyebrow::before{ content: ""; width: 28px; height: 1px; background: var(--lime); }
.article-hero h1{ font-family: var(--font-display); font-weight: 200; font-size: clamp(28px,4.6vw,46px); line-height: 1.1; letter-spacing: -0.03em; color: var(--teal-deep); text-align: left; }
.article-hero h1 em{ font-style: italic; color: var(--teal); font-weight: 300; }
.article-meta{ margin-top: 20px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-size: 13px; color: var(--muted); }
.article-meta .article-tag{ background: var(--teal-deep); color: #fff; padding: 5px 12px; border-radius: 100px; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.article-body{ padding: clamp(20px,3vw,40px) 0 clamp(20px,3vw,32px); }
.prose{ max-width: 760px; margin: 0 auto; }
.prose > p{ font-size: clamp(16px,1.9vw,17px); line-height: 1.8; color: var(--ink-soft); margin-bottom: 22px; }
.prose > p:first-of-type{ font-size: clamp(17px,2.1vw,19px); color: var(--ink); }
.prose h2{ font-family: var(--font-display); font-weight: 400; font-size: clamp(23px,3vw,30px); line-height: 1.2; letter-spacing: -0.02em; color: var(--teal-deep); margin: 42px 0 16px; text-align: left; }
.prose h3{ font-family: var(--font-display); font-weight: 500; font-size: clamp(18px,2.3vw,21px); color: var(--teal-deep); margin: 28px 0 12px; text-align: left; }
.prose ul{ margin: 0 0 22px; padding: 0; list-style: none; display: grid; gap: 10px; }
.prose ul li{ position: relative; padding-left: 24px; font-size: 16px; line-height: 1.65; color: var(--ink-soft); }
.prose ul li::before{ content: ""; position: absolute; left: 4px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--lime); }
.prose a{ color: var(--teal-deep); font-weight: 600; border-bottom: 1px solid var(--lime); }
.prose a:hover{ color: var(--teal); }
.prose strong{ color: var(--ink); font-weight: 600; }
.article-note{ background: var(--bone); border: 1px solid var(--rule); border-left: 3px solid var(--lime); border-radius: 0 8px 8px 0; padding: 18px 22px; font-size: 15px; line-height: 1.65; color: var(--ink-soft); margin: 8px 0 24px; }
.article-source{ margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--rule); font-size: 14px; line-height: 1.6; color: var(--muted); }
.article-faq{ max-width: 760px; margin: clamp(32px,5vw,48px) auto 0; }
.article-faq h2{ font-family: var(--font-display); font-weight: 400; font-size: clamp(22px,3vw,28px); color: var(--teal-deep); margin-bottom: 10px; text-align: left; }
.article-cta{ margin: clamp(32px,5vw,48px) auto 0; max-width: 760px; }
.article-cta-inner{ position: relative; overflow: hidden; background: linear-gradient(140deg, var(--teal-darker), var(--teal-deep) 58%, var(--lime-deep)); border-radius: 20px; padding: clamp(28px,4vw,40px); color: #fff; }
.article-cta-inner h3{ font-family: var(--font-display); font-weight: 300; font-size: clamp(22px,2.8vw,28px); color: #fff; margin-bottom: 12px; letter-spacing: -0.01em; text-align: left; }
.article-cta-inner p{ color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.6; margin-bottom: 22px; max-width: 540px; }
.article-cta-inner .article-cta-actions{ display: flex; gap: 10px; flex-wrap: wrap; }

/* ==========================================================
   NOSOTROS — pilares de valor + CTA (reemplaza acordeón)
   ========================================================== */
.about-values{ display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 30px; }
.about-value{ background: #fff; border: 1px solid var(--rule); border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 9px; }
.av-icon{ width: 42px; height: 42px; border-radius: 11px; background: var(--bone-2); display: grid; place-items: center; color: var(--teal-deep); }
.av-icon svg{ width: 21px; height: 21px; }
.av-title{ font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--teal-deep); letter-spacing: -0.01em; }
.av-text{ font-size: 13.5px; line-height: 1.55; color: var(--muted); }
.about-cta{ display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
@media (max-width: 480px){ .about-values{ grid-template-columns: 1fr; } }

/* ==========================================================
   CONTACTO — carriles WhatsApp + formulario mínimo
   ========================================================== */
.contact-lanes{ display: flex; flex-direction: column; gap: 14px; }
.contact-lane{ display: flex; align-items: center; gap: 16px; padding: 20px 22px; border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; background: rgba(255,255,255,0.03); transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease); }
.contact-lane:hover{ border-color: var(--lime); background: rgba(141,198,63,0.08); transform: translateY(-2px); }
.cl-icon{ width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.08); display: grid; place-items: center; color: var(--lime); flex-shrink: 0; }
.cl-icon svg{ width: 22px; height: 22px; }
.cl-body{ display: flex; flex-direction: column; gap: 3px; flex: 1; }
.cl-label{ font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); font-weight: 600; }
.cl-title{ font-family: var(--font-display); font-weight: 400; font-size: clamp(17px, 2.4vw, 20px); color: #fff; letter-spacing: -0.01em; }
.cl-note{ font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; }
.cl-arrow{ width: 24px; height: 24px; color: rgba(255,255,255,0.45); flex-shrink: 0; transition: color .3s var(--ease), transform .3s var(--ease); }
.cl-arrow svg{ width: 24px; height: 24px; }
.contact-lane:hover .cl-arrow{ color: var(--lime); transform: translateX(3px); }
.contact-mini{ display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 4px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.14); }
.contact-mini a{ font-family: var(--font-display); font-size: 16px; color: #fff; border-bottom: 1px solid transparent; transition: border-color .3s var(--ease); }
.contact-mini a:hover{ border-bottom-color: var(--lime); }
.contact-mini span{ color: rgba(255,255,255,0.35); }
.form--mini{ align-self: start; }
.form-mini-head{ margin-bottom: 2px; }
.fm-label{ font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); font-weight: 600; }
.fm-sub{ font-size: 14px; color: rgba(255,255,255,0.72); margin-top: 6px; line-height: 1.5; }
.fm-consent{ font-size: 12.5px; color: rgba(255,255,255,0.58); line-height: 1.5; margin-top: 2px; }