

/* Sobrescribir estilos de Bootstrap para ocultar la barra de scroll */
::-webkit-scrollbar {
  display: none !important;
}

::-webkit-scrollbar-track {
  display: none !important;
}

::-webkit-scrollbar-thumb {
  display: none !important;
}

/* Ocultar la barra de scroll en Firefox */
* {
  scrollbar-width: none !important;
  scrollbar-color: transparent transparent !important;
}

/* Ocultar la barra de scroll en IE/Edge */
* {
  -ms-overflow-style: none !important;
}

/* Estilo para el ícono de fútbol */
.fas.fa-futbol {
  color: rgb(23, 136, 174) !important;
}

/* Estilos para el header y top bar */
.main-content {
  min-height: 100vh; 
  position: relative;
  z-index: 1;
  background: #131f35; /* Mismo color que la sección de contacto */
}

/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  padding: 8px 0;
  z-index: 1002;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.top-bar.hide {
  opacity: 0;
  transform: translateY(-100%);
}

.top-bar .container {
  padding: 0 15px !important;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.social-links {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.social-icon {
  color: #fff;
  text-decoration: none;
  margin: 0 12px;
  transition: color 0.3s ease;
  font-size: 1.5rem;
}

.social-icon:hover {
  color: rgb(23, 136, 174);
}

.contact-info {
  display: flex;
  align-items: center;
}

.contact-item {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  padding: 8px 15px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-left: 10px;
}

.contact-item i {
  margin-right: 8px;
}

.contact-item.whatsapp {
  background: rgba(76, 175, 80, 0.2);
}

.contact-item.whatsapp:hover {
  background: rgba(76, 175, 80, 0.3);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}





  /* Estilos para el botón de Acceder */
  .hero .btn-primary {
    background: linear-gradient(45deg, #2ecc71, #27ae60);
  }
  
  .hero .btn-primary:hover {
    background: linear-gradient(45deg, #27ae60, #219653);
  }
  
  /* Estilos para la barra de desplazamiento */
  html {
    scrollbar-width: thin;
    scrollbar-color: #2a5298 #f1f1f1;
  }
  
  /* Webkit (Chrome, Edge, Safari) */
  html::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  
  html::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  html::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  
  html::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  }
  
  /* Firefox */
  * {
    scrollbar-width: thin;
    scrollbar-color: #2a5298 #f1f1f1;
  }
  
