/* =========================================================
   Autocares Acuña — Landing page

   Sistema de marca (ver AA - BBDD/marca.md):
     Primario   #00ACFF  → color dominante en superficies grandes y acentos
     Secundario #0069D9  → texto, botones y todo lo que necesita contraste
     Titulares  Montserrat SemiBold / Bold
     Cuerpo     Inter Regular / Medium
     Principio  Minimalismo: eliminar antes que añadir

   Nota: el cian #00ACFF sobre blanco da 2,6:1 de contraste y no cumple WCAG AA
   para texto. Por eso lidera en fondos, degradados e iconos, y el azul #0069D9
   se reserva para texto y botones. Ver LEEME.md.
   ========================================================= */

/* ---------- Tipografías autoalojadas (sin CDN, sin RGPD de por medio) ---------- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url(fonts/montserrat-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url(fonts/montserrat-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
                 U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
                 U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url(fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304,
                 U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB,
                 U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --cian:        #00ACFF;   /* primario de marca */
  --cian-claro:  #E6F5FF;
  --azul:        #0069D9;   /* secundario: texto y botones */
  --azul-osc:    #004FA8;
  --azul-prof:   #002E63;

  --texto:       #12212F;
  --texto-suave: #566A7C;
  --linea:       #E2E9F0;
  --fondo:       #FFFFFF;
  --fondo-alt:   #F5F9FD;

  --radio:       14px;
  --radio-sm:    9px;
  --sombra:      0 2px 8px rgba(0, 46, 99, .06);
  --sombra-md:   0 12px 32px rgba(0, 46, 99, .10);
  --sombra-lg:   0 22px 60px rgba(0, 46, 99, .16);

  --max:         1160px;
  --header-h:    78px;

  --fuente:        "Inter", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --fuente-titulo: "Montserrat", var(--fuente);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--fuente);
  color: var(--texto);
  background: var(--fondo);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul  { list-style: none; }
a   { color: inherit; text-decoration: none; }

/* Titulares en Montserrat, cuerpo en Inter */
h1, h2, h3, h4,
.hero__eyebrow, .section__eyebrow, .fleet__cap, .stat__num, .stat__plus,
.btn, .nav__link, .footer__col h4 {
  font-family: var(--fuente-titulo);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease,
              background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn--lg { padding: 15px 32px; font-size: 1rem; }

.btn--primary {
  background: var(--azul);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 105, 217, .32);
}
.btn--primary:hover {
  background: var(--azul-osc);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 105, 217, .42);
}

.btn--ghost {
  background: rgba(255, 255, 255, .10);
  color: #fff;
  border-color: rgba(255, 255, 255, .45);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, .20);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn--white {
  background: #fff;
  color: var(--azul);
  box-shadow: 0 10px 26px rgba(0, 20, 50, .22);
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0, 20, 50, .3); }

/* Verde oficial de WhatsApp: se reconoce al instante y por eso convierte.
   Si prefieres no meter un color ajeno a la marca, cambia a .btn--white. */
.btn--wasap {
  background: #25D366;
  color: #05391B;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .34);
}
.btn--wasap:hover {
  background: #1FBE5A;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .44);
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}
.btn--outline:hover { background: rgba(255, 255, 255, .14); border-color: #fff; transform: translateY(-2px); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
}
.header.is-scrolled {
  box-shadow: var(--sombra);
  border-bottom-color: var(--linea);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__logo img { height: 40px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }

.nav__link {
  position: relative;
  padding: 9px 16px;
  border-radius: var(--radio-sm);
  font-size: .95rem;
  font-weight: 600;
  color: var(--texto-suave);
  transition: color .18s ease, background-color .18s ease;
}
.nav__link:hover { color: var(--azul); background: var(--cian-claro); }

.nav__link--cta {
  margin-left: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--azul);
  color: #fff;
  box-shadow: 0 6px 16px rgba(0, 105, 217, .3);
}
.nav__link--cta:hover {
  background: var(--azul-osc);
  color: #fff;
  transform: translateY(-1px);
}

