/* EducAgua - estilos específicos de la página */

.hero-section {
  background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
  color: white;
  padding: 100px 0;
  text-align: center;
}

.section-title {
  color: #0083b0;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}

.education-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}

.education-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.tip-card {
  background: #f8f9fa;
  border-left: 4px solid #00b4db;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-radius: 0 10px 10px 0;
}

.fact-box {
  background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #00b4db 0%, #0083b0 100%);
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 180, 219, 0.4);
}

.quiz-section {
  background: #f8f9fa;
  padding: 60px 0;
}

.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #00b4db;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #00b4db;
}

.water-cycle {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  padding: 60px 0;
}