@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('/fonts/fonseca_bold_free_ver.otf');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



h1, h2 {
    font-family: 'Fonseca';
}

:root {
    --white: #fff;
    --dark-blue: #021F59;
    --clean-blue: #6B87BF;
    --egg-yellow: #F29F05;
    --egg-light: #FFA805;
    --off-white: #F2F2F2;
    --clean-brown: #8C4E2A;
    --grafit: #2D2D2D;
    --gray: #D1D1D1;
}

body {
    /* height: 100vh; */
    background-color: var(--off-white);
    font-family: 'Outfit';
    font-size: 14px;
    color: var(--grafit);
    max-width: 1440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--off-white);
    overflow-x: hidden;
}

header div.logo img {
    width: 40px;
    opacity: 1;
}

span.sindicon {
    filter: opacity(100%);
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: var(--gray);
    height: 40px;
    max-width: 1080px;
    width: 100%;
    border-radius: 4px 4px 0 0;
    position: fixed;
    top: 0;
    z-index: 2;
}

header img.dark{
    display: none;
}

header div span.sindicon {
    font-size: 20px;
    font-weight: bold;
}

header nav {
    display: flex;
    flex-direction: row;
}

header nav a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: var(--grafit);
    margin: 0;
    background-color: var(--egg-yellow);
    width: 150px;
}

header nav a:hover {
    text-decoration: none;
    color: black;
    background-color: var(--egg-light);
}

.menu {
    border-top-right-radius: 4px;
    /* border-radius: 4px; */
}

.botao {
    height: 40px;
    /* margin-left: 4px; */
    /* margin-right: 10px; */
    /* border-radius: 4px; */
    /* box-shadow: -1px 1px 3px var(--grafit); */
}

div.topo {
    position: fixed;
    top: 0;
    height: 40px;
    width: 100%;
    background-color: var(--off-white);
}

.hiddenMenu {
    /* display: none; */
    /* transform: translateY(-200%); */
    opacity: 0;
    filter: blur(30px);
    transition: all 0.7s;
}

.hidden {
    opacity: 0;
    filter: blur(15px);
    transform: translateX(-100%);
    transition:all 0.7s;
}

.showMenu {
    /* transform: translateY(0%); */
    opacity: 1;
    filter: blur(0px);
    transition: all 0.5s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    transition: all 0.7s;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1080px;
    width: 100%;
    margin-top: 40px;
    background-color: var(--off-white);
}

div.imagem_edificios img {
    width: 70%;
}

section {
    display: flex;
    flex-direction: row;
    background-color: var(--white);
    width: 100%;
    flex-basis: auto;
    /* min-height: 100vh; */
}

section.inicio {
    justify-content: space-between;
    height: 100vh;
    padding-top: 50px;
    padding-bottom: 10px;
}

section div.hero {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
}
.descricao :nth-child(3) {
    transition-delay: 400ms;
}
.descricao :nth-child(2) {
    transition-delay: 200ms;
}


section div.descricao {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding-left: 20px;
    padding-right: 10px;
    padding-bottom: 50px;
    max-height: 100vh;
    height: 100%;
}

section div.descricao p {
    font-size: 24px;
}

section div.descricao a {
    display: flex;
    flex-direction: column;
    font-size: 30px;
    justify-content: center;
    color: var(--grafit);
    text-decoration: none;
    background-color: var(--egg-yellow);
    width: 90%;
    text-align: center;
    height: 80px;
    border-radius: 4px;
}

section div.descricao a:hover {
    color: #000;
    background-color: var(--egg-light);
    text-decoration: underline;
}

section div.imagem_edificios {
    display: flex;
    padding-left: 10px;
    padding-right: 20px;
    justify-content: flex-start;
    align-items: center;
}

div.imagem_edificios img {
    border-radius: 20px;
}

section.parceiros {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 50px 10px;
}

