* {
    box-sizing:border-box;
    padding:0;
    margin:0;
}

#container_contato {
    border-radius:3000px;
    align-self:flex-end;
    width:50px;
    aspect-ratio:1/1;
    position:fixed;
    top:85%;
    margin-right:25px;
    z-index:5;

    #contato {
        border-radius:50px;
        display:flex;
        justify-content:center;
        align-items:center;
        width:50px;
        aspect-ratio:1/1;
        position:fixed;
        cursor:pointer;
        color:#ffffff;
        font-size:24px;
        box-shadow:2px 1px 5px #000000c9;
        background-color:#615a5a;
    }

    #links_contato {
        border-radius:10px;
        display:none;
        flex-direction:column;
        align-items:center;
        width:230px;
        position:fixed;
        box-shadow:2px 1px 5px #000000c9;
        background-color:#615a5a;

        #whatsapp, #instagram {
            display:flex;
            justify-content:space-between;
            align-items:center;
            column-gap:20px;
            padding:5px;
            cursor:pointer;
            color:#ffffff;
            font-size:20px;
            font-weight:bold;
            text-decoration:none;
        } 
    }
}

