@font-face {
    font-family: 'Raleway';
    src: url('/fonts/gilroy-bold.ttf');
}

* {
    margin: 0;
    padding: 0;
}

body * {
    font-family: 'Raleway', sans-serif;
    line-height: 160%;
}

.video-background {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

#backgroundVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}



#vanta-bg {
    z-index: 0px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

header {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding: 32px;
    height: calc(120px + 32px);
    color: white;
}

header a {
    font-family: 'Raleway', sans-serif;
    padding-top: 0px;
    text-align: center;
    font-size: 10px;
    color: white;
    margin: auto;
    letter-spacing: 1px;
}

main {
    max-width: 580px;
    width: 90%;
    margin: 16px auto;
}

header img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #ffffff; /* Contorno dourado escuro */
}

header div {
    width: 120px;
    margin: auto;
    /* background-image: linear-gradient(90deg, purple, #ff0066); */
    border: 1px #a67f78;

    border-radius: 50%;

    display: flex;
    padding: 4px;

    transition: transform .3s;
}

header div:hover {
    transform: scale(1.1)
}

header h3 {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    text-align: center;
    padding-top: 12px;
    color: #ffffff; /* Cor branca do texto */
    letter-spacing: 1px;
    text-shadow: 
        -1px -1px 0 #000000, 
         1px -1px 0 #000000,
        -1px  1px 0 #000000,
         1px  1px 0 #000000; /* Contorno dourado escuro */
}


header p {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    text-align: center;
    color: rgb(253, 253, 253);
    letter-spacing: 1px;
    text-shadow: 
    -1px -1px 0 #000000, 
     1px -1px 0 #000000,
    -1px  1px 0 #000000,
     1px  1px 0 #000000; /* Contorno dourado escuro */
}

section div {
    background: transparent;
    padding-top: 8px;
    border-radius: 8px;
}

section ul {
    box-sizing: border-box;
    padding: 12px;
    list-style: none;
    flex-wrap: wrap;
    margin: auto;
}

.link_button {
    background-color: #f1f1f1;
    border-radius: 8px;
    padding: 8px;
    margin: 8px;

    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
    transition: box-shadow 0.3s ease;
    
    outline: 1px solid white; /* Adiciona uma borda branca fina ao redor do botão */
}

ul li a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    color: #000000;
    text-decoration: none;
    text-align: center;
}


.link_button:hover {
    transform: scale(1.02);
}

.link_button {
    transition: transform .3s;
}

footer {
    font-family: 'Raleway', sans-serif;
    padding-top: 0px;
    text-align: center;
    font-size: 10px;
    color: rgb(255, 255, 255);
    margin: auto;
    letter-spacing: 1px;
}

footer a {
    font-family: 'Raleway', sans-serif;
    padding-top: 0px;
    text-align: center;
    font-size: 10px;
    color: rgb(255, 255, 255);
    margin: auto;
    letter-spacing: 1px;
}

/* Start of animation */

header div {
    animation: fromTop .7s .2s backwards;
}

header h1 {
    animation: fadeIn .7s .2s backwards;
    animation-delay: .2s;
}

header h3 {
    animation: fadeIn .7s .2s backwards;
    animation-delay: .2s;
}

header p {
    animation: fadeIn .7s .2s backwards;
    animation-delay: .3s;
}

header a {
    animation: fadeIn .7s .2s backwards;
    animation-delay: .5s;
}

main {
    animation: fadeIn .7s .2s backwards;
    animation-delay: .7s;
}

footer {
    animation: fadeIn .7s .2s backwards;
    animation-delay: .9s;
}


@keyframes fromTop {
    from {
        opacity: 0;
        transform: translateY(-30px)
    }
    
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }

    @keyframes whatsapp-animation {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.whatsapp {
  bottom: 3rem;
  position: fixed;
  right: 3rem;
  z-index: 999;

  .btn-whatsapp {
    align-items: center;
    background-color: #61D466;
    background-image: linear-gradient(to bottom, #61D466 0%, #52B43E 100%);
    border-radius: 50%;
    color: white;
    display: flex;
    justify-content: center;
    height: 6rem;
    position: relative;
    width: 6rem;
    z-index: 1;

    span {
      font-size: 3.5rem;
    }

    &::before, &::after {
      background-image: linear-gradient(
        180deg,
        rgba(#075E54, .2) 0%,
        rgba(#128C7E, .2) 100%
      );
      content: '';
      border-radius: 50%;
      position: absolute;
      top: 50%;
      left: 50%;
      width: 8.5rem;
      height: 8.5rem;
      z-index: -1;
      margin-left: -4.3rem;
      margin-top: -4.3rem;
      transform-origin: 50% 50%;
      animation-duration: 1.2s;
      animation-iteration-count: infinite;
      animation-direction: alternate-reverse;
      animation-name: whatsapp-animation;
      animation-delay: .2s;
      animation-timing-function: ease-out;
    }

    &::after {
      animation-delay: .6s;
      animation-timing-function: ease-in;
    }
  }
}
}

/* End of animation */


/* Start of accordion drop-menu style */

content {
    display: flex;
    flex-direction: row;
}

.accordion_item {
    background-color: rgb(0, 0, 0);
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #DD0F55;



    padding: 8px;
    margin: 8px;
    
    backdrop-filter: blur(5px); /* Chrome and Opera */
    box-shadow: 0px 0px 10px 0px rgba(255, 239, 239, 0.15);

}

.accordion_item:hover {
    transform: scale(1.02);
}

.accordion_item {
    background-color: #007aff;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #000000;


    text-align: center;

    padding: 8px;
    margin: 8px;
    
    backdrop-filter: blur(5px); /* Chrome and Opera */
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.15);
    transition: transform .3s;
}

.accordion_header {
    padding: 1px;
    display: table;
    width: 100%; /* Garante que toda a área seja clicável sem mudar o tamanho */
    cursor: pointer;
    text-decoration: none;
    margin: 0 auto;
}

span {
    color: #000000;
    text-decoration: none;
}

.icon {
    color: #000000;
    size: 10px;
}

.accordion_content {
    overflow: hidden;
    height: 0;
    transition: all .5s ease;
    font-size: 14px;
    padding: 0px;
    text-align: center;
    justify-content: center;

    border-radius: 0px;
}

.accordion_content.active {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin-top: 16px;

    border-top: 1px solid #E5E7EB;
    border-radius: 0px;
}

.album_info {
    margin-bottom: 16px;
    padding-top: 0px;
}

.album_link {
    display: inline-block;
    justify-content: center;
}

.album_cover_art {
    margin-bottom: 16px;
    margin-top: 24px;
    width: 100%;
    height: 316px;
    max-height: 340px;
    max-width: 340px;
    filter: none;
    border-radius: 4px;
    box-shadow: rgba(255, 255, 255, 0.5) 0px 0px 20px;;
}

.album_title {
    padding: 0px;
}

.available_stream {
    padding: 0px;
}

.stream_buttons {
    display: flex;
    background-color: white;
    border-radius: 8px;
    padding: 8px;
    margin: 8px;

    border: 1px solid #E5E7EB;
    box-shadow: 0px 0px 0px 0px rgb(0 0 0 / 0%);
}

.stream_buttons:hover {
    background-color: #E5E7EB;
}

.stream_buttons {
    transition: transform .3s;
}



/* End of accordion drop-menu style */

