/**
 * Estilos para la página de Talleres
 * Flores Elnath
 */

/* ==========================================
   TÍTULOS PRINCIPALES
   ========================================== */

.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: #4a5d23;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.page-subtitle {
  font-size: 1.3rem;
  color: #666;
  margin-bottom: 40px;
}

/* ==========================================
   CARD DEL TALLER
   ========================================== */

.taller-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.1);
}

.taller-images img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.taller-images .carousel {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.taller-images .carousel-control-prev,
.taller-images .carousel-control-next {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.taller-images .carousel-control-prev:hover,
.taller-images .carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.taller-images .carousel-control-prev {
  left: 10px;
}

.taller-images .carousel-control-next {
  right: 10px;
}

.taller-images .carousel-indicators {
  bottom: 10px;
}

.taller-images .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #667eea;
  border: 2px solid white;
}

.taller-images .carousel-indicators button.active {
  background-color: #764ba2;
}

/* ==========================================
   HEADER DEL TALLER
   ========================================== */

.taller-header {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 3px solid #667eea;
}

.taller-titulo {
  font-size: 2.5rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(255, 255, 255, 0.8);
}

.taller-subtitulo {
  font-size: 1.5rem;
  color: #667eea;
  font-weight: 600;
  margin-bottom: 15px;
}

.badge-modalidad {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* ==========================================
   SECCIONES DE INFORMACIÓN
   ========================================== */

.taller-content {
  margin-top: 30px;
}

.info-section {
  margin-bottom: 30px;
}

.info-section h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #4a5d23;
  margin-bottom: 15px;
}

.info-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

.significado-list,
.beneficios-list {
  list-style: none;
  padding-left: 0;
}

.significado-list li,
.beneficios-list li {
  padding: 8px 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.significado-list li strong {
  color: #667eea;
  font-weight: 700;
}

/* ==========================================
   NIVELES DEL TALLER
   ========================================== */

.niveles-container {
  display: grid;
  gap: 20px;
}

.nivel-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
  border-radius: 15px;
  padding: 20px;
  border-left: 5px solid #667eea;
  transition: all 0.3s ease;
}

.nivel-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.2);
}

.nivel-item h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.nivel-item p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.6;
}

/* ==========================================
   INFORMACIÓN PRÁCTICA
   ========================================== */

.info-practica {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
}

.info-box {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid rgba(102, 126, 234, 0.2);
  height: 100%;
}

.info-box h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 15px;
}

.info-box h5 i {
  margin-right: 8px;
}

.info-box p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0;
  line-height: 1.8;
}

.incluye-section h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #4a5d23;
  margin-bottom: 15px;
}

.incluye-section ul {
  list-style: none;
  padding-left: 0;
}

.incluye-section ul li {
  padding: 5px 0;
  font-size: 1.05rem;
}

/* ==========================================
   BOTONES DE ACCIÓN
   ========================================== */

.acciones-taller {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-reservar {
  background: linear-gradient(135deg, #4a5d23 0%, #6b8e23 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-reservar:hover {
  background: linear-gradient(135deg, #6b8e23 0%, #4a5d23 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(74, 93, 35, 0.4);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background: #128C7E;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-contacto {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-contacto:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* ==========================================
   UBICACIÓN
   ========================================== */

.ubicacion-taller {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 20px;
  border-left: 5px solid #667eea;
}

.ubicacion-taller p {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.ubicacion-taller i {
  font-size: 1.2rem;
  margin-right: 8px;
}

.ubicacion-taller a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
}

.ubicacion-taller a:hover {
  text-decoration: underline;
}

/* ==========================================
   MENSAJE FINAL
   ========================================== */

.mensaje-final {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.mensaje-final h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.mensaje-final p {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* ==========================================
   PRÓXIMOS TALLERES
   ========================================== */

.proximos-talleres h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #4a5d23;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .taller-card {
    padding: 25px;
  }

  .taller-titulo {
    font-size: 1.8rem;
  }

  .taller-subtitulo {
    font-size: 1.2rem;
  }

  .acciones-taller {
    flex-direction: column;
  }

  .btn-reservar,
  .btn-whatsapp,
  .btn-contacto {
    width: 100%;
    justify-content: center;
  }

  .info-section h4 {
    font-size: 1.2rem;
  }

  .mensaje-final h3 {
    font-size: 1.5rem;
  }

  .mensaje-final p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .page-title {
    font-size: 1.5rem;
  }

  .taller-card {
    padding: 20px;
  }

  .taller-titulo {
    font-size: 1.5rem;
  }
}
