@media screen and (min-width: 1024px) {
    h1 {
        font-size: 140%;
        font-weight: 800;
        text-transform: uppercase;
        font-family: "Open Sans", sans-serif;
    }

    h2 {
        font-size: 130%;
        font-weight: 600;
        font-style: italic;
        font-family: "Open Sans", sans-serif;
    }

    p {
        font-size: 115%;
        font-weight: 600;
        text-align: justify;
        word-wrap: break-word;
        font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    }

    /*-----------MENU-----------*/
    header#cabecalho {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        /*box-shadow: 0 2px 20px 5px #212121;*/
    }

    header#cabecalho i#icon-menuBurger {
        font-size: 200%;
        display: none;
    }

    header#cabecalho nav#menu-container {
        left: 0;
        position: relative;
        text-align: center;
        background: none;
    }

    header#cabecalho nav#menu-container ul {
        margin: 0;
        display: inline;
    }

    header#cabecalho nav#menu-container ul li {
        margin: 5px;
        display: inline;
    }

    header#cabecalho nav#menu-container ul li a {
        color: #0e4477;
        font-weight: 700;
        text-decoration: none;
        font-family: "Open Sans", sans-serif;
    }

    header#cabecalho nav#menu-container ul li a:hover {
        color: #333;
        transition: 0.6s;
        border-bottom: 1px #333 solid;
    }

    header#cabecalho nav#menu-container ul li a:focus {
        transform: translateY(-50px);
        color: #333;
        border-bottom: 1px #333 solid;
    }

    #cabecalho {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        background-color: #333;
        color: #fff;
        position: relative;
    }

    #icon-menuBurger {
        font-size: 24px;
        cursor: pointer;
        display: none;
        /* Ocultar no desktop */
    }

    /*-----------HOME-----------*/
    article#home-article {
        padding: 2em;
        display: flex;
        align-items: center;
        flex-direction: row;
        justify-content: center;
        background-color: #f3f0f0;
    }

    article#home-article section#text-section h1 {
        margin-top: 1em;
        color: #0e4477;
        text-align: left;
    }

    article#home-article section#text-section h2 {
        margin: 1em 0;
        color: #0e4477;
        border-bottom: #eeee52 solid 2px;
    }

    article#home-article section#text-section p {
        margin: 1em 0;
        color: #333;
    }

    article#home-article img {
        height: 55%;
        width: 55%;
    }

    /*-----------SERVICES-----------*/
    main#content article#services-article {
        padding: 1em;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        background-color: #0e4477;
    }

    main#content article#services-article section.section-serviceCard hr {
        display: none;
    }

    main#content article#services-article section.section-serviceCard {
        margin: 1em;
        padding: 1 em;
        max-width: 400px;
        text-align: center;
        position: relative;
        border-radius: 20px;
        border: #f3f0f0 1px solid;
        background-color: #f3f0f0;
    }

    main#content article#services-article section.section-serviceCard i {
        margin: 0.5em 0;
        font-size: 500%;
        color: #0e4477;
        text-align: center;
    }

    main#content article#services-article section.section-serviceCard p {
        font-size: 115%;
        color: #0e4477;
        text-align: justify;
        font-weight: 600;
    }

    main#content article#services-article section.section-serviceCard div.circle {
        width: 25px;
        height: 25px;
        border-radius: 50px;
        position: absolute;
        background-color: #0e4477;
    }

    /*-----------COSTUMER-----------*/
    main#content article#customer-article {
        padding: 2em;
        background-color: #f3f0f0;
    }

    main#content article#customer-article ul li {
        margin: 2em 0;
        font-weight: 600;
        text-align: center;
        text-transform: uppercase;
        font-family: "Opens Sans", sans-serif;
    }

    /*-----------PROJECTS-----------*/

    main#content article#projects-article {
        padding: 2em;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        background-color: #333;
    }

    main#content article#projects-article ul {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    main#content article#projects-article ul li img {
        margin: 1em;
        width: 135px;
        height: 135px;
        cursor: pointer;
    }

    main#content img#imageExpand {
        border-radius: 20px;
        height: 20em;
        width: 20em;
    }

    /*-----------FORM-----------*/
    footer#rodape article#contact-article {
        display: flex;
        align-items: start;
        justify-content: space-around;
        background-color: #0e4477;
    }

    footer#rodape article#contact-article section#contact {
        height: 100%;
        width: 50%;
    }

    footer#rodape article#contact-article section#contact h3 {
        font-size: 150%;
        color: #eeee52;
        font-weight: 600;
        text-align: center;
        margin-bottom: 1em;
        text-transform: uppercase;
        font-family: "Open Sans", sans-serif;
    }

    footer#rodape article#contact-article section#contact p {
        margin: 1em 0;
    }

    footer#rodape article#contact-article section#contact p a {
        margin: 0;
        color: #f3f0f0;
        font-weight: 500;
        text-align: justify;
    }

    footer#rodape article#contact-article section#contact i.icon-contact {
        display: flex;
        font-size: 20pt;
        color: #eeee52;
        width: max-content;
        align-items: center;
    }

    footer#rodape article#contact-article section#contact i.icon-contact p {
        font-size: 12pt;
        font-weight: 800;
    }

    footer#rodape article#contact-article form {
        height: 100%;
        width: 45%;
    }

    footer#rodape article#contact-article form input {
        outline: 0;
        width: 100%;
        padding: 1em;
        font-style: none;
        background: none;
        color: #f3f0f0;
        margin-bottom: 2em;
        border: #f3f0f0 2px solid;
    }

    footer#rodape article#contact-article form input:hover {
        background-color: #333;
    }

    footer#rodape article#contact-article form textarea {
        outline: 0;
        width: 100%;
        padding: 1em;
        color: #f3f0f0;
        font-style: none;
        background: none;
        margin-bottom: 2em;
        border: #f3f0f0 2px solid;
    }

    footer#rodape article#contact-article form textarea:hover {
        background-color: #333;
    }

    footer#rodape article#contact-article form button.form-button {
        padding: 1em;
        border: none;
        cursor: pointer;
        font-size: 10pt;
        font-weight: 800;
        color: #f3f0f0;
        text-align: center;
        width: max-content;
        border-radius: 10px;
        letter-spacing: 2px;
        background-color: #333;
        text-transform: uppercase;
    }

    footer#rodape article#contact-article form button.form-button:hover {
        cursor: pointer;
        transition: 0.5s;
        color: #0e4477;
        background-color: #f3f0f0;
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 1;
        padding-top: 100px;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .modal-content {
        position: relative;
        margin: auto;
        padding: 0;
        width: max-content;
        max-width: 1200px;
    }

    .close {
        color: white;
        position: absolute;
        top: 10px;
        right: 25px;
        font-size: 35px;
        font-weight: bold;
    }

    .close:hover,
    .close:focus {
        color: #999;
        text-decoration: none;
        cursor: pointer;
    }

    .slides {
        display: none;
    }

    .slides img {
        overflow: hidden;
        height: 30em;
        width: 30em;
    }

    .cursor {
        cursor: pointer;
    }

    .prev,
    .next {
        cursor: pointer;
        position: absolute;
        top: 50%;
        width: auto;
        padding: 16px;
        margin-top: -50px;
        color: white;
        font-weight: bold;
        font-size: 20px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        -webkit-user-select: none;
    }

    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }

    .prev:hover,
    .next:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }
}