/* ============================================================
   VERTA BUILDING — demo estática para portfolio
   HTML + CSS + JS vanilla. Sin frameworks, sin build.

   Índice
   00 Tipografía · 01 Variables · 02 Reset · 03 Utilidades
   04 Header · 05 Bandas (hero incluido) · 06 Datos
   07 Servicios · 08 Proceso · 09 Testimonios · 10 Proyectos
   11 CTA final · 12 Footer · 13 Responsive
   ============================================================ */

/* ---------- 00 Tipografía (auto-hospedada) ---------- */
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/sora-600.woff2') format('woff2'); }
@font-face { font-family: 'Sora'; font-style: normal; font-weight: 700; font-display: swap; src: url('../assets/fonts/sora-700.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/inter-400.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/inter-500.woff2') format('woff2'); }

/* ---------- 01 Variables ---------- */
:root {
  /* Navy y amarillo de la referencia; los paneles están muestreados
     de la zona quemada de cada foto para que el CSS empalme. */
  --navy: #001420;
  --navy-alt: #04182A;
  --hero: #011028;
  --s2: #001827;
  --s3: #0A1B2B;
  --s5: #071D34;
  --s7: #021C31;
  --amarillo: #EAC030;
  --amarillo-osc: #D0A519;

  --tinta: #10192B;
  --gris: #66748A;
  --linea: #E4E8EF;
  --linea-osc: rgba(255, 255, 255, .14);
  --claro: #FCFCFC;
  --claro-alt: #F4F7FA;
  --blanco: #FFFFFF;

  --ff-head: 'Sora', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --ff-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --gutter: 24px;
  --edge: 12%;          /* layout a ancho completo, mismo criterio que los otros demos */

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --sombra: 0 2px 4px rgba(8, 20, 40, .05), 0 12px 28px rgba(8, 20, 40, .09);
  --section-y: clamp(56px, 6.2vw, 96px);
}

