/* ========================================
BOTÃO FLUTUANTE
======================================== */

.floating-home{

    position:fixed;

    left:50%;
    bottom:25px;

    transform:translateX(-50%);

    display:flex;
    align-items:center;
    gap:10px;

    padding:14px 22px;

    background:#001d3d;
    color:#fff;

    text-decoration:none;
    font-weight:600;
    font-size:.95rem;

    border-radius:999px;

    box-shadow:
        0 12px 35px rgba(0,29,61,.25);

    transition:.3s;

    z-index:9999;

}

.floating-home:hover{

    background:#00c897;

    transform:translateX(-50%) translateY(-3px);

    box-shadow:
        0 16px 40px rgba(0,200,151,.35);

}

.floating-home i{

    font-size:1rem;

}

@media(max-width:600px){

    .floating-home{

        width:calc(100% - 40px);

        justify-content:center;

        bottom:18px;

    }

}