@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100..900&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  text-align: center;
  font-family: "Bebas Neue", sans-serif;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.07'/%3E%3C/svg%3E"), linear-gradient(140deg, rgb(0, 46, 66) 19%, rgb(70, 101, 125) 33%, rgb(204, 216, 232) 50%, rgb(70, 101, 125) 66%, rgb(0, 46, 66) 84%);
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: fixed;
}

header {
  display: flex;
  background-color: #17253f;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  z-index: 999;
  top: 0px;
}
header img {
  height: 7rem;
}
header ul li {
  font-size: 2rem;
  display: inline-block;
  padding: 1.5rem;
}
header a:hover {
  color: black;
}

.nav-link {
  color: white;
  text-decoration: none;
}

main p {
  color: white;
  font-size: 1.5rem;
  background-color: #17253f;
  margin-bottom: 0;
}

.banderaARG {
  width: 2rem;
  vertical-align: middle;
}

.banderaESP {
  width: 2rem;
  vertical-align: middle;
}

.jugador {
  width: 100%;
  height: auto;
  border-radius: 10px;
  background-color: #006596;
  object-fit: cover;
  object-position: top;
}

#puntos {
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  background-color: rgb(83, 135, 255);
}

.contenedor-index {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(6, auto);
  gap: 3px 30px;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.contenedor-index > div:last-child { /* agarro el ultimo para que no quede a la izquierda(fue realizado con ayuda de la IA)*/
  grid-column: 2;
  justify-self: center; /* Se asegura que la tarjeta esté centrada en su celda */
}

.contenedor-index-femenino {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 0px 15px;
  align-items: center;
  justify-items: center;
  width: 100%;
  margin: 0 auto;
}

.contenedor-index-femenino .jugador {
  width: 100%;
  max-width: 300px;
}

/*disposicion distinta para que queden visualmente disto organizados los rankings*/
.Inicio {
  background-color: rgba(112, 155, 255, 0.285);
}
.Inicio h1 {
  background-color: #006596;
  padding: 3rem;
  color: white;
}

.presentacion {
  margin-bottom: 20px;
}
.presentacion .imagenInicio {
  width: 80%;
}
.presentacion h2 {
  color: black;
  font-weight: 580;
  font-size: 3rem;
}
.presentacion p {
  font-family: "Smooch Sans", sans-serif;
  font-weight: 650;
  font-size: 1.5rem;
  background-color: transparent;
  color: black;
}

.historia {
  gap: 5rem;
}
.historia .imagenHistoria {
  width: 80%;
}
.historia .titulo {
  font-size: 3rem;
  color: #29aae1;
}
.historia p, .historia li {
  background-color: transparent;
  color: black;
}
.historia h2 {
  color: #29aae1;
  background-color: #17253f;
  padding: 4.5rem;
  margin-bottom: 10px;
}

.inicioNumeros {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-top: 0.5rem;
  background-color: #17253f;
  padding: 2rem;
}
.inicioNumeros p {
  font-size: 2rem;
}

h1 {
  padding-top: 1rem;
}

.torneos {
  padding: 0rem 2rem;
}

.row {
  align-items: center;
}

.contenedorDerecho {
  background-color: #29aae1;
}
.contenedorDerecho .imagenIlustrativa {
  width: 90%;
}
.contenedorDerecho p {
  text-align: end;
  background-color: rgba(255, 255, 255, 0);
}
.contenedorDerecho h2 {
  text-align: end;
}
.contenedorDerecho .ubicacion {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding: 4rem;
}
.contenedorDerecho .ubicacion .LOGO {
  display: inline-block;
  width: 10rem;
  padding-bottom: 1rem;
}

.contenedorIzquierdo {
  background-color: #17253f;
}
.contenedorIzquierdo .ubicacion {
  display: flex;
  flex-direction: column;
  padding: 4rem;
}
.contenedorIzquierdo .ubicacion .LOGO {
  display: inline-block;
  width: 10rem;
  padding-bottom: 1rem;
}
.contenedorIzquierdo .imagenIlustrativa {
  width: 90%;
}
.contenedorIzquierdo p {
  text-align: start;
}

.LOGO, svg {
  display: inline-block;
  width: 10rem;
  padding-bottom: 1rem;
}

.PrimerPuesto:hover {
  background-color: #d39700; /* Color dorado de fondo */
  background-image: url(../img/NumeroUNO.png);
  background-repeat: no-repeat;
  /* 2. Para centrarlo perfectamente (horizontal y vertical) */
  background-position: left top;
  background-size: 40%;
  transform: scale(1.1);
  transition: 0.5s;
}

.SegundoPuesto:hover {
  background-color: #A8A9AD;
  background-image: url(../img/NumeroDOS.png);
  background-repeat: no-repeat;
  /* 2. Para centrarlo perfectamente (horizontal y vertical) */
  background-position: left top;
  background-size: 40%;
  transform: scale(1.1);
  transition: 0.5s;
}

.TercerPuesto:hover {
  background-color: #d4771a;
  background-image: url(../img/NumeroTRES.png);
  background-repeat: no-repeat;
  /* 2. Para centrarlo perfectamente (horizontal y vertical) */
  background-position: left top;
  background-size: 40%;
  transform: scale(1.1);
  transition: 0.5s;
}

footer {
  background-color: #17253f;
}
footer img {
  width: 2rem;
  margin: 1rem;
}
footer p {
  color: white;
  font-size: 4rem;
  margin: 0.5rem 1rem 1rem 1rem;
  padding-top: 1rem;
}

@media (max-width: 650px) {
  .navbar-toggler {
    background-color: white;
  }
  main {
    overflow-x: hidden;
  }
  main h1 {
    color: white;
  }
  main h2 {
    color: white;
  }
  .contenedor-index {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px 0px;
    align-items: center;
    width: 80%;
    max-width: 650px;
    margin: 0 auto;
  }
  #RedesMedia {
    display: none;
  }
  #puntos {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .contenedor-redes {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: space-evenly;
  }
  .contenedor-index-femenino {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .contenedor-index-femenino > div:nth-child(even) {
    margin-top: 0;
  }
  .Inicio {
    overflow-x: hidden;
  }
  .contenedorDerecho h2 {
    text-align: center;
    font-size: 2rem;
  }
  .contenedorDerecho p {
    text-align: center;
  }
  .contenedorIzquierdo p {
    text-align: center;
  }
  .inicioNumeros {
    display: none;
  }
}
@media (min-width: 651px) and (max-width: 1280px) {
  .navbar-toggler {
    background-color: white;
  }
  .contenedor-index {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, auto);
    gap: 3px 30px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    overflow-x: hidden;
  }
  .contenedor-index-femenino {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, auto);
    gap: 0px 15px;
    align-items: center;
    justify-items: center;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
  }
  .Inicio {
    overflow-x: hidden;
  }
}

/*# sourceMappingURL=style.css.map */
