.cxsocialshare-box {
    margin-top: 20px;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cxsocialshare-label {
    font-weight: 600;
}

.cxsocialshare-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Botões como ícones circulares */
.cxsocialshare-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    color: #ffffff;
    border: none;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

.cxsocialshare-btn::before {
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

/* Letras representativas de cada rede (podes trocar por SVGs oficiais se quiseres) */
.cxsocialshare-facebook::before {
    content: "f";
}

.cxsocialshare-x::before {
    content: "X";
}

.cxsocialshare-whatsapp::before {
    content: "W";
}

.cxsocialshare-pinterest::before {
    content: "P";
}

.cxsocialshare-bluesky::before {
    content: "B";
}

/* Cores aproximadas das marcas */
.cxsocialshare-facebook {
    background-color: #1877f2;
}

.cxsocialshare-x {
    background-color: #000000;
}

.cxsocialshare-whatsapp {
    background-color: #25D366;
}

.cxsocialshare-pinterest {
    background-color: #BD081C;
}

.cxsocialshare-bluesky {
    background-color: #0285ff;
}

.cxsocialshare-btn:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}
