.fa-solid,
.fa-brands {
    display: inline-block;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    text-rendering: auto;
}

.fa-gears::before { content: "\2699"; }
.fa-screwdriver-wrench::before { content: "\2692"; }
.fa-truck-fast::before,
.fa-truck::before,
.fa-truck-moving::before { content: "\25A3"; }
.fa-plus::before { content: "+"; }
.fa-bag-shopping::before { content: "\25A2"; }
.fa-bars::before { content: "\2630"; }
.fa-chevron-down::before { content: "\2304"; }
.fa-chevron-right::before { content: "\203A"; }
.fa-magnifying-glass::before { content: "\2315"; }
.fa-trash::before { content: "\2715"; }
.fa-xmark::before { content: "\00D7"; }
.fa-cart-plus::before { content: "+"; }
.fa-phone::before { content: "\260E"; }
.fa-envelope::before { content: "\2709"; }
.fa-location-dot::before { content: "\25CF"; }
.fa-whatsapp::before { content: "W"; }
.fa-instagram::before { content: "I"; }
.fa-facebook-f::before { content: "f"; }
.fa-youtube::before { content: "\25B6"; }
.fa-cc-visa::before { content: "VISA"; font-size: .72em; }
.fa-cc-mastercard::before { content: "MC"; font-size: .72em; }
.fa-shield-halved::before,
.fa-user-shield::before { content: "\25C8"; }
.fa-gauge-high::before { content: "\25D4"; }
.fa-user-plus::before { content: "+"; }
.fa-crown::before,
.fa-gem::before { content: "\25C6"; }
.fa-arrow-right-long::before { content: "\2192"; }
.fa-url::before { content: "\1F517"; }

.floating-contact {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .625rem;
}

.floating-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    width: 100%;
    min-width: 0;
    height: 3.25rem;
    overflow: hidden;
    border-radius: .9rem;
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: .86rem;
    font-weight: 900;
    letter-spacing: .04em;
    transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.floating-contact-btn:hover,
.floating-contact-btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.floating-contact-btn--whatsapp {
    color: #fff;
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 18px 45px rgba(34, 197, 94, .34);
}

.floating-contact-btn--whatsapp:focus-visible {
    box-shadow: 0 0 0 4px rgba(34, 197, 94, .25), 0 18px 45px rgba(34, 197, 94, .34);
}

.floating-contact-btn--phone {
    color: #050505;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 18px 45px rgba(245, 158, 11, .32);
}

.floating-contact-btn--phone:focus-visible {
    box-shadow: 0 0 0 4px rgba(245, 158, 11, .26), 0 18px 45px rgba(245, 158, 11, .32);
}

.floating-contact-label {
    display: inline;
    white-space: nowrap;
}

.floating-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    flex: 0 0 2rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .16);
    font-size: 1rem;
}

.product-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    min-height: 4.5rem;
    padding: 1rem 1.5rem;
    border-radius: .75rem;
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-align: center;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.product-contact-btn:hover,
.product-contact-btn:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.product-contact-btn--whatsapp {
    color: #fff;
    border: 1px solid rgba(110, 231, 183, .35);
    background: linear-gradient(135deg, #16a34a, #22c55e);
    box-shadow: 0 16px 34px rgba(34, 197, 94, .23);
}

.product-contact-btn--phone {
    color: #fff;
    border: 1px solid rgba(245, 158, 11, .35);
    background: #18181b;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .28);
}

.product-contact-btn--phone:hover,
.product-contact-btn--phone:focus-visible {
    border-color: #f59e0b;
    background: #27272a;
}

.product-contact-icon {
    display: grid;
    place-items: center;
    width: 2.25rem;
    height: 2.25rem;
    flex: 0 0 2.25rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, .18);
    font-size: 1.1rem;
}

.product-contact-btn--phone .product-contact-icon {
    color: #050505;
    background: #f59e0b;
}

@media (min-width: 768px) {
    .floating-contact {
        left: auto;
        right: 1.5rem;
        bottom: 1.5rem;
        width: 21rem;
        grid-template-columns: 1fr 1fr;
    }
}
