.floating-contact {
    position: fixed;
    right: 18px;
    bottom: 92px;
    display: grid;
    gap: 10px;
    z-index: 990;
}
.floating-contact a {
    min-width: 126px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .18);
    transition: transform .18s ease, box-shadow .18s ease;
}
.floating-contact a:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, .22);
}
.floating-contact a[href^="tel:"] {
    background: #0f172a;
    color: #fff;
}
.floating-contact a[href*="wa.me"],
.floating-contact a[href*="whatsapp.com"] {
    background: #008f7a;
    color: #fff;
}
@media (max-width: 768px) {
    .floating-contact {
        right: 14px;
        bottom: 96px;
        gap: 8px;
    }
    .floating-contact a {
        min-width: 112px;
        min-height: 42px;
        padding: 0 14px;
        font-size: 13px;
    }
}
@media (max-width: 420px) {
    .floating-contact {
        right: 12px;
        bottom: 94px;
    }
    .floating-contact a {
        min-width: 104px;
    }
}
