/* =====================================================================
   ERA · Deep Health Program — Landing
   Estilo: Ondex (Webflow) adaptado a ERA · Geist + PT Mono · paleta ERA
   ===================================================================== */

/* ---------- TOKENS ---------- */
:root {
  --night:   #010517;
  --night-2: #0a1430;
  --teal:    #c6e5df;
  --sand:    #efe8e3;
  --blue:    #b1c3cd;
  --blush:   #d5bdbc;
  --blond:   #f8eacd;
  --paper:   #fafafa;
  --white:   #ffffff;
  --ink:     #29292b;
  --ink-700: #1e1e1f;
  --muted:   #696969;
  --line:    #e0e0e0;

  --sans: 'Geist','Helvetica Neue',Helvetica,Arial,sans-serif;
  --mono: 'PT Mono','SF Mono',ui-monospace,monospace;

  --r-sm: .55rem;
  --r-md: 1rem;
  --r-lg: 1.5rem;
  --r-pill: 100px;

  --maxw: 1280px;
  --pad: clamp(1.15rem, 4vw, 3rem);
  --section-y: clamp(4.5rem, 9vw, 9rem);
}

/* ---------- RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--teal); color: var(--night); }

/* ---------- TIPOGRAFÍA ---------- */
h1, h2, h3 { font-weight: 600; line-height: 1.06; letter-spacing: -0.035em; color: var(--night); }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.9rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.025em; }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--muted); line-height: 1.55; }
.section--dark .lead { color: rgba(255,255,255,.72); }

/* Eyebrow estilo Ondex: punto + texto normal */
.eyebrow {
  font-size: .95rem;
  font-weight: 400;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  letter-spacing: -0.01em;
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex: none; }
.eyebrow--light { color: rgba(255,255,255,.75); }

