.mcp-compartilhar {
    margin: 20px 0;
    padding: 10px;
    border-top: 2px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mcp-compartilhar p {
    flex-basis: 100%;
    margin: 5px 0;
    font-weight: 600;
    color: #333;
}

.mcp-compartilhar a {
    display: inline-block;
    margin-right: 10px;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: all 0.2s ease; /* transição suave */
}

.mcp-compartilhar a:hover {
    color:#fff !important;
    transform: scale(1.1); /* aumenta levemente */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* sombra */
    opacity: 0.9; /* leve transparência */
}

/* cores das redes */
.mcp-compartilhar a.facebook { background: #3b5998; }
.mcp-compartilhar a.linkedin { background: #0077b5; }
.mcp-compartilhar a.whatsapp { background: #25d366; }
.mcp-compartilhar a.twitter  { background: #000000; }
.mcp-compartilhar a.email    { background: #cc0000; }

/* responsivo */
@media screen and (max-width: 768px) {
    .mcp-compartilhar {
        flex-direction: column;
        align-items: flex-start;
    }

    .mcp-compartilhar a {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}
