/* ===== SECCIÓN VALORES ===== */

.valores-section {
  padding:40px 20px;
  background: #1e3a8a;
  text-align: center;
  font-family: 'Poppins', sans-serif;
    
}

.valores-container {
  max-width: 1200px;
  margin: 0 auto;
}

.valores-header .subtitulo {
  color: #1e3a8a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-family: 'Poppins', sans-serif;
    
}

.valores-header h2 {
  font-size: 2.5rem;
  margin: 15px 0;
  color: #ffffff;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
    
}

.valores-header p {
  max-width: 700px;
  margin: 0 auto 70px;
  color: #ffffff;
  line-height: 1.6;
}



/* Waves decorativas */
.info-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  height: 100px;
}

.info-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Posicionamiento */
.info-wave-top {
  margin-bottom: -5px; /* encaja con la secci贸n superior */
}

.info-wave-bottom {
  margin-top: -5px; /* encaja con la siguiente secci贸n */
}


/* GRID DE CARDS */
.valores-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* CARD */
.valor-card {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
}

.valor-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* ICONO */
.valor-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* TITULO */
.valor-card h3 {
  color: #264653;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* TEXTO */
.valor-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .valores-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .valores-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .valores-cards {
    grid-template-columns: 1fr;
  }
}