/* Variante "chip": pastilla legible sin punto (sobre fondo oscuro) */
.eyebrow--chip {
  font-family: var(--mono); text-transform: uppercase;
  font-size: .76rem; font-weight: 400; letter-spacing: .16em;
  color: var(--teal);
  padding: .55rem 1.05rem; border-radius: var(--r-pill);
  background: rgba(198,229,223,.1); border: 1px solid rgba(198,229,223,.32);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
.eyebrow--chip::before { display: none; }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: var(--section-y); }
.section-head { max-width: 30ch; margin-bottom: clamp(2.2rem, 4vw, 3.5rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head .lead { margin-top: 1.2rem; max-width: 48ch; }

.section--dark { background: var(--night); color: rgba(255,255,255,.8); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--sand { background: var(--sand); }

/* Punto de color al final de un titular (firma Ondex) */
.dot-end::after { content: ""; display: inline-block; width: .55em; height: .55em; border-radius: 50%; background: var(--blue); margin-left: .3em; vertical-align: baseline; }

/* =====================================================================
   PUNTOS EN ESQUINAS DE CARDS (marca firma Ondex)
   ===================================================================== */
.dotcard { position: relative; }
.dotcard::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit;
  --dot: rgba(255,255,255,.42);
  background-image:
    radial-gradient(circle, var(--dot) 1.6px, transparent 2.1px),
    radial-gradient(circle, var(--dot) 1.6px, transparent 2.1px),
    radial-gradient(circle, var(--dot) 1.6px, transparent 2.1px),
    radial-gradient(circle, var(--dot) 1.6px, transparent 2.1px);
  background-size: 6px 6px;
  background-position: 13px 13px, right 13px top 13px, left 13px bottom 13px, right 13px bottom 13px;
  background-repeat: no-repeat;
}
.dotcard--light::after { --dot: rgba(1,5,23,.22); }

/* =====================================================================
   BOTONES (pill + insignia circular con flecha diagonal ↗)
   ===================================================================== */
.btn {
  display: inline-flex; align-items: center; gap: .7rem;
  background: var(--night); color: var(--white);
  border-radius: var(--r-pill);
  padding: .4rem .4rem .4rem 1.4rem;
  font-size: 1rem; font-weight: 500; letter-spacing: -0.01em;
  transition: transform .4s cubic-bezier(.135,.9,.15,1), box-shadow .4s ease, background .3s ease;
  white-space: nowrap;
}
.btn .label { padding-block: .6rem; }
.btn .badge {
  width: 2.4rem; height: 2.4rem; border-radius: 50%;
  background: var(--blue); color: var(--night);
  display: grid; place-items: center; flex: none;
  transition: transform .45s cubic-bezier(.135,.9,.15,1), background .3s ease;
}
.btn .badge svg { width: 1.05rem; height: 1.05rem; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(1,5,23,.5); }
.btn:hover .badge { transform: translate(2px,-2px); background: var(--teal); }

.btn--invert { background: var(--white); color: var(--night); }
.btn--invert .badge { background: var(--night); color: var(--white); }
.btn--invert:hover .badge { background: var(--teal); color: var(--night); }

.btn--ghost { background: transparent; color: var(--night); border: 1px solid var(--line); }
.btn--ghost .badge { background: var(--night); color: var(--white); }
.btn--ghost:hover { background: var(--white); }

/* Frosted (sobre imagen) — firma Ondex */
.btn--frost {
  background: rgba(255,255,255,.14);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: var(--white); border: 1px solid rgba(255,255,255,.25);
}
.btn--frost .badge { background: rgba(255,255,255,.85); color: var(--night); }
.btn--frost:hover .badge { background: var(--teal); }

.btn--block { width: 100%; justify-content: space-between; }
.btn--lg { font-size: 1.05rem; padding-left: 1.7rem; }
.btn--lg .badge { width: 2.7rem; height: 2.7rem; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(250,250,250,.82);
  -webkit-backdrop-filter: saturate(180%) blur(16px); backdrop-filter: saturate(180%) blur(16px);
  border-color: var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.1rem var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: flex; align-items: center; }
.brand__logo { height: 44px; width: auto; transition: filter .35s ease; }
.nav.is-scrolled .brand__logo { filter: brightness(0); }   /* logo blanco → negro sobre nav claro */
.brand__logo--footer { height: 38px; }

/* color del nav según estado (sobre hero oscuro = claro; scrolleado = oscuro) */
.nav { color: var(--white); }
.nav.is-scrolled { color: var(--night); }

.nav__cta { display: flex; align-items: center; }
/* el botón del nav se mantiene oscuro siempre para contraste */
.nav .btn { background: var(--night); color: var(--white); }
.nav.is-scrolled .btn .badge { background: var(--blue); }

/* =====================================================================
   1 · HERO (full-bleed, estilo Ondex)
   ===================================================================== */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: flex-end;
  overflow: hidden; color: var(--white);
  padding-top: 7rem; padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
/* Video de fondo (assets/bg-video.mp4) */
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%; object-fit: cover;
  background: var(--night-2); /* color sólido mientras carga el video */
}
/* Sombra azul oscura → negro: tiñe de azul noche y oscurece abajo para que el texto sea legible */
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(1,5,23,.66) 0%, rgba(1,5,23,.40) 30%, rgba(1,5,23,.62) 62%, rgba(1,5,23,.97) 100%),
    linear-gradient(115deg, rgba(10,20,48,.62) 0%, rgba(1,5,23,.34) 55%, rgba(1,5,23,.7) 100%);
}
.hero__inner { position: relative; z-index: 3; width: 100%; }
.hero__kicker { display: inline-block; font-family: var(--mono); text-transform: uppercase; letter-spacing: .15em; font-size: .78rem; color: rgba(255,255,255,.8); margin-bottom: 1.6rem; }
.hero__title { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.03; letter-spacing: -0.04em; max-width: 18ch; margin-bottom: clamp(2.2rem, 5vw, 3.8rem); color: var(--white); text-shadow: 0 2px 30px rgba(1,5,23,.45); }
.hero__title span { color: rgba(255,255,255,.82); }

.hero__bottom { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; }
.hero__cards { display: flex; gap: 1rem; flex-wrap: wrap; max-width: 760px; }
.frost {
  background: rgba(255,255,255,.1);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  padding: 1.5rem 1.7rem; color: rgba(255,255,255,.92);
  flex: 1 1 280px; min-height: 130px;
}
.frost p { font-size: 1.02rem; line-height: 1.5; }
.frost strong { color: var(--white); }
.hero__actions { display: flex; flex-direction: column; gap: .8rem; align-items: flex-end; }

