/* ══════════════════════════════════════════════════════════════
   PÁGINA /NOSOTROS
   ══════════════════════════════════════════════════════════════ */

/* ── Hero ──────────────────────────────────────────────────── */
.nos-hero {
  background: var(--verde-hero);
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 9rem var(--padding-x) 7rem;
  position: relative;
  overflow: hidden;
}

/* Textura de puntos sobre el hero */
.nos-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(247,241,212,0.045) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Corte diagonal inferior: el blanco "sube" desde la esquina derecha */
.nos-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5.5rem;
  background: var(--blanco);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.nos-hero-deco {
  position: absolute;
  right: var(--padding-x);
  top: 50%;
  transform: translateY(-55%);
  font-family: var(--font-secondary);
  font-size: clamp(14rem, 26vw, 30rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(247,241,212, 0.04);
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

.nos-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.nos-back {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,241,212,.38);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color .3s;
}
.nos-back:hover { color: var(--maiz); }

.nos-hero-label { margin-bottom: 1.25rem; }
.nos-hero-label .section-label-line { background: var(--maiz); }
.nos-hero-label .section-label-text { color: rgba(247,241,212,.6); }

.nos-hero-title {
  font-family: var(--font-secondary);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--arena);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.nos-hero-title em { color: var(--maiz); font-style: italic; }

.nos-hero-sub {
  max-width: 560px;
  font-size: clamp(0.95rem, 1.6vw, 1.125rem);
  line-height: 1.7;
  color: rgba(247,241,212,.62);
}

/* ── Identidad ─────────────────────────────────────────────── */
.nos-identity {
  padding: 7rem var(--padding-x) 5rem;
  background: var(--blanco);
  position: relative;
}

.nos-identity-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.nos-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gris-medio);
  margin-bottom: 1.25rem;
}
.nos-body:last-child { margin-bottom: 0; }
.nos-body strong { color: var(--negro); font-weight: 600; }

.nos-identity-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: calc(76px + 2rem);
}

.nos-identity-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

/* marca diagonal decorativa sobre la imagen */
.nos-identity-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40%;
  height: 3px;
  background: var(--maiz);
}

.nos-identity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nos-identity-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(26,26,26,.07);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26,26,26,.07);
}

.nos-stat {
  background: var(--blanco);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  position: relative;
  overflow: hidden;
}

/* triángulo decorativo sutil en cada stat */
.nos-stat::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 24px 24px 0;
  border-color: transparent rgba(39,92,73,.07) transparent transparent;
}

.nos-stat strong {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--verde-urbano);
  line-height: 1;
}
.nos-stat span {
  font-size: 0.75rem;
  color: var(--gris-medio);
  letter-spacing: 0.03em;
}

/* ── Separador de forma entre secciones ────────────────────── */
.nos-shape-sep {
  height: 5rem;
  position: relative;
  overflow: hidden;
}

/* Corte blanco → verde-hero: triángulo izquierdo */
.nos-shape-sep--down {
  background: var(--verde-hero);
}
.nos-shape-sep--down::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blanco);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

/* ── Valores ───────────────────────────────────────────────── */
.nos-valores {
  background: var(--verde-hero);
  padding: 5rem var(--padding-x) 8rem;
  position: relative;
}

/* Textura puntillada */
.nos-valores::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(247,241,212,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.nos-valores-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
}

.nos-valores-header {
  max-width: 640px;
  margin-bottom: 4rem;
}
.nos-valores-header .section-label-line { background: var(--maiz); }
.nos-valores-header .section-label-text { color: rgba(247,241,212,.55); }
.nos-valores-header .section-title {
  color: var(--arena);
  margin-top: 0.75rem;
}
.nos-valores-header .section-title em { color: var(--maiz); }

/* ── Grid asimétrico ───────────────────────────────────────── */
.nos-valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;            /* gap de 1px hace que las líneas de separación sean visibles */
  background: rgba(247,241,212,.07); /* color de los gaps */
}

/* ── Card base ─────────────────────────────────────────────── */
.nos-valor-card {
  position: relative;
  background: rgba(10,50,49, 1);   /* verde-hero sólido para que el gap resalte */
  padding: 2.75rem 2.25rem 2.5rem;
  overflow: hidden;
  transition: background .3s ease;
  --accent: var(--maiz);
}