section.parceiros h2 {
    font-size: 3.5vh;
    text-align: center;
}

section.parceiros div.parceiro_logo > img {
    width: 450px;
    transition-delay: 200ms;
}

section.parceiros div.parceiro_video > video {
    width: 450px;
    transition-delay: 400ms;
}

section.dores {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
}

section.dores ul :nth-child(2) {
    transition-delay: 200ms;
}

section.dores ul :nth-child(3) {
    transition-delay: 400ms;
}

section.dores ul :nth-child(4) {
    transition-delay: 600ms;
}

section.dores ul :nth-child(5) {
    transition-delay: 800ms;
}

section.dores ul :nth-child(6) {
    transition-delay: 1000ms;
}

section.dores div h2 {
    text-align: center;
}

section.dores ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

section.dores ul li {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    list-style-type: none;
    width: 150px;
    height: 200px;
    margin: 30px 70px 0 70px;
    border-style: solid;
    border-width: 2px;
    border-radius: 10px;
    border-color: var(--grafit);
    box-shadow: 2px 2px 5px gray;
}

section.dores ul li p {
    padding: 0 10px 0 10px;
    text-align: center;
}

section.dores ul li img {
    width: 50%;
}

section.dores a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 80px;
    background-color: var(--egg-yellow);
    color: var(--grafit);
    font-size: 30px;
    text-decoration: none;
    margin: 20px 0 0 0;
    border-radius: 4px;
}

section.dores a:hover {
    background-color: var(--egg-light);
    text-decoration: underline;
}

section.servicos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: space-evenly;
    width: 100%;
    height: 100vh;
}

section.servicos h2.mobile-title {
    display: none;
}

section.servicos a {
    display: none;
}

section.servicos :nth-child(2) {
    transition-delay: 200ms;
}

section.servicos :nth-child(3) {
    transition-delay: 400ms;
}

section.servicos :nth-child(4) {
    transition-delay: 600ms;
}

section.servicos :nth-child(5) {
    transition-delay: 800ms;
}

section.servicos :nth-child(6) {
    transition-delay: 1000ms;
}

section.servicos div div :nth-child(2) {
    transition-delay: 1000ms;
}

section.servicos ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    /* align-items: center; */
    align-content: space-evenly;
    flex-wrap: wrap;
    width: 50%;
}

section.servicos div {
    width: 50%;
}

section.servicos div div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: 500px;
    background-color: var(--dark-blue);
    border-radius: 50%;
    color: var(--off-white);
}

section.servicos ul li {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 170px;
    width: 120px;
    list-style: none;
    background-color: var(--clean-blue);
    border-radius: 10px;
    color: var(--off-white);
    margin: 0px 20px 0px 20px;
}

section.servicos ul li p {
    text-align: center;
    margin: 0 10px;
}

section.servicos ul li img {
    width: 50%;
}

section.servicos div {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.servicos div div a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 70px;
    background-color: var(--egg-yellow);
    color: var(--grafit);
    font-size: 25px;
    text-decoration: none;
    text-align: center;
    margin: 30px 0 0 0;
    border-radius: 4px;
}

section.servicos div div a:hover {
    background-color: var(--egg-light);
    text-decoration: underline;
}

section.quem_somos {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100vh;
    align-items: center;
}

section.quem_somos h2 {
    margin-bottom: 20px;
}

section.quem_somos div {
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    height: 100%;
}

.quem_somos_texto :nth-child(2) {
    transition-delay: 200ms;
}

.equipe li ul :nth-child(2) {
    transition-delay: 200ms;
}

.equipe li ul :nth-child(3) {
    transition-delay: 400ms;
}

.equipe li ul :nth-child(4) {
    transition-delay: 600ms;
}

.equipe li ul :nth-child(5) {
    transition-delay: 800ms;
}

section.quem_somos div div.quem_somos_texto {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 50%;
}

