
/* === HERO SOBRE NOSOTROS === */
.hero-about {
  background: linear-gradient(rgba(61, 158, 185, 0.8), rgba(61, 158, 185, 0.8)), url('../assets/images/image.webp') center/cover;
  padding: 120px 0;
  text-align: center;
  color: white;
}

.hero-about h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

/* === SECCIÓN DE VALORES === */
.card-value {
  background: white;
  padding: 30px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.card-value h3 {
  color: #3D9EB9;
  margin-top: 10px;
}

.card-value p {
  font-size: 0.95rem;
}

.card-value i {
  font-size: 25px;
  color: white;
}

.card-value .icon-container {
  background-color: #88FAC0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

/* === GALERÍA INSTALACIONES === */
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

