/* SECCIÓN DE INSCRIPCIÓN - ESTILOS PROFESIONALES */
/* APLICAR GRADIENTE A TODO EL FONDO DE LA PÁGINA */
body {
  background: linear-gradient(135deg, #f9f9ff 0%, #f0f2ff 100%);
  background-attachment: fixed; /* Fijo para evitar cortes */
  min-height: 100vh;
  margin: 0;
}

/* AJUSTAR LA SECCIÓN DE REGISTRO */
.registro-section {
  position: relative;
  padding-top: 4rem;
  padding-bottom: 6rem;
  z-index: 1;
  /* Eliminar el background individual ya que ahora está en body */
}

/* MANTENER LAS TARJETAS COMO ESTÁN */
.card-registro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(3px);
  border-radius: 16px;
  z-index: -1;
}

.section-header {
  position: relative;
  margin-bottom: 4rem;
  z-index: 2;
}

.section-title {
  background: linear-gradient(90deg, #5a0a2d 0%, #8a245c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.section-subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #5a5a7a;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #5a0a2d 0%, #8a245c 100%);
  border-radius: 2px;
}

/* TARJETAS DE REGISTRO */
.card-registro {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: visible;
  z-index: 1;
}

.card-registro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 16px;
  z-index: -1;
}

.card-registro::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, rgba(90,10,45,0.3) 0%, rgba(138,36,92,0.1) 100%);
  border-radius: 18px;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-registro:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-registro:hover::after {
  opacity: 1;
}

.card-individual .icon-wrapper {
  background: rgba(218, 53, 85, 0.1);
  color: #da3555;
}

.card-corporativo .icon-wrapper {
  background: rgba(59, 113, 254, 0.1);
  color: #3b71fe;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.icon-wrapper i {
  font-size: 2rem;
}

.card-title {
  color: #2a2a48;
  text-align: center;
}

/* LISTA DE BENEFICIOS */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
}

.benefit-item:last-child {
  border-bottom: none;
}

.benefit-item i {
  margin-right: 1rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.card-individual .benefit-item i {
  color: #da3555;
}

.card-corporativo .benefit-item i {
  color: #3b71fe;
}

.benefit-item span {
  color: #4a4a6a;
  font-size: 1.05rem;
}

/* BOTONES */
.btn-registro {
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-registro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255,255,255,0.2), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-registro:hover::after {
  opacity: 1;
}

.btn-individual {
  background: linear-gradient(135deg, #da3555 0%, #c4244a 100%);
  color: white;
}

.btn-corporativo {
  background: linear-gradient(135deg, #3b71fe 0%, #2a5be6 100%);
  color: white;
}

/* EFECTO HOVER PARA BOTONES */
.btn-registro:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .registro-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .card-registro {
    margin-bottom: 2rem;
  }
  
  .card-registro:last-child {
    margin-bottom: 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .benefit-item span {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .card-body {
    padding: 1.5rem;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
}