section.quem_somos div div.quem_somos_texto p {
    margin: 0 10px 0 0;
}

section.quem_somos div div.quem_somos_imagem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

section.quem_somos div div.quem_somos_imagem img {
    border-radius: 20px;
    width: 70%;
}

ul.equipe li {
    margin-top: 10px;
    list-style-image: url("./images/logo_lista_20.png");
}

ul.equipe_descricao li {
    list-style-image: url("./images/wifi_lista.png");
    margin-left: 20px;
}

section.depoimentos {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* height: 1600px; */
    width: 100%;
    background-color: var(--off-white);
}

.depoimentos_box :nth-child(1) {
    transition-delay: 200ms;
}

.depoimentos_box :nth-child(2) {
    transition-delay: 400ms;
}

.depoimentos_box :nth-child(3) {
    transition-delay: 600ms;
}

.depoimentos_box :nth-child(4) {
    transition-delay: 800ms;
}

.depoimentos_box :nth-child(5) {
    transition-delay: 1000ms;
}

.depoimentos_box :nth-child(6) {
    transition-delay: 1200ms;
}

section.depoimentos h2 {
    margin-top: 50px;
}

div.depoimentos_box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: space-evenly;
    height: 85%;
}

div.depoimentos_box div {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    background-color: var(--white);
    border-radius: 10px;
    width: 40%;
    height: 400px;
    margin: 20px;
}

div.depoimentos_box div h3 {
    margin: 0 20px 0 20px;
}

div.depoimentos_box div p {
    margin: 0 20px 0 20px;
    text-align: justify;
}

section.depoimentos a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 70px;
    background-color: var(--egg-yellow);
    color: var(--grafit);
    font-size: 25px;
    text-decoration: none;
    text-align: center;
    margin: 0 0 30px 0;
    border-radius: 4px;
}

section.depoimentos a:hover {
    background-color: var(--egg-light);
    text-decoration: underline;
}

section.cotacao {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.cotacao div div :nth-child(2) {
    transition-delay: 200ms;
}

section.cotacao h2 {
    margin: 30px 20px 30px 20px;
    text-align: justify;
}

section.cotacao div {
    display: flex;
    flex-direction: row;
}

section.cotacao div div {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 50%;
    margin: 50px 20px 50px 20px;
    text-align: justify;
    font-weight: 600;
}

section.cotacao div div img {
    border-radius: 10px;
    width: 80%;
}

section.cotacao a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 70px;
    background-color: var(--egg-yellow);
    color: var(--grafit);
    font-size: 25px;
    font-weight: normal;
    text-decoration: none;
    text-align: center;
    margin: 0 0 30px 0;
    border-radius: 4px;
}

section.cotacao a:hover {
    background-color: var(--egg-light);
    text-decoration: underline;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: var(--dark-blue);
    color: var(--off-white);
    font-size: 14px;
    font-weight: 700;
    max-width: 100vw;
    width: 100%;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width:32px;
    height: 2px;
    background-color: var(--off-white);
    margin: 8px;
    transition: all 0.3s;
}

