/* menor que */
@media (max-width: 1000px) {

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .header_mobile{
        display: block;
        width: 100% !important;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
    }

    .topnav {
        position: relative;
        background-color: var(--side-primary-color);
        overflow: hidden;
        width: 100%;
        z-index: 999;
        height: 60px;
    }

    .topnav a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 1.2rem;
    }


    .side-menu {
        display: none;
    }
    
    .menuButtonIcon {
        margin-right: 10px;
        cursor: pointer;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 999;
    }

    .list_menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background-color: var(--side-secondary-color);
        margin-top: 0px;
        position: absolute;
        width: 100%;
        z-index: 997;
        /* animacao slide*/
        animation: slide 0.5s ease-in-out;

    }

    @keyframes slide {
        0% {
            margin-top: -60%;
        }

        100% {
            margin-top: 0%;
        }
    }

    .list_menu li {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom: 1px solid #ccc;
    }

    .list_menu li a {
        color: #fff;
        text-decoration: none;
        padding: fit-content;
        width: 100%;
        text-align: center;
        display: block;
        font-size: 1.2rem;
    }

   .main {
        width: 100%;
        position: static !important;

    }

    .container {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .card {
        width: 90%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .calculadora_container_body {
        flex-direction: column;
        width: 100%;
    }

    .calculadora_container_body input {
        width: 80%;
    }

    .calculadora_container_footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0%;
    }

    .icon_copy {
        display: none;
    }

    .calculadora_container_footer input {
        width: 80% !important;
    }

    .lgpd_card{
        padding: 20px;
        width: 80%;
        left: 10%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

    }

    .lgpd_card_content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 90%;
        padding: 0px;
    }
    .lgpd_card_content_left {
        width: 100%;
        margin-bottom: 10px;
    }
    .lgpd_card_content_right {
        width: 100%;
    }

    #btn_lgpd_aceitar {
        width: 100%;
    }

    #btn_lgpd_recusar {
        width: 100%;
    }
    
}

