/*FONTES*/
.lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: itálico;
}

.lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: itálico;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.montserrat {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    outline: none;
}

body {
    min-height: 100vh;
    font-family: 'lato', sans-serif;
    box-sizing: border-box;
}

:root {
    --cinza-escuro: #272727;
    --cinza-médio: #8c8c8c;
    --cinza-claro: #dcdcdc;
    --laranja-ESP: #e94e1a;
    --laranja: #e05f0e;
    --laranja-médio: #ff8f00;
    --amarelo: #ffc000;
}

/*NAV*/
.menu {
    max-width: 1440px;
    min-height: 20vh;
    padding: 0 5%;
    margin: 0 auto;
    background-color: var(--cinza-escuro);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 100%;

}

.menu ul {
    display: flex;
    justify-content: space-around;
    gap: 50px;
}

.menu ul li a {
    color: white;
    font-size: 14px;
    font-family: 'lato', sans-serif;
    display: block;
}

.menu ul li a::after {
    content: "";
    background-color: white;
    height: 1px;
    width: 0%;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}

.menu ul li a:hover::after {
    width: 100%;
}

.overlay-menu {
    background-color: #000000c5;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    display: none;
}

/*MENU MOBILE*/
nav .btn-abrir {
    cursor: pointer;
    display: none;
}

nav .menu-mobile {
    background-color: #e94e1a;
    height: 50vh;
    position: fixed;
    top: 20px;
    right: 0;
    z-index: 999;
    width: 0%;
    overflow: hidden;
    transition: 0.5s;
}

.menu-mobile.abrir-menu {
    width: 50%;
}

.menu-mobile.abrir-menu~.overlay-menu {
    display: block;
}

@media (max-width: 960px) {
    nav .btn-abrir {
        cursor: pointer;
        display: block;
    }

    nav .menu-mobile .btn-fechar {
        cursor: pointer;
    }

    .menu ul {
        gap: 20px;
    }

    nav .ul {
        display: none;
    }

    nav ul {
        display: block;
        text-align: center;
        align-items: center;
        margin-top: 20px;
        flex-direction: column;
        gap: 20px;
    }

    nav ul li a {
        font-size: 14px;
        font-weight: 400;
    }

    nav ul a:hover::after {
        width: 30%;
    }

    nav .menu-mobile .btn-fechar {
        padding-left: 20px;
        padding-top: 20px;
    }
}

/*BUTTON*/
.btn-orange {
    width: 140px;
    height: 30px;
    font-size: 13px;
    text-align: center;
    background-color: var(--laranja-ESP);
    color: white;
    padding: 5px 20px;
    display: inline-block;
    border-radius: 8px;
}

.btn-orange:hover {
    background-color: var(--laranja-médio);
    outline: 1px solid var(--laranja-médio);
    outline-offset: 2px;
}

.banner {
    background-color: white;
}


