body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }



/*fondo*/
.main_video {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
  }

  #content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    padding: 20px;
  }






/*redes*/
.sci{
  position: fixed;
  margin: 0 auto;
  padding: 0 auto;
  left: -20px;
  display: inline-block;
  justify-content: center;
  align-items: center;
  z-index: 2;
  
}
.sci li{
  list-style: none
}
.sci li a{
  display: inline-block;

  background: #a09b9b;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  transition: .3s ease-in-out;
  text-decoration: none;
}
.sci li a i{
  font-size: 18px;
  color:#555;
}
.sci li a:hover{
  background:#fff;
  transform: translateY(-10px);
}
.sci li a i:hover{
  color: #555;
  font-size: 20px;
}

.parte1{
  display: flex;
  align-items: center;

}






.titulos{
  display: flex;
  justify-content: center;
  text-align: center;
  color: #807d7d;
  font-size: 40px;
 
}



/*header*/


  header {
    background-color: #0440703d;
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #logo {
    width: 200px;
   
    margin-right: 10px;
  }

  nav {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease-in-out;
  }

  nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    transform: translateY(-20px);
  
  }
  nav a:hover {
    color: #c6c7cc;
    text-decoration: underline;
  }

  .menu-icon {
    display: block;
    cursor: pointer;
    font-size: 24px;
    transition: transform 0.3s ease-in-out;
    display: none;
  }
  .menu-icon.close {
    transform: rotate(90deg);
  }

  @media only screen and (max-width: 600px) {
    nav {
      flex-direction: column;
      position: absolute;
      height: 180px;
      top: 120px;
      left: 0;
      width: 100%;
      background-color: #3b3b39b9;
      text-align: center;
      transform: translateX(-100%);
    }
    header {
       
        padding: 20px;
      
      }

    nav.show {
      transform: translateX(0);
    }

    .menu-icon {
      display: block;
    }
    .menu-icon.close {
        transform: rotate(90deg);
      }

    nav a {
      display: block;
      padding: 1px 0;
      padding-top: 25px;
      
    }
    
  }




  /*reproductor*/


  .main_reproductor {
    background-color: #1a1a1a25;
   
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
  
        #player {
            max-width: 600px;
            margin: auto;
            padding: 20px;
            background-color: #33333328;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

        #album-art {
            width: 100px;
            max-height: 300px;
            object-fit: cover;
            border-radius: 50px;
        }

        #song-title {
            margin-top: 10px;
            font-size: 1.5em;
            color: #fff;
        }

        #controls {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
           
        }

        #play-pause i,
        #prev,
        #next {
            background-color: #9ca3b12c;
            color: #1983da8c;
            font-size: 1em;
            padding: 10px;
            margin: 0 10px;
            border: none;
            border-radius: 50%;
            cursor: pointer;
        }

        #play-pause :hover,
        #prev:hover,
        #next:hover {
            background-color: #457ba034;
            border-radius: 50%;
        }
        
  @media only screen and (max-width: 600px){
    #player{
         margin-top: 140px;
    }
    .main_reproductor {
      background-color: #1a1a1a25;
      color: #ffffff;
      font-family: Arial, sans-serif;
      text-align: center;
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      display: block;
      justify-content: space-between;
  }
  }

  #info {
    max-width: 700px;
    margin: 10px;
    padding: 20px;
  }
  #info h1, h2, p{
     color: #a39d9d;
  }
  #info  p{
    text-align: justify;
 }





 /*cards*/


.main_card{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  margin: 0;
}

.contenedor {
  display: flex;
  flex-direction: column; /* Cambiado a columna en dispositivos móviles */
  align-items: center; /* Centrado en dispositivos móviles */
  width: 60%; /* Ancho ajustado */
  overflow: hidden;
  position: relative;
  
}

.recuadro {
  width: 100%; /* Ancho completo en dispositivos móviles */
  height: 280px;
  margin-bottom: 20px; /* Espaciado entre recuadros */
  padding: 15px;
  background-color: #f0f0f031;
  text-align: center;
  transition: 0.3s;
  box-sizing: border-box;
  border-radius: 5px;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.recuadro:hover {
  opacity: 0.8;
}

.imagen {
  width: 200px;
  height: auto;
  border-radius: 50%; 
  border: 1px solid #070b0e;
}

.texto {
  font-size: 14px;
  margin-bottom: 10px;
 color: #fff;
}
.texto  i{
  font-size: 28px;
  color: #fff;
}
.texto a{
  text-decoration: none;
  font-size: 20px;
  color: #fff;
}

.icono {
  font-size: 24px;
  color: #3498db;
}

/* Media query para dispositivos con un ancho máximo de 600px (por ejemplo, dispositivos móviles) */
@media (max-width: 600px) {
  .contenedor {
    width: 100%; /* Ancho completo en dispositivos móviles */
  }
  .recuadro {
    height: 400px;
    display: block;
    justify-content: space-around;
    align-items: center;
  }
}


/*video*/

.container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporción 16:9 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.text-with-image {
  text-align: center;
  margin-top: 20px;
}

.text-with-image img {
  max-width: 100%;
  width: 200px;
  height: auto;
}

/*card*/
.tarjeta {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  
}

.card {
  width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 20px;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #cec8c8;
}

.card-description {
  color: #b8b2b2;
  margin-bottom: 15px;
}

.card-link {
  display: flex;
  align-items: center;
  color: #3498db;
  text-decoration: none;
}

.card-link i {
  margin-right: 5px;
}
@media (max-width: 600px) {
  .tarjeta {
    max-width: 100%;
    flex-direction: column;
    height: 1600px;
  }
}







/*galeria*/


.banner {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
  border: 2px solid #666666;
  border-radius: 10px;
  overflow: hidden;
}

.band-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 20px;
}

.band-name,
.band-description{
  font-size: 20px;
  font-weight: bold;
  margin: 10px;
  color: #d4c7c7;
  width: 700px;

}
.band-name img{
  width: 100px;
}

.band-description {
  font-size: 16px;
}

.cta-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  background-color: #ff6600;
  color: #ffffff;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin-top: 20px;
  cursor: pointer;
}

.cta-button:hover {
  background-color: #cc5500;
}

/* Media Query para dispositivos con pantalla de 600px o menos (móviles) */
@media only screen and (max-width: 600px) {
  .overlay {
      padding: 10px;
  }
  .band-name,
  .band-description{
      font-size: 15px;
      color: #d4cdcd;
      width: 300px;
  }
  .band-description {
      font-size: 12px;
      
  }
  .cta-button {
      font-size: 14px;
  }
  .band-name img{
    width: 120px;
  }
}






/* footer */
.footer{
  background:#0000008c;
  padding:30px 0px;
  font-family: 'Play', sans-serif;
  text-align:center;
  }
  .footer .row{
  width:100%;
  margin:1% 0%;
  padding:0.6% 0%;
  color:gray;
  font-size:0.8em;
  }
  .footer .row a{
  text-decoration:none;
  color:gray;
  transition:0.5s;
  }
  .footer .row a:hover{
  color:#fff;
  }
  .footer .row ul{
  width:100%;
  }
  .footer .row2  a{
  display: inline-flex;
  justify-content: space-around;
  text-decoration: none;
  list-style: none;
  color: #2980b9;
  margin: 20px;
  }
  .footer .row2  a:hover{
    color: #a5aaad;
    }
  .footer .row a i{
  font-size:2em;
  margin:0% 1%;
  }
  @media (max-width:720px){
  .footer{
  padding:5%;
  display: block;
  justify-content: center;
  }
  .footer .row2 a{
  display:block;
  margin:10px 0px;
  justify-content: center;
  top: 200px;
  }
  .footer .row a i{
  margin:0% 5%;
  }
  }
  
