@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@media (max-width: 800px) {

    header {
        display: flex;
        flex-direction: column;
    }

    #menu {
        display: none;
        position: relative;
        margin-top: 0px;
        margin-left: 0px;
        font-size: 16px;
    }

    #menu_cel {
        display: flex;
        position: relative;
        margin-top: 0px;
        margin-left: 0px;
        font-size: 12px;
    }

    #titulo {
        position: relative;
        display: none;
        flex-direction: row;
        margin: 0 auto;
        margin-top: 36px;
        width: 300px;
    }

    #titulo label {
        font-family: "Inter", serif;
        font-size: 48px;
        color: #605C5C;
        font-weight: 800;
    }

    #titulo__bot {
        width: 50px;
        height: 50px;
    }

    #titulo__slogan {
        font-family: "Inter", serif;
        font-size: 12px;
        float: right;
        margin-right: 0px;
    }

    ul {
        list-style-type: none;
        margin: 0;
        padding: 2px;
        overflow: hidden;
        background-color: #FFF;
    }

    li {
        float: left;
    }

    li a {
        display: block;
        color: #474444;
        text-align: center;
        text-decoration: none;
        font-family: "Inter", serif;
    }

    li a:hover {
        color: #000;
        cursor: pointer;
    }

    #conteudo {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    #conteudo {
        display: flex;
        flex-direction: column-reverse;
    }

    #central {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }

    #balao {
        display: none;
        flex-direction: column;
    }

    #balao__1 {
        position: relative;
        margin-top: 150px;
        width: 170px;
        height: 160px;
    }

    #balao__2 {
        position: relative;
        margin-top: 5px;
        width: 120px;
        height: 90px;
    }

    #chamada {
        position: relative;
        margin-top: 15px;
        margin-left: 10px;
        display: flex;
        gap: 250px;
        flex-direction: column;
        justify-content: space-between;
        font-size: 20px;
        font-weight: 400;
        font-family: "Inter", serif;
    }

    #chamada__gerente {
        position: absolute;
        margin-top: 0px;
        margin-left: 0px;
    }

    #chamada__descricao {
        position: absolute;
        margin-top: 45px;
        line-height: 25px;
    }

    #botprincipal {
        width: 250px;
        height: 190px;
        margin-left: 30px;
    }

    #chatbot {
        display: flex;
        position: relative;
        flex-direction: column;
        background-color: #474444;
        width: 100%;
        height: 70vh;
    }

    #chatbot__titulo {
        margin: 0 auto;
        margin-top: 36px;
        font-family: "Inter", serif;
        font-size: 32px;
        color: #FFF;
        font-weight: 800;
    }

    #chatbot__bot {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        margin-top: 10px;
    }

    #chatbot__conversa {
        margin-top: 36px;
        font-family: "Inter", serif;
        font-size: 16px;
        color: #FFF;
        text-align: center;
        line-height: 25px;
    }

    #chatbot__pergunta {
        margin: 0 auto;
        margin-top: 36px;
        text-align: center;
        font-family: "Inter", serif;
        color: #10E830;
        font-size: 16px;
        font-weight: 800;
    }

    #chatbot__opcao {
        margin: 0 auto;
        margin-top: 36px;
        width: 230px;
        font-size: 16px;
        padding: 15px;
        font-weight: 700;
        cursor: pointer;
    }

    #botprincipal {
        margin-top: -50px;
    }

    /* Style the button that is used to open and close the collapsible content */
    .collapsible {
        display: block;
        margin-top: 0px;
        margin-left: 85%;
        background-color: #474444;
        color: #FFF;
        cursor: pointer;
        width: 10%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 15px;
    }

    /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
    .active,
    .collapsible:hover {
        background-color: #474444;
    }

    /* Style the collapsible content. Note: hidden by default */
    .content {
        display: none;
        overflow: hidden;
        background-color: #474444;
    }
}