/* Clases Section */
.clases-section {
  background-color: #f8f9fa;
  min-height: 60vh;
}

.clase-card {
  background: white;
  border-radius: 20px;
  padding: 0;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.clase-card:hover {
  transform: translateY(-5px);
}

/* Sombras con gradiente matching botones */
.shadow-blue {
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.35);
}

.shadow-blue:hover {
  box-shadow: 0 15px 40px rgba(0, 210, 255, 0.5);
}

.shadow-morado {
  box-shadow: 0 10px 30px rgba(97, 67, 133, 0.35);
}

.shadow-morado:hover {
  box-shadow: 0 15px 40px rgba(97, 67, 133, 0.5);
}

.shadow-verde {
  box-shadow: 0 10px 30px rgba(29, 151, 108, 0.35);
}

.shadow-verde:hover {
  box-shadow: 0 15px 40px rgba(29, 151, 108, 0.5);
}

.shadow-naranja {
  box-shadow: 0 10px 30px rgba(255, 81, 47, 0.35);
}

.shadow-naranja:hover {
  box-shadow: 0 15px 40px rgba(255, 81, 47, 0.5);
}

/* Imagen del monitor */
.clase-imagen {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.clase-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clase-content {
  padding: 2rem;
}

.clase-badge {
  display: inline-block;
  background: linear-gradient(45deg, #00d2ff, #3a7bd5);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.clase-titulo {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.clase-monitor {
  color: #666;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.clase-descripcion {
  color: #777;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.clase-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #eee;
}

.clase-precio {
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

.clase-precio small {
  font-size: 0.875rem;
  font-weight: 400;
  color: #666;
}

/* Botones Reserve Now con gradientes */
.btn-reservar {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  border: none;
  transition: all 0.3s ease;
  color: white;
  text-decoration: none;
}

.btn-reservar:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  color: white;
}

/* Separación adicional entre columnas */
.row-cols-lg-2 {
  --bs-gutter-x: 3rem;
}

.btn-azul {
  background: linear-gradient(45deg, #00d2ff, #3a7bd5);
  box-shadow: 0 3px 15px rgba(0, 210, 255, 0.3);
}

.btn-azul:hover {
  box-shadow: 0 5px 25px rgba(0, 210, 255, 0.5);
}

.btn-morado {
  background: linear-gradient(45deg, #614385, #516395);
  box-shadow: 0 3px 15px rgba(97, 67, 133, 0.3);
}

.btn-morado:hover {
  box-shadow: 0 5px 25px rgba(97, 67, 133, 0.5);
}

.btn-verde {
  background: linear-gradient(45deg, #1d976c, #93f9b9);
  box-shadow: 0 3px 15px rgba(29, 151, 108, 0.3);
}

.btn-verde:hover {
  box-shadow: 0 5px 25px rgba(29, 151, 108, 0.5);
}

.btn-naranja {
  background: linear-gradient(45deg, #ff512f, #dd2476);
  box-shadow: 0 3px 15px rgba(255, 81, 47, 0.3);
}

.btn-naranja:hover {
  box-shadow: 0 5px 25px rgba(255, 81, 47, 0.5);
}

/* Responsive */
@media (max-width: 576px) {
  .clase-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .clase-footer .btn-reservar {
    width: 100%;
  }
}