/* Botón hamburguesa */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0 11px;
  border: 1px solid var(--linea);
  border-radius: var(--radio-sm);
  background: #fff;
  cursor: pointer;
}
.nav__toggle span {
  height: 2px;
  width: 100%;
  background: var(--texto);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding: calc(var(--header-h) + 80px) 0 96px;
  color: #fff;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  /* Regla 60-30-10: el azul hace el trabajo pesado, el cian entra como luz.
     El cian sigue siendo el color que identifica la marca, pero en dosis:
     cubriendo superficies grandes cansa la vista y pierde fuerza como acento. */
  background:
    radial-gradient(1000px 620px at 16% 4%,  rgba(0, 172, 255, .46), transparent 62%),
    radial-gradient(760px  480px at 92% 96%, rgba(0, 172, 255, .22), transparent 58%),
    linear-gradient(142deg, var(--azul-prof) 0%, var(--azul-osc) 52%, var(--azul) 100%);
}
/* Trama diagonal sutil, evoca movimiento */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    rgba(255, 255, 255, .05) 0 2px,
    transparent 2px 46px
  );
}

.hero__inner { position: relative; z-index: 1; max-width: 800px; }

.hero__eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 16px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.3rem, 5.6vw, 4rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -.022em;
}
.hero__title-accent {
  background: linear-gradient(100deg, var(--cian), #9BDCFF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__text {
  max-width: 620px;
  margin-top: 22px;
  font-size: clamp(1.03rem, 1.9vw, 1.2rem);
  color: rgba(255, 255, 255, .9);
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 30px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  font-size: .93rem;
  color: rgba(255, 255, 255, .88);
}
.hero__badges li { position: relative; padding-left: 26px; }
.hero__badges li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 16px; height: 9px;
  margin-top: -6px;
  border-left: 2.5px solid var(--cian);
  border-bottom: 2.5px solid var(--cian);
  transform: rotate(-45deg);
}

/* =========================================================
   SECCIONES GENÉRICAS
   ========================================================= */
.section { padding: 104px 0; }
.section--alt { background: var(--fondo-alt); border-block: 1px solid var(--linea); }

.section__head { max-width: 720px; margin-bottom: 56px; }

.section__eyebrow {
  margin-bottom: 12px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--azul);
}

.section__title {
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}

.section__lead {
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--texto-suave);
}

.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(292px, 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }

/* =========================================================
   TARJETAS DE SERVICIO
   ========================================================= */
.card {
  padding: 34px 30px;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  background: #fff;
  box-shadow: var(--sombra);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 172, 255, .5);
  box-shadow: var(--sombra-md);
}

.card__icon {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin-bottom: 22px;
  border-radius: var(--radio-sm);
  background: linear-gradient(140deg, var(--cian), var(--azul));
  color: #fff;
}
.card__icon svg { width: 27px; height: 27px; }

.card__title { font-size: 1.24rem; font-weight: 700; letter-spacing: -.01em; }
.card__text  { margin-top: 11px; color: var(--texto-suave); font-size: .97rem; }

.card__list { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--linea); }
.card__list li {
  position: relative;
  padding-left: 24px;
  font-size: .92rem;
  color: var(--texto-suave);
}
.card__list li + li { margin-top: 9px; }
.card__list li::before {
  content: "";
  position: absolute;
  left: 2px; top: .58em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cian);
}

/* =========================================================
   FLOTA
   ========================================================= */
.fleet {
  overflow: hidden;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  background: #fff;
  box-shadow: var(--sombra);
  transition: transform .25s ease, box-shadow .25s ease;
}
.fleet:hover { transform: translateY(-6px); box-shadow: var(--sombra-md); }

.fleet__figure {
  position: relative;
  display: grid;
  place-items: center;
  height: 168px;
  background: linear-gradient(140deg, var(--azul-osc), var(--azul) 48%, var(--cian));
  color: #fff;
}
.fleet__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    rgba(255, 255, 255, .07) 0 2px,
    transparent 2px 34px
  );
}

