/* ============================================================
   CONSTRUFACH — REFORMA DE VEREDA · QUIÉNES SOMOS
   Imagen con corte diagonal a la izquierda + texto a la derecha
   ============================================================ */

.nsv {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--white);
  overflow: hidden;
  scroll-margin-top: 90px;
}

/* Círculo decorativo tenue (abajo a la derecha) */
.nsv::after {
  content: '';
  position: absolute;
  right: -130px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(11, 53, 87, 0.04);
  z-index: 0;
  pointer-events: none;
}

/* ── Imagen ───────────────────────────────────────────────── */
.nsv-media {
  position: relative;
  min-height: 560px;
  z-index: 1;
}

.nsv-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Corte diagonal en el borde derecho */
  clip-path: polygon(0 0, 100% 0, calc(100% - 90px) 100%, 0 100%);
}

/* ── Contenido ────────────────────────────────────────────── */
.nsv-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.4rem;
  padding: 5rem 4rem 5rem 3.5rem;
  max-width: 660px;
}

.nsv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.nsv-eyebrow::before {
  content: '';
  width: 38px;
  height: 2px;
  background: var(--red);
}

.nsv-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0;
}

.nsv-title-mark {
  color: var(--red);
  font-style: italic;
}

.nsv-text {
  font-family: 'Barlow', sans-serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #5a6b78;
  margin: 0;
}

.nsv-text strong {
  color: var(--navy);
  font-weight: 600;
}

/* ── Link "Conocer más" ───────────────────────────────────── */
.nsv-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(193, 39, 45, 0.3);
  transition:
    gap 0.3s var(--ease-out-expo),
    border-color 0.3s var(--ease-out-expo);
}

.nsv-link .ico {
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-out-expo);
}

.nsv-link:hover {
  gap: 0.8rem;
  border-color: var(--red);
}

.nsv-link:hover .ico {
  transform: translateX(3px);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .nsv {
    grid-template-columns: 1fr;
  }

  .nsv-media {
    min-height: 0;
  }

  .nsv-img {
    position: static;
    aspect-ratio: 4 / 3;
    clip-path: none; /* sin diagonal en mobile */
  }

  .nsv-content {
    padding: 2.75rem 1.5rem 3.5rem;
    max-width: none;
  }

  .nsv::after {
    display: none;
  }
}
