@import url('../variables.css');

/* Nosotros (About Us) page custom styles */
.nosotros-hero-gradient {
  background: linear-gradient(rgba(30, 58, 95, 0.85), rgba(30, 58, 95, 0.7)),
    url('/images/mateDeLuna.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.nosotros-team-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nosotros-team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nosotros-value-card {
  transition: all 0.3s ease;
}

.nosotros-value-card:hover {
  transform: scale(1.05);
}