@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Roboto Mono', monospace;
    font-size: 1em;
}

body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    color: #2B2E37;
    background-color: #FCFCFC;
}

h1 {
    font-family: 'Rubik', sans-serif;
    text-transform: uppercase;
    font-size: 2.4em;
    font-weight: 500;
    margin-bottom: 15px;
}

h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 2.2em;
    margin-bottom: 35px;
    color: #2B2E37;
}

    h2 span {
        box-shadow: inset 0 -0.7em #FEE7CA;
    }
/* h2::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0; right: 0;
    margin: 0 auto;
    display: block;
    background-color: #FEE7CA;
    width: 100%;
    height: 25px;
    z-index: -1;
} */

h3 {
    text-transform: uppercase;
    margin-bottom: 35px;
    color: #2B2E37;
}

p {
    line-height: 35px;
    color: #5A5A5A;
}

    p + p {
        margin-top: 15px;
    }


/* Menu */
header {    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    position: fixed;
    z-index: 100;
    transition: 400ms ease-in-out;
}

.logo {
    width: 120px;
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0;
    overflow: hidden;
    transition: 250ms ease-in-out;
    text-transform: uppercase;
}

    .navbar.active {
        height: 90vh;
    }


.menu {
    /* background-color: #00000078; */
}

    .menu.active {
        background-color: #2B2E37;
    }

.newMenu {
    background-color: #FBAF4E;
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

    .nav li {
        width: 100%;
        padding: 25px 0;
        list-style-type: none;
        text-align: center;
    }

        .nav li :focus {
            color: #FBAF4E;
            padding-bottom: 5px;
            border-bottom: 1.5px solid #FBAF4E;
        }

        .nav li :hover {
            color: #FBAF4E;
            transition: 300ms ease-out;            
        }

        .nav li a {
            text-decoration: none;
            color: #FEFEFE;
            transition: 300ms;
            font-family: 'Rubik', sans-serif;
            font-weight: 500;
        }

.btn-hamburguer {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background-color: inherit;
    border: none;
    height: 50px;
    width: 50px;
    outline: 0;
}

    .btn-hamburguer span {
        background-color: #FEFEFE;
        ;
        height: 6px;
        width: 100%;
        border-radius: 50px;
        transition: 200ms all ease-in-out;
    }

        .btn-hamburguer span + span {
            margin-top: 7px;
        }

    .btn-hamburguer.active span:first-child {
        transform: translateX(100%);
        opacity: 0;
    }

    .btn-hamburguer.active span:nth-child(2) {
        transform: translateY(0) rotate(-45deg);
    }

    .btn-hamburguer.active span:nth-child(3) {
        transform: translateY(-18px) rotate(45deg);
    }

/* Padrão section */
section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    width: 100%;
}

/* Introdução */
.intro {
    height: 100vh;
    background-image: url(../img/background2.png);
    background-position: center;
    background-size: cover;
    color: #FEFEFE;
}

.content-intro {
    width: 100%;
}

/* Introdução - Textos */
.text-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-left: 7px solid #FBAF4E;
    padding-left: 25px;
}

    .text-intro p {
        color: #FCFCFC;
    }

/* Introdução - Botão */
.button-intro {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 40px;
}

    .button-intro a {
        width: 250px;
        background-color: #FBAF4E;
        padding: 28px 0px;
        color: #FCFCFC;
        text-decoration: none;
        text-align: center;
        border-radius: 2px;
        text-transform: uppercase;
        position: relative;
    }

        .button-intro a span {
            border: 1px solid #FCFCFC;
            border-radius: 2px;
            position: absolute;
            width: 100%;
            padding: 15px 0px;
            left: 5px;
            top: 8px;
        }

/* Sobre */
.text-about {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
}

.about-app {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
}

.links-app {
    margin-top: 25px;
}

.links-app a img {
    width: 25vh;
    margin-bottom: 15px;
}

.img-app {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-bottom: 80px;
}

.img-app img {
    width: 100%;
}

.list-app {
    list-style-type: none;
}

.list-app li {
    display: inline-block;
    margin-right: 10px;
    margin-top: 10px;
}

.about-app h2 span {
    box-shadow: none;
    color: #FBAF4E;
}

.img-about {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    margin-top: 80px;
}

    .img-about img {
        width: 100%;
    }


/* Serviços */
.text-service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

    .text-service p {
        text-align: center;
    }

#service {
    justify-content: center;
}