.nos-valor-card:hover {
  background: rgba(20,65,60, 1);
}

/* Línea accent top que crece de izquierda a derecha en hover */
.nos-valor-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.nos-valor-card:hover::before { transform: scaleX(1); }

/* Círculo decorativo en la esquina sup-derecha */
.nos-valor-card::after {
  content: '';
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.035;
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.nos-valor-card:hover::after {
  opacity: 0.07;
  transform: scale(1.15);
}

/* Accent colors por posición */
.nos-valor-card:nth-child(1) { --accent: var(--maiz); }
.nos-valor-card:nth-child(2) { --accent: rgba(247,241,212,.7); }
.nos-valor-card:nth-child(3) { --accent: var(--verde-urbano); }
.nos-valor-card:nth-child(4) { --accent: rgba(247,241,212,.7); }
.nos-valor-card:nth-child(5) { --accent: var(--maiz); }  /* el wide */

/* Número gigante como âncora visual */
.nos-valor-num {
  font-family: var(--font-secondary);
  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(247,241,212,.05);
  margin-bottom: 1.25rem;
  transition: color .3s ease;
  user-select: none;
}
.nos-valor-card:hover .nos-valor-num {
  color: rgba(247,241,212,.08);
}

/* Pequeño badge de número coloreado sobre el gigante */
.nos-valor-content {
  position: relative;
}

.nos-valor-title {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--arena);
  margin-bottom: 0.875rem;
  line-height: 1.25;
}

/* Barra lateral coloreada antes del título */
.nos-valor-title::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  vertical-align: middle;
  margin-right: 0.625rem;
  flex-shrink: 0;
  transition: width .3s ease;
}
.nos-valor-card:hover .nos-valor-title::before {
  width: 32px;
}

.nos-valor-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(247,241,212,.48);
}

/* ── Card featured (2 columnas) ────────────────────────────── */
.nos-valor-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  padding: 3.5rem 2.5rem;
  background: rgba(5, 38, 37, 1); /* ligeramente más oscuro */
  --accent: var(--maiz);
}

.nos-valor-card--featured .nos-valor-num {
  font-size: clamp(6rem, 12vw, 11rem);
  margin-bottom: 0;
  color: rgba(247,241,212,.04);
}

.nos-valor-card--featured:hover .nos-valor-num {
  color: rgba(247,241,212,.07);
}

.nos-valor-card--featured .nos-valor-title {
  font-size: 1.4375rem;
}

.nos-valor-card--featured .nos-valor-desc {
  font-size: 0.9375rem;
  color: rgba(247,241,212,.55);
}

/* Card accent: tinte sutilmente distinto */
.nos-valor-card--accent {
  background: rgba(39,92,73,.35);
  --accent: var(--maiz);
}
.nos-valor-card--accent:hover {
  background: rgba(39,92,73,.5);
}

/* ── Card wide (fila completa, layout horizontal) ──────────── */
.nos-valor-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  padding: 0;
  background: transparent; /* sin bg propio — usa gap del grid */
  overflow: visible;
}

/* los dos lados del wide tienen su propio fondo */
.nos-valor-wide-left,
.nos-valor-wide-right {
  background: rgba(10,50,49,1);
  padding: 2.75rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background .3s ease;
}
.nos-valor-wide-left:hover,
.nos-valor-wide-right:hover {
  background: rgba(20,65,60,1);
}

/* línea accent en cada mitad del wide */
.nos-valor-wide-left::before,
.nos-valor-wide-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--maiz);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.nos-valor-wide-left:hover::before,
.nos-valor-wide-right:hover::before { transform: scaleX(1); }

/* círculo decorativo en cada mitad */
.nos-valor-wide-left::after,
.nos-valor-wide-right::after {
  content: '';
  position: absolute;
  top: -3rem; right: -3rem;
  width: 10rem; height: 10rem;
  border-radius: 50%;
  background: var(--maiz);
  opacity: 0.03;
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
}
.nos-valor-wide-left:hover::after,
.nos-valor-wide-right:hover::after {
  opacity: 0.065;
  transform: scale(1.15);
}