.fleet__cap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}
.fleet__cap small {
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .82;
}

.fleet__body  { padding: 26px 28px 30px; }
.fleet__title { font-size: 1.16rem; font-weight: 700; }
.fleet__text  { margin-top: 9px; font-size: .95rem; color: var(--texto-suave); }

.fleet__specs { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.fleet__specs li {
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--cian-claro);
  color: var(--azul-osc);
  font-size: .82rem;
  font-weight: 600;
}

/* Bloque de accesibilidad PMR */
.fleet__pmr {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-top: 26px;
  padding: 28px 30px;
  border: 1px solid var(--linea);
  border-left: 4px solid var(--cian);
  border-radius: var(--radio);
  background: #fff;
  box-shadow: var(--sombra);
}
.fleet__pmr-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: var(--radio-sm);
  background: linear-gradient(140deg, var(--cian), var(--azul));
  color: #fff;
}
.fleet__pmr-icon svg { width: 26px; height: 26px; }
.fleet__pmr-title { font-size: 1.1rem; font-weight: 700; }
.fleet__pmr-text  { margin-top: 9px; font-size: .95rem; color: var(--texto-suave); }
.fleet__pmr-text strong { color: var(--texto); font-weight: 600; }

.fleet__note {
  margin-top: 26px;
  padding: 22px 26px;
  border: 1px dashed rgba(0, 105, 217, .38);
  border-radius: var(--radio);
  background: #fff;
  text-align: center;
  color: var(--texto-suave);
}

/* =========================================================
   NOSOTROS
   ========================================================= */
.about {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 56px;
  align-items: start;
}

.about__text { margin-top: 18px; color: var(--texto-suave); font-size: 1.02rem; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
  padding-top: 34px;
  border-top: 1px solid var(--linea);
}
.stat { display: flex; flex-wrap: wrap; align-items: baseline; }
.stat__num, .stat__plus {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--azul);
}
.stat__label {
  flex: 0 0 100%;
  margin-top: 9px;
  font-size: .88rem;
  color: var(--texto-suave);
}

.about__side {
  padding: 34px 32px;
  border: 1px solid var(--linea);
  border-radius: var(--radio);
  background: linear-gradient(165deg, #fff, var(--cian-claro));
  box-shadow: var(--sombra);
}
.about__side-title { font-size: 1.16rem; font-weight: 700; margin-bottom: 20px; }

.checks li {
  position: relative;
  padding-left: 32px;
  font-size: .95rem;
  color: var(--texto-suave);
}
.checks li + li { margin-top: 15px; }
.checks li::before {
  content: "";
  position: absolute;
  left: 0; top: .28em;
  width: 19px; height: 19px;
  border-radius: 50%;
  background: var(--azul);
}
.checks li::after {
  content: "";
  position: absolute;
  left: 6px; top: .62em;
  width: 8px; height: 4.5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative;
  padding: 96px 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(760px 420px at 50% 0%, rgba(0, 172, 255, .48), transparent 62%),
    linear-gradient(140deg, var(--azul-prof), var(--azul-osc) 58%, var(--azul));
  overflow: hidden;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -52deg,
    rgba(255, 255, 255, .05) 0 2px,
    transparent 2px 46px
  );
}
.cta__inner { position: relative; z-index: 1; max-width: 720px; margin-inline: auto; }

.cta__title {
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -.02em;
}
.cta__text { margin-top: 16px; font-size: 1.06rem; color: rgba(255, 255, 255, .9); }

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}
.cta__small { margin-top: 26px; font-size: .88rem; color: rgba(255, 255, 255, .72); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: #0A1622; color: rgba(255, 255, 255, .72); padding-top: 68px; }

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr .8fr;
  gap: 40px;
  padding-bottom: 52px;
}

.footer__logo {
  height: 42px;
  width: auto;
  /* El logo es azul sobre transparente: lo aclaramos sobre fondo oscuro */
  filter: brightness(1.35) saturate(1.15);
}
.footer__tagline { margin-top: 18px; font-size: .93rem; line-height: 1.7; }