/* ---------- 02 Reset y base ---------- */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
body {
  margin: 0; background: var(--claro); color: var(--tinta);
  font-family: var(--ff-body); font-size: 16px; line-height: 1.65;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
h1, h2, h3 { font-family: var(--ff-head); font-weight: 700; line-height: 1.2; letter-spacing: -.025em; }
:focus-visible { outline: 2px solid var(--amarillo); outline-offset: 3px; border-radius: 4px; }
.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.skip-link { position: absolute; left: -9999px; top: 12px; z-index: 99; background: var(--navy); color: #fff; padding: 10px 18px; border-radius: var(--r-sm); }
.skip-link:focus { left: 12px; }

/* ---------- 03 Utilidades ---------- */
.container { padding-inline: var(--edge); }
.section { padding-block: var(--section-y); }
.section__head { display: flex; align-items: flex-start; justify-content: space-between; gap: clamp(28px, 4vw, 60px); margin-bottom: clamp(26px, 3.2vw, 44px); }
.section__title { font-size: clamp(26px, 3vw, 40px); }
.section__lead { margin: 12px 0 24px; color: var(--gris); font-size: 15.5px; max-width: 52ch; }
.section__lead--claro { color: rgba(255, 255, 255, .72); }

.eyebrow {
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
  font-family: var(--ff-head); font-size: 11.5px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--amarillo-osc);
}
.eyebrow::before { content: ''; width: 16px; height: 1.5px; background: currentColor; }
.eyebrow--claro { color: var(--amarillo); }
.eyebrow--hero { color: rgba(255, 255, 255, .92); }

.icon { width: 20px; height: 20px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.icon--md { width: 28px; height: 28px; stroke-width: 1.4; }

.btn {
  display: inline-flex; align-items: center; gap: 9px; flex: none;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--ff-head); font-size: 14px; font-weight: 600; white-space: nowrap;
  transition: background-color .2s, color .2s, transform .2s, box-shadow .2s;
}
.btn .icon { width: 16px; height: 16px; transition: transform .2s; }
.btn:hover .icon { transform: translateX(3px); }
.btn--amarillo { background: var(--amarillo); color: #241D00; }
.btn--amarillo:hover { background: var(--amarillo-osc); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(234, 192, 48, .32); }
.btn--fantasma { border: 1px solid rgba(255, 255, 255, .34); color: #fff; padding-left: 8px; }
.btn--fantasma:hover { background: rgba(255, 255, 255, .12); }
.btn__play { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255, 255, 255, .18); }
.btn__play .icon { width: 13px; height: 13px; }

.link-arrow { display: inline-flex; align-items: center; gap: 7px; font-family: var(--ff-head); font-size: 13px; font-weight: 600; color: var(--navy); }
.link-arrow .icon { width: 14px; height: 14px; transition: transform .2s; }
.link-arrow--sm { font-size: 12px; color: var(--gris); }

.icon-btn { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: var(--navy); transition: background-color .2s; }
.icon-btn:hover { background: var(--claro-alt); }
.icon-btn--menu { display: none; }
.icon-btn--menu .icon-close { display: none; }

.flecha { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--linea); color: var(--navy); background: var(--blanco); transition: background-color .2s, color .2s, border-color .2s; }
.flecha:hover, .flecha--activa { background: var(--amarillo); border-color: var(--amarillo); color: #241D00; }
.flecha .icon { width: 16px; height: 16px; }
.carrusel__flechas { display: flex; gap: 10px; flex: none; }

.estrellas { display: flex; gap: 2px; color: var(--amarillo); }
.estrellas .icon { width: 14px; height: 14px; }
.avatar { display: grid; place-items: center; flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: var(--amarillo); font-family: var(--ff-head); font-size: 14px; font-weight: 700; }

/* ---------- 04 Header ----------
   En la referencia la cabecera es una barra navy encima del hero. */
.site-header { background: var(--blanco); border-bottom: 1px solid var(--linea); }
.site-header--oscuro { background: var(--hero); border-bottom-color: var(--linea-osc); }
.site-header--oscuro .logo__text { color: #fff; }
.site-header--oscuro .nav__link { color: rgba(255, 255, 255, .72); }
.site-header--oscuro .nav__link:hover, .site-header--oscuro .nav__link.is-active { color: #fff; }
.site-header--oscuro .icon-btn { color: #fff; }
.site-header--oscuro .icon-btn:hover { background: rgba(255, 255, 255, .12); }
.site-header__inner { display: flex; align-items: center; gap: clamp(16px, 3vw, 40px); padding: 14px var(--edge); }
.logo { display: inline-flex; align-items: center; gap: 10px; flex: none; }
.logo__mark { width: 30px; height: 30px; flex: none; color: var(--amarillo); fill: currentColor; stroke: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; font-family: var(--ff-head); font-size: 21px; font-weight: 700; letter-spacing: -.01em; }
.logo__text small { font-size: 9.5px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; opacity: .6; margin-top: 5px; }
.logo--claro .logo__text { color: #fff; }

.nav { display: flex; align-items: center; gap: clamp(14px, 2vw, 32px); margin-inline: auto; }
.nav__link { position: relative; font-size: 14.5px; font-weight: 500; color: var(--gris); padding-block: 4px; transition: color .2s; }
.nav__link:hover, .nav__link.is-active { color: var(--navy); }
.nav__link.is-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--amarillo); border-radius: 2px; }
.site-header__actions { display: flex; align-items: center; gap: 10px; flex: none; }

/* ---------- 05 Bandas full-width ----------
   Dos filas en mobile/tablet (imagen › texto). En desktop colapsan a
   una celda y el texto se apoya sobre el panel quemado en cada foto. */
.banda { display: grid; grid-template-areas: "media" "panel"; background: var(--banda-bg); color: #fff; }
.hero { --banda-bg: var(--hero); }
.banda--soluciones { --banda-bg: var(--blanco); color: var(--tinta); }
.banda--iconicos { --banda-bg: var(--s2); }
.banda--cta { --banda-bg: var(--s3); }
.banda--socio { --banda-bg: var(--claro-alt); color: var(--tinta); }
.banda--final { --banda-bg: var(--s7); }

.banda__media { grid-area: media; position: relative; display: block; }
.banda__media img { width: 100%; height: auto; }
/* En la referencia cada banda tiene su propia altura: no todas usan la
   proporción natural de la foto (2.24:1). Medido sobre el mockup, como
   fracción del ancho de página: soluciones .325 · iconicos .419 · final .380.
   Se recortan con object-fit, cuidando lo que viene quemado en cada foto. */
@media (min-width: 768px) {
  .banda--soluciones .banda__media img { aspect-ratio: 1900 / 617; object-fit: cover; object-position: center 64%; }
  .banda--iconicos .banda__media img   { aspect-ratio: 1900 / 796; object-fit: cover; object-position: center 40%; }
  .banda--final .banda__media img      { aspect-ratio: 1900 / 722; object-fit: cover; object-position: center 50%; }
}
.banda__panel { grid-area: panel; padding: clamp(32px, 5vw, 52px) var(--edge); }
.banda__title { font-size: clamp(26px, 2.9vw, 42px); line-height: 1.16; }
.banda__text { margin: 16px 0 28px; max-width: 46ch; font-size: 15.5px; line-height: 1.7; color: rgba(255, 255, 255, .76); }
.banda--soluciones .banda__text, .banda--socio .banda__text { color: var(--gris); }

.hero__title { font-size: clamp(34px, 4.3vw, 58px); line-height: 1.08; letter-spacing: -.035em; }
.hero__acciones { display: flex; flex-wrap: wrap; gap: 12px; }

.paginacion { display: flex; align-items: center; gap: 18px; margin-top: 28px; font-family: var(--ff-head); font-size: 13px; font-weight: 600; }
.paginacion strong { font-size: 16px; }
.paginacion__flechas { display: flex; gap: 8px; }
.paginacion .flecha { width: 34px; height: 34px; background: transparent; border-color: var(--linea-osc); color: #fff; }
.paginacion .flecha:hover { background: var(--amarillo); border-color: var(--amarillo); color: #241D00; }

.cta__acciones { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.cta__tel { display: inline-flex; align-items: center; gap: 12px; }
.cta__tel-icono { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, .12); color: var(--amarillo); }
.cta__tel span { display: flex; flex-direction: column; line-height: 1.3; }
.cta__tel strong { font-family: var(--ff-head); font-size: 15.5px; font-weight: 600; }
.cta__tel small { font-size: 12px; color: rgba(255, 255, 255, .6); }

/* ---------- 06 Datos ---------- */
.datos { background: var(--navy); color: #fff; padding-block: clamp(22px, 2.6vw, 30px); }
.datos__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.2vw, 34px); }
.dato { display: flex; align-items: center; gap: 13px; padding-left: clamp(18px, 2.2vw, 34px); border-left: 1px solid var(--linea-osc); }
.dato:first-child { padding-left: 0; border-left: 0; }
.dato .icon { color: var(--amarillo); }
.dato div { display: flex; flex-direction: column; line-height: 1.3; }
.dato strong { font-family: var(--ff-head); font-size: 19px; font-weight: 700; }
.dato span { font-size: 12.5px; color: rgba(255, 255, 255, .62); }

/* ---------- 07 Servicios ---------- */
.servicios { background: var(--blanco); padding-bottom: var(--section-y); }
.servicios__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.servicio { padding: 22px 20px; background: var(--claro-alt); border: 1px solid var(--linea); border-radius: var(--r-md); transition: transform .22s, box-shadow .22s; }
.servicio:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.servicio .icon--md { color: var(--amarillo-osc); }
.servicio h3 { margin: 16px 0 12px; font-size: 15px; line-height: 1.35; }
.servicio:hover .link-arrow--sm { color: var(--navy); }

/* ---------- 08 Proceso ---------- */
.proceso { background: var(--claro); }
.proceso .section__head { align-items: center; margin-bottom: 0; }
.pasos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; flex: 1 1 560px; }
.pasos li { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.paso__icono { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 50%; background: var(--blanco); border: 1px solid var(--linea); color: var(--amarillo-osc); }
.pasos strong { font-family: var(--ff-head); font-size: 12px; font-weight: 700; color: var(--gris); letter-spacing: .08em; }
.paso__nombre { font-family: var(--ff-head); font-size: 13.5px; font-weight: 600; line-height: 1.35; }

/* ---------- 09 Testimonios ---------- */
.testimonios { position: relative; isolation: isolate; background: var(--s5); color: #fff; padding-block: var(--section-y); }
.testimonios__fondo { position: absolute; inset: 0; z-index: -2; display: block; }
.testimonios__fondo img { width: 100%; height: 100%; object-fit: cover; }
.testimonios::before { content: ''; position: absolute; inset: 0; z-index: -1; background: rgba(4, 22, 40, .84); }
.testimonios .flecha { background: rgba(255, 255, 255, .1); border-color: var(--linea-osc); color: #fff; }
.testimonios .flecha--activa, .testimonios .flecha:hover { background: var(--amarillo); border-color: var(--amarillo); color: #241D00; }

/* Carrusel: scroll-snap en CSS, las flechas sólo lo empujan */
.resenas { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.resenas::-webkit-scrollbar { display: none; }
.resena { flex: 0 0 calc((100% - 44px) / 3); scroll-snap-align: start; padding: 24px; background: var(--blanco); color: var(--tinta); border-radius: var(--r-md); }
.resena figcaption { display: flex; align-items: center; gap: 12px; }
.resena__quien { display: flex; flex-direction: column; line-height: 1.35; }
.resena__quien strong { font-family: var(--ff-head); font-size: 14.5px; font-weight: 600; }
.resena__quien small { font-size: 12px; color: var(--gris); }
.resena blockquote { margin: 18px 0 14px; font-size: 14.5px; line-height: 1.75; color: var(--gris); }

/* ---------- 10 Proyectos ---------- */
.proyectos { background: var(--blanco); }
.proyectos__grid { display: grid; grid-template-columns: 1.15fr 1fr 1fr; grid-template-areas: "grande ancho ancho" "grande chico1 chico2"; gap: 18px; }
.proyecto { position: relative; display: block; overflow: hidden; border-radius: var(--r-md); }
.proyecto img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.proyecto:hover img { transform: scale(1.05); }
.proyecto::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 18, 32, 0) 45%, rgba(0, 18, 32, .82) 100%); }
.proyecto--grande { grid-area: grande; }
.proyecto:nth-child(2) { grid-area: ancho; }
.proyecto:nth-child(3) { grid-area: chico1; }
.proyecto:nth-child(4) { grid-area: chico2; }
.proyecto--grande img { aspect-ratio: 4 / 5; }
.proyecto:nth-child(2) img { aspect-ratio: 16 / 9; }
.proyecto:nth-child(3) img, .proyecto:nth-child(4) img { aspect-ratio: 4 / 3; }
.proyecto__info { position: absolute; left: 18px; right: 18px; bottom: 16px; z-index: 2; display: flex; flex-direction: column; color: #fff; }
.proyecto__info strong { font-family: var(--ff-head); font-size: 15.5px; font-weight: 600; }
.proyecto__info small { font-size: 12.5px; color: rgba(255, 255, 255, .74); }

/* ---------- 11 CTA final ---------- */
/* Apilado (mobile y tablet) el bloque de contacto es una fila más de la
   banda, así que lleva el mismo gutter que el panel de texto. */
.contacto-panel { display: grid; gap: 14px; padding: 0 var(--edge) clamp(32px, 5vw, 52px); }
.contacto-panel li { display: flex; align-items: center; gap: 13px; }
.contacto-panel__icono { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 50%; background: var(--amarillo); color: #241D00; }
.contacto-panel span span, .contacto-panel li > span:last-child { display: flex; flex-direction: column; line-height: 1.3; }
.contacto-panel small { font-size: 12px; color: rgba(255, 255, 255, .64); }
.contacto-panel strong { font-family: var(--ff-head); font-size: 15px; font-weight: 600; }

/* ---------- 12 Footer ---------- */
.site-footer { background: var(--navy); color: #fff; padding-block: clamp(44px, 5.2vw, 66px) 24px; }
.site-footer__cols { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr .9fr; gap: 32px 30px; padding-bottom: clamp(28px, 3.6vw, 42px); }
.site-footer__marca p { margin-top: 16px; color: rgba(255, 255, 255, .6); font-size: 13.5px; }
.site-footer h3 { margin-bottom: 18px; font-size: 15px; }
.site-footer__cols a { color: rgba(255, 255, 255, .6); font-size: 14px; transition: color .2s; }
.site-footer__cols a:hover { color: var(--amarillo); }
.site-footer__cols nav li + li { margin-top: 10px; }
.redes { display: flex; gap: 9px; }
.redes a { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, .08); color: #fff; transition: background-color .2s, color .2s; }
.redes a:hover { background: var(--amarillo); color: #241D00; }
.redes .icon { width: 16px; height: 16px; }
.site-footer__pie { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px; padding-top: 22px; border-top: 1px solid var(--linea-osc); font-size: 12.5px; color: rgba(255, 255, 255, .5); }

/* ============================================================
   13 RESPONSIVE
   ============================================================ */

/* La foto apaisada del CTA final trae los datos de contacto de la marca
   original quemados a la derecha (x 69-92%, y 32-72%). Sólo se usa en
   desktop, y este degradado opaco los tapa para que entren los nuestros. */
@media (min-width: 1200px) {
  .banda--final .banda__media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(270deg,
      var(--s7) 0%, var(--s7) 34%,
      rgba(2, 28, 49, .82) 42%,
      rgba(2, 28, 49, .42) 50%,
      rgba(2, 28, 49, 0) 62%);
  }
}

/* --- Desktop: el texto se apoya sobre el panel quemado de cada foto --- */
@media (min-width: 1200px) {
  .banda { grid-template-areas: "media"; }
  .banda__panel { grid-area: media; place-self: center start; z-index: 2; width: 44%; padding: 0 0 0 var(--edge); }

  .hero .banda__panel { width: 46%; }
  /* Sección 1 y 4 tienen la composición a la derecha y el lado claro libre */
  .banda--soluciones .banda__panel { width: 48%; }
  .banda--socio .banda__panel { width: 47%; }
  /* Sección 2: panel navy a la izquierda, más angosto */
  .banda--iconicos .banda__panel { width: 38%; }
  /* Sección 3: el panel quemado está al centro-derecha */
  .banda--cta .banda__panel { place-self: center end; width: 52%; padding: 0 var(--edge) 0 0; }

  .banda--final .banda__panel { width: 44%; }
  .contacto-panel { grid-area: media; place-self: center end; z-index: 2; padding: 0; margin-right: var(--edge); }
}

/* La vertical del CTA final trae los datos quemados en la franja y 32-50%:
   se muestra la franja de abajo, que es skyline limpio. */
@media (max-width: 1199px) {
  .banda--final .banda__media img { aspect-ratio: 16 / 9; object-fit: cover; object-position: center 88%; }
}

/* --- Tablet --- */
@media (max-width: 1080px) {
  .servicios__grid { grid-template-columns: repeat(2, 1fr); }
  .datos__grid { grid-template-columns: repeat(2, 1fr); gap: 16px 24px; }
  .dato:nth-child(odd) { padding-left: 0; border-left: 0; }
  .section__head { flex-direction: column; }
  .pasos { flex: 1 1 auto; width: 100%; }
  .resena { flex-basis: calc((100% - 22px) / 2); }
  .proyectos__grid { grid-template-columns: 1fr 1fr; grid-template-areas: "grande grande" "ancho ancho" "chico1 chico2"; }
  .proyecto--grande img { aspect-ratio: 16 / 9; }
  .site-footer__cols { grid-template-columns: 1fr 1fr; }
}

/* --- Menú mobile --- */
@media (max-width: 960px) {
  .icon-btn--menu { display: grid; }
  .site-header { position: relative; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0; z-index: 20;
    flex-direction: column; align-items: stretch; gap: 0; margin: 0;
    padding: 8px; background: var(--blanco); border-bottom: 1px solid var(--linea); box-shadow: var(--sombra);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .22s, transform .22s, visibility .22s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__link { padding: 13px 16px; border-radius: var(--r-sm); font-size: 15px; }
  .nav__link:hover { background: var(--claro-alt); }
  .site-header--oscuro .nav { background: var(--hero); border-bottom-color: var(--linea-osc); }
  .site-header--oscuro .nav__link:hover { background: rgba(255, 255, 255, .1); }
  .site-header--oscuro .nav__link.is-active { background: rgba(234, 192, 48, .18); color: #fff; }
  .nav__link.is-active::after { display: none; }
  .nav__link.is-active { background: rgba(234, 192, 48, .18); color: var(--navy); }
  .icon-btn[aria-expanded="true"] .icon-open { display: none; }
  .icon-btn[aria-expanded="true"] .icon-close { display: block; }
}

/* --- Mobile --- */
@media (max-width: 767px) {
  :root { --gutter: 16px; --edge: 16px; }

  .site-header__actions .btn--amarillo { display: none; }
  .banda__media img { aspect-ratio: 4 / 5; object-fit: cover; }
  .hero__acciones .btn { flex: 1 1 auto; justify-content: center; }

  .datos__grid { grid-template-columns: 1fr; gap: 0; }
  .dato { padding: 12px 0; border-left: 0; border-top: 1px solid var(--linea-osc); }
  .dato:first-child { border-top: 0; }

  .servicios__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .servicio { padding: 18px 14px; }
  .servicio h3 { font-size: 14px; }
  .pasos { grid-template-columns: repeat(2, 1fr); gap: 22px 12px; }
  .resena { flex-basis: 88%; }
  .proyectos__grid { grid-template-columns: 1fr; grid-template-areas: "grande" "ancho" "chico1" "chico2"; }
  .proyecto--grande img, .proyecto:nth-child(3) img, .proyecto:nth-child(4) img { aspect-ratio: 16 / 10; }
  .site-footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .site-footer__pie { flex-direction: column; align-items: flex-start; }
}
