.titulo-grid, .sub-titulo-grid-uno, .sub-titulo-grid-dos, .sub-titulo-grid-tres, .sub-titulo-grid-cuatro, .sub-titulo-grid-cinco, .sub-titulo-grid-seis {
  color: #740A03;
  font-family: "IBM Plex Sans", sans-serif;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

.sub-titulo-grid-uno, .sub-titulo-grid-dos, .sub-titulo-grid-tres, .sub-titulo-grid-cuatro, .sub-titulo-grid-cinco, .sub-titulo-grid-seis {
  color: #3c3c3c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "IBM Plex Sans", sans-serif;
  background-color: white;
}
body h2 {
  color: #740A03;
  text-align: center;
}
body h3 {
  color: #740A03;
  text-align: center;
}

.logo-redes {
  width: 65px;
  height: 65px;
}

.img-tour {
  width: 100%;
}

.imgdiscos {
  width: 150px;
}

.logo-spoty {
  width: 100px;
}

.logo-y-tube {
  width: 200px;
}

.h1-conciertos {
  text-align: center;
}

.img-presentacion {
  width: 45%;
  margin: auto;
}

.contenedor {
  width: 100%;
  height: 100%;
}

.img-formula-1:hover,
.img-formula-2:hover,
.img-golden:hover,
.img-utopia:hover,
.img-formula-3:hover,
.img-better:hover {
  transform: scale(1.05);
  transition: 2s;
  cursor: pointer;
}

header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background-color: #000000;
  z-index: 1000;
}
@media (max-width: 480px) {
  header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
  }
}
header .logo {
  width: 90%;
  margin: 10px;
}
header nav {
  width: 45%;
}
@media (max-width: 480px) {
  header nav {
    width: 100%;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  header nav {
    width: 100%;
  }
}
header nav ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 100%;
  margin-right: 5px;
}
header nav ul li a {
  color: white;
  text-decoration: none;
}

/*Footer*/
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #000000;
  color: white;
}
footer .parrafo-footer {
  font-size: 0.7rem;
  margin: 0;
  opacity: 0.8;
}
footer .footer-redes {
  display: flex;
  align-items: center;
  gap: 20px;
}
footer .footer-redes p {
  margin: 0;
  font-size: 0.9rem;
}
footer .footer-redes .iconos {
  display: flex;
  gap: 10px;
}
footer .footer-redes .iconos .logo-redes {
  width: 45px;
  height: auto;
}

.presentacion {
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
.presentacion div {
  width: 50%;
  text-align: center;
}
.presentacion div h1 {
  text-align: center;
  color: #000000;
}

.contenedor-botones {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  margin-bottom: 20px;
  gap: 15px;
  width: 100%;
}
.contenedor-botones .boton-index1, .contenedor-botones .boton-index2 {
  display: flex;
  background-color: #000000;
  color: white;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 400px;
  height: 45px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: 0.4s;
  cursor: pointer;
}

.boton-index1:hover, .boton-index2:hover {
  background-color: #1DB954;
  color: white;
}

.boton-index2:hover {
  background-color: #FF0000;
  color: white;
}

.container {
  margin-top: 35px;
  margin-bottom: 50px;
}

.galeria-container {
  text-align: center;
  padding: 20px;
}

.grid-fotos {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  margin: 20px auto;
}

.grid-fotos img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.grid-fotos img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.contenedor-grid-tour {
  gap: 20px;
  grid-template-areas: "card text-center mb-3";
  grid-template-columns: 30% 30% 30%;
  justify-content: center;
  justify-items: center;
  margin-top: 50px;
}
.contenedor-grid-tour .btn-primary {
  background-color: #E6501B;
  color: white;
}

.contenedor-grid {
  display: grid;
  grid-template-columns: 30% 30% 30%;
  grid-template-rows: 100px auto auto auto auto auto auto;
  justify-content: center;
  justify-items: center;
  gap: 10px;
  grid-template-areas: "titulo titulo titulo" "sub1 sub2 sub3" "imgformula1 imgformula2 imggolden" "ul1 ul2 ul3" "sub4 sub5 sub6" "imgutopia imgformula3 imgbetter" "ul4 ul5 ul6";
}

.titulo-grid {
  grid-area: titulo;
  color: #740A03;
  font-family: "IBM Plex Sans", sans-serif;
}

.sub-titulo-grid-uno {
  grid-area: sub1;
}

.sub-titulo-grid-dos {
  grid-area: sub2;
}

.sub-titulo-grid-tres {
  grid-area: sub3;
}

.sub-titulo-grid-cuatro {
  grid-area: sub4;
}

.sub-titulo-grid-cinco {
  grid-area: sub5;
}

.sub-titulo-grid-seis {
  grid-area: sub6;
}

.img-formula-1 {
  width: 200px;
  grid-area: imgformula1;
}

.img-formula-2 {
  width: 200px;
  grid-area: imgformula2;
}

.img-golden {
  width: 200px;
  grid-area: imggolden;
}

.img-utopia {
  width: 200px;
  grid-area: imgutopia;
}

.img-formula-3 {
  width: 200px;
  grid-area: imgformula3;
}

.img-better {
  width: 200px;
  grid-area: imgbetter;
}

.ol-grid-1 {
  grid-area: ul1;
}

.ol-grid-2 {
  grid-area: ul2;
}

.ol-grid-3 {
  grid-area: ul3;
}

.ol-grid-4 {
  grid-area: ul4;
}

.ol-grid-5 {
  grid-area: ul5;
}

.ol-grid-6 {
  grid-area: ul6;
}

@media (max-width: 480px) {
  header ul {
    margin-right: 0;
  }
  .contenedor-grid {
    padding: 0 10px;
    grid-template-areas: "titulo titulo" "sub1 sub2" "imgformula1 imgformula2" "ul1 ul2" "sub3 sub4" "imggolden imgutopia" "ul3 ul4" "sub5 sub6" "imgformula3 imgbetter" "ul5 ul6";
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
  }
  footer {
    display: flex;
    padding: 10px 0;
    background-color: #000000;
    color: white;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  header ul {
    margin-right: 0;
  }
  .contenedor-grid {
    padding: 0 10px;
    grid-template-areas: "titulo titulo" "sub1 sub2" "imgformula1 imgformula2" "ul1 ul2" "sub3 sub4" "imggolden imgutopia" "ul3 ul4" "sub5 sub6" "imgformula3 imgbetter" "ul5 ul6";
    grid-template-columns: 50% 50%;
    grid-template-rows: auto;
  }
  footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 15px;
  }
  footer .parrafo-footer {
    font-size: 0.65rem;
    max-width: 150px;
  }
  footer .footer-redes {
    gap: 10px;
  }
  footer .footer-redes p {
    font-size: 0.8rem;
  }
  footer .footer-redes .logo-redes {
    width: 25px;
  }
}

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