:root {
    --dar-social-primary: #25126b;
    --dar-social-secondary: #d95a2b;
}

.dar-social-floating {
    position: fixed;
    top: 50%;
    right: 15px;
    z-index: 9000;

    display: flex;
    flex-direction: column;
    gap: 8px;

    transform: translateY(-50%);
}

.dar-social-link {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 14px;

    background: var(--dar-social-primary);
    color: #ffffff;

    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;

    box-shadow: 0 10px 24px rgba(23, 18, 31, 0.18);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.dar-social-link:hover {
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 14px 28px rgba(23, 18, 31, 0.25);
}

.dar-social-link[data-network="facebook"] {
    background: #1877f2;
}

.dar-social-link[data-network="instagram"] {
    background:
        linear-gradient(
            135deg,
            #833ab4,
            #fd1d1d,
            #fcb045
        );
}

.dar-social-link[data-network="x"] {
    background: #111111;
}

.dar-social-link[data-network="linkedin"] {
    background: #0a66c2;
}

.dar-social-link[data-network="tiktok"] {
    background: #111111;
}

.dar-social-link[data-network="youtube"] {
    background: #ff0000;
}

.dar-social-link[data-network="whatsapp"] {
    background: #25d366;
}

.dar-social-footer {
    width: 100%;
    box-sizing: border-box;

    padding: 22px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);

    text-align: center;
}

.dar-social-footer-title {
    margin: 0 0 13px;

    color: inherit;
    font-size: 15px;
    font-weight: 800;
}

.dar-social-footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.dar-social-footer .dar-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: none;
}

.dar-social-footer .dar-social-link:hover {
    transform: translateY(-4px);
}

@media (max-width: 700px) {
    .dar-social-floating {
        top: auto;
        right: 50%;
        bottom: 13px;

        flex-direction: row;
        gap: 7px;

        max-width: calc(100vw - 24px);
        padding: 7px;

        overflow-x: auto;

        border: 1px solid rgba(37, 18, 107, 0.1);
        border-radius: 18px;

        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 12px 32px rgba(23, 18, 31, 0.18);

        transform: translateX(50%);
        backdrop-filter: blur(12px);
    }

    .dar-social-floating .dar-social-link {
        flex: 0 0 39px;
        width: 39px;
        height: 39px;
        border-radius: 12px;
        font-size: 15px;
        box-shadow: none;
    }

    .dar-social-floating .dar-social-link:hover {
        transform: translateY(-3px);
    }

    body {
        padding-bottom: 74px;
    }
}
