/* Estilo para o botão fixo com GIF */
.fixed-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    cursor: pointer;
}

/* Lista de ícones sociais */
.social-icons {
    position: fixed;
    bottom: 10rem; /* Ajuste conforme necessário */
    right: 7rem;
    list-style: none;
    padding: 0.5rem;
    margin: 0;
    display: none; /* Inicialmente escondido */
    z-index: 1000;
    background-color: rgb(0, 0, 0,0.5);
  
}

.social-icons li {
    margin-bottom: 1rem;
}

.social-icons a {
    color: white; 
    text-decoration: none;
}

/* Estilo para tooltip */
.tooltip {
    position: fixed;
    bottom: 6rem; 
    right: 2rem;
    background-color: rgba(255, 215, 0, 0.8); 
    border-radius: 0.5rem;
    padding: 0.5rem;
    display: none; 
    z-index: 1000; 
    text-align: center;
    font-size: 1rem; 
}

/* Ajusta a largura do GIF */
.corredor {
    width: 8rem; 
}