/* =========================================================
   PAD · Partners de Alta Dirección
   Diseño base: 1080 px de ancho (1rem = 10 px de diseño).
   El sitio escala proporcionalmente entre 900 y 1512 px.
   ========================================================= */

:root {
  --verde: #19331e;       /* verde bosque */
  --dorado: #9d783d;      /* dorado */
  --naranjo: #ea5f2d;     /* naranjo CTA */
  --teal: #038890;        /* roles de socios */
  --oliva: #bbba09;       /* etiquetas de industria */
  --negro: #1b1d1e;       /* footer */
  --beige: #efe8e0;       /* fondos claros */
  --blanco: #ffffff;
  --gris-texto: #5b665c;
  --borde-card: #e6ded2;
  --linea-verde: #35523f;
  --linea-footer: #3d3f40;

  --font: "Mona Sans", "Helvetica Neue", Arial, sans-serif;
  --contenedor: 81rem;     /* 810 px de diseño */
  --header-h: 11.8rem;
}

html { font-size: clamp(8.4px, calc(100vw / 108), 14px); scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 500;
  font-size: 1.3rem;
  line-height: 1.2;
  color: var(--verde);
  background: var(--blanco);
  font-stretch: 96%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 900; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.contenedor { width: var(--contenedor); margin: 0 auto; }

/* ---------- Tipografía reutilizable ---------- */
.eyebrow {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dorado);
}
.titulo {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  
  color: var(--verde);
}
.bajada {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
}

