* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
  }

    a,
    a:visited,
    a:hover,
    a:active {
        color: rgb(255, 255, 255);
        text-decoration: none;
}
  
  body {
    /*
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #001B79, #0044FF, #007FFF, #036485, #00028f);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: white;
    text-align: center;
    padding: 20px; */





    font-family: 'Inter', sans-serif;
    height: 100vh;
    background: linear-gradient(270deg, #00099B, #1C49C0, #001B79, #1C49C0);
    background-size: 800% 800%;
    animation: gradientAnimation 10s ease infinite;
    color: white;
    text-align: center;
    padding: 20px;
  }
  

  @keyframes gradientAnimation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }

/*
  @keyframes gradientBG {
    0% {background-position: 0% 50%;}
    50% {background-position: 100% 50%;}
    100% {background-position: 0% 50%;}
  }
    */
  
  .container {
    max-width: 400px;
    margin: auto;
  }
  
  .profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-bottom: 15px;
  }
  
  h1 {
    font-size: 34px;
    font-weight: 700;
  }
  
  p.description {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
  }
  .socials .redes{
    background-color: rgba(11, 0, 158, 0.685);
    width: 50vw;
    border-radius: 5px;
    padding: 10px;
  }

  

  
  .socials a img {
    width: 35px;
    height: 35px;
  }
  
  .btn-work {
    display: inline-block;
    background-color: #6c5ce7;
    padding: 12px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 30px;
  }
  

  .music-card {
    width: 100%;
    height: 300px; /* ou qualquer altura desejada */
    overflow: hidden;
    position: relative;
    border-radius: 10px;

    cursor: pointer;

    padding-top: 10px;
  }
  .music-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* faz a imagem preencher a div cortando excessos */
    display: block;
  }
  

  .zap-section {
    width: 100%;
    height: 130px; /* ou qualquer altura desejada */
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
  }
  .zap-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* faz a imagem preencher a div cortando excessos */
    display: block;
  }




  .entrevista-section {
    width: 100%;
    height: 220px; /* ou qualquer altura desejada */
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    cursor: pointer;
  }
  
  .entrevista-section img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* faz a imagem preencher a div cortando excessos */
    display: block;
  }  

  


  .music-info {
    text-align: left;
  }
  
  .music-info p {
    margin: 0;
    font-size: 14px;
  }
  
 
  
  .youtube-section h3 {
    margin-bottom: 8px;
    font-size: 16px;
  }
  
  .subscribe {
    background: red;
    color: white;
    padding: 5px 15px;
    border: none;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
  }



  .credito{
    color: #ffc4009d;
    padding-bottom: 5px;
  }


  
  @media (max-width: 500px) {
    body {
      padding: 15px;
    }
  
    .music-card {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .music-info {
      text-align: center;
      width: 100%;
    }
  }
  