@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Bebas Neue", sans-serif;
}

/*-----HEADER------*/
header {
  background-color: #1D3557;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header h1 {
  font-size: 50px;
  font-weight: 900;
  font-style: italic;
  color: #E9C46A;
}
header nav ul {
  background-color: #1D3557 !important;
  font-size: 25px;
}
header nav ul li a {
  color: white !important;
  transition: 0.5s;
}
header nav ul li a .nav-link {
  font-size: 35px !important;
}
header nav ul li a:hover {
  color: #E9C46A !important;
}
header nav .boton {
  border: 2px solid #E9C46A;
  color: #E9C46A;
}
header nav .boton:hover {
  background-color: #E9C46A;
  color: #1D3557;
}

/*-------SECCION INDEX-----*/
.hero {
  width: 100%;
  height: 900px;
  color: black;
  background-image: url(/img/RONALDO2002.jpeg);
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  flex-direction: column;
  display: flex;
  justify-content: right;
  align-items: end;
  font-size: 25px;
}
.hero h2 {
  color: white;
  font-size: 60px;
  padding-right: 12%;
  padding-top: 10%;
}
.hero p {
  color: white;
  font-size: 38px;
  padding-right: 15%;
}

.bienvenida h2 {
  font-size: 40px;
  color: #E9C46A;
  background-color: #1D3557;
  text-align: center;
  font-style: italic;
}

.destacado {
  background-color: #1D3557;
  color: white;
}
.destacado h2 {
  text-align: center;
  font-size: 30px;
  padding: 40px 0;
}
.destacado div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 50px;
}
.destacado .imagen-articulo {
  position: relative;
  height: 700px;
}
.destacado .imagen-articulo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destacado .imagen-articulo h3 {
  position: absolute;
  bottom: 0;
  color: white;
  background-color: rgba(29, 53, 87, 0.7529411765);
  width: 100%;
  padding: 8px;
  font-size: 22px;
}
.destacado .imagen-articulo .info-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.63);
  color: white;
  padding: 15px;
  opacity: 0;
  transition: all 1s;
  font-size: 18px;
}
.destacado .imagen-articulo:hover .info-hover {
  opacity: 1;
}

.sobrenosotros {
  background-color: #1D3557;
  color: #E9C46A;
}
.sobrenosotros h2 {
  text-align: center;
  font-size: 50px;
  padding: 40px 0;
  font-style: italic;
}
.sobrenosotros .titulo-texto {
  background-color: #1D3557;
  padding: 40px 40px;
}
.sobrenosotros .titulo-texto div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 30px;
  padding: 20px;
}
.sobrenosotros .titulo-texto h2 {
  font-size: 50px;
  font-style: italic;
  color: #E9C46A;
  margin-bottom: 20px;
  text-align: center;
}
.sobrenosotros .titulo-texto p {
  font-size: 20px;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  height: 100%;
  padding-top: 10%;
}
.sobrenosotros .titulo-texto img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/*+++SECCION FUTBOL ARGENTINO*/
.producto-arg {
  background-color: #1D3557;
  color: #E9C46A;
}
.producto-arg h2 {
  text-align: center;
  font-size: 50px;
  padding: 40px 0;
  font-style: italic;
}
.producto-arg div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 30px;
}
.producto-arg .img-argentino {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
.producto-arg .img-argentino img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.producto-arg .img-argentino h3 {
  position: absolute;
  bottom: 0;
  color: white;
  background-color: rgba(29, 53, 87, 0.7529411765);
  width: 100%;
  font-size: 22px;
  padding: 8px;
}
.producto-arg .img-argentino .info-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  opacity: 0;
  transition: all 1s;
  font-size: 16px;
}
.producto-arg .img-argentino:hover .info-hover {
  opacity: 1;
}

/*$-----SECCION FUTBOL INTERNACIONAL------*/
.producto-interna {
  background-color: #1D3557;
  color: #E9C46A;
}
.producto-interna h2 {
  text-align: center;
  font-size: 50px;
  font-style: italic;
  padding: 40px 0;
}
.producto-interna div {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 30px;
}
.producto-interna .img-interna {
  position: relative;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}
