
.button-social{
display: grid;
    align-items: center;
    width: 280px;
    height: 60px;
    margin-top: 31px;
    border-radius: 10px 10px 10px 10px;
    }


.button-link{
    color:#7e6960;
    background-color: #d5cabb;
    font-weight: bold;
    opacity: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat';
    text-decoration:none;
    font-size: 12px;
    width: 280px;
    height: 60px;
    border-radius: 10px 10px 10px 10px;
    -webkit-box-shadow: 0px 0px 34px -1px rgba(0,0,0,0.45); 
    box-shadow: 0px 0px 34px -1px rgba(0,0,0,0.45);

}
.button-link:hover{
    color: #171717;
    background-color: aliceblue;
    opacity: 30%;
    border-radius: 10px 10px 10px 10px;
}
 
/* 🔹 Animação base para os botões */
.button-social {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpBtn 0.8s ease forwards;
}

/* Keyframes */
@keyframes fadeInUpBtn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🔹 Cascata (se tiver vários botões um embaixo do outro) */
.button-social:nth-child(1) { animation-delay: 0.1s; }
.button-social:nth-child(2) { animation-delay: 0.3s; }
.button-social:nth-child(3) { animation-delay: 0.5s; }
.button-social:nth-child(4) { animation-delay: 0.7s; }
.button-social:nth-child(5) { animation-delay: 0.9s; }
