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

@keyframes pulse-pop {
  0% { transform: scale(1);}
  50% { transform: scale(1.10);}
  100% { transform: scale(1);}
}
.pulse-pop {
  animation: pulse-pop 0.6s;
}


* {
    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: -01px auto 16px auto; /* Ajuste este valor conforme necessário */
    
    
}

header img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #ffe8b7;
    box-shadow: 0 0 16px 2px #ffe8b7, 0 0 6px 0 #a18b69;
    animation: img-glow 2s infinite alternate;
    background: linear-gradient(90deg, #a18b69 0%, #ffe8b7 50%, #a18b69 100%);
}

@keyframes img-glow {
    0% { box-shadow: 0 0 12px 2px #ffe8b7, 0 0 2px 0 #a18b69; }
    100% { box-shadow: 0 0 32px 4px #ffe8b7, 0 0 14px 0 #a18b69; }
}


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: #fffbe6;
    letter-spacing: 1.2px;
    font-weight: 800;
    text-shadow: 
        0 1px 4px #a18b69,     /* sombra suave dourada */
        0 0px 2px #ffe8b7,     /* brilho suave claro */
        1px 1px 0 #a18b69,     /* contorno */
        -1px -1px 0 #a18b69;   /* contorno oposto */;
    background: none; /* remove fundo para mais leveza */
    padding: 1px 4px;
}



header p {
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    text-align: center;
    color: #fffbe6; /* branco amarelado */
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow:
        0 2px 6px #a18b69;  /* sombra dourada leve e difusa */
}



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 #c29640; /* 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: 4px;
    text-align: center;
    font-size: 12px;
    color: #fffbe6;
    margin: 24px auto 0 auto; /* ↑ ↑ aumenta o espaço do rodapé para cima */
    letter-spacing: 1.2px;
    font-weight: 700;
    text-shadow:
        0 1px 4px #a18b69,
        0 0 2px #ffe8b7;
    background: none;   /* remove o fundo */
    border-radius: 0;   /* sem borda arredondada */
    width: fit-content;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 2px 12px 4px 12px;
    position: relative;
    z-index: 10;
}
footer a {
    color: #ffe8b7;
    font-weight: 600;
    text-shadow: 0 1px 3px #a18b69;
    text-decoration: underline;
    letter-spacing: 1px;
    font-size: 12px;
    transition: color .2s;
}
footer a:hover {
    color: #a18b69;
    text-shadow: 0 0 6px #ffe8b7;
}

/* 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: #a18b69;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: #ffffff;


    text-align: center;

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

.accordion_header {
    padding: 1px;
    display: table;
    flex-direction: row;
    cursor: pointer;
    text-decoration: none;
    margin: 0 auto;
}

span {                                     /* Texto do intem principal */
    color: #FFFFFF;
    text-decoration: none;
}

.icon {
    color: #FFFFFF;                    /* icone */
    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 */



@keyframes pulse-pop {
  0% { transform: scale(1);}
  50% { transform: scale(1.10);}
  100% { transform: scale(1);}
}
.pulse-pop {
  animation: pulse-pop 0.6s;
}











/* Efeito Glow no Workshop */
.workshop-glow {
  background: linear-gradient(90deg, #a18b69 0%, #ffe8b7 50%, #a18b69 100%);
  box-shadow: 0 0 16px 2px #ffe8b7, 0 0 6px 0 #a18b69;
  animation: pulse-glow 2s infinite alternate;
  border: 2px solid #ffe8b7 !important;
  color: #232323 !important;
  font-weight: 700;
}
@keyframes pulse-glow {
  0% { box-shadow: 0 0 12px 2px #ffe8b7, 0 0 2px 0 #a18b69; }
  100% { box-shadow: 0 0 32px 4px #ffe8b7, 0 0 14px 0 #a18b69; }
}

/* Efeito Shake no Curso */
.special {
  transition: transform .3s;
}
.special:hover {
  animation: shake .3s;
}
@keyframes shake {
  0% { transform: scale(1.04) translateX(0); }
  20% { transform: scale(1.08) translateX(-2px);}
  40% { transform: scale(1.06) translateX(2px);}
  60% { transform: scale(1.09) translateX(-1px);}
  80% { transform: scale(1.04) translateX(1px);}
  100% { transform: scale(1.02) translateX(0); }
}

/* Animação de entrada nos botões da lista */
.links-list li {
  opacity: 0;
  animation: slideFromBottom 0.8s forwards;
}
.links-list li:nth-child(1) { animation-delay: 0.2s; }
.links-list li:nth-child(2) { animation-delay: 0.4s; }
.links-list li:nth-child(3) { animation-delay: 0.6s; }
.links-list li:nth-child(4) { animation-delay: 0.8s; }
.links-list li:nth-child(5) { animation-delay: 1.0s; }
.links-list li:nth-child(6) { animation-delay: 1.2s; }

@keyframes slideFromBottom {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Botão flutuante de ingresso (opcional, se quiser usar) */
.floating-cta {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background: linear-gradient(90deg, #a18b69 0%, #ffe8b7 100%);
  color: #232323;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: bold;
  box-shadow: 0 2px 16px #a18b69aa;
  z-index: 99999;
  animation: pulse-glow 2s infinite alternate;
  transition: transform 0.2s;
}
.floating-cta:hover {
  transform: scale(1.09) rotate(-2deg);
  background: #ffe8b7;
}
