@font-face {
  font-family: "Montserrat-Regular";
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf"); }
@font-face {
  font-family: "Montserrat-Bold";
  src: url("../fonts/Montserrat/Montserrat-Bold.ttf"); }
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf"); }
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
.botones-deportes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.deporte-boton {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff20;
  border: 2px solid #00bcd4;
  border-radius: 10px;
  padding: 10px;
  width: 100px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.deporte-boton img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 5px;
}

.deporte-boton span {
  color: white;
  font-size: 14px;
  text-align: center;
}

.deporte-boton:hover {
  background-color: #00bcd4;
  transform: scale(1.05);
  color: white;
}
body {
  font-family: "Montserrat-Regular";
  color: #d9e552;
  font-size: 15px;
  margin: 0; }
  #background-slideshow {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}

input, textarea, select, button {
  font-family: "Montserrat-Regular";
  color: #929292;
  font-size: 12px; }


  select.form-control option {
  color: #0d99d7 !important; /* Usa el color que tú prefieras */
  background-color: white !important; } /* Fondo blanco para mayor contraste */

p, h1, h2, h3, h4, h5, h6, ul {
  margin: 0; }

img {
  max-width: 100%; }

ul {
  padding-left: 0;
  margin-bottom: 0; }

a:hover {
  text-decoration: none; }

:focus {
  outline: none; }



.inner {
  max-width: 758px;
  margin: auto;
  background: rgba(19, 76, 129, 0.85); /* Fondo interno semiopaco azul */
  border: 4px solid rgb(24, 127, 187); /* Borde rojo */
  padding: 77px 99px 87px;

  /* Efecto neón rojo */
  box-shadow:
    0 0 10px red,
    0 0 20px red,
    0 0 30px red,
    0 0 40px red;
}



textarea {
  resize: none; }

h3 {
  text-transform: uppercase;
  font-size: 45px;
  font-family: "Montserrat-Bold";
  text-align: center;
  margin-bottom: 12px; }

p {
  text-align: center;
  padding: 0 10px;
  margin-bottom: 35px;
  line-height: 2; 
font-weight: bold;}

h2 {
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Montserrat-Bold";
  text-align: center;
  margin-bottom: 20px; }



.form-group {
  padding-bottom: 10px;
  position: relative;
  display: block;
  margin-bottom:40px; }
  .form-group span {
    font-size: 15px;
    color: #ffffff;
    position: absolute;
    top: 1px;
    transition: all .1s ease;
    transform-origin: 0 0;
    cursor: text;
    font-weight: bold;
 }

  .form-group span.border {
    height: 2px;
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    top: 41px;
    transform: scaleX(0);
    transition: all .15s ease;
    background: #fff; }

.form-control {
  border: none;
  border-bottom: 2px solid #00ade6;
  display: block;
  width: 100%;
  height: 43px;
  font-size: 15px;
  background: none;
  font-family: "Montserrat-SemiBold"; }
  .form-control:focus, .form-control:valid {
    border-bottom: 2px solid #fff; }
    .form-control:focus + span, .form-control:valid + span {
      transform: translateY(-22px) scale(0.8); }
      .form-control:focus + span + .border, .form-control:valid + span + .border {
        transform: scaleX(1); }

textarea.form-control {
  padding-top: 10px;
  padding-bottom: 10px; }

button {
  border: none;
  width: 162px;
  height: 51px;
  border: 2px solid #fff;
  margin: auto;
  margin-top: 60px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  color: #fff;
  text-transform: uppercase;
  font-family: "Montserrat-SemiBold";
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s; }
  button i {
    margin-left: 10px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.1s;
    transition-duration: 0.1s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  button:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2098D1;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  button:hover {
    border-color: transparent; }
    button:hover:before {
      -webkit-transform: scaleX(1);
      transform: scaleX(1); }
    button:hover i {
      -webkit-transform: translateX(4px);
      transform: translateX(4px); }

@media (max-width: 767px) {
  h3 {
    font-size: 38px; }

  p {
    font-size: 14px;
    padding: 0; }

  .inner {
    padding: 27px 20px 37px;
    border: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none; }

  .wrapper {
    background: #39459b;
    border: 10px solid #0d99d7; } }

/*# sourceMappingURL=style.css.map */

.neon-white-box {
 background: rgba(19, 76, 129, 0.85); /* Mismo fondo que el cuadro rojo */
 border: 4px solid rgb(45, 174, 206); /* Borde blanco */
 padding: 20px; /* Ajusta el padding según necesites */
 margin-bottom: 30px; /* Espacio debajo del cuadro */

 /* Efecto neón blanco */
 box-shadow:
  0 0 10px white,
  0 0 20px rgb(255, 210, 86),
  0 0 30px white,
  0 0 40px white;
}

/* Ajusta un poco el margen superior del primer elemento dentro del nuevo cuadro para que no esté pegado al borde */
.neon-white-box > p:first-child {
 margin-top: 15px;
}
/* --- Estilos para el contenedor del logo --- */
.logo-container {
  /* Centra el logo y le da espacio arriba y abajo */
  text-align: center;
  padding: 30px 20px;
}

.logo-container img {
  /* Tamaño y apariencia del logo */
  max-width: 280px;  /* Hacemos el logo un poco más grande */
  width: 80%;        /* Asegura que sea responsive */
  
  /* Estilos del cuadro inspirado en tu imagen */
  background-color: rgba(26, 115, 232, 0.4); /* Fondo azul semi-transparente */
  border: 3px solid white; /* Borde blanco grueso */
  border-radius: 15px;     /* Esquinas redondeadas */
  padding: 20px;           /* Espacio entre el logo y el borde */
  
  /* Efecto de neón o resplandor */
  box-shadow: 
    0 0 8px rgba(255, 255, 255, 0.9), /* Resplandor blanco cercano */
    0 0 25px rgba(26, 115, 232, 0.7);  /* Resplandor azul más amplio */
}


/* --- Estilo para Títulos con Efecto Dorado y Sombra --- */
.titulo-dorado-sombra {
  /* Color dorado, similar al de la imagen de ejemplo */
  color: #FFD700; 

  /* Usamos la fuente en negrita que ya tienes cargada */
  font-family: "Montserrat-Bold", sans-serif;

  /* La magia del efecto 3D y la sombra */
  text-shadow: 
    /* Sombra principal oscura, desplazada 3px hacia abajo y a la derecha, con un desenfoque de 5px */
    3px 3px 5px rgba(0, 0, 0, 0.6),

    /* Un contorno muy sutil y oscuro para mejorar la definición del texto */
    0 0 2px rgba(0, 0, 0, 0.8);
}

/* --- Estilo para Títulos con Efecto Dorado y Sombra --- */
.subtitulo-dorado-sombra {
  /* Color dorado, similar al de la imagen de ejemplo */
  color: #f6f869; 

  /* Usamos la fuente en negrita que ya tienes cargada */
  font-family: "Montserrat-Bold", sans-serif;

  /* La magia del efecto 3D y la sombra */
  text-shadow: 
    /* Sombra principal oscura, desplazada 3px hacia abajo y a la derecha, con un desenfoque de 5px */
    3px 3px 5px rgba(0, 0, 0, 0.6),

    /* Un contorno muy sutil y oscuro para mejorar la definición del texto */
    0 0 2px rgba(0, 0, 0, 0.8);
}