/* Container principal */
.tool-share-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5em;
    margin: 2em auto;
    max-width: 600px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tool-share-text {
    font-size: 0.875em;
    font-weight: 500;
    color: #4f4f4f;
    text-align: center;
    margin-bottom: 1em;
    line-height: 1.5;
}

/* --- ANIMAÇÃO KEYFRAMES --- */
@keyframes pulse-heart {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
        /* Aumenta 15% do tamanho original */
    }

    100% {
        transform: scale(1);
    }
}

.tool-share-text i,
i.iconoir-heart-solid {
    margin-bottom: 0.3em;
    font-size: 0.7em;
    color: var(--color-primary);
    display: inline-block;
    animation: pulse-heart 1.5s infinite ease-in-out;
}

.tool-share-actions {
    display: flex;
    justify-content: center;
    gap: 1.2em;
}

.tool-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #6a6a6a;
    font-size: 1.4em;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover effects for a modern look */
.tool-share-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Cores dos ícones baseadas na marca */
.tool-share-link.whatsapp:hover {
    background-color: #25d366;
    color: white;
}

.tool-share-link.telegram:hover {
    background-color: #0088cc;
    color: white;
}

.tool-share-link.twitter:hover {
    background-color: #1da1f2;
    color: white;
}

.tool-share-link.facebook:hover {
    background-color: #3b5998;
    color: white;
}

.tool-share-link.email:hover {
    background-color: #e0245e;
    /* Your brand's color */
    color: white;
}