.footer__col h4 {
  margin-bottom: 18px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #fff;
}
.footer__col a, .footer__col span {
  display: block;
  margin-bottom: 11px;
  font-size: .93rem;
  transition: color .18s ease;
}
.footer__col a:hover { color: var(--cian); }

.footer__horario {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .58);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .86rem;
  color: rgba(255, 255, 255, .5);
}
.footer__legal a:hover { color: var(--cian); }

/* =========================================================
   PÁGINAS LEGALES (aviso legal, privacidad, cookies)
   ========================================================= */
.legal-header {
  border-bottom: 1px solid var(--linea);
  background: #fff;
}
.legal-header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.legal-header__inner img { height: 38px; width: auto; }
.legal-header__back {
  font-size: .93rem;
  font-weight: 600;
  color: var(--azul);
}
.legal-header__back:hover { text-decoration: underline; }

.legal-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--linea);
  background: var(--fondo-alt);
}
.legal-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -.02em;
}
.legal-hero__meta { margin-top: 14px; font-size: .92rem; color: var(--texto-suave); }

.legal { padding: 56px 0 88px; }
.legal__inner { max-width: 760px; }

.legal h2 {
  margin-top: 46px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.01em;
}
.legal h2:first-child { margin-top: 0; }
.legal h3 {
  margin-top: 30px;
  font-size: 1.08rem;
  font-weight: 700;
}
.legal p, .legal li { color: var(--texto-suave); }
.legal p  { margin-top: 14px; }
.legal ul { margin-top: 14px; }
.legal li { position: relative; padding-left: 22px; }
.legal li + li { margin-top: 8px; }
.legal li::before {
  content: "";
  position: absolute;
  left: 2px; top: .62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cian);
}
.legal strong { color: var(--texto); font-weight: 600; }
.legal a { color: var(--azul); text-decoration: underline; text-underline-offset: 2px; }

.legal__tabla-envoltorio { overflow-x: auto; margin-top: 20px; }
.legal table {
  width: 100%;
  min-width: 460px;
  border-collapse: collapse;
  font-size: .93rem;
}
.legal th, .legal td {
  padding: 11px 14px;
  border: 1px solid var(--linea);
  text-align: left;
  vertical-align: top;
  color: var(--texto-suave);
}
.legal th { background: var(--fondo-alt); color: var(--texto); font-weight: 600; }

.legal__aviso {
  margin-top: 24px;
  padding: 20px 24px;
  border: 1px solid var(--linea);
  border-left: 4px solid var(--cian);
  border-radius: var(--radio-sm);
  background: var(--fondo-alt);
}
.legal__aviso p:first-child { margin-top: 0; }

/* Marcador de dato pendiente. Buscar "PENDIENTE" antes de publicar. */
.pendiente {
  padding: 2px 7px;
  border-radius: 4px;
  background: #FFE9A8;
  color: #6B4A00;
  font-weight: 600;
  font-size: .93em;
}

.legal__pie {
  margin-top: 56px;
  padding-top: 26px;
  border-top: 1px solid var(--linea);
  font-size: .9rem;
}

/* =========================================================
   ANIMACIÓN DE ENTRADA
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .about { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 18px 24px 26px;
    background: #fff;
    border-bottom: 1px solid var(--linea);
    box-shadow: var(--sombra-md);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .nav.is-open { transform: none; opacity: 1; pointer-events: auto; }

  .nav__link { padding: 14px 16px; font-size: 1rem; }
  .nav__link--cta { margin: 10px 0 0; text-align: center; }

  .nav__toggle { display: flex; }

  .hero { min-height: 0; padding: calc(var(--header-h) + 64px) 0 76px; }
  .section { padding: 76px 0; }
  .stats { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 560px) {
  .container { padding-inline: 20px; }
  .header__logo img { height: 34px; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
  .footer__inner { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; }
}

/* ---------- Accesibilidad ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

:focus-visible {
  outline: 3px solid var(--cian);
  outline-offset: 3px;
  border-radius: 4px;
}
