@media screen and (max-width: 600px) {
    body {
        margin: 0;padding: 0;
    }
    .header_gotais {
        display: flex;
        width: 100%;
        height: 100vh;
        background-image: url("../img/top.png");
        background-repeat: no-repeat;
        background-size: cover;
        align-items: center;
    }
    .menu {
        display: flex;
        position: absolute;
        width: 100%;
        height: 120px;
        justify-content: center;
    }
    .logo {
        width: 250px;
        margin-top: 20px;
    }
    .header_text {
        display: flex;
        width: 100%;
        height: 100px;
        justify-content: center;
    }
    .texts {
        display: block;
        padding: 0px 10px 0 10px;
    }
    .text_1 {
        color: #FFF;
        font-family: 'Roboto', sans-serif;
        font-size: 30px;
        margin-bottom: 10px;
    }
    .text_2 {
        color: #FFF;
        font-family: 'Roboto', sans-serif;
        font-size: 30px;
        display: none;
    }
    .custom_text {
        background-color: rgba(47, 47, 47, 0.50);
        padding: 5px 12px 5px 12px;
        border-radius: 22px;
    }
    .foobot {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 20px;
     }
     .footbot_content{
        display: flex;
        width: 98%;
        /* height: 200px; */
        background: #1F1F1F;
        padding: 10px;
    }
    .foobot_texts {
        display: block;
    }
    .foobot_title {
        /* margin: 20px 0 10px 20px; */
        font-family: 'Roboto', sans-serif;
        height: 20px;
        color: #FFF;
        font-size: 16px;
    }
    .foobot_description {
        margin: 40px 0 10px 0px;
        font-family: 'Roboto', sans-serif;
        /* width: 50%; */
        color: #FFF;
        font-size: 16px;
        padding-left: 10px;
    }
    .foobot_option {
        margin-top: 15px;
        width: 100%;
        display: flex;
        height: 40px;
        justify-content: flex-end;
    }
    .buttons {
        display: flex;
        width: 300px;
        height: 40px;
    }
    .button_1 {
        border-radius: 20px;
        background: #FFFFFF;
        border: none;
        width: 130px;
        margin-right: 20px;
        font-family: 'Montserrat', sans-serif;
        cursor: pointer;
        transition: 0.5s;
    }
    .button_2 {
        border-radius: 20px;
        background: #1F1F1F;
        color: #FFF;
        border: solid 1px #FFFFFF;
        width: 130px;
        font-family: 'Montserrat', sans-serif;
        cursor: pointer;
        transition: 0.5s;
    }
    .button_1:hover, .button_2:hover {
        border-radius: 0px;
    }
}