@media (max-width: 1080px) {
    .nav-list {
        position: absolute;
        /* top: 8vh; */
        top: 80px;
        right: 0;
        width: 50vw;
        height:92vh;
        background-color: var(--grafit);
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transform: translateX(100%);
        transition: all 0.3s ease-in;
    }

    .nav-list a {
        background-color: var(--grafit);
        color: var(--egg-yellow);
        margin: 0;
        padding: 0;
        opacity: 0;
    }

    .mobile-menu {
        display: block;
    }

    section {
        /* max-height: 100vh; */
        width: 100;
    }

    header {
        background-color: var(--grafit);
        height: 80px;
        max-width: 100vw;
        width: 100%;
        padding: 0 1vw 0 1vw;
    }

    header img.dark {
        display: inline-block;
    }

    header img.white {
        display: none;
    }

    header .sindicon {
        color: var(--off-white);
    }

    div.topo {
        background-color: var(--grafit);
        height: 80px;
        max-width: 100vw;
        width: 100%;
    }

    /* main {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(12, 100vh);
        grid-template-areas:
            "hero"
            "parceiros"
            "dores"
            "dores"
            "servicos"
            "servicos"
            "quem_somos"
            "quem_somos"
            "depoimentos"
            "depoimentos"
            "depoimentos"
            "cotacao";
        max-width: 100vw;
        width: 100%;
    } */

    main {
        display: flex;
        flex-direction: column;
    }

    section.inicio {
        grid-area: hero;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr;
        min-height: 100vh;
    }

    section div.descricao {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        width: 100%;
        grid-column: 1/2;
        grid-row: 1/2;
    }

    section div.descricao h1 {
        font-size: 4vh;
        margin-left: 0;
        margin-top: auto;
        margin-bottom: auto;
        width: 70%;
        grid-row: 1/2;
    }

    section div.descricao p {
        font-size: 3.7vh;
        margin-left: 0;
        margin-top: auto;
        margin-bottom: auto;
        width: 70%;
        grid-row: 2/3;
    }

    section div.imagem_edificios {
        display: none;
        width: 0%;
    }

    section.inicio div.imagem_edificios img {
        display: none;
    }

    section.inicio div.descricao a {
        grid-row: 3/4;
        margin-left: 0;
        margin-top: auto;
        margin-bottom: auto;
        width: 70%;
        height: 8vh;
        font-size: 3vh;
    }

    section.parcerias {
        grid-area: parcerias;
    }

    section.dores {
        display: flex;
        flex-direction: column;
        /* grid-template-columns: 1fr;
        grid-template-rows: 1fr 4fr 2fr;
        grid-area: dores; */
        padding: 30px 0;
        height: 100%;
    }

    section.dores h2 {
        display: flex;
        align-items: flex-start;
        height: 100%;
        grid-row: 1/2;
        max-width: 100vw;
        text-align: left;
        width: 100%;
        padding: 0 10px;
        font-size: 3vh;
        margin: 10px 10px;
    }

    section.dores ul {
        display: flex;
        flex-wrap: wrap;
        grid-row: 2/3;
        max-width: 100vw;
        width: 100%;
        /* max-height: 100vh; */
        height: 100%;
        margin: 30px 0;
    }

    section.dores ul li {
        margin: 10px 20px;
        width: 35%;
        height: 30vh;
        font-size: 2.5vh;
    }

    section.dores a {
        grid-row: 3/4;
        max-width: 100vw;
        width: 70%;
        margin: auto;
        padding: auto;
        font-size: 3vh;
    }

    section.servicos h2.mobile-title  {
        display: flex;
    }

    section.servicos a {
        display: flex;
    }

    section.servicos {
        /* grid-area: servicos;
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 5vh 145vh 50vh;
        grid-template-areas: 
            "titulo"
            "cards"
            "botao"; */

        display: flex;
        flex-direction: column;
        height: 100%;
        padding: 30px 0;
    }

    section.servicos h2 {
        /* grid-area: titulo; */
        margin: 10px 20px;
        font-size: 3vh;
    }

    /* section.servicos a {
        grid-area: botao;
    }
    */

    section.servicos ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100vw;
        width: 100%;
        /* height: 100%; */
        margin: 10px;
        /* grid-area: cards; */
    }

    section.servicos ul li {
        width: 35%;
        height: 450px;
        margin: 10px 15px;
        font-size: 2.5vh;
    }

    section.servicos div {
        display: none;
    }

    section.servicos a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
        height: 80px;
        background-color: var(--egg-yellow);
        color: var(--grafit);
        font-size: 2.5vh;
        font-weight: normal;
        text-decoration: none;
        text-align: center;
        margin: auto;
        border-radius: 4px;
    }

    section.servicos a:hover {
        background-color: var(--egg-light);
        text-decoration: underline;
    }

    section.quem_somos {
        display: flex;
        grid-area: quem_somos;
        padding: 20px auto;
        height: 100%;
        flex-direction: column;
        align-content: space-evenly;
        justify-content: space-evenly;
    }

    section.quem_somos h2 {
        font-size: 3.5vh;
    }

    section.quem_somos div {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 3fr;
        grid-template-areas: 
            "imagem"
            "texto";
        margin: 0 auto;
        padding: 0;
        /* background-color: greenyellow; */
    }

    section.quem_somos div div.quem_somos_texto {
        grid-area: texto;
        max-width: 100vw;
        width: 100%;
        display: flex;
        /* flex-wrap: wrap; */
        flex-direction: column;
        /* align-content: space-evenly; */
        justify-content: space-evenly;
        font-size: 2.5vh;
        /* background-color: red; */
    }

    section.quem_somos div div.quem_somos_texto p {
        margin: 20px 20px;
        padding: 0;
        text-align: justify;
    }

    section.quem_somos div div.quem_somos_texto ul {
        margin: 20px 30px 10px 30px;
        padding: 0 30px;
        text-align: justify;
    }

    section.quem_somos div div.quem_somos_imagem {
        grid-area: imagem;
        /* background-color: #021F59; */
        max-width: 100vw;
        width: 100%;
    }

    section.quem_somos div div.quem_somos_imagem img {
        width: 50%;
    }

    section.depoimentos {
        /* grid-area: depoimentos; */
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        max-width: 100vw;
        width: 100%;
        height: 100%;
    }

    section.depoimentos h2 {
        font-size: 3.5vh;
    }

    section.depoimentos div.depoimentos_box {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    section.depoimentos div.depoimentos_box div {
        width: 80%;
        margin: 10px;
        font-size: 1.5vh;
    }

    section.depoimentos a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
        height: 80px;
        background-color: var(--egg-yellow);
        color: var(--grafit);
        font-size: 2.5vh;
        font-weight: normal;
        text-decoration: none;
        text-align: center;
        margin: 20px auto;
        border-radius: 4px;
    }

    section.depoimentos a:hover {
        background-color: var(--egg-light);
        text-decoration: underline;
    }

    section.cotacao {
        /* grid-area: cotacao; */
        min-height: 100vh;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 5px 20px;
    }

    section.cotacao div.content_cotacao {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        margin: 0;
        padding: 0;
    }

    section.cotacao h2 {
        font-size: 3.5vh;
        text-align: left;
        margin: 0;
        padding: 0;
        padding-bottom: 30px;
    }

    section.cotacao div.content_cotacao > div {
        width: 100%;
        margin: 0;
    }

    section.cotacao > div > div > img {
        width: 50%;
    }

    section.cotacao div.content_text_link {
        height: 100%;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
    }

    section.cotacao div.content_cotacao > div > p {
        text-align: center;
        font-size: 2vh;
        padding: 50px 0;
    }

    footer {
        max-width: 100vw;
        width:100%;
        display: flex;
        justify-content: center;
        font-size: 12px;
    }
}

@media (max-width: 700px) {
    section.parceiros div.parceiro_logo img {
        width: 300px;
    }

    section.parceiros div.parceiro_video video {
        width: 300px;
    }
    section.dores > ul{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    section.dores > ul > li {
        width: 80%;
        margin: 10px;
        padding: 0;
        height: 450px;
    }

    section.servicos > ul{
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        max-width: 100vw;
        width: 100%;
    }

    section.servicos > ul > li {
        width: 80%;
        margin: 10px;
        padding: 0;
        height: 450px;
    }
}

.nav-list.active {
    transform: translateX(0);
}

@keyframes navLinkFade {
    from {
        opacity: 0; 
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
}

.mobile-menu.active .line2 {
    opacity: 0;
}

.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
}