/* ================= NOSOTROS ================= */

.nosotros {
  background: #f4f6f9;
  padding: 100px 20px;
}

.nosotros-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

/* TEXTO */

.nosotros-logo img {
  max-width: 220px;
  margin-bottom: 40px;
}

.bloque-institucional {
  background: #ffffff;
  padding: 35px;
  margin-bottom: 35px;
  border-left: 6px solid #0b2a4a;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  animation: fadeUp 0.6s ease forwards;
}

.bloque-institucional h3 {
  margin-bottom: 15px;
  color: #0b2a4a;
  font-size: 1.4rem;
}

.bloque-institucional p {
  line-height: 1.8;
  color: #333;
  font-size: 1rem;
}

/* SEPARADOR */

.separador-tecnico {
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    #0b2a4a,
    transparent
  );
  margin: 50px 0;
}

/* IMÁGENES */

.nosotros-imagenes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.imagen-institucional img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.15);
}

.imagen-institucional figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #666;
  margin-top: 8px;
}

/* CTA */

.hero-buttons {
  background: #0b2a4a;
  padding: 50px 20px;
  text-align: center;
}

.hero-buttons a {
  margin: 10px;
}

/* ANIMACIÓN */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .nosotros-container {
    grid-template-columns: 1fr;
  }
}
