.section-nosotros {
  padding: 80px 20px;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

.nosotros-inner {
  max-width: 1120px;
  margin: 0 auto;
}

/* encabezado centrado */
.nosotros-header {
  text-align: center;
  margin-bottom: 36px;
}

.nosotros-title {
  font-size: 26px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
}

.nosotros-title span {
  color: var(--blue);
  font-weight: 800;
}

.nosotros-underline {
  width: 80px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  margin: 14px auto 18px;
}

.nosotros-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: #4B5563;
}

/* grid solo de cards debajo del texto */
.nosotros-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* card */
.nosotros-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 18px 16px 20px;
  border: 1px solid var(--border-light);
  box-shadow: 0 8px 20px rgba(0,0,0,0.02);
  text-align: center;  /* centra h3 y p */
  transition: border-color 0.35s ease-out,
			  box-shadow 0.35s ease-out,
			  transform 0.35s ease-out;
}

.nosotros-card:hover {
  border-color: var(--blue);
  box-shadow: 0 12px 26px rgba(0,120,212,0.12);
  transform: translateY(-2px);
}

.nosotros-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: #F3F7FB;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.nosotros-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

/* título en negrita centrado y azul Microsoft */
.nosotros-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);   /* azul corporativo */
  margin: 0 0 6px;
}

/* detalle debajo, centrado también */
.nosotros-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #4B5563;
  margin: 0;
}



.section-nosotros.reveal .nosotros-header,
.section-nosotros.reveal .nosotros-grid > * {
  opacity: 0;
  transform: translateY(30px);
}

.section-nosotros.reveal.reveal--visible .nosotros-header {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.05s;
}

.section-nosotros.reveal.reveal--visible .nosotros-grid > *:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.18s;
}

.section-nosotros.reveal.reveal--visible .nosotros-grid > *:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.26s;
}

.section-nosotros.reveal.reveal--visible .nosotros-grid > *:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0.34s;
}