/* Trust strip bajo el hero */
.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-strip__inner { display: flex; flex-wrap: wrap; gap: 1.5rem 2.5rem; align-items: center; justify-content: space-between; padding-block: 1.6rem; }
.trust__item { display: flex; align-items: baseline; gap: .6rem; }
.trust__num { font-size: 1.4rem; font-weight: 600; color: var(--night); letter-spacing: -0.03em; }
.trust__label { font-size: .92rem; color: var(--muted); }

/* =====================================================================
   2 · EL PROBLEMA (panel de datos sobre fondo claro)
   ===================================================================== */
/* Título centrado y ANCHO: que lea en líneas largas, no tipo párrafo angosto.
   Specificity 0,2,0 para ganarle a .section-head--center; pretty = relleno
   greedy → cada oración tiende a caer en su propia línea larga. */
.section-head--center.problema__head { max-width: 52ch; text-wrap: pretty; }

.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--night); border-radius: var(--r-lg); overflow: hidden;
}
.stat { padding: clamp(1.8rem, 3vw, 2.6rem); border-left: 1px solid rgba(255,255,255,.1); }
.stat:first-child { border-left: none; }
.stat__bar { display: block; width: 2.6rem; height: 3px; border-radius: 99px; margin-bottom: 1.5rem; }
.stat__num { display: block; font-size: clamp(2.6rem, 5vw, 3.7rem); font-weight: 600; letter-spacing: -0.04em; line-height: 1; margin-bottom: 1.1rem; }
.stat__desc { color: rgba(255,255,255,.82); font-size: 1.02rem; line-height: 1.45; margin-bottom: 1.2rem; }
.stat__src { font-family: var(--mono); font-size: .76rem; color: rgba(255,255,255,.45); letter-spacing: -0.01em; }
.stat--teal  .stat__bar { background: var(--teal); }  .stat--teal  .stat__num { color: var(--teal); }
.stat--blue  .stat__bar { background: var(--blue); }  .stat--blue  .stat__num { color: var(--blue); }
.stat--blond .stat__bar { background: var(--blond); } .stat--blond .stat__num { color: var(--blond); }

/* =====================================================================
   3 · POR QUÉ ERA — título al costado + grilla de tecnología (sobre fondo.png)
   ===================================================================== */
.whyera {
  position: relative;
  background:
    linear-gradient(90deg, rgba(1,5,23,.93) 0%, rgba(1,5,23,.6) 45%, rgba(1,5,23,.32) 100%),
    url("assets/fondo.png");
  background-size: cover; background-position: center;
}
.whyera__layout {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.whyera__title { max-width: 17ch; margin-bottom: 1.5rem; }
.whyera__intro p { color: rgba(255,255,255,.76); font-size: 1.06rem; margin-bottom: 1.9rem; max-width: 42ch; }

/* Grilla 2×2 oscura (firma "Our Platforms") */
.plat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.plat-card {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  min-height: 300px; padding: 1.7rem;
  border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md);
  background: rgba(255,255,255,.03);
  transition: border-color .35s ease, background .35s ease, transform .35s ease;
}
.plat-card:hover { border-color: rgba(198,229,223,.5); background: rgba(255,255,255,.05); transform: translateY(-3px); }
.plat-card__icon { color: var(--white); margin: auto 0; padding: 1rem 0; transition: opacity .3s ease; }
.plat-card__icon svg { width: 3rem; height: 3rem; }
.plat-card:hover .plat-card__icon { opacity: 0; }

/* Info al pasar el mouse: aparece sobre el ícono, anclada arriba y cortada
   antes del pie para que nunca se monte sobre el título. */
.plat-card__info {
  position: absolute; left: 1.7rem; right: 1.7rem; top: 1.7rem; bottom: 4.9rem;
  display: flex; align-items: flex-start; overflow: hidden;
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}
.plat-card:hover .plat-card__info { opacity: 1; transform: none; }
.plat-card__info p { color: rgba(255,255,255,.92); font-size: .98rem; line-height: 1.45; }
.plat-card__foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.plat-card__foot strong { font-size: 1.2rem; font-weight: 600; color: var(--white); letter-spacing: -0.02em; }
.plat-card__foot span { color: rgba(255,255,255,.6); font-size: .9rem; display: block; margin-top: .2rem; }
.plat-card__arrow { width: 2.1rem; height: 2.1rem; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); display: grid; place-items: center; color: rgba(255,255,255,.8); flex: none; transition: all .3s ease; }
.plat-card:hover .plat-card__arrow { background: var(--teal); color: var(--night); border-color: var(--teal); }
.plat-card__arrow svg { width: 1rem; height: 1rem; }