.producto-interna .img-interna img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.producto-interna .img-interna h3 {
  position: absolute;
  bottom: 0;
  color: white;
  background-color: #1D3557;
  width: 100%;
  font-size: 22px;
  padding: 8px;
}
.producto-interna .img-interna .info-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  opacity: 0;
  transition: all 1s;
  font-size: 16px;
}
.producto-interna .img-interna:hover .info-hover {
  opacity: 1;
}

/*------ SECCION CONTACTO-----*/
.contacto {
  background-color: #1D3557;
  margin-bottom: 0;
  overflow: hidden;
}
.contacto h2 {
  text-align: center;
  font-size: 50px;
  font-style: italic;
  padding: 40px 0;
  color: #E9C46A;
  background-color: #1D3557;
}

.row {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.g-3 {
  background-color: #E9C46A;
  color: #1D3557;
}

.navbar-toggler {
  background-color: #E9C46A;
}

.btn-primary {
  background-color: #1D3557 !important;
  color: #E9C46A !important;
  border-color: #E9C46A !important;
}

.mapa {
  text-align: center;
  background-color: #1D3557;
  margin: 0;
  padding: 40px;
}

/*---------FOOTER------*/
footer {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background-color: #E9C46A;
}
footer a {
  text-decoration: none;
}
footer a i {
  font-size: 37px;
  color: #1d3557;
  transition: 0.5s;
}
footer a i:hover {
  color: white;
}

@media screen and (max-width: 1250px) {
  .hero h2 {
    color: white;
    font-size: 50px;
    padding-right: 12%;
    padding-top: 10%;
  }
  .hero p {
    color: white;
    font-size: 28px;
    padding-right: 15%;
  }
  header h1 {
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    color: #E9C46A;
  }
  header nav ul li a .nav-link {
    font-size: 30px;
  }
}
@media screen and (max-width: 1200px) {
  header h1 {
    font-size: 34px;
    font-weight: 900;
    font-style: italic;
    color: #E9C46A;
  }
  .sobrenosotros .titulo-texto p {
    font-size: 18px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    padding-top: 10%;
  }
}
@media screen and (max-width: 1060px) {
  .producto-arg .img-argentino h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    font-size: 18px;
    padding: 8px;
  }
  .producto-arg .img-argentino .info-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    opacity: 0;
    transition: all 1s;
    font-size: 14px;
  }
  .producto-interna .img-interna h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    font-size: 18px;
    padding: 8px;
  }
  .producto-interna .img-interna .info-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    opacity: 0;
    transition: all 1s;
    font-size: 14px;
  }
  .hero h2 {
    color: white;
    font-size: 45px;
    padding-right: 12%;
    padding-top: 10%;
  }
  .hero p {
    color: white;
    font-size: 25px;
    padding-right: 15%;
  }
  .sobrenosotros .titulo-texto p {
    font-size: 17px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    padding-top: 10%;
  }
}
@media screen and (max-width: 970px) {
  .destacado .imagen-articulo h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    padding: 8px;
    font-size: 18px;
  }
  .destacado .imagen-articulo .info-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.37);
    color: white;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 14px;
  }
  .producto-arg div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px;
  }
  .producto-interna div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 20px;
  }
  .sobrenosotros .titulo-texto p {
    font-size: 16px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    padding-top: 10%;
  }
}
@media screen and (max-width: 882px) {
  .img-argentino h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    font-size: 12px;
    padding: 8px;
  }
  .img-interna h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    font-size: 12px;
    padding: 8px;
  }
  .hero h2 {
    color: white;
    font-size: 40px;
    padding-right: 12%;
    padding-top: 10%;
  }
  .hero p {
    color: white;
    font-size: 23px;
    padding-right: 15%;
  }
  .sobrenosotros .titulo-texto p {
    font-size: 14px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    padding-top: 10%;
  }
}
@media screen and (max-width: 770px) {
  .destacado div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }
  .producto-arg h2 {
    text-align: center;
    font-size: 40px;
    padding: 40px 0;
    font-style: italic;
  }
  .producto-interna h2 {
    text-align: center;
    font-size: 40px;
    padding: 40px 0;
    font-style: italic;
  }
  .sobrenosotros h2 {
    text-align: center;
    font-size: 40px;
    padding: 40px;
    font-style: italic;
  }
  .contacto h2 {
    text-align: center;
    font-size: 40px;
    padding: 40px;
    font-style: italic;
  }
  .sobrenosotros .titulo-texto p {
    font-size: 12px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    padding-top: 10%;
  }
}
@media screen and (max-width: 692px) {
  .imagen-articulo h3 {
    color: white;
    font-size: 10px;
  }
  .producto-arg div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
  .producto-interna div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 20px;
  }
  .hero {
    width: 100%;
    height: 900px;
    color: black;
    background-image: url(/img/BOCA2025s-c.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
  }
  .sobrenosotros .titulo-texto p {
    font-size: 10px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    padding-top: 10%;
  }
  .row {
    max-width: 500px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 692px) and (max-width: 692px) {
  .mapa iframe {
    width: 100%;
    height: 350px;
  }
}
@media screen and (max-width: 620px) {
  header h1 {
    font-size: 35px;
    font-weight: 900;
    font-style: italic;
    color: #E9C46A;
  }
  .producto-arg h2 {
    text-align: center;
    font-size: 35px;
    padding: 35px 0;
    font-style: italic;
  }
  .producto-interna h2 {
    text-align: center;
    font-size: 35px;
    padding: 35px;
    font-style: italic;
  }
  .sobrenosotros h2 {
    text-align: center;
    font-size: 35px;
    padding: 35px;
    font-style: italic;
  }
  .contacto h2 {
    text-align: center;
    font-size: 35px;
    padding: 35px;
    font-style: italic;
  }
  .hero h2 {
    color: white;
    font-size: 40px;
  }
  .hero p {
    color: white;
    font-size: 18px;
  }
  .sobrenosotros .titulo-texto p {
    font-size: 9px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    padding-top: 10%;
  }
}
@media screen and (max-width: 582px) {
  .img-argentino h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    font-size: 8px;
    padding: 8px;
  }
  .img-interna h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    font-size: 8px;
    padding: 8px;
  }
  .bienvenida h2 {
    font-size: 25px;
  }
  .destacado h2 {
    text-align: center;
    font-size: 25px;
    padding: 40px 0;
  }
  .row {
    max-width: 400px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 476px) {
  .hero h2 {
    color: white;
    font-size: 30px;
  }
  .hero p {
    color: white;
    font-size: 14px;
  }
  .sobrenosotros .titulo-texto p {
    font-size: 7px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    padding-top: 10%;
  }
}
@media screen and (max-width: 422px) {
  .img-argentino h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    font-size: 6px;
    padding: 8px;
  }
  .img-interna h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    font-size: 6px;
    padding: 8px;
  }
  .destacado .imagen-articulo h3 {
    position: absolute;
    bottom: 0;
    color: white;
    background-color: rgba(29, 53, 87, 0.7529411765);
    width: 100%;
    padding: 8px;
    font-size: 14px;
  }
  .destacado .imagen-articulo .info-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.37);
    color: white;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-size: 10px;
  }
  header h1 {
    font-size: 30px;
    font-weight: 900;
    font-style: italic;
    color: #E9C46A;
  }
  .producto-arg h2 {
    text-align: center;
    font-size: 30px;
    padding: 40px 0;
    font-style: italic;
  }
  .producto-interna h2 {
    text-align: center;
    font-size: 30px;
    padding: 40px 0;
    font-style: italic;
  }
  .sobrenosotros h2 {
    text-align: center;
    font-size: 30px;
    padding: 40px 0;
    font-style: italic;
  }
  .contacto h2 {
    text-align: center;
    font-size: 30px;
    padding: 40px 0;
    font-style: italic;
  }
  .row {
    max-width: 300px;
    margin: 60px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  }
}
@media screen and (max-width: 392px) {
  .sobrenosotros .titulo-texto p {
    font-size: 6px;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    height: 100%;
    padding-top: 10%;
  }
}

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