@import url("inicio.css");

/* ===== TALLERES ===== */
.talleres {
  padding: 60px 50px;
  text-align: center;
}

.talleres h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.talleres .cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.talleres .card {
  flex: 1 1 250px;
  max-width: 280px;
  width: 280px;
  height: 280px;
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.talleres .card:hover {
  transform: translateY(-10px);
}

.talleres .card img {
  width: 100px;
  margin-bottom: 20px;
}

.talleres .card h3 {
  font-size: 18px;
  margin: 0;
}

/* ===== GALERÍA ===== */
.galeria {
  padding: 60px 50px;
  text-align: center;
  background: #fafafa;
}

.galeria h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

.galeria .imagenes {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.galeria .imagen-card {
  flex: 1 1 250px;
  max-width: 300px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.galeria .imagen-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
