.floating-contact {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 80;
    display: grid;
    gap: .8rem;
}

.floating-contact a {
    position: static;
    width: 3.5rem;
    height: 3.5rem;
}

.floating-contact .phone-float {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #216aa5;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 10px 26px rgba(8, 35, 30, .28);
    font-size: 1.4rem;
    text-decoration: none;
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.floating-contact .phone-float:hover,
.floating-contact .phone-float:focus-visible {
    color: #fff;
    background: #195383;
    transform: translateY(-3px);
}

.floating-contact__fallback { display: none; font-size: .8rem; font-weight: 900; }
.no-fa .floating-contact__fallback { display: inline; }
.no-fa .whatsapp-float .fa-whatsapp { display: none; }

@media (max-width: 720px) {
    .floating-contact { right: 1rem; bottom: 1rem; gap: .65rem; }
    .floating-contact a { width: 3.15rem; height: 3.15rem; }
}
