.danilo-share-box {
    margin-top: 60px;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffffff, #eef4ff);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.danilo-share-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #222;
    font-family: sans-serif;
}

.danilo-share-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.danilo-share-btn {
    padding: 14px 24px;
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all .25s ease;
    font-family: sans-serif;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .12);
}

.danilo-share-btn:hover {
    transform: translateY(-4px) scale(1.05);
}

/* CORES */
.whatsapp {
    background: #25D366;
}

.facebook {
    background: #1877F2;
}

.linkedin {
    background: #0A66C2;
}

.twitter {
    background: #000;
}

.email {
    background: #EA4335;
}

/* MOBILE */
@media(max-width:768px) {
    .danilo-share-buttons {
        flex-direction: column;
    }

    .danilo-share-btn {
        width: 100%;
    }
}