/* Línea separadora vertical entre left y right */
.nos-valor-wide-divider {
  width: 1px;
  background: rgba(247,241,212,.07);
  flex-shrink: 0;
}

/* Hereda estilos de .nos-valor-num y nos-valor-* */
.nos-valor-wide-left .nos-valor-num,
.nos-valor-wide-right .nos-valor-num {
  font-size: clamp(4rem, 7vw, 7rem);
  color: rgba(247,241,212,.05);
  margin-bottom: 1.25rem;
}
.nos-valor-wide-left:hover .nos-valor-num,
.nos-valor-wide-right:hover .nos-valor-num {
  color: rgba(247,241,212,.08);
}

/* ── Strip foto ────────────────────────────────────────────── */
.nos-strip {
  position: relative;
  height: 440px;
  overflow: hidden;
}

/* Corte diagonal en la parte superior (viene de verde-hero) */
.nos-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5rem;
  background: var(--verde-hero);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  z-index: 2;
  pointer-events: none;
}

.nos-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.nos-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,50,49,.72);
}
.nos-strip-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem var(--padding-x);
  z-index: 3;
}
.nos-strip-quote {
  font-family: var(--font-secondary);
  font-size: clamp(1.4rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--arena);
  max-width: 700px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.nos-strip-attr {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,241,212,.5);
}

/* ── Equipo ────────────────────────────────────────────────── */
.nos-equipo {
  padding: 7rem var(--padding-x);
  background: var(--blanco);
}

.nos-equipo-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.nos-equipo-header {
  max-width: 680px;
  margin-bottom: 4.5rem;
}
.nos-equipo-intro {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gris-medio);
}

.nos-team-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.nos-team-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.nos-team-card--alt { grid-template-columns: 1fr 340px; }
.nos-team-card--alt .nos-team-photo { order: 2; }
.nos-team-card--alt .nos-team-body  { order: 1; }

.nos-team-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--verde-hero);
  position: relative;
}

/* línea maiz en la base de la foto */
.nos-team-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 45%;
  height: 3px;
  background: var(--maiz);
  z-index: 1;
}

.nos-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.nos-team-card:hover .nos-team-photo img { transform: scale(1.03); }

.nos-team-role {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--verde-urbano);
  margin-bottom: 0.5rem;
}
.nos-team-name {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--negro);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.nos-team-bio {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--gris-medio);
  margin-bottom: 1rem;
}
.nos-team-bio:last-of-type { margin-bottom: 1.5rem; }

.nos-team-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.nos-team-tags span {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.875rem;
  border-radius: 999px;
  border: 1.5px solid rgba(39,92,73,.2);
  color: var(--verde-urbano);
  background: rgba(39,92,73,.05);
}

/* ── CUCICBA ───────────────────────────────────────────────── */
.nos-cucicba {
  padding: 7rem var(--padding-x);
  background: var(--verde-hero);
  position: relative;
  overflow: hidden;
}

/* Forma geométrica decorativa de fondo */
.nos-cucicba::before {
  content: '';
  position: absolute;
  right: -10rem;
  top: 50%;
  transform: translateY(-50%);
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  border: 1px solid rgba(247,241,212,.04);
  pointer-events: none;
}
.nos-cucicba::after {
  content: '';
  position: absolute;
  right: -6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  border: 1px solid rgba(247,241,212,.05);
  pointer-events: none;
}

.nos-cucicba-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 4rem;
  align-items: start;
}

.nos-cucicba-icon { color: var(--maiz); opacity: .75; padding-top: 0.5rem; }

.nos-cucicba-content .section-label-line { background: var(--maiz); }
.nos-cucicba-content .section-label-text { color: rgba(247,241,212,.6); }

.nos-cucicba-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--arena);
  margin: 1.25rem 0;
  line-height: 1.2;
}
.nos-cucicba-title em { color: var(--maiz); font-style: italic; }

.nos-cucicba-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(247,241,212,.65);
  margin-bottom: 2rem;
}

.nos-cucicba-card {
  background: rgba(247,241,212,.05);
  border: 1px solid rgba(247,241,212,.1);
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  position: relative;
  overflow: hidden;
}

/* Triángulo decorativo en esquina superior derecha del card CUCICBA */
.nos-cucicba-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 3rem 3rem 0;
  border-color: transparent rgba(240,219,145,.15) transparent transparent;
}

