.compartilhar {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.compartilhar__label {
    font-size: 1rem;
    font-weight: 500;
    color: #3A3A39;
}

.compartilhar__icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.compartilhar__link {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #ffffff;
    transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
    position: relative;
}

.compartilhar__link:hover {
    filter: brightness(0.95);
    transform: translateY(-1px);
}

.compartilhar__link:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 2px;
}

.compartilhar__link--whatsapp {
    background: #25d366;
}

.compartilhar__link--email {
    background: #2c7be5;
}

.compartilhar__link--facebook {
    background: #1877f2;
}

.compartilhar__link--linkedin {
    background: #0a66c2;
}

.compartilhar__link--link {
    background: #1c89c7;
}

.compartilhar__link.is-copied {
    box-shadow: 0 0 0 3px rgba(28, 137, 199, 0.35);
}

.compartilhar__icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.compartilhar__icon svg {
    width: 12px;
    height: 12px;
    display: block;
    fill: currentColor;
}

.compartilhar__link--facebook .compartilhar__icon {
    width: 22px;
    height: 22px;
}
.compartilhar__link--facebook .compartilhar__icon svg  {
    width: 17px;
    height: 17px;
}
.compartilhar__link--linkedin .compartilhar__icon {
    width: 22px;
    height: 22px;
}
.compartilhar__link--linkedin .compartilhar__icon svg  {
    width: 14px;
    height: 14px;
}
.compartilhar__link--link .compartilhar__icon {
    width: 22px;
    height: 22px;
}
.compartilhar__link--link .compartilhar__icon svg  {
    width: 18px;
    height: 18px;
}
.compartilhar__copied {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #111111;
    color: #ffffff;
    font-size: 0.7rem;
    line-height: 1;
    padding: 4px 6px;
    border-radius: 999px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.15s ease;
    white-space: nowrap;
}

.compartilhar__link.is-copied .compartilhar__copied {
    opacity: 1;
}

@media (max-width: 640px) {
    .compartilhar {
        gap: 8px;
    }

    .compartilhar__link {
        width: 32px;
        height: 32px;
    }
}
