@media only screen and (min-width: 0px) and (max-width: 600px) {

    .desktop {
        display: none;
    }
    
    * {
        margin: 0;
        padding: 0;
        outline: none;
        box-sizing: border-box;
        --background-color: #FBFBFB;
        --green-theme: #85B536;
        --light-gray: #343434;
        font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    }

    html {
        height: 100%;
        width: 100%;
        position: fixed;
    }

    body {
        height: 100%;
        width: 100%;
        display: flex;
        background-color: var(--background-color);
        -webkit-font-smoothing: antialiased;
    }

    .mobile {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .background-mb {
        height: 100%;
        width: 100%;
        position: absolute;
        background-image: url('/assets/img/mobile/background-mobile.webp');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom;
        z-index: -2;
        top: 0;
        right: 0;
    }

    .detalhe {
        height: 100%;
        width: 100%;
        position: absolute;
        background-image: url('/assets/img/mobile/footer-bg.svg');
        background-repeat: no-repeat;
        background-size: contain;
        background-position: bottom;
        flex-direction: column;
        justify-content: flex-end;
        z-index: -1;
    }

    .container-mb {
        height: 95%;
        width: 86%; 
        display: flex;
        align-items: center;
        flex-direction: column;
        border: 0.2rem solid var(--background-color);
        border-radius: 2rem;
        margin: 0 auto;
        justify-content: space-between;
        align-items: center;
        flex-direction: column;
    }

    .header-mb {
        height: 30%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .logo-mb {
        height: 60%;
        background-image: url('/assets/img/mobile/logo-mobile-img.svg');
        background-size:contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .content-mb {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        flex: 1;
        width: 100%;
        position: relative;
    }

    .message-mb {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .message-text-mb {
        font-size: 1.9rem;
        font-weight: 700;
        color: white;
        line-height: 3rem;
    }

    hr {
        height: 0.18rem;
        width: 9.5rem;
        border: 0;
        background-color: var(--background-color);
    }

    .footer-mb {
        display: flex;
        flex-direction: column;
        height: 20%;
        width: 100%;
        justify-content: flex-end;
    }

    .contact-mb {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }

    .contact-title-mb {
        font-weight: 600;
        font-size: 2rem;
        color: var(--light-gray);
        border-left: 0.3rem solid var(--green-theme);
        padding-left: 2%;
    }

    .contact-message-mb {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        font-size: 1.5em;
    }

    .contact-text-mb {
        display: flex;
        align-items: center;
        padding-top: 1%;
    }

    .icon-email-mb {
        height: 0.7em;
        padding-right: 5%;
    }

    .email-mb {
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        color: var(--light-gray);
    }

    .logo-footer {
        height: 2rem;
    }
}