/* Variables CSS */
:root {
  --primary-color: #b60a17;
  --secondary-color: #720000;
  --accent-color: #ff3a3a;
  --dark-color: #1f0000;
  --light-color: #fff5f5;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --neon-glow: 0 0 10px rgba(255, 58, 58, 0.7), 0 0 20px rgba(182, 10, 23, 0.5);
  --gold-color: #ffd700;
  --gold-gradient: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  --navbar-bg: #000000;
}

/* Estilos base */
body {
  font-family: 'Exo 2', sans-serif;
  color: #f0f0f0;
  background-color: var(--dark-color);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(182, 10, 23, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(114, 0, 0, 0.05) 0%, transparent 50%);
  overflow-x: hidden;
}

h1, h2, h3, h4, .navbar-brand {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Navbar */
.bg-primary-custom {
  background-color: var(--navbar-bg) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.text-primary-custom {
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

/* Navegación */
.nav-link {
  color: rgba(255, 255, 255, 0.8) !important;
  font-weight: 500;
  margin: 0 10px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.nav-link:before {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width 0.3s ease;
}

.nav-link:hover:before {
  width: 100%;
}

.navbar-brand {
  font-weight: 700;
  font-size: 24px;
  background: linear-gradient(90deg, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.navbar-brand:after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: transparent;
  z-index: -1;
  text-shadow: 0 0 10px var(--accent-color);
  filter: blur(4px);
  opacity: 0.7;
}

/* Botones */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50px;
  color: white;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(182, 10, 23, 0.4);
}

.btn-primary-custom:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(182, 10, 23, 0.6);
}

.btn-primary-custom:hover:before {
  left: 100%;
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  color: var(--accent-color);
  padding: 10px 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline-custom:hover {
  color: white;
}

.btn-outline-custom:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  transition: all 0.3s ease;
  z-index: -1;
}

.btn-outline-custom:hover:before {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: url('2.jpg') center/cover no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(114, 0, 0, 0.4) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(255, 58, 58, 0.4) 0%, transparent 30%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 58, 58, 0.5);
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, #fff, var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Elementos parallax */
.parallax-element {
  position: absolute;
  opacity: 0.4;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  filter: blur(20px);
}

.parallax-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.parallax-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  right: -200px;
}

/* Countdown Section */
.countdown-section {
  background: linear-gradient(135deg, rgba(31, 0, 0, 0.95), rgba(182, 10, 23, 0.4));
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  margin-top: 76px;
}

.countdown-title {
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(175, 143, 43, 0.5);
}

.countdown-container {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.countdown-item {
  margin: 0 10px;
  text-align: center;
  position: relative;
}

.countdown-digit {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  background: rgba(31, 0, 0, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 10px 15px;
  min-width: 80px;
  display: inline-block;
  box-shadow: var(--neon-glow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.countdown-digit:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  animation: scan 2s infinite;
}

.countdown-label {
  font-family: 'Exo 2', sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: white;
  margin-top: 5px;
  letter-spacing: 1px;
}

.register-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border: none;
  border-radius: 50px;
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(182, 10, 23, 0.4);
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: 'Exo 2', sans-serif;
}

.register-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(182, 10, 23, 0.6);
}

.register-btn:hover:before {
  left: 100%;
}

/* Tarjetas de cristal */
.glass-card {
  background: rgba(31, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.glass-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: all 0.5s ease;
  z-index: 1;
}

.glass-card:hover:before {
  left: 100%;
}

/* Feature boxes */
.feature-box {
  padding: 40px 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  height: 100%;
  transition: all 0.3s ease;
  background: rgba(31, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-box:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.feature-box:hover:after {
  transform: scaleX(1);
}

/* Icon boxes */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  margin-bottom: 25px;
  color: white;
  font-size: 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(182, 10, 23, 0.4);
}

.icon-box:before {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--dark-color);
  z-index: -1;
}

/* Step boxes */
.step-box {
  text-align: center;
  position: relative;
  padding: 40px 20px;
  background: rgba(31, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.step-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  font-family: 'Orbitron', sans-serif;
}

.step-box:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 80px;
  right: -15%;
  width: 30%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  z-index: 0;
}

/* Testimonial cards */
.testimonial-card {
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  height: 100%;
  background: rgba(31, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--neon-glow);
}

.quote-icon {
  font-size: 30px;
  color: var(--accent-color);
  opacity: 0.7;
}

/* Section titles */
.section-title {
  position: relative;
  margin-bottom: 50px;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* Accordion */
.accordion-item {
  background: rgba(31, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background: rgba(31, 0, 0, 0.7);
  color: white;
  font-weight: 600;
  padding: 20px 25px;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: rgba(31, 0, 0, 0.9);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--glass-border);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px 25px;
  color: #f0f0f0;
}

/* Forms */
.form-control, .form-select {
  background: rgba(31, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  padding: 12px 20px;
  color: white;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  background: rgba(31, 0, 0, 0.7);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem rgba(255, 58, 58, 0.25);
  color: white;
}

.form-select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

.form-select option {
  background-color: var(--dark-color);
  color: white;
}

.form-check-input {
  background-color: rgba(31, 0, 0, 0.7);
  border-color: var(--glass-border);
}

.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Contact info boxes */
.contact-info-box {
  padding: 25px;
  background: rgba(31, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--neon-glow);
}

/* Social icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(182, 10, 23, 0.4);
}

/* Footer */
.footer {
  background-color: rgba(31, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  color: white;
  padding: 70px 0 20px;
  position: relative;
  border-top: 1px solid var(--glass-border);
}

.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 10%, rgba(182, 10, 23, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 90% 90%, rgba(114, 0, 0, 0.1) 0%, transparent 30%);
  z-index: -1;
}

/* Back to top button */
.back-to-top {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(182, 10, 23, 0.4);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(182, 10, 23, 0.6);
}

/* Elementos futuristas */
.digital-line {
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--accent-color) 20%, 
    var(--primary-color) 50%,
    var(--secondary-color) 80%, 
    transparent 100%);
  position: relative;
  margin: 40px 0;
}

.digital-line:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 58, 58, 0) 45%, 
    rgba(255, 58, 58, 1) 50%,
    rgba(255, 58, 58, 0) 55%, 
    transparent 100%);
  animation: scan 3s infinite;
}

/* Tech overlay */
.tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 0;
  pointer-events: none;
}