/* =====================================================================
   4 · EL PROGRAMA + LA DIFERENCIA (un solo bloque sobre video)
   ===================================================================== */
.program { position: relative; overflow: hidden; color: var(--white); padding-block: var(--section-y); }
.program__bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; background: var(--night); }
.program__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(1,5,23,.88) 0%, rgba(1,5,23,.74) 45%, rgba(1,5,23,.93) 100%);
}
.program__inner { position: relative; z-index: 2; }
.program h2, .program h3 { color: var(--white); }
.section-head--center { max-width: 40ch; margin-inline: auto; text-align: center; text-wrap: balance; }

/* Los 3 pasos */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.step {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 2.1rem 1.9rem 2.3rem; display: flex; flex-direction: column;
}
.step__num { width: 2.8rem; height: 2.8rem; border-radius: 50%; background: var(--night); color: var(--white); display: grid; place-items: center; font-size: 1.1rem; font-weight: 600; margin-bottom: 1.6rem; }
.step h3 { margin-bottom: .75rem; }
.step p { color: var(--muted); font-size: 1.02rem; }
.steps-cta { margin-top: clamp(2.5rem, 5vw, 3.5rem); display: flex; justify-content: center; }

/* Variante translúcida (vidrio) sobre el video */
.steps--glass .step {
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.16); color: rgba(255,255,255,.85);
}
.steps--glass .step h3 { color: var(--white); }
.steps--glass .step p { color: rgba(255,255,255,.74); }
.steps--glass .step__num { background: var(--white); color: var(--night); }

/* La diferencia de saber a tiempo (antes / después, también en vidrio) */
.diff { margin-top: clamp(3rem, 6vw, 5rem); }
.diff__title { text-align: center; margin-bottom: clamp(1.8rem, 4vw, 2.8rem); font-size: clamp(1.85rem, 3.4vw, 2.9rem); line-height: 1.1; max-width: 34ch; margin-inline: auto; text-wrap: balance; }
.diff__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.diff__card {
  position: relative; border-radius: var(--r-lg); padding: clamp(1.9rem, 3.5vw, 2.8rem);
  background: rgba(255,255,255,.07);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.16);
}
.diff__card--after { background: rgba(198,229,223,.09); border-color: rgba(198,229,223,.4); }
.diff__card .takeaway__item { color: rgba(255,255,255,.85); }

