/* =========================
   HEADER NOSOTROS - PLANO (sin 3D)
========================= */

.nm-about-header{
  padding: 56px 0 44px;
  background:
    radial-gradient(900px 520px at 12% 30%, rgba(17,24,39,.04), transparent 60%),
    radial-gradient(700px 420px at 80% 10%, rgba(139,45,100,.05), transparent 55%),
    #fff;
}

/* ancho como maqueta */
.nm-about-header .container{
  width: min(1280px, calc(100% - 56px));
}

/* dos columnas */
.nm-about-grid{
  display: grid;
  grid-template-columns: 560px 1fr;
  gap: 64px;
  align-items: start;
}

/* =========================
   IZQUIERDA (tarjeta plana)
========================= */

.nm-about-frame{
  position: relative;
  border-radius: 18px;
}

/* bloque morado superior-izquierda */
.nm-about-frame::before{
  content:"";
  position:absolute;
  top:-22px;
  left:-22px;
  width: 240px;
  height: 140px;
  background:#8b2d64;
  border-radius: 22px;
  z-index:-1;
}

/* barra morada con degradado (más fina) */
.nm-about-topbar{
  height: 64px; /* ← más delgada */

  background: linear-gradient(
    135deg,
    #8b2d64 0%,
    #7a2a5a 35%,
    #6b2f6f 70%,
    #5c2b7a 100%
  );

  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: center;
  padding: 0 22px;
}


/* logo (si se ve raro, cambia filter:none) */
.nm-about-logo{
  height: 180px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

/* caja foto: PLANA (sombra mínima) */
.nm-about-photo-box{
  position: relative;
  background: transparent;
  border: none;
  overflow: visible;
}


/* foto */
.nm-about-photo{
  width: 100%;
  height: 430px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

/* diagonal morado abajo-izquierda */
.nm-about-diagonal{
  position:absolute;
  left:-22px;
  bottom:-22px;
  width: 220px;
  height: 220px;
  background:#8b2d64;
  border-radius: 22px;
  clip-path: polygon(0 45%, 60% 65%, 100% 100%, 0 100%);
  z-index: -1;
}

/* =========================
   DERECHA
========================= */

.nm-about-info{
  position: relative;
  max-width: 720px;
  padding-top: 6px;
}

/* puntitos */
.nm-about-dots{
  position:absolute;
  top: 0;
  left: 0;
  width: 180px;
  height: 90px;
  opacity: .35;
  background-image: radial-gradient(#cfd3da 1.6px, transparent 1.6px);
  background-size: 16px 16px;
  transform: translate(-18px, -10px);
}

.nm-about-title{
  margin: 0 0 18px;
  font-size: 60px;
  font-weight: 900;
  color: #111827;
  line-height: 1.02;
  position: relative;
}

.nm-about-title::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 92px;
  height: 8px;
  background: #8b2d64;
  border-radius: 999px;
}

.nm-about-subtitle{
  margin-top: 18px;
  margin-bottom: 12px;
  color: #8b2d64;
  font-weight: 900;
  font-size: 18px;
  max-width: 560px;
}

.nm-about-text{
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(17,24,39,.75);
  margin: 0 0 14px;
}

.nm-about-strong{
  font-weight: 900;
  color: rgba(17,24,39,.9);
  margin-top: 10px;
}

.nm-about-list{
  margin: 10px 0 18px 18px;
  color: rgba(17,24,39,.75);
  line-height: 1.7;
}

.nm-about-checks{
  margin-top: 12px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(17,24,39,.88);
}

.nm-about-logos{
  margin-top: 14px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.nm-about-logos img{
  height: 74px;
  width: auto;
  display: block;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px){
  .nm-about-grid{
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .nm-about-title{
    font-size: 46px;
  }

  .nm-about-photo{
    height: 360px;
  }
}