@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root{
    --cor-texto: #fff;
    --cor-fabrica: #0054CD;
    --cor-hover-azul:#0042a3;
    --cor-texto-escuro: #616060;
}

*{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body{
    max-width: 100%;
    overflow-x: hidden;
}

html{
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

.hamburguer{
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    display: none;
}

/*MENU*/
header {
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    margin-bottom: 0;
    height: 100px;
    justify-content: space-between;
    display: flex;
    align-items: center;
    padding: 0 40px;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

header .menu{
    display: flex;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
    max-width: 100%;
    padding-left: 100px;
    flex-direction: row;
}

header .logo img{
    width: 100%;
    max-width: 150px;
}

header #menu-nav{
    display: flex;
    gap: 20px;
}

header .menu-item1, .menu-item2{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header .menu-item2 a:hover{
    background-color: var(--cor-hover-azul);
}

header .menu-item1 a:hover{
    color: var(--cor-hover-azul);
}

header .menu-item1 a{
    text-decoration: none;
    color: black;
    padding: 10px 30px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
    font-size: 20px;
    font-weight: 600;
    gap: 10px;
}

header .menu-item2 a{
    text-decoration: none;
    background-color: black;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 600;
    gap: 10px;
}

/*QS*/
section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 30px auto;
}

section img {
    width: 50%;
}

section .direita,
section .esquerda {
    width: 50%;
    text-align: center;
    padding: 20px;
}



.q1 {
    background-color: #2D5AA0;
    color: white;
    flex-direction: row;
}

.q1 .direita {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.q1 .direita .titulo {
    width: 75%;
    font-size: 36px;
    margin: 0 auto 25px;
    font-weight: 600;
    letter-spacing: 2px;
}

.q1 .direita .titulo2 {
    width: 85%;
    font-size: 20px;
    margin: 0 auto 25px;
    font-weight: 500;
    line-height: 1.5;
}

.q2 {
    background-color: #3B6DB2;
    color: white;
    height: auto;
}

.q2 .esquerda{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.q2 .esquerda .titulo{
    width: 75%;
    font-size: 36px;
    padding-bottom: 25px;
    font-weight: 600;
}

.q2 .esquerda .titulo2 {
    font-size: 18px;
    width: 85%;
    margin: 0 auto 25px;
    font-weight: 500;
    line-height: 1.8;
}

.q3{
    background-color: #4C7DC5;
    color: white;
    flex-direction: row;
}

.q3 .direita {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.q3 .direita .titulo {
    width: 75%;
    font-size: 36px;
    margin: 0 auto 25px;
    font-weight: 600;
    letter-spacing: 2px;
}

.q3 .direita .titulo2 {
    width: 85%;
    font-size: 20px;
    margin: 0 auto 25px;
    font-weight: 500;
    line-height: 1.5;
}

/*FOOTER*/
#footer{
    background-color: var(--cor-fabrica);
    padding-top: 20px;
    padding-bottom: 30px;
}

#footer .conteudo{
    text-align: center;
}

#footer .conteudo img{
    max-width: 250px;
    width: 100%;
    margin-bottom: 20px;
}

#footer p{
    color: #fff;
    font-size: 16px;
}

.container .rodape-itens{
    justify-content: space-around;
    align-items: center;
    display: flex;
}

.container .rodape-itens a{
    text-decoration: none;
    color: #fff;
    line-height: 2;
}

/*RESPONSIVIDADES*/
@media(max-width: 990px){
    .rodape-itens{
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    html{
        margin: 0;
        padding: 0;
    }

    .direita {
        display: none;
    }

    section {
        display: flex;
        flex-direction: column;
        text-align: center;
        width: 100%;
        margin-top: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    section img{
        width: 100%;
    }


    section .direita{
        width: 100%;
    }

    section .esquerda{
        width: 100%;
    }

    .q1, .q3{
        flex-direction: column;
    }

    .q2{
        flex-direction: column-reverse;
    }

    .q1 .direita .titulo{
        width: 90%;
        font-size: 28px;
        font-weight: 700;
    }

    .q1 .direita .titulo2{
        width: 100%;
        font-size: 22px;
        font-weight: 500;
        padding-bottom: 10px;
    }

    .q2 .esquerda .titulo{
        padding-top: 10px;
        width: 90%;
        font-size: 22px;
        font-weight: 600;
    }

    .q2 .esquerda .titulo2{
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 15px;
    }

    .q3 .direita .titulo{
        width: 97%;
        font-size: 28px;
        font-weight: 600;
        padding-top: 10px;
    }

    .q3 .direita .titulo2{
        width: 100%;
        font-size: 23px;
        font-weight: 500;
        margin-bottom: 30px;
    }

    .rodape-itens{
        flex-direction: column;
    }
  }

@media (max-width: 320px) {
    .q1 .direita .titulo{
        width: 90%;
        font-size: 24px;
        font-weight: 700;
    }

    .q1 .direita .titulo2{
        width: 100%;
        font-size: 19px;
        font-weight: 500;
        padding-bottom: 10px;
    }

    .q2 .esquerda .titulo{
        padding-top: 10px;
        width: 90%;
        font-size: 19px;
        font-weight: 600;
    }

    .q2 .esquerda .titulo2{
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 15px;
    }

    .q3 .direita .titulo{
        width: 97%;
        font-size: 24px;
        font-weight: 600;
        padding-top: 10px;
    }

    .q3 .direita .titulo2{
        width: 100%;
        font-size: 19px;
        font-weight: 500;
        margin-bottom: 30px;
    }
}

@media (max-width: 1024px) {
    .q1 .direita .titulo{
        width: 90%;
        font-size: 19px;
        font-weight: 700;
    }

    .q1 .direita .titulo2{
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        padding-bottom: 10px;
    }

    .q2 .esquerda .titulo{
        padding-top: 10px;
        width: 90%;
        font-size: 19px;
        font-weight: 600;
    }

    .q2 .esquerda .titulo2{
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        padding-bottom: 15px;
    }

    .q3 .direita .titulo{
        width: 97%;
        font-size: 19px;
        font-weight: 600;
        padding-top: 10px;
    }

    .q3 .direita .titulo2{
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 30px;
    }
}

@media(max-width: 624px){
    .menu {
        display: flex;
        justify-content: space-between;
        align-items: center;

    }

    header .logo {
        flex-shrink: 0;
    }

     .hamburguer {
        display: block;
        margin-left: 250px;
        z-index: 10000;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }

    header #menu-nav{
        display: none;
    }

    header #menu-nav.show {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%;
        background-color: white;
        top: 80px;
        left: 0;
        z-index: 9999;
        padding: 15px 0;
        position: absolute;
    }
}

@media(max-width: 570px){
    .hamburguer {
        display: block;
        margin-left: 200px;
        z-index: 10000;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
}

@media(max-width: 520px){
    .hamburguer {
        display: block;
        margin-left: 150px;
        z-index: 10000;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
}

@media(max-width: 460px){
    .hamburguer {
        display: block;
        margin-left: 100px;
        z-index: 10000;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
    }
}

@media(max-width: 425px){
    header{
        justify-content: space-between;
    }

    header .menu{
        padding-left: 0;
    }
}