/*---------PÁGINA HOME -------*/
/*TRECHO-01*/
.container-A {
    width: 100%;
    height: 80vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.trecho-01-img {
    width: 50%;
    padding-left: 40px;
}

.trecho-01-img img {
    width: 85%;
}

.trecho-01-text {
    width: 50%;
    padding: 0 40px;
    color: #272727;
    font-family: 'lato', sans-serif;
}

.trecho-01-text h2 {
    font-weight: 400;
    font-size: 24px;
}

.trecho-01-text h1 {
    font-weight: 900;
    font-size: 32px;
    padding-right: 20px;
    line-height: 1.2;
    padding-bottom: 10px;
}

.trecho-01-text p {
    font-size: 16px;
    padding-right: 40px;
    padding-bottom: 20px;
}

.trecho-01-text h3 {
    font-size: 20px;
    font-weight: 400;
}

.trecho-01-text h4 {
    font-size: 16px;
    padding-left: 40px;
    padding-bottom: 10px;
    font-weight: 400;
}

.trecho-01-button {
    width: 100%;
    text-align: center;
    padding-bottom: 40px;
}

@media (max-width:960px) {
    .container-A {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
    }

    .trecho-01-text {
        width: 100%;
        text-align: center;
        order: 0;
    }

    .trecho-01-img {
        width: 90%;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .trecho-01-img img {
        width: 100%;
    }

    .trecho-01-text h1 {
        font-weight: 900;
        font-size: 20px;
        padding-right: 5px;
        line-height: 1.2;
        padding-bottom: 10px;
    }

    .trecho-01-text p {
        font-size: 14px;
        padding-right: 40px;
        padding-bottom: 20px;
    }

    .trecho-01-text h2 {
        font-size: 18px;
        font-weight: 400;
        padding-top: 10px;
    }

    .trecho-01-text h3 {
        font-size: 16px;
        font-weight: 400;
    }

    .trecho-01-text h4 {
        font-size: 14px;
    }

    .trecho-01-text a {
        margin-bottom: 40px;
    }
}

/*TRECHO-02*/
.container-B {
    width: 100%;
    height: 80vh;
    background-color: var(--cinza-escuro);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.trecho-02-text {
    width: 50%;
    padding: 0 40px;
    color: white;
    font-family: 'lato', sans-serif;
}

.trecho-02-img {
    width: 50%;
    padding-left: 40px;
}

.trecho-02-img img {
    width: 100%;
    border-radius: 20px;
}

.trecho-02-text h1 {
    font-weight: 400;
    font-size: 24px;
    padding-bottom: 10px;
    padding-top: 20px;
}

.trecho-02-text h2 {
    font-weight: 900;
    font-size: 32px;
    padding-bottom: 20px;
}

.trecho-02-text h3 {
    font-weight: 300;
    font-size: 20px;
}

.trecho-02-text h4 {
    font-weight: 700;
    font-size: 28px;
    color: white;
    padding-top: 30px;
}

.trecho-02-text p {
    font-size: 16px;
    padding-right: 40px;
    padding-bottom: 20px;
}

@media (max-width:960px) {
    .container-B {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .trecho-02-text {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .trecho-02-img {
        width: 90%;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
    }

    .trecho-01-img img {
        width: 100%;
    }

    .trecho-02-text h1 {
        font-weight: 400;
        font-size: 18px;
        padding-bottom: 10px;
        padding-top: 20px;
    }

    .trecho-02-text h2 {
        font-weight: 900;
        font-size: 20px;
        padding-bottom: 20px;
    }

    .trecho-02-text h3 {
        font-weight: 300;
        font-size: 20px;
    }

    .trecho-02-text p {
        font-size: 14px;
        padding-right: 0px;
        padding-bottom: 20px;
    }

    .trecho-02-text a {
        margin-bottom: 40px;
    }
}

/*TRECHO-03*/
.container-C {
    width: 100%;
    height: 40vh;
    background-color: var(--cinza-médio);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.trecho-03-img {
    width: 50%;
    padding-left: 40px;
}

.trecho-03-img img {
    width: 55%;
    padding-left: 80px;
}

.trecho-03-text {
    width: 100%;
    padding: 0 40px;
    color: #272727;
    font-family: 'lato', sans-serif;
    text-align: center;
}

.trecho-03-text h2 {
    font-weight: 400;
    font-size: 24px;
}

.trecho-03-text h1 {
    font-weight: 900;
    font-size: 32px;
    padding-right: 20px;
    line-height: 1.2;
    padding-bottom: 10px;
}

.trecho-03-text p {
    font-size: 16px;
    padding-right: 40px;
    padding-bottom: 20px;
}


@media (max-width:960px) {
    .container-C {
        width: 100%;
        height: 50vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .trecho-03-text {
        width: 100%;
        text-align: center;
        order: 0;
    }

    .trecho-03-img {
        width: 100%;
        align-items: center;
        justify-content: center;
        padding-bottom: 5px;
    }

    .trecho-03-text h1 {
        font-size: 20px;
        padding-right: 0px;
        line-height: 0.8;
        padding-bottom: 10px;
    }

    .trecho-03-text h2 {
        font-weight: 400;
        font-size: 18px;
        padding-bottom: 10px;
    }

    .trecho-03-text p {
        font-size: 14px;
        padding-right: 40px;
        padding-bottom: 20px;
    }

    .trecho-03 .container-A .trecho-01-text h2 {
        font-size: 18px;
        padding-top: 10px;
    }
}

/*TRECHO-04*/
.container-D {
    width: 100%;
    height: 70vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    margin: 30px 0;
}

.trecho-04-img {
    width: 50%;
    padding-left: 40px;
}

.trecho-04-img img {
    width: 85%;
}

.trecho-04-text {
    width: 50%;
    padding: 0 40px;
    color: #272727;
    font-family: 'lato', sans-serif;
}

.trecho-04-text h2 {
    font-weight: 400;
    font-size: 24px;
    padding-bottom: 10px;
}

.trecho-04-text h1 {
    font-weight: 900;
    font-size: 32px;
    padding-right: 20px;
    line-height: 1.2;
    padding-bottom: 10px;
}

.trecho-04-text p {
    font-size: 16px;
    padding-right: 40px;
    padding-bottom: 20px;
}

@media (max-width:960px) {
    .container-D {
        width: 100%;
        height: auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .trecho-04-text {
        width: 100%;
        text-align: center;
        order: 1;
    }

    .trecho-04-img {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .trecho-04-text h2 {
        font-weight: 400;
        font-size: 18px;
        padding-bottom: 10px;
    }

    .trecho-04-text h1 {
        font-weight: 900;
        font-size: 20px;
        padding-right: 0px;
        line-height: 1.2;
        padding-bottom: 10px;
    }

    .trecho-04-text p {
        font-size: 14px;
        padding-right: 0px;
        padding-bottom: 20px;
    }
}

/*TRECHO-05*/
.container-E {
    width: 100%;
    height: 60vh;
    background-image: linear-gradient(to bottom, #282828 0, #282828 90%, white 10%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.trecho-05-img {
    width: 50%;
    padding-left: 40px;
}

.trecho-05-img img {
    width: 55%;
    padding-bottom: 20px;
}

.trecho-05-text {
    width: 50%;
    padding: 0 40px;
    color: white;
    font-family: 'lato', sans-serif;
}

.trecho-05-text h2 {
    font-weight: 400;
    font-size: 24px;
    padding-bottom: 10px;
}

.trecho-05-text h1 {
    font-weight: 900;
    font-size: 32px;
    padding-right: 20px;
    line-height: 1.2;
    padding-bottom: 10px;
}

.trecho-05-text p {
    font-size: 16px;
    font-weight: 400;
    padding-right: 40px;
    padding-bottom: 20px;
}

@media (max-width:960px) {
    .container-E {
        width: 100%;
        height: 80vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .trecho-05-text {
        width: 100%;
        text-align: center;
        order: 0;
    }

    .trecho-05-img {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .trecho-05-text h1 {
        font-size: 18px;
    }

    .trecho-05-text h2 {
        font-weight: 400;
        font-size: 16px;
        padding-bottom: 10px;
    }

    .trecho-05-text p {
        font-size: 14px;
    }

    .trecho-05-text a {
        margin-bottom: 30px;
    }

    .trecho-05 .container-A .trecho-01-text h1 {
        margin-top: 40px;
    }

    .trecho-05 .container-A .trecho-01-text h2 {
        font-size: 18px;
    }

    .trecho-05 .container-A .trecho-01-text a {
        margin-top: 20px;
    }
}




/*-------PAGINA CONNVERGIS -----*/
.container-X {
    width: 100%;
    height: 20vh;
    background-color: var(--laranja-ESP);
    color: white;
    text-align: center;
    padding-top: 30px;
}

.trecho-01X-text {
    padding: 0 40px;
    color: #272727;
    font-family: 'lato', sans-serif;
}

.trecho-01X-text h2 {
    font-weight: 400;
    font-size: 24px;
}

.trecho-01X-text h1 {
    font-weight: 900;
    font-size: 32px;
    padding-right: 20px;
    line-height: 1.2;
    padding-bottom: 10px;
}

@media (max-width: 960px) {
    .container-X {
        width: 100%;
        height: 20vh;
    }

    .trecho-01X-text h2 {
        font-weight: 400;
        font-size: 16px;
    }

    .trecho-01X-text h1 {
        font-weight: 900;
        font-size: 20px;
        padding-right: 20px;
        line-height: 1.2;
        padding-bottom: 10px;
    }
}

.container-F {
    width: 100%;
    height: 70vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

@media (max-width: 960px) {
    .container-F {
        width: 100%;
        height: 80vh;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}

.container-G {
    width: 100%;
    height: 20vh;
    background-color: var(--laranja-ESP);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.trecho-08-text {
    width: 100%;
    text-align: center;
}

.trecho-08-text h1 {
    color: var(--cinza-escuro);
    font-weight: 900;
    font-size: 32px;
}

.trecho-08-text h2 {
    color: var(--cinza-escuro);
    font-weight: 400;
    font-size: 24px;
}

@media (max-width: 960px) {
    .trecho-08-text h1 {
        font-size: 24px;
    }

    .trecho-08-text h2 {
        font-size: 16px;
    }

}

.container-H {
    width: 100%;
    height: 90vh;
    background-color: white;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-around;
    padding: 0 40px;
}

.card {
    width: 35vw;
    height: 75vh;
    padding: 30px;
    background-color: var(--cinza-médio);
    text-align: center;
    border-radius: 30px;
}

.trecho-09-text {
    text-align: start;
}

.trecho-09-text img {
    padding-top: 30px;
    width: 80%;
}

.trecho-09-text h1 {
    font-weight: 700;
    font-size: 16px;
    padding-top: 20px;
    padding-left: 20px;

}

.trecho-09-text h2 {
    font-weight: 400;
    font-size: 16px;
    padding-left: 20px;
}

.trecho-09-text h3 {
    font-weight: 700;
    font-size: 16px;
}

.trecho-09-text p {
    font-weight: 400;
    font-size: 14px;
    padding-top: 5px;
    padding-right: 30px;
    padding-left: 20px;

}

@media (max-width: 960px) {
    .container-H {
        width: 100%;
        height: auto;
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .card {
        width: 80vw;
        height: auto;
        padding: 30px;
        background-color: var(--cinza-médio);
        text-align: center;
        border-radius: 30px;
        margin-top: 20px;
    }

    .container-H .card img {
        width: 60%;
        padding-bottom: 20px;
    }

    .trecho-09-text h2 {
        font-size: 16px;
        padding: 0 20px;
        padding-bottom: 10px;
    }

    .trecho-09-text h3 {
        font-size: 16px;
        padding: 0 20px;
    }

    .trecho-09-text p {
        font-size: 14px;
        padding: 0 20px;
    }
}

.container-I {
    width: 100%;
    height: 20vh;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}




/*------PÁGINA CONTATO ------ */
/*TRECHO-51*/
.container-M01 {
    width: 100%;
    height: 45vh;
    background: var(--laranja-ESP);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container-M01 .trecho-51-text {
    color: white;
    text-align: center;
}

.container-M01 .trecho-51-text h1 {
    color: white;
    text-align: center;
    font-size: 2.2rem;
}

.container-M01 .trecho-51-text h2 {
    color: white;
    text-align: center;
    font-size: 25px;
    padding-bottom: 30px;
}

@media (max-width: 960px) {
    .container-M01 {
        width: 100%;
        height: 30vh;
    }

    .container-M01 .trecho-51-text {
        padding: 0 20px;
    }

    .container-M01 .trecho-51-text h1 {
        font-size: 20px;
    }

    .container-M01 .trecho-51-text h2 {
        font-size: 16px;
    }
}

/*TRECHO-52*/
.container-M02 {
    width: 100%;
    height: 55vh;
    background: white;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    align-items: start;
    padding-top: 50px;
    padding-bottom: 20px;
}

.container-M02 .contact {
    width: 350px;
    padding: 20px 60px;
}

.container-M02 .contact h2 {
    color: var(--cinza-escuro);
    font-family: 'lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
    padding-top: 20px;
}

.container-M02 .contact h3 {
    color: var(--laranja-ESP);
    font-family: 'lato', sans-serif;
    font-size: 20px;
    font-weight: 700;
}

.container-M02 .contact h4 {
    color: var(--cinza-escuro);
    font-family: 'lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.container-M02 .contact a {
    color: var(--laranja-ESP);
    font-family: 'lato', sans-serif;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 30px;
}

@media (max-width: 960px) {
    .container-M02 {
        width: 100%;
        height: auto;
    }

    .container-M02 .contact {
        width: 350px;
        padding: 0 60px;
    }

    .container-M02 .contact h2 {
        font-size: 16px;
    }

    .container-M02 .contact h3 {
        font-size: 16px;
    }
}

/*TRECHO-53*/
.container-M03 {
    width: 100%;
    height: 40vh;
    background: var(--cinza-médio);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.container-M03 .trecho-53-text {
    width: 50%;
    padding: 0 100px;
}

.container-M03 .trecho-53-text h2 {
    color: white;
    font-family: 'lato', sans-serif;
    font-size: 25px;
    font-weight: 700;
}

.container-M03 .trecho-53-img {
    width: 50%;
}

.container-M03 .trecho-53-img img {
    width: 100%;
    border-radius: 30px;
}

@media (max-width: 960px) {
    .container-M03 {
        width: 100%;
        height: 40vh;
        flex-direction: column;
        display: flex;
    }

    .container-M03 .trecho-53-text {
        width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .container-M03 .trecho-53-img {
        width: 100%;
        margin-bottom: 30px;
    }

    .container-M03 .trecho-53-text h2 {
        padding: 30px 20px;
        font-size: 18px;

    }
}



/*FOOTER*/
footer {
    background: var(--cinza-escuro);
    width: 100%;
    height: 100%;
    align-items: center;

}

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.boxs {
    width: 420px;
    min-height: 150px;
    padding: 20px;
    padding-left: 60px;
    padding-right: 60px;
}

footer .line {
    max-width: 90%;
    height: 1px;
    background: white;
    margin: 0 60px;
    text-align: center;
}

.boxs h1 {
    color: white;
    font-size: 15px;
}

.redes {
    display: flex;
    justify-content: space-between;
}

.redes li {
    width: 20%;
    scale: .5;
}

.boxs h2 {
    color: white;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
}

.boxs ul li {
    margin: 10px 0;
    list-style: none;
}

.boxs ul li a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.boxs ul li a:hover {
    color: var(--laranja-ESP);
    text-decoration: none;
}

.boxs h3 {
    text-align: center;
    padding-top: 40px;
    font-size: 13px;
    color: white;
    font-weight: 400;
}

.boxs h4 {
    font-size: 14px;
    color: white;
    font-weight: 400;
}

.boxs img {
    scale: .7;
}

@media (max-width: 960px) {
    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .boxs {
        width: 400px;
        min-height: 100px;
        padding-bottom: 0;
        text-align: center;
    }

    .boxs h2 {
        color: white;
        margin-bottom: 0;
        font-weight: 400;
        font-size: 16px;
    }

    .boxs h3 {
        padding-top: 0;
    }

    .boxs img {
        scale: .8;

    }
}