.nos-cucicba-name {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--arena);
  margin-bottom: 0.375rem;
}
.nos-cucicba-matricula {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--maiz);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.nos-cucicba-detail {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(247,241,212,.55);
}

/* ── CTA final ─────────────────────────────────────────────── */
.nos-cta {
  padding: 8rem var(--padding-x);
  background: var(--offwhite);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Forma circular de fondo en el CTA */
.nos-cta::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(80vw, 600px);
  height: min(80vw, 600px);
  border-radius: 50%;
  border: 1px solid rgba(39,92,73,.07);
  pointer-events: none;
}
.nos-cta::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(55vw, 400px);
  height: min(55vw, 400px);
  border-radius: 50%;
  border: 1px solid rgba(39,92,73,.05);
  pointer-events: none;
}

.nos-cta-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
.nos-cta-title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--negro);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.nos-cta-title em { color: var(--verde-urbano); font-style: italic; }
.nos-cta-body {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--gris-medio);
  margin-bottom: 2.5rem;
}
.nos-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.nos-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--verde-urbano);
  color: var(--blanco);
  padding: 0.85rem 2.25rem;
  border-radius: 100px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.nos-cta-btn-primary:hover {
  background: var(--verde-hero);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(39,92,73,.25);
}
.nos-cta-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gris-medio);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  transition: color .25s;
}
.nos-cta-btn-ghost:hover { color: var(--negro); }
.nos-cta-arrow {
  width: 36px; height: 36px;
  border: 1px solid rgba(26,26,26,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s, transform .25s;
}
.nos-cta-btn-ghost:hover .nos-cta-arrow {
  border-color: var(--negro);
  transform: translateX(3px);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .nos-identity-inner { grid-template-columns: 1fr; gap: 3rem; }
  .nos-identity-visual { position: static; }

  .nos-valores-grid { grid-template-columns: repeat(2, 1fr); }
  .nos-valor-card--featured { grid-column: span 2; }
  .nos-valor-card--wide { grid-column: span 2; }
  .nos-valor-card--wide .nos-valor-wide-left,
  .nos-valor-card--wide .nos-valor-wide-right { padding: 2.25rem 2rem; }

  .nos-team-card { grid-template-columns: 260px 1fr; gap: 2.5rem; }
  .nos-team-card--alt { grid-template-columns: 1fr 260px; }

  .nos-cucicba-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nos-cucicba-icon { display: none; }
}

@media (max-width: 768px) {
  .nos-valor-card--featured {
    grid-template-columns: 1fr;  /* en tablet medio colapsa a 1 col interior */
  }
}

@media (max-width: 640px) {
  .nos-hero { padding: 6.5rem var(--padding-x) 6rem; min-height: 70vh; }
  .nos-hero::after { height: 3.5rem; }

  .nos-identity { padding: 4.5rem var(--padding-x); }

  .nos-shape-sep { height: 3rem; }

  .nos-valores { padding: 3rem var(--padding-x) 5rem; }
  .nos-valores-grid { grid-template-columns: 1fr; gap: 1px; }
  .nos-valor-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .nos-valor-card--featured .nos-valor-num { font-size: 5rem; }
  .nos-valor-card--wide { grid-column: span 1; grid-template-columns: 1fr; }
  .nos-valor-card--wide .nos-valor-wide-divider { width: 100%; height: 1px; }
  .nos-valor-card--wide { display: flex; flex-direction: column; }

  .nos-equipo { padding: 4.5rem var(--padding-x); }
  .nos-team-card,
  .nos-team-card--alt { grid-template-columns: 1fr; gap: 1.75rem; }
  .nos-team-card--alt .nos-team-photo { order: 0; }
  .nos-team-card--alt .nos-team-body  { order: 0; }
  .nos-team-photo { aspect-ratio: 1/1; max-height: 320px; }

  .nos-strip { height: 300px; }
  .nos-strip::before { height: 3rem; }

  .nos-cucicba { padding: 4.5rem var(--padding-x); }
  .nos-cucicba::before, .nos-cucicba::after { display: none; }

  .nos-cta { padding: 5rem var(--padding-x); }
  .nos-cta-actions { flex-direction: column; align-items: center; }
}