.titulo, .hero__titulo, .manifiesto__cita, .modal__nombre, .contacto__titulo, .squads__titulo, .area__titulo { font-stretch: 95%; }
em, i, .manifiesto__texto, .cta-caso__nota, .cta-caso__btn { font-stretch: 93%; letter-spacing: 0; }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px;
  white-space: nowrap;
  transition: background-color .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--naranjo { background: var(--naranjo); color: #fff; }
.btn--naranjo:hover { background: #d9521f; box-shadow: 0 .6rem 1.6rem rgba(234,95,45,.3); }
.btn--dorado { background: var(--dorado); color: #fff; }
.btn--dorado:hover { background: #8a672f; }
.btn--contorno {
  border: 1px solid var(--verde); color: var(--verde);
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  height: 4.2rem; padding: 0 2.4rem; min-width: 18.8rem;
}
.btn--contorno:hover { background: var(--verde); color: #fff; }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: var(--verde);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 12.6rem 0 6.8rem;
}
.header__logo { display: block; margin-top: 0.6rem; }
.header__logo img { height: 6.125rem; width: auto; }
.nav { display: flex; align-items: center; }
.nav__link {
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; transition: color .2s ease;
  margin-left: 2.9rem;
}
.nav__link:first-child { margin-left: 0; }
.nav__link:hover { color: var(--dorado); }
.nav__link[aria-current="page"] { color: #4e6252; }
.nav__cta {
  margin-left: 1.7rem;
  height: 3rem; padding: 0 0.9rem; min-width: 8.8rem;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: -0.4rem;
}
.nav__cta[aria-current="page"] { box-shadow: inset 0 0 0 1px rgba(255,255,255,.55); }
.nav-toggle { display: none; }

/* =========================================================
   PORTADA · HERO CON VIDEO
   ========================================================= */
.hero {
  position: relative;
  height: calc(100vh - var(--header-h));
  min-height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  min-height: calc(100dvh - var(--header-h));
  overflow: hidden;
  background: #2a332d url("../img/hero-arboles.jpg") center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: rgba(41, 51, 45, .43); }
.hero__contenido { position: relative; z-index: 1; padding-top: 0; }
.hero__titulo {
  font-size: 4.5rem; font-weight: 800; line-height: 1.2;  color: #fff;
}
.hero__cta {
  margin-top: 4.6rem; height: 6.4rem; padding: 0 2.3rem; min-width: 37.2rem;
  font-size: 1.4rem; font-weight: 500;
}

/* ---------- Video institucional ---------- */
.institucional { padding: 5.7rem 0 7.3rem; }
.institucional .contenedor { display: flex; justify-content: space-between; align-items: flex-start; }
.institucional__texto { width: 28rem; padding-top: 0.1rem; }
.institucional__texto .titulo { margin-top: 1.9rem; line-height: 1.2; }
.institucional__texto .bajada { margin-top: 1.4rem; }
.institucional__texto .bajada + .bajada { margin-top: 1.6rem; }
.video-inst {
  position: relative; width: 45.1rem; aspect-ratio: 451 / 255;
  background: #0a0a0a; overflow: hidden; margin-right: -0.1rem;
}
.video-inst video, .video-inst iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; object-fit: cover; }
.video-inst__poster {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #d9d9d9; font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; letter-spacing: .02em;
}
.video-inst__play {
  position: absolute; left: 50%; top: 50%; width: 6.4rem; height: 6.4rem; margin: -3.2rem 0 0 -3.2rem;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center; transition: background .25s, transform .25s;
  opacity: 0;
}
.video-inst:hover .video-inst__play { opacity: 1; background: rgba(157,120,61,.85); transform: scale(1.04); }
.video-inst__play svg { width: 2rem; height: 2rem; margin-left: .3rem; fill: #fff; }
.video-inst__barra {
  position: absolute; left: 0; right: 0; bottom: 0; height: 3.1rem; background: #000;
  display: flex; align-items: center; justify-content: center;
}
.video-inst__barra span {
  display: block; width: 21.2rem; height: 1.1rem; border-radius: 1rem; background: #1f1f1f;
  position: relative;
}
.video-inst__barra span::after {
  content: ""; position: absolute; left: 5.4rem; right: 2.6rem; top: 50%; height: 1px; background: #777;
}
.video-inst__top { position: absolute; left: 0; right: 0; top: 0; height: 2.9rem; background: #000; }

/* ---------- Manifiesto ---------- */
.manifiesto { background: var(--verde); color: #fff; padding: 5.1rem 0 9.7rem; text-align: center; }
.manifiesto__cita {
  margin: 3.3rem auto 0; font-size: 2.5rem; font-weight: 600; line-height: 1.2; 
}
.manifiesto__texto {
  width: 41.4rem; margin: 1.9rem auto 0; font-style: italic; font-weight: 400;
  font-size: 1.3rem; line-height: 1.2; color: var(--beige); hyphens: auto; -webkit-hyphens: auto;
}
.cifras {
  margin-top: 2.2rem; border-top: 0.075rem solid var(--linea-verde); border-bottom: 0.075rem solid var(--linea-verde);
  display: grid; grid-template-columns: 20.7rem 24.1rem 22.8rem auto;
  text-align: left; padding: 4.9rem 0 4.8rem;
}
.cifra__numero { font-size: 3.3rem; font-weight: 900; line-height: 1; color: var(--dorado);  }
.cifra__texto { margin-top: 1.5rem; font-size: 1.1rem; font-weight: 400; line-height: 1.2; color: var(--beige); }

/* ---------- El directorio (portada) ---------- */
.directorio { padding: 6rem 0 0; }
.directorio__cabecera { display: flex; justify-content: space-between; align-items: flex-start; }
.directorio__cabecera .titulo { margin-top: 2.3rem; }
.directorio__cabecera .bajada { margin-top: 1.1rem; width: 29rem; }
.directorio__cabecera .btn--contorno { margin-top: 7.7rem; margin-right: 0.4rem; }
.carrusel { position: relative; margin-top: 3.2rem; padding-bottom: 6.6rem; }
.carrusel__ventana { overflow: hidden; width: calc(81rem + 0.2rem); }
.carrusel__pista { display: flex; gap: 3.1rem; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.carrusel__flecha {
  position: absolute; top: 6.1rem; width: 2.4rem; height: 4.6rem; display: flex; align-items: center; justify-content: center;
  transition: opacity .2s, transform .2s;
}
.carrusel__flecha svg { width: 100%; height: 100%; stroke: var(--verde); stroke-width: 1.2; fill: none; }
.carrusel__flecha--prev { left: -6.4rem; }
.carrusel__flecha--next { right: -5.7rem; }
.carrusel__flecha:hover { transform: scale(1.1); }
.carrusel__flecha[disabled] { opacity: .25; cursor: default; transform: none; }

/* ---------- Tarjeta de socio (portada + nosotros) ---------- */
.socio { font-stretch: 100%; flex: 0 0 13.7rem; width: 13.7rem; text-align: left; cursor: pointer; display: flex; flex-direction: column; justify-content: flex-start; align-items: stretch; }
.socio__foto { width: 13.7rem; aspect-ratio: 137 / 139; overflow: hidden; background: #8a8a8a; }
.socio__foto img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.socio:hover .socio__foto img, .socio:focus-visible .socio__foto img { transform: scale(1.05); }
.socio__nombre { margin-top: 1.2rem; white-space: nowrap; font-size: 1.3rem; font-weight: 500; line-height: 1.2;  color: var(--verde); }
.socio__rol { margin-top: 1.4rem; font-size: 1rem; font-weight: 500; line-height: 1.2; color: var(--teal); }
.grilla-socios .socio__rol { min-height: 2.4rem; padding-right: 0.6rem; }
.carrusel .socio__rol { padding-right: 0.6rem; }
.socio:hover .socio__nombre { color: var(--dorado); }
.socio__desc { padding-right: 0.2rem; margin-top: 0.5rem; font-size: 0.9rem; font-weight: 400; line-height: 1.2; color: var(--verde); }

/* =========================================================
   PÁGINAS INTERIORES · CABECERA BEIGE
   ========================================================= */
.intro { position: relative; background: var(--beige); overflow: hidden; }
.intro .contenedor { position: relative; z-index: 1; }
.intro__patron { position: absolute; top: 0; right: 0; pointer-events: none; }
.intro--nosotros { height: 27.1rem; padding-top: 5.5rem; }
.intro--nosotros .titulo { margin-top: 2.6rem; }
.intro--nosotros .bajada { margin-top: 2.4rem; width: 51rem; }
.intro--nosotros .intro__patron { width: 30rem; top: 0; }
.intro--matriz { height: 30.4rem; padding-top: 5.5rem; }
.intro--matriz .titulo { margin-top: 3.3rem; }
.intro--matriz .bajada { margin-top: 3.1rem; width: 51rem; }
.intro--matriz .intro__patron { width: 27.73rem; right: 0.3rem; top: 0; }
.intro--casos { height: 28.6rem; padding-top: 5.5rem; }
.intro--casos .titulo { margin-top: 1.6rem; }
.intro--casos .bajada { margin-top: 3.3rem; width: 51rem; padding-left: 0.2rem; }
.intro--casos .intro__patron { width: 27.75rem; right: 0.05rem; top: 0; }

/* =========================================================
   NOSOTROS · GRILLA
   ========================================================= */
.grilla-socios { padding: 3rem 0 4.2rem; }
.grilla-socios .contenedor { display: grid; grid-template-columns: repeat(5, 13.7rem); column-gap: 3.1rem; row-gap: 3.2rem; }
.grilla-socios .socio__foto { aspect-ratio: 137 / 138; }
.grilla-socios .socio__nombre { margin-top: 1.4rem; }

/* ---------- Pop-up de socio ---------- */
.modal {
  position: fixed; inset: 0; z-index: 100; display: flex; align-items: center; justify-content: center;
  padding: 3rem 2rem; background: rgba(25, 51, 30, .55); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__tarjeta {
  position: relative; width: 81rem; max-height: calc(100vh - 6rem); overflow-y: auto;
  background: #fff; border: 1px solid var(--dorado);
  padding: 3.8rem 6.6rem 5rem 3.8rem;
  display: grid; grid-template-columns: 25.7rem 1fr; column-gap: 4.8rem;
  transform: translateY(1.6rem); transition: transform .35s ease;
  overscroll-behavior: contain;
}
.modal.is-open .modal__tarjeta { transform: none; }
.modal__foto { width: 25.7rem; aspect-ratio: 257 / 390; object-fit: cover; object-position: top; background: #9a9a9a; }
.modal__mail { display: inline-block; margin: 2.2rem 0 0 0.6rem; font-size: 1.5rem; font-weight: 700; color: var(--dorado);  }
.modal__mail:hover { text-decoration: underline; }
.modal__linkedin { display: flex; margin: 1.6rem 0 0 0.5rem; width: 2rem; height: 2rem; }
.modal__linkedin svg { width: 100%; height: 100%; }
.modal__nombre { font-size: 2.5rem; font-weight: 900; line-height: 1.2;  margin-top: -0.1rem; padding-right: 4rem; }
.modal__rol { margin-top: 1.1rem; font-size: 1.5rem; font-weight: 400; color: var(--teal); line-height: 1.2; }
.modal__cargo { margin-top: 1.2rem; font-size: 1.3rem; font-weight: 400; color: var(--dorado); line-height: 1.2; }
.modal__cuerpo { margin-top: 2.9rem; font-size: 1.3rem; font-weight: 400; line-height: 1.2; }
.modal__cuerpo h4 { font-size: 1.3rem; font-weight: 700; line-height: 1.2; }
.modal__cuerpo p + h4 { margin-top: 1.6rem; }
.modal__cerrar {
  position: absolute; top: 2.9rem; right: 3.1rem; width: 3rem; height: 3rem;
  border-radius: 0.8rem; border: 1px solid var(--dorado); background: var(--beige);
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
}
.modal__cerrar svg { width: 1.5rem; height: 1.5rem; stroke: var(--dorado); stroke-width: 1.2; }
.modal__cerrar:hover { background: var(--dorado); transform: rotate(90deg); }
.modal__cerrar:hover svg { stroke: #fff; }
.modal__nav { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 1.6rem; margin: 2.6rem -3.5rem -2.8rem 0; }
.modal__nav button { font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; color: var(--dorado); }
.modal__nav button:hover { color: var(--verde); }
body.modal-abierto { overflow: hidden; }

/* =========================================================
   MATRIZ DE IMPACTO
   ========================================================= */
.areas { padding: 5.3rem 0 7rem; }
.areas .contenedor { display: grid; grid-template-columns: 22.6rem 20rem 21.3rem auto; }
.area__icono { height: 7rem; display: flex; align-items: flex-start; }
.area__icono img { height: 100%; width: auto; }
.area:nth-child(1) .area__icono img { height: 6.975rem; margin-left: 0.15rem; }
.area:nth-child(2) .area__icono img { height: 6.8rem; margin-top: -0.2rem; margin-left: 0.35rem; }
.area:nth-child(3) .area__icono img { height: 6.85rem; margin-left: 0.15rem; }
.area:nth-child(4) .area__icono img { height: 6.425rem; margin-left: 0.05rem; }
.area__num { margin-top: 1.4rem; font-size: 0.98rem; font-weight: 900; color: var(--dorado); }
.area__titulo { margin-top: 1.6rem; font-size: 1.42rem; font-weight: 900; line-height: 1.34;  }
.area__titulo { white-space: nowrap; }
.area__texto { white-space: nowrap; font-stretch: 94%; margin-top: 0.8rem; font-size: 1.2rem; font-weight: 400; line-height: 1.2; }
.area:nth-child(2) .area__texto { max-width: 16.4rem; }
.area:nth-child(4) .area__texto { max-width: 17.6rem; }

.squads {
  position: relative; min-height: 73rem; color: var(--beige);
  background: #3b4a2c url("../img/squads.jpg") center / cover no-repeat;
  padding: 9.6rem 0 0; margin-left: 0.2rem;
}
.squads .eyebrow { color: var(--beige); }
.squads__titulo { margin-top: 1.5rem; font-size: 2.85rem; font-weight: 900; line-height: 1.2;  }
.squads__texto { white-space: nowrap; margin-top: 1.6rem; width: 47.8rem; font-size: 1.3rem; font-weight: 400; line-height: 1.22; letter-spacing: 0.03em; font-stretch: 93%; }
.venn { position: relative; width: 48rem; height: 17.4rem; margin: 8.4rem auto 0; left: -0.1rem; }
.venn__circulo {
  position: absolute; top: 0; width: 17.4rem; height: 17.4rem; border-radius: 50%;
  border: 1px solid var(--beige); background: rgba(239,232,224,.08);
  display: flex; align-items: center; justify-content: center; text-align: center;
  font-size: 1.7rem; font-weight: 900; line-height: 1.2; color: #fff;
  transition: background .3s ease, transform .3s ease;
}
.venn__circulo:hover { background: rgba(157,120,61,.35); }
.venn__circulo:nth-child(1) { left: 0; padding-bottom: 1rem; }
.venn__circulo:nth-child(2) { left: 15.35rem; padding-top: 0.2rem; }
.venn__circulo:nth-child(3) { left: 30.7rem; padding-top: 0.2rem; }
.squads__lema { margin-top: 4.4rem; text-align: center; font-size: 1.7rem; font-weight: 900; color: #fff;  }

/* =========================================================
   CASOS DE ÉXITO
   ========================================================= */
.casos { padding: 3.6rem 0 3.2rem; }
.casos .contenedor { display: grid; grid-template-columns: repeat(3, 25.5rem); column-gap: 2.25rem; }
.caso {
  font-stretch: 100%;
  border: 1px solid var(--borde-card); background: #fff; min-height: 34.5rem;
  display: flex; flex-direction: column; transition: box-shadow .3s ease, transform .3s ease;
}
.caso:hover { box-shadow: 0 1.2rem 3rem rgba(25,51,30,.1); transform: translateY(-.3rem); }
.caso__img { height: 8.8rem; overflow: hidden; margin: -1px -1px 0; }
.caso__img img { width: 100%; height: 100%; object-fit: cover; }
.caso:nth-child(2) .caso__img img { object-position: 75% 50%; }
.caso__cuerpo { padding: 1.5rem 2.4rem 0; display: flex; flex-direction: column; flex: 1; }
.caso__tag {
  align-self: flex-start; height: 2rem; padding: 0 2.4rem; border-radius: 999px; background: var(--oliva);
  display: inline-flex; align-items: center; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  text-transform: uppercase; color: var(--verde);
}
.caso__titulo { margin-top: 2.1rem; font-size: 1.58rem; font-weight: 600; line-height: 1.33;  }
.caso__texto { margin-top: 1.4rem; font-size: 1.1rem; font-weight: 400; line-height: 1.64; color: var(--gris-texto); min-height: 7.2rem; }
.caso__resultado {
  margin-top: auto; border-top: 1px solid var(--borde-card); padding: 1.6rem 0 3.1rem;
  font-size: 0.98rem; font-weight: 600; color: var(--dorado);
}
.caso:nth-child(3) .caso__texto + .caso__resultado { margin-top: auto; }

.cta-caso { background: var(--beige); margin-left: 0.7rem; padding: 3.3rem 0 2.4rem; text-align: center; }
.cta-caso__pregunta { font-size: 1.5rem; font-weight: 600; color: var(--dorado); }
.cta-caso__btn { margin-top: 1.3rem; height: 3rem; min-width: 35.6rem; font-size: 1.5rem; font-style: italic; font-weight: 400; }
.cta-caso__nota { margin-top: 1.5rem; font-size: 1.5rem; font-style: italic; font-weight: 400; line-height: 1.2; color: var(--dorado); }

/* =========================================================
   CONVERSEMOS · CONTACTO
   ========================================================= */
.contacto-foto { height: 50rem; overflow: hidden; background: #cfd6de; }
.contacto-foto img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 53%; }
.contacto { background: var(--beige); padding: 5.5rem 0 3rem; }
.contacto .contenedor { display: grid; grid-template-columns: 1fr 34.3rem; column-gap: 4rem; }
.contacto__titulo { font-size: 2.5rem; font-weight: 900; line-height: 1.2;  margin-left: -0.1rem; }
.contacto__texto { margin-top: 1.4rem; width: 35rem; }
.contacto__texto + .contacto__texto { margin-top: 1.5rem; }
.contacto__dato { margin-top: 1.9rem; color: #1c1c1c; }
.contacto__dato + .contacto__dato { margin-top: 1rem; }
.contacto__dato h3 { font-size: 1.44rem; font-weight: 700; display: flex; align-items: center; gap: 0.7rem; }
.contacto__dato h3 svg { width: 1.2rem; height: 1.2rem; fill: #1c1c1c; }
.contacto__dato p, .contacto__dato a { display: block; margin-top: 0.7rem; font-size: 0.96rem; font-weight: 400; line-height: 1.7; }
.contacto__dato:first-of-type p { margin-top: 0.4rem; }
.contacto__dato a:hover { color: var(--dorado); }

.form { padding-top: 0; margin-right: -0.4rem; }
.form__titulo { font-size: 1.44rem; font-weight: 600; color: #1c1c1c; margin-bottom: 1rem; }
.form__campo { display: block; position: relative; margin-bottom: 0.55rem; }
.form__campo input, .form__campo textarea {
  width: 100%; height: 3rem; border: 1.5px solid #1c1c1c; border-radius: 0.9rem; background: transparent;
  padding: 0 0.8rem; font: inherit; font-size: 0.96rem; font-weight: 600; color: #1c1c1c; outline: none;
  transition: border-color .2s, background-color .2s, box-shadow .2s;
}
.form__campo textarea { height: 6.1rem; padding-top: 0.9rem; resize: vertical; line-height: 1.3; }
.form__campo input::placeholder, .form__campo textarea::placeholder { color: #1c1c1c; opacity: 1; }
.form__campo input:focus, .form__campo textarea:focus { background: #fff; border-color: var(--dorado); box-shadow: 0 0 0 3px rgba(157,120,61,.18); }
.form__campo.is-error input, .form__campo.is-error textarea { border-color: var(--naranjo); }
.form__legal { margin-top: 1.4rem; width: 26rem; font-size: 0.9rem; font-weight: 400; line-height: 1.55; color: #1c1c1c; margin-left: 0.6rem; }
.form__pie { display: flex; justify-content: flex-end; margin-top: 1.1rem; }
.form__enviar {
  height: 2.9rem; min-width: 7.5rem; padding: 0 1.6rem; border-radius: 999px; background: var(--verde); color: var(--beige);
  font-size: 1.44rem; font-weight: 600; transition: background .2s, transform .2s;
}
.form__enviar:hover { background: var(--dorado); transform: translateY(-1px); }
.form__enviar[disabled] { opacity: .6; cursor: wait; }
.form__estado { margin-top: 1rem; font-size: 1.1rem; font-weight: 600; min-height: 1.4rem; text-align: right; }
.form__estado.ok { color: var(--verde); }
.form__estado.error { color: var(--naranjo); }

.banda-dorada { background: var(--dorado); color: #fff; text-align: center; height: 14.4rem; display: flex; align-items: center; justify-content: center; }
.banda-dorada p { font-size: 2.2rem; font-weight: 500; line-height: 1.2;  }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--negro); color: #d1d2d2; padding: 5.9rem 0 5.4rem; }
.footer__fila { display: flex; justify-content: space-between; align-items: flex-start; }
.footer__logo img { height: 5.1rem; width: auto; margin-left: -0.1rem; }
.footer__cta { margin-top: 1.7rem; height: 3.05rem; min-width: 35.6rem; padding: 0 1.6rem; font-size: 1.4rem; font-weight: 500; }
.footer__lema { margin-top: 2rem; font-size: 1.5rem; font-weight: 500; line-height: 1.4; color: var(--dorado); }
.footer__desc { margin-top: 1.4rem; font-size: 0.94rem; font-weight: 500; line-height: 1.2; letter-spacing: 0.045em; white-space: nowrap; color: #828383; }
.footer__contacto { text-align: right; padding-top: 3.8rem; font-size: 1.05rem; font-weight: 500; }
.footer__contacto a { display: block; transition: color .2s; }
.footer__contacto a + a { margin-top: 1.55rem; }
.footer__contacto a:hover { color: #fff; }
.footer__redes { display: flex; justify-content: flex-end; gap: 1.1rem; margin-top: 2.9rem; }
.footer__redes a { width: 1.2rem; height: 1.2rem; display: block; }
.footer__redes a:hover svg { fill: var(--dorado); }
.footer__redes svg { width: 100%; height: 100%; fill: #fff; transition: fill .2s; }
.footer__base {
  margin-top: 3.3rem; border-top: 0.075rem solid var(--linea-footer); padding-top: 2.3rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.94rem; font-weight: 500; color: #989a9a;
}
.footer__base img { height: 0.75rem; width: auto; opacity: .95; }

/* ---------- Animación de entrada ---------- */
.reveal { opacity: 0; transform: translateY(1.6rem); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .carrusel__pista, .modal, .modal__tarjeta { transition: none; }
}

/* =========================================================
   RESPONSIVE · TABLET Y MÓVIL (< 900 px)
   ========================================================= */
@media (max-width: 899px) {
  br.d { display: none; }
  .area__texto, .squads__texto { white-space: normal !important; }
  html { font-size: 10px; }
  :root { --contenedor: calc(100% - 4rem); --header-h: 7.2rem; }
  body { font-size: 1.5rem; }

  .header { padding: 0 2rem; }
  .header__logo { margin-top: 0; }
  .header__logo img { height: 4.6rem; }
  .nav-toggle {
    display: flex; flex-direction: column; justify-content: center; gap: 0.5rem; width: 4.4rem; height: 4.4rem; margin-right: -1rem; align-items: center;
  }
  .nav-toggle span { display: block; width: 2.4rem; height: 2px; background: #fff; transition: transform .3s, opacity .3s; }
  .nav-abierta .nav-toggle span:nth-child(1) { transform: translateY(0.7rem) rotate(45deg); }
  .nav-abierta .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-abierta .nav-toggle span:nth-child(3) { transform: translateY(-0.7rem) rotate(-45deg); }
  .nav {
    position: fixed; top: var(--header-h); left: 0; right: 0; bottom: 0; background: var(--verde);
    flex-direction: column; align-items: flex-start; padding: 3rem 2rem;
    transform: translateX(100%); transition: transform .35s ease; visibility: hidden;
  }
  .nav-abierta .nav { transform: none; visibility: visible; }
  .nav__link { margin: 0; padding: 1.6rem 0; font-size: 1.5rem; width: 100%; border-bottom: 1px solid var(--linea-verde); }
  .nav__cta { margin: 2.8rem 0 0; height: 4.8rem; padding: 0 3rem; font-size: 1.3rem; }
  body.nav-abierta { overflow: hidden; }

  .eyebrow { font-size: 1.1rem; }
  .titulo { font-size: 2.8rem; }
  .bajada { font-size: 1.5rem; line-height: 1.35; }

  .hero { height: calc(100svh - var(--header-h)); min-height: 52rem; max-height: 72rem; }
  .hero__contenido { padding-top: 0; position: absolute; left: 2rem; right: 2rem; bottom: 8rem; width: auto; }
  .hero__titulo { font-size: 3.8rem; }
  .hero__cta { margin-top: 2.8rem; min-width: 0; width: 100%; height: 5.6rem; font-size: 1.45rem; white-space: normal; text-align: center; }

  .institucional { padding: 5rem 0; }
  .institucional .contenedor { flex-direction: column; }
  .institucional__texto { width: 100%; }
  .video-inst { width: 100%; margin: 3rem 0 0; }

  .manifiesto { padding: 5rem 0 6rem; }
  .manifiesto__cita { font-size: 2.6rem; }
  .manifiesto__texto { width: 100%; font-size: 1.5rem; line-height: 1.35; }
  .cifras { grid-template-columns: 1fr 1fr; row-gap: 3.6rem; column-gap: 2rem; padding: 4rem 0; }
  .cifra__numero { font-size: 4rem; }
  .cifra__texto { font-size: 1.3rem; }

  .directorio { padding-top: 5rem; }
  .directorio__cabecera { flex-direction: column; }
  .directorio__cabecera .bajada { width: 100%; }
  .directorio__cabecera .btn--contorno { margin: 2.4rem 0 0; height: 4.6rem; font-size: 1.1rem; }
  .carrusel { margin-top: 3.4rem; padding-bottom: 5rem; }
  .carrusel__ventana { width: 100%; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .carrusel__ventana::-webkit-scrollbar { display: none; }
  .carrusel__pista { gap: 1.6rem; transform: none !important; }
  .carrusel .socio { flex-basis: 16rem; width: 16rem; scroll-snap-align: start; }
  .carrusel .socio__foto { width: 16rem; }
  .carrusel__flecha { display: none; }

  .socio__nombre { font-size: 1.5rem; }
  .socio__rol { font-size: 1.25rem; }
  .socio__desc { font-size: 1.25rem; line-height: 1.3; }

  .intro { height: auto !important; padding: 4.4rem 0 4.4rem !important; }
  .intro .bajada { width: 100% !important; }
  .intro__patron { width: 16rem !important; opacity: .7; }
  .intro .titulo { padding-right: 6rem; }

  .grilla-socios { padding: 3.2rem 0 5rem; }
  .grilla-socios .contenedor { grid-template-columns: 1fr 1fr; column-gap: 1.6rem; row-gap: 3.4rem; }
  .grilla-socios .socio, .grilla-socios .socio__foto { width: 100%; }

  .modal { padding: 0; align-items: flex-end; }
  .modal__tarjeta {
    width: 100%; max-height: 92svh; grid-template-columns: 1fr; padding: 2rem 2rem 0; border: 0; border-top: 3px solid var(--dorado); align-content: start;
    transform: translateY(100%);
  }
  .modal__col-foto { display: grid; grid-template-columns: 11rem 1fr; column-gap: 1.6rem; align-items: end; }
  .modal__foto { width: 11rem; grid-row: span 2; }
  .modal__mail { margin: 0; font-size: 1.4rem; word-break: break-all; }
  .modal__linkedin { margin: 1.2rem 0 0; width: 2.4rem; height: 2.4rem; }
  .modal__nombre { margin-top: 2.2rem; font-size: 2.6rem; padding-right: 0; }
  .modal__rol { font-size: 1.6rem; }
  .modal__cargo, .modal__cuerpo, .modal__cuerpo h4 { font-size: 1.45rem; line-height: 1.35; }
  .modal__cerrar { top: 1.6rem; right: 1.6rem; width: 4rem; height: 4rem; }
  .modal__nav { position: sticky; bottom: 0; margin: 3rem -2rem 0; padding: 1.6rem 2rem 2.2rem; background: #fff; border-top: 1px solid var(--borde-card); justify-content: space-between; }
  .modal__nav button { font-size: 1.2rem; }

  .areas { padding: 4.4rem 0 5rem; }
  .areas .contenedor { grid-template-columns: 1fr; row-gap: 4rem; }
  .area__titulo { font-size: 1.8rem; }
  .area__texto { font-size: 1.5rem; line-height: 1.35; }
  .area__num { font-size: 1.2rem; }
  .area__texto { max-width: none !important; }
  .area__titulo { white-space: normal; }

  .squads { min-height: 0; padding: 6rem 0 7rem; margin-left: 0; }
  .squads__titulo { font-size: 2.8rem; }
  .squads__texto { width: 100%; font-size: 1.5rem; }
  .venn { width: 30rem; height: 30rem; margin-top: 5rem; left: 0; }
  .venn__circulo { width: 15rem; height: 15rem; font-size: 1.45rem; }
  .venn__circulo:nth-child(1) { left: 1.2rem; top: 0; padding: 0; }
  .venn__circulo:nth-child(2) { left: 13.8rem; top: 0; padding: 0; }
  .venn__circulo:nth-child(3) { left: 7.5rem; top: 11rem; padding: 0; }
  .squads__lema { margin-top: 3.6rem; font-size: 1.6rem; }

  .casos { padding: 3.6rem 0 4rem; }
  .casos .contenedor { grid-template-columns: 1fr; row-gap: 2rem; }
  .caso { min-height: 0; }
  .caso__img { height: 16rem; }
  .caso__tag { font-size: 1rem; height: 2.4rem; }
  .caso__titulo { font-size: 1.9rem; }
  .caso__texto { font-size: 1.4rem; line-height: 1.5; min-height: 0; margin-bottom: 2rem; }
  .caso__resultado { font-size: 1.25rem; padding-bottom: 2.4rem; }
  .cta-caso { margin-left: 0; padding: 4rem 2rem; }
  .cta-caso__btn { min-width: 0; width: 100%; height: 4.4rem; }
  .cta-caso__nota { font-size: 1.4rem; }

  .contacto-foto { height: 26rem; }
  .contacto { padding: 4.4rem 0 5rem; }
  .contacto .contenedor { grid-template-columns: 1fr; row-gap: 4rem; }
  .contacto__titulo { font-size: 2.8rem; }
  .contacto__texto { width: 100%; }
  .contacto__dato h3 { font-size: 1.6rem; }
  .contacto__dato p, .contacto__dato a { font-size: 1.4rem; }
  .form { margin: 0; grid-row: 2; }
  .contacto__info { grid-row: 1; }
  .form__titulo { font-size: 1.7rem; }
  .form__campo input, .form__campo textarea { height: 4.6rem; font-size: 1.5rem; padding: 0 1.4rem; border-radius: 1.1rem; }
  .form__campo textarea { height: 11rem; padding-top: 1.3rem; }
  .form__campo { margin-bottom: 1rem; }
  .form__legal { width: 100%; font-size: 1.2rem; margin-left: 0; }
  .form__enviar { height: 4.4rem; padding: 0 2.8rem; font-size: 1.6rem; }
  .banda-dorada { height: auto; padding: 5rem 2rem; }
  .banda-dorada p { font-size: 2rem; }
  .banda-dorada br { display: none; }

  .footer { padding: 5rem 0 4rem; }
  .footer__fila { flex-direction: column; }
  .footer__cta { margin-top: 3rem; min-width: 0; width: 100%; height: 4.6rem; white-space: normal; }
  .footer__lema { font-size: 1.7rem; }
  .footer__desc { width: 100%; font-size: 1.2rem; white-space: normal; }
  .footer__desc br { display: none; }
  .footer__contacto { text-align: left; padding-top: 3rem; font-size: 1.4rem; }
  .footer__redes { justify-content: flex-start; margin-top: 2.4rem; gap: 2rem; }
  .footer__redes a { width: 2rem; height: 2rem; }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 1.6rem; font-size: 1.15rem; }
  .footer__base img { height: 1rem; }
}
.modal__cerrar:focus:not(:focus-visible) { outline: none; }
