.share-modal-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.share-options {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin-bottom: 20px;
}

.share-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    margin: 0 15px;
}

.share-option a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s, filter 0.3s; /* Transição suave para zoom e filtro */
}

.share-option a:hover img {
    transform: scale(1.2); /* Efeito de zoom ao passar o mouse */
    filter: brightness(0.8); /* Escurece um pouco o ícone */
}

.share-option span {
    margin-top: 5px;
    font-size: 14px;
    color: #333;
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.share-input {
    width: 250px;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-right: 10px;
}

.btn-copy {
    padding: 5px 10px;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-size: 14px;
}

.btn-copy:hover {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}
