/* COMEÇO DO CSS DA PÁGINA HOME*/
/* navbar */
@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

*{
    font-family: 'Nunito', sans-serif;
}
.navbar{
    margin-bottom: 7.5%;
}

.navbar .justify-content-right a{
    text-decoration: none;
    margin-right: 30px;
    padding: 10px 15px;
    border-radius: 10px;
    transition: .2s;
    font-weight: bold;
}

.log{
    color: #032A4A;
    background-color: white;
}

.cad{
    background-color: #2569C1;
    color: white;
}

.cad:hover{
    color: white;
    filter: brightness(1.15);
}

/* fim da navbar*/


/* parte do meio*/

body {
    color: rgb(3, 42, 74);
    height: 100vh;
    flex-direction: column;
    justify-content: space-between;
    display: flex;
}

nav{
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

h1{
    font-weight: bold;
}

h2{
    font-weight: bold; 
    line-height: 130%;
}

span{
    color: #2569C1;
}

section{
    display: flex;
    padding: 0rem 3.5rem;
    margin-bottom: 5%;
}

footer{
    padding: 0rem 3rem;
}

.container_01{
    justify-content: space-between;
    align-items: center;
}

.container_01 .text{
    width: 40%;
}

.container_01 p{
    margin-bottom: 2rem;
}

.container_01 img{
    width: 90%;
}

.container_01 a{
    text-decoration: none;
    padding: 5px 75px;
    border-radius: 10px;
    font-size: 1.3rem;
}


/*  CONTAINER 2 */

.container_02{
    justify-content: center;
}

.container_02 div{
    margin: 0rem 2rem;
    width: 20%;
}

.container_02 img{
    margin-bottom: 1rem;
}

h3{
    font-weight: bold;
    font-size: 1.2rem;
    color: #2569C1;
}

.container_02 p{
    font-size: 1rem;
}


/* CONTAINER 03 */

.container_03{
    align-items: center;
}

.container_03 .img{
    width: 50%;
}

.container_03 .text{
    width: 40%;
}

.container_03 p{
    margin: 0;
}

/* FOOTER */

footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: white;
    background-image: url("../images/landing_page/footerFundo.svg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    padding: 2rem 3.5rem;
}

footer img{
    width: 80%;
}

footer p{
    margin: 0;
}

footer li{
    list-style: none;
    font-size: .9rem;
}

footer li img{
    width: 4%;
}

footer li a{
    text-decoration: none;
    color: white;
}

footer a:hover{
    color: #2d78db;
}


@media screen and (max-width:1100px) {
    .container_01{
        justify-content: space-between;
    }
    
    .text{
        width: 57.5%;
    }

    .img{
        width: 50%;
    }

    .container_03 img{
        width: 90%;
    }
}

@media screen and (max-width:900px) {
    section{
        padding: 0rem 1.5rem;
    }

    .container_01{
        margin-bottom: 7rem;
    }
    
    .container_01 .text{
        width: 75%;
    }

    .container_02{
        justify-content: space-around;
    }

    .container_02 div{
        width: 25%;
    }

    .container_02 img{
        width: 85%;
    }

    .container_03 .text{
        width: 75%;
    }
    .container_03 img{
        width: 90%;
    }
}


@media screen and (max-width:700px) {
    .container_01{
        flex-direction: column;
        align-items: center;
    }

    .container_01 .img{
        display: none;
    }

    .container_02{
        flex-direction: column;
        align-items: center;
    }

    .container_02 div{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 85%;
    }

    .container_02 img{
        width: 35%;
    }
}

@media screen and (max-width:600px) {
    h2{
        font-size: 1.5rem;
    }

    p{
        font-size: .9rem;
    }
    .container_03{
        flex-direction: column;
    }

    .container_03 .img{
        margin-bottom: 3rem;
    }

    footer p{
        margin-bottom: .8rem;
    }

    footer .contatos li{
        margin-bottom: .5rem;
        font-size: .8rem;
    }
}


@media screen and (max-width: 450px) {
    .navbar img{
        width: 75%;
    }

    .cad_header{
        display: none;
    }

    .justify-content-right{
        text-align: end;
    }

    section{
        padding: 0;
    }

    .container_01 .text{
        width: 85%;
    }

    .container_01 .text a{
        display: block;
        text-align: center;
    }

    .container_03 .text{
        width: 85%;
    }

    footer{
        padding-top: 3rem;
        flex-direction: column;
    }

    footer .nexti{
        text-align: center;
        order: 2;
    }

    footer .contatos{
        margin-bottom: 2rem;
        order: 1;
        text-align: center;
    }
}