/* Tech particles */
.tech-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Floating particles */
.floating-particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  animation: float 20s infinite linear;
}

/* Data visualization box */
.data-box {
  background: rgba(31, 0, 0, 0.8);
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  padding: 30px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.data-box:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 58, 58, 0.1) 0%, transparent 70%);
  animation: rotate 20s infinite linear;
  z-index: 0;
}

.data-stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  text-shadow: 0 0 10px rgba(255, 58, 58, 0.5);
}

.data-label {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animated background */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

/* Utility classes */
.section-padding {
  padding: 120px 0;
}

.section-light {
  background-color: rgba(255, 255, 255, 0.02);
}

/* Animaciones */
@keyframes scan {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-500px) rotate(360deg);
    opacity: 0;
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .step-box:not(:last-child)::after {
    display: none;
  }
  
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .navbar-collapse {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid var(--glass-border);
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .countdown-digit {
    font-size: 1.8rem;
    min-width: 60px;
    padding: 8px 10px;
  }
  
  .countdown-item {
    margin: 0 5px;
  }
  
  .countdown-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .countdown-container {
    flex-wrap: wrap;
  }
  
  .countdown-item {
    margin: 5px;
  }
  
  .countdown-digit {
    font-size: 1.5rem;
    min-width: 50px;
    padding: 6px 8px;
  }
  
  .countdown-title {
    font-size: 1rem;
  }
}

/* Solución para problemas de overflow en móviles */
@media (max-width: 767px) {
  body, html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }	
	
  .navbar {
    width: 100%;
    max-width: 100%;
    z-index: 1030;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
 
  .countdown-section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    margin-top: 100px;
    padding-left: 0;
    padding-right: 0;
  }
 
  .countdown-container {
    margin-left: -5px;
    margin-right: -5px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .position-relative {
    overflow: hidden;
  }

  .parallax-element {
    display: none;
  }
 
  .video-container {
    width: 100%;
    position: relative;
  }
 
  .video-container video {
    width: 100%;
    max-width: 100%;
  }
 
  .ratio.ratio-16x9 {
    width: 100%;
    max-width: 100%;
  }
 
  .feature-box {
    width: 100%;
    box-sizing: border-box;
  }
 
  .testimonial-card {
    width: 100%;
    box-sizing: border-box;
    padding: 15px;
  }
 
  .contact-info-box {
    width: 100%;
    box-sizing: border-box;
  }
 
  .back-to-top {
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}


/* 1. Botones - Agregar z-index alto y asegurar pointer-events */
.btn-primary-custom {
  z-index: 100 !important; /* Aumentado para estar por encima de otros elementos */
  cursor: pointer;
  pointer-events: auto !important; /* Asegurar que acepta clics */
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.btn-outline-custom {
  z-index: 100 !important;
  cursor: pointer;
  pointer-events: auto !important;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.register-btn {
  z-index: 100 !important;
  cursor: pointer;
  pointer-events: auto !important;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

/* 2. Videos - Asegurar que funcionen los controles */
.video-container {
  position: relative;
  z-index: 10 !important;
  pointer-events: auto !important;
}

.video-container video {
  position: relative;
  z-index: 10 !important;
  cursor: pointer;
  pointer-events: auto !important;
}

/* 3. iframes de YouTube */
.ratio {
  position: relative;
  z-index: 10 !important;
}

.ratio iframe {
  position: relative;
  z-index: 10 !important;
  pointer-events: auto !important;
}

/* 4. Overlays y elementos decorativos - NO interceptar clics */
.hero-section:before,
.parallax-element,
.glass-card:before,
.feature-box:after,
.icon-box:before,
.step-box:not(:last-child)::after,
.section-title:after,
.digital-line:after,
.tech-overlay,
.footer:before {
  pointer-events: none !important;
}

/* 5. Partículas y elementos animados */
.particle,
.floating-particle,
.tech-particles {
  pointer-events: none !important;
}

/* 6. Back to top button */
.back-to-top {
  z-index: 999 !important;
  pointer-events: auto !important;
  cursor: pointer;
  text-decoration: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* 7. Accordion buttons */
.accordion-button {
  z-index: 10 !important;
  position: relative;
  pointer-events: auto !important;
}