/* Listas / etiquetas / íconos compartidos */
.col-label { display: inline-block; font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em; font-size: .75rem; color: rgba(255,255,255,.6); margin-bottom: 1.7rem; }
.diff__card--after .col-label { color: var(--teal); }
.takeaway__list { display: grid; gap: 1.15rem; }
.takeaway__item { display: flex; align-items: flex-start; gap: .95rem; font-size: 1.08rem; line-height: 1.4; }
.takeaway__item .ic { width: 1.6rem; height: 1.6rem; border-radius: 50%; flex: none; display: grid; place-items: center; margin-top: .12rem; }
.ic--x { background: var(--blush); color: #7a3a3a; }
.ic--ok { background: var(--teal); color: var(--night); }
.ic svg { width: .9rem; height: .9rem; }

/* =====================================================================
   5 · NUESTRO EQUIPO (split foto / panel)
   ===================================================================== */
.team { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.team__media {
  min-height: 460px;
  background-color: var(--night-2);
  /* equipo.jpg arriba; si falta, se ve fondo.png (texturado) debajo del degradé */
  background-image:
    linear-gradient(140deg, rgba(10,20,48,.2), rgba(1,5,23,.55)),
    url("assets/equipo.jpg"),
    url("assets/fondo.png");
  background-size: cover, cover, cover;
  background-position: center, center, center;
}
.team__panel { display: flex; align-items: center; background: #ededeb; padding: clamp(2.6rem, 6vw, 6rem); }
.team__content { max-width: 46ch; }
.team__content h2 { margin-bottom: 1.3rem; }
.team__content p { color: var(--ink); font-size: 1.08rem; margin-bottom: 2.1rem; }
.team__social-label { display: block; font-family: var(--mono); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--muted); margin-bottom: .95rem; }
.team__social-row { display: flex; gap: .8rem; }
.social-ic { width: 3rem; height: 3rem; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--night); display: grid; place-items: center; transition: transform .3s ease, background .3s ease, color .3s ease; }
.social-ic:hover { background: var(--night); color: var(--white); transform: translateY(-2px); }
.social-ic svg { width: 1.25rem; height: 1.25rem; }

/* =====================================================================
   6 · CONTACTO (dark)
   ===================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.contact h2 { max-width: 14ch; }

.field { display: grid; gap: .4rem; margin-bottom: 1rem; }
.field label { font-size: .85rem; color: rgba(255,255,255,.7); }
.input, .select, .textarea {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-md); padding: .95rem 1.15rem; color: var(--white);
  font-family: inherit; font-size: 1rem; transition: border-color .2s ease, background .2s ease;
}
.input::placeholder, .textarea::placeholder { color: rgba(255,255,255,.4); }
.input:focus, .select:focus, .textarea:focus { outline: none; border-color: var(--teal); background: rgba(255,255,255,.08); }
.select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.15rem center; padding-right: 2.6rem; }
.select option { color: #111; }
.textarea { min-height: 100px; resize: vertical; }
.field--light label { color: var(--muted); }
.field--light .input, .field--light .textarea { background: var(--paper); border: 1px solid var(--line); color: var(--ink); }
.field--light .input::placeholder { color: #a9a9a9; }
.field--light .input:focus { border-color: var(--night); background: var(--white); }
.contact__form .btn { margin-top: .7rem; }

.flow { margin-top: 2.6rem; border-top: 1px solid rgba(255,255,255,.14); padding-top: 2rem; }
.flow__label { font-size: .9rem; color: rgba(255,255,255,.6); margin-bottom: 1.4rem; }
.flow__item { display: flex; align-items: flex-start; gap: .95rem; padding: .55rem 0; }
.flow__num { width: 1.7rem; height: 1.7rem; border-radius: 50%; border: 1px solid var(--teal); color: var(--teal); display: grid; place-items: center; font-size: .8rem; flex: none; }
.flow__item span { color: rgba(255,255,255,.8); font-size: 1rem; }

.mailbox { margin-top: 1.6rem; padding: 1.5rem 1.6rem; border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-md); background: rgba(255,255,255,.03); }
.mailbox p { font-size: .96rem; color: rgba(255,255,255,.75); margin-bottom: 1.1rem; }
.mailbox__row { display: flex; gap: .6rem; }
.mailbox__row .input { flex: 1; }

/* Footer */
.footer { background: var(--night); color: rgba(255,255,255,.6); border-top: 1px solid rgba(255,255,255,.1); }
.footer__inner { padding-block: 3.5rem; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2.5rem; align-items: flex-start; }
.footer__col { display: grid; gap: .55rem; font-size: .94rem; }
.footer__col strong { color: rgba(255,255,255,.85); font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: .4rem; }
.footer__col a:hover { color: var(--teal); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 1.5rem; font-size: .84rem; color: rgba(255,255,255,.45); display: flex; flex-wrap: wrap; gap: .75rem; justify-content: space-between; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 991px) {
  .whyera__layout { grid-template-columns: 1fr; gap: 2rem; }
  .whyera__title { max-width: 22ch; }
  .plat-grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .team { grid-template-columns: 1fr; }
  .team__media { min-height: 300px; order: -1; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__cta .btn .label { display: none; }
  .nav__cta .btn { padding: .4rem; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: none; border-top: 1px solid rgba(255,255,255,.1); }
  .stat:first-child { border-top: none; }
  .steps { grid-template-columns: 1fr; }
  .diff__grid { grid-template-columns: 1fr; }
  .hero__bottom { flex-direction: column; align-items: stretch; }
  .hero__actions { align-items: stretch; }
  .hero__actions .btn { justify-content: space-between; }
}
/* En dispositivos táctiles (sin hover) mostramos la info de las cards siempre */
@media (hover: none) {
  .plat-card { min-height: auto; }
  .plat-card__icon { display: none; }
  .plat-card__info { position: static; opacity: 1; transform: none; pointer-events: auto; }
}
