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

    body, html {
      background-color: black;

      height: 100%;
      font-family: Arial, sans-serif;
      color:white; 
      /*overflow: hidden;
      */
    }

    /* Fondo con imagen fija */
    /*body::before {
      content: "";
      /*position: fixed;
      
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: url('images/XFrontalSinFondo.png') no-repeat center center fixed;
      background-size: cover;
      z-index: -1;
    }*/
    


    /* Menú superior */
    header {
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background: rgba(248 , 14, 0, 1);
      color: white;
      position: fixed;
      height: 110px;
      top: 0;
      width: 100%;
      z-index: 10;
    }

    .menu {
      display: flex;
      gap: 1rem;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      text-align: center;
      flex: 1;
    }

.fa-brands{
  font-size: 25px;
}
    nav {
      flex: 1;
      display: flex;
      align-items: center;
    }

    .hamburger {
        display: none;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
      }


    .left, .right {
      flex: 1;
      display: flex;
      gap: 1rem;
      align-items: center;
    }

    .left {
      justify-content: flex-start;
    }

    .right {
      justify-content: flex-end;
    }

    a {
      color: white;
      text-decoration: none;
      font-weight: bold;
    }

    /* Cuadro flotante con secciones */
    .content-box {
      /*position: absolute;
      */
      top: 30%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255, 255, 255, 0.2);
      
      padding: 2rem;
      width: 80%;
      max-width: 600px;
      border-radius: 15px;
      text-align: center;
      animation: slideUp 15s infinite;
    }

/*
    #cuadro {
      position: relative;
      margin-top: 150;
      background: rgba(255, 255, 255, 0.2);
      width: 80%;
      min-width: 600px;
      border-radius: 15px;
      text-align: center;
    }*/

    .cuadro{      
      border-radius: 15px;
      padding: 2%;
      max-width: 80%;
      margin: 30px auto;
      background: rgba(255, 255, 255, 0.2);
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      overflow-y: auto;
      margin-top: 150px;

      display: flex;
      flex-direction: column;
      align-items: center; /* centra horizontal */
      gap: 40px; /* espacio entre secciones */
      padding: 20px;

    }


    /* Cada sección principal */
    .cuadro > div {
      width: 100%;
      max-width: 1200px; /* limita el ancho para que no se estire demasiado */
      text-align: center;
    } 

    /* El grid interno de cada sección */
    .grid-section {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); 
      gap: 20px;
      justify-items: center; /* centra los items dentro de cada celda */
    }

    /* Ajuste de imágenes e iframes */
    .grid-section img,
    .grid-section iframe {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .instagram-media{
      width: 20%;
    }


    @keyframes slideUp {
      0%, 20% {
        transform: translate(-50%, -50%);
        opacity: 1;
      }
      25%, 45% {
        transform: translate(-50%, -150%);
        opacity: 0;
      }
      50%, 70% {
        transform: translate(-50%, -50%);
        opacity: 1;
      }
      75%, 95% {
        transform: translate(-50%, -150%);
        opacity: 0;
      }
      100% {
        transform: translate(-50%, -50%);
        opacity: 1;
      }
    }

    .section {
      display: none;
    }

    .section.active {
      display: block;
    }
    #logoMenu{
      max-height: 80px;
      min-height: 60px;
    }

    .flyer{
      display: block;
      margin: auto;
      width: 40%;
      max-width: 50%;
      max-height: 40%; 
    }

/*artist*/


.artistFoto{
  /*float: right;*/
  width: 50px;
  height: 50px; 
}

.fila {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .fila img {
      width: 30%;
      height: auto;
      border-radius: 10px;
    }

    .fila .texto {
      flex: 1;
      padding: 0 5%;
      line-height: 2;
    }

    .fila.primera {
      flex-direction: row-reverse;

    }

    .fila.segunda {
      flex-direction: row;
    }





/*Music*/
.musicFrame{
  position:absolute;
  top: 35%;
  width: 80%;
  margin: auto;

}

/*Media*/
  
  #mediaCover{
    width: 90%;
    display: block;
    margin: auto;
  }

  .YoutubeVideo{
    display: block;
    margin: 0 auto;
  } 

  .YoutubeShort{
    display: block;
    margin: 0 auto;
  } 

/*contact*/
.form{
  text-align: left;
  padding:5px;
  padding-left: 20px;
}
.formText{
  color: white;
  padding: 5px;
}
label{
  padding: 3px;
}

/*footer*/
.footer {
  position: relative;
  bottom: 0;
  border-top: 1px solid #ccc; /* Línea gris */
  padding: 10px;
  text-align: center;
  color: #fff;
  background-color: #222;
}


.footer.sticky {
  position: absolute;
  bottom: 0;
  width: 100%;
}


/**************************** *************************** *************************** *************************** 
 *** small screen (handy)****
 ****************************/
@media all and (max-width: 500px){ 

  .hamburger{
    display: flex;
    margin-left: auto;
    margin-top: 50px;
    font-size: 25px;
    z-index: 500;

  }

  header {
    display: flex; 
    flex-direction: column;
    height:150px;
  }

  .header{
    display: inline-block;
  }

.fa-brands{
  font-size: 25px;
}
  
  .mainMenu{
    flex-direction: column-reverse;
    margin-top: -50px; 
    margin-left: 11%;
    width: 80%;
  }

.mainMenuButton{
  background-color: rgba(255, 255, 255, 0.3) ;
}

#navMenu {
    width: 100%;
    text-align: center;
}


  .cuadro{
    margin-top: 180px;
   width: 95%;
   display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
  }

  #cuadro.menuDown{
    /*margin-top: 370px;*/    

  }

  h2{
    position: center;
  }
  .fila {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .fila img {
      width: 80%;
      height: auto;
      border-radius: 10px;
    }

    .fila .texto {
      flex: 1;
      padding: 0 20px;
    }

    .fila.primera {
      flex-direction: column;
    }

    .fila.segunda {
      flex-direction: column;
    }


  #navLinks{
    flex-direction:column;
    visibility: hidden;
    padding: 10px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
  }

  #navLinks.active{
    visibility: visible;
   background-color: rgba(0, 0, 0, 0.8);
  }

  #navLinks a{  
    display: flex;
    flex-direction: column;
    top: 55px;
    left: 0;
    width: 50%;
    height:5%;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    border-width: 5px;
    border-color: white;

    background-color: rgba(225, 0, 0, 1);
  }
/*
   .show {
    visibility: visible;
  }*/

  /*iframe.music {
    display: block;
    width: 90%;
    margin: 2%;
    margin: 0 auto;
    color:green;
  }
*/

}

