@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}

body{
    font-family: "Poppins", sans-serif;
}

:root{
    --azul: #194077;
    --celeste: #5FAAD9;
    --cinza: #6c7073;
    --cinza-escuro: #3f403c;
}

main{
    background-color: var(--azul);
    height: 60vh;
}

/* classes reutilizaveis */
.container{
    max-width: 1440px;
    padding: 0 15%;
    margin: 0 auto;
}

main .container{
    display: flex;
    align-items: center;
    margin-top: 5px;
}
.main-text{
    width: 100%;
    color: white;
    margin-top: 30px;
}
.main-text h1{
    font-size: 2.5rem;
    font-weight: 400;
}
main .main-text .img{
    font-size: 4.5rem;
    font-weight: 700;
}
.main-text div{
    display: flex;
    align-items: center;
    margin-top: 20px;
}


/* footer */
    footer{
        background-color: white;
        height: 35vh;
        padding: 2.5rem 0;
    }
    footer .container{
        display: flex;
        justify-content: space-between;
        color: var(--cinza);
    }
    footer h3{
        margin-top: 35px;
    }
    .logo {
        width: 250px;
    }
    .ini p{
        margin-top: 15px;
    }
    .redes-sociais{
        width: 30%;
    }
    .redes-sociais a{
        cursor: pointer;
    }
    .redes-sociais .icons{
        margin-top: -15px;
    }


    @media only screen and (max-width: 700px){
    .container{
        margin-top: 0;
        padding: 0 5%;   
    }
    .main-text{
        width: 100%;
        color: white;
        margin-top: 25px;
    }
    .main-text h1{
        font-size: 2rem;
        font-weight: 400;
    }
    main .main-text .img{
        font-size: 4rem;
        font-weight: 700;
    }
    footer .container{
        display: flex;
        flex-direction: column;
        color: var(--cinza);
    }
    footer .container .ini{
        text-align: center;
        
    }
    .redes-sociais{
        margin-top: 30px;
        padding: 20px 0 0 0;
        width: 100%;
        text-align: center;
        background-color: #f2f2f2;
    }
    .redes-sociais .icons{
        margin-top: -15px;
    }
    }
