.share-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.share-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    color: #333;
    position: absolute;
    left: -30px;
    top: 0;
    transform: rotate(180deg);
}

.share-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1de9b6; /* Cor de fundo */
    color: #fff; /* Cor do ícone */
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.share-button img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.share-button:hover {
    transform: scale(1.1);
    background-color: #14cba8; /* Cor de fundo ao passar o mouse */
}

.share-button:hover img {
    transform: scale(1.1);
}

.share-button i {
    font-size: 24px; /* Tamanho do ícone */
}

.intercodesharebuttons a {
    
}