/* Card - Serviços */
.card-service {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

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

    .card + .card {
        margin-top: 40px;
    }

    .card i {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background-color: #FBAF4E;
        color: #FCFCFC;
    }

    .card p {
        margin-top: 15px;
        text-transform: uppercase;
        font-size: 1.3em;
        font-weight: 700;
        color: #FBAF4E;
    }

/* Parceiros */
.img-partners {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.text-partners {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    width: 100%;
    margin-top: 80px;
}

.img-partners img {
    width: 100%;
}

/* Footer - Contato */
footer {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
    width: 100%;
    background-color: #FBAF4E;
}

    footer h2 {
        font-size: 1.5em;
        box-shadow: none;
        color: #FCFCFC;
        margin: 0;
    }

footer ul li {
    list-style-type: none;
}

footer ul li i {
    margin-top: 5px;
    color: #FCFCFC;
}

footer ul li a {
    margin-top: 5px;
    color: #FCFCFC;
}

    footer p {
        margin-top: 5px;
        color: #FCFCFC;
    }

    footer i {
        margin-right: 10px;
    }

    footer a {
        color: white;
    }

    footer hr {
        width: 100%;
        border-radius: 10px;
        margin: 20px 0;
        background-color: #FCFCFC;
        border: 1px solid #FCFCFC;
    }

.copyright {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.img-copyright {
    width: 120px;
}

    .img-copyright img {
        width: 100%;
    }

.copyright p {
    text-align: center;
    margin-top: 10px;
}

.list-contact li {
    color: #FCFCFC;
    text-decoration: none;
}

.list-contact li a img {
    width: 22px;
    height: 22px;
}

.list-contact li {
    margin-top: 8px;
}

.instagram-logo-contact {
    width: 20px;
    height: 20px;
}
.fa-facebook-f {
    color: #4267b2;
}
.fa-linkedin {
    background-color: #4267b2;
}

@media screen and (min-width: 520px) {
    body {
        background-image: url(../img/desktop.png);
        background-position: center;
        background-size: cover;
    }

    .card-service {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0;
    }


    .card {
        margin: 0;
        width: 50%;
    }

        .card + .card {
            margin-top: 0;
            margin-bottom: 25px;
        }

    .copyright {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

        .copyright p {
            text-align: right;
            margin: 0;
        }
}


/* Breakpoints */
@media screen and (min-width: 855px) {
    .intro {
        background-image: url(../img/background3.png);
        background-position: top;
        background-size: cover;
    }

    .button-intro {
        justify-content: flex-start;
    }

    header { padding: 20px 120px; }
    section { justify-content: space-between; padding: 80px 120px;}
    .text-about { width: 50%; margin: 0;}
    .img-about { width: 30%; margin: 0;}
    .img-app { width: 30%; margin: 0;}
    .about-app { width: 50%; margin: 0;}    
    .text-service { width: 70%; margin: 0;}
    
    .text-partners { width: 50%; margin: 0;}
    .img-partners { width: 30%; margin: 0;}

    header {
        padding: 20px 120px;
    }

    section {
        justify-content: space-between;
        padding: 80px 120px;
    }

    .text-about {
        width: 50%;
        margin: 0;
    }
    

    .img-copyright { width: 150px;}
    footer { padding: 40px 120px; }

    footer ul li {
        display: block;
        margin-right: 30px;

    }

    .img-about {
        width: 30%;
        margin: 0;
    }

    .text-service {
        width: 70%;
        margin: 0;
    }

    .text-partners {
        width: 50%;
        margin: 0;
    }

    .img-partners {
        width: 30%;
        margin: 0;
    }

    .card {
        width: 30%;
    }

    .img-copyright {
        width: 150px;
    }

    footer {
        padding: 40px 120px;
    }
}

@media screen and (min-width: 1000px) {
    .card {
        width: 25%;
    }
}

@media screen and (min-width: 1120px) {
     /* Menu */
     .btn-hamburguer { display: none; }

     .navbar {
         width: 70%;
         height: auto;
     }
     
     .nav {
         justify-content: flex-end;
         padding: 0;
     }

     footer ul li {
        display: inline-block;
        margin-right: 30px;
     }
     
     .nav li {
         display: inline-block;
         width: auto;
         margin-left: 45px;
         font-size: 0.9em;
         color: #FEFEFE;
     }

    .text-service { width: 50%; margin: 0;}

    /* Menu */
    .btn-hamburguer {
        display: none;
    }

    .navbar {
        width: 70%;
        height: auto;
    }

    .nav {
        justify-content: flex-end;
        padding: 0;
    }

        .nav li {
            display: inline-block;
            width: auto;
            margin-left: 45px;
            font-size: 0.9em;
            color: #FEFEFE;
        }

    .text-service {
        width: 50%;
        margin: 0;
    }
}

@media screen and (min-width: 1230px) {
    .card {
        width: 16%;
    }
}

@media screen and (min-width: 2000px) {
    header {
        padding: 20px 270px;
    }

    section {
        padding: 80px 270px;
    }

    footer {
        padding: 40px 270px;
    }
}
