@charset "UTF-8";
/* Header */
a img {
  cursor: pointer;
}

header {
  background-color: #25343F;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header a:hover {
  font-size: large;
  font-weight: bolder;
}
header a:visited {
  color: #25343F;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23EAEFEF' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}

.navbar {
  height: auto;
}

.navbar-nav {
  align-items: flex-start;
}

/* Main */
.titulo {
  background-color: #EAEFEF;
  color: #25343F;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

/* Link del top mundial */
.link {
  text-decoration: none;
  display: flex;
  justify-content: center;
  padding: 1rem;
}
.link a {
  text-decoration: none;
}
.link h3 {
  color: #25343F;
  text-align: center;
  justify-content: center;
  width: 18rem;
  height: 5rem;
  background-color: #EAEFEF;
  transition: width 0.5s ease;
  background-color: 1s ease;
  border: 3px solid #25343F;
  padding: 1rem;
  border-radius: 10px;
}
.link h3:hover {
  width: 20rem;
  background-color: #25343F;
  font-size: xx-large;
  color: #EAEFEF;
}

/* Carrousel con Boostrap */
.carousel-item {
  max-height: 700px;
}
.carousel-item img {
  object-fit: cover;
}

/* Container de las cards*/
.container {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1400px;
  padding: 1.5rem;
  margin: 0 auto;
  gap: 40px;
}
.container .card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: whitesmoke;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  cursor: default;
  transition: all 400ms ease;
}
.container .card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3%);
}

.card img {
  width: 100%;
  height: 450px;
  object-fit: contain;
}
.card .contenido {
  padding: 15px;
  text-align: center;
}
.card .contenido p {
  line-height: 1.5;
  color: #25343F;
}
.card .contenido h3 {
  font-weight: 400;
  margin-bottom: 15px;
}
.card .contenido a {
  text-decoration: none;
  display: inline-block;
  padding: 10px;
  margin-top: 10px;
  color: #25343F;
  border: 1px solid #25343F;
  border-radius: 4px;
  transition: all 400ms ease;
}
.card .contenido a:hover {
  background: #25343F;
  color: #fff;
}

.suscripcion {
  color: #EAEFEF;
}

/* Sección de historia */
#titulos {
  background-color: #25343F;
  color: #EAEFEF;
  text-align: center;
  padding: 1.5rem;
}

main h5 {
  text-align: center;
  padding: 1rem;
  color: #25343F;
}

/* Sección de torneos */
.container-torneos {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1500px;
  padding: 1.5rem;
  margin: 0 auto;
  gap: 50px;
}
.container-torneos .card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: whitesmoke;
  box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
  cursor: default;
  transition: all 400ms ease;
}
.container-torneos .card img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}
.container-torneos .card:hover {
  box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-3%);
}

.row {
  background-color: #25343F;
}
.row .card {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background-color: whitesmoke;
  box-shadow: 0px 1px 5px #EAEFEF;
  cursor: default;
  transition: all 400ms ease;
}
.row .card img {
  width: 100%;
  height: 400px;
  object-fit: contain;
}
.row .card:hover {
  background-color: #eaeaea;
  transform: scale(1.02);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* MQ de Tablet */
@media (min-width: 764px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 764px) {
  .container-torneos {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*MQ de Desktop*/
@media (min-width: 1024px) {
  .container {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .container-torneos {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
  }
}
/* Footer de todas las páginas */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #FF9B51;
  color: #25343F;
}

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