@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&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;
    font-family: "Open Sans", sans-serif;

}
/*
.header {
    background: #fff;
    padding-inline: 16px;
    border-bottom: 0.4px #d8d8d8 solid;
}

.nav {
    max-width: 1280px;
    height: 50px;
    margin-inline: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 200px;
    height: 40px;
    padding-left: 40px;

}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    font-size: 18px;
    color: #333;
    padding-block: 16px;
}

.hero {
    height: calc(100vh - 70px);
    background: center / cover no-repeat url("./bg.jpg");
}

.hamburger {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid #333;
    cursor: pointer;
}

.hamburger::after,
.hamburger::before {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}

@media (max-width: 750px) {
    .hamburger {
        display: block;
        z-index: 1;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        clip-path: circle(100px at 90% -15%);
        transition: 1s ease-out;

        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 0;

        pointer-events: none;
    }

    .nav-list a {
        font-size: 24px;
        opacity: 0;
        color: #333;
    }

    .nav-list li:nth-child(1) a {
        transition: 0.5s 0.2s;
    }

    .nav-list li:nth-child(2) a {
        transition: 0.5s 0.4s;
    }

    .nav-list li:nth-child(3) a {
        transition: 0.5s 0.6s;
    }



    .nav.active .nav-list {
        clip-path: circle(1500px at 90% -15%);
        pointer-events: all;
    }

    .nav.active .nav-list a {
        opacity: 1;
    }

    .nav.active .hamburger {
        position: fixed;
        top: 26px;
        right: 16px;
        border-top-color: transparent;
    }

    .nav.active .hamburger::before {
        transform: rotate(135deg);
    }

    .nav.active .hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }
}*/

.header {
    background: #fff;
    padding-inline: 16px;
    border-bottom: 1px solid;
    border-color: #e0e0e0;
    position: fixed; /* Fixar o menu */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease; /* Transições suaves */
}

.nav {
    max-width: 1280px;
    height: 50px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 200px;
    height: 40px;
    padding-left: 40px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-list {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-list a {
    font-size: 16px;
    color: #333;
    padding-block: 16px;
}

.hero {
    height: calc(100vh - 70px);
    background: center / cover no-repeat ;
}

.hamburger {
    display: none;
    border: none;
    background: none;
    border-top: 3px solid #333;
    cursor: pointer;
}

.hamburger::after,
.hamburger::before {
    content: " ";
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
}

@media (max-width: 750px) {
    .hamburger {
        display: block;
        z-index: 1;
    }

    .nav-list {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #fff;
        clip-path: circle(100px at 90% -15%);
        transition: 1s ease-out;

        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        gap: 0;

        pointer-events: none;
    }

    .nav-list a {
        font-size: 24px;
        opacity: 0;
    }

    .nav-list li:nth-child(1) a {
        transition: 0.5s 0.2s;
    }

    .nav-list li:nth-child(2) a {
        transition: 0.5s 0.4s;
    }

    .nav-list li:nth-child(3) a {
        transition: 0.5s 0.6s;
    }

    /* Estilos ativos */
    .nav.active .nav-list {
        clip-path: circle(1500px at 90% -15%);
        pointer-events: all;
    }

    .nav.active .nav-list a {
        opacity: 1;
    }

    .nav.active .hamburger {
        position: fixed;
        top: 26px;
        right: 16px;
        border-top-color: transparent;
    }

    .nav.active .hamburger::before {
        transform: rotate(135deg);
    }

    .nav.active .hamburger::after {
        transform: rotate(-135deg);
        top: -7px;
    }
}

/* Estilos para quando a página é rolada */
.header.scrolled {
    background: #fff;
    padding-inline: 16px;
}

.header.scrolled .nav-list a {
    color: #333;
}

.header.scrolled .hamburger,
.header.scrolled .hamburger::after,
.header.scrolled .hamburger::before {
    border-top: 3px solid #333;
}

.header.scrolled .logo {
    opacity: 1;
}


.conteudo-principal {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;

}

.conteudo-principal-escrito {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.conteudo-principal-logo {
    width: 255px;
    height: 47px;
}

.conteudo-principal-escrito-titulo {
    font-size: 40px;
    font-weight: 700;
    color: #005183;
}

.conteudo-principal-escrito-subtitulo {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.conteudo-principal-escrito-botao {
    background: linear-gradient(to right, #03304B, #034670);
    width: 180px;
    height: 50px;
    border: none;
    border-radius: 20px;
    color: white;
    padding: 15px 30px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 4px 5px 4px rgba(0, 0, 0, 0.25);
}

.conteudo-principal-escrito-botao:hover {
    background: linear-gradient(to right, #000000, #01367a);
}



.rodape {
    border-top: 0.4px #d8d8d8 solid;
    padding: 32px 0;
    text-align: center;
    height: 30px;
    padding-top: 10px;
}

.rodape-texto {
    color: #333;
    font-size: 14px;
}

@media screen and (max-width:840px) {

    .conteudo-principal {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-principal-escrito {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

    .conteudo-principal-botao {

        width: 150px;
        height: 30px;
        border: none;
        box-shadow: 3px 4px 3px #2F2325;
        border-radius: 20px;
        font-size: 18px;
        font-weight: 400;
    }

}

@media screen and (max-width:480px) {

    .conteudo-principal {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-principal-escrito {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .conteudo-principal-botao {
        width: 130px;
        height: 25px;
        border: none;
        box-shadow: 3px 4px 3px #2F2325;
        border-radius: 20px;
        font-size: 16px;
        font-weight: 400;
    }

    .conteudo-principal-imagem {
        height: 15em;
    }

    .conteudo-principal-titulo {
        font-size: 54px;
    }

    .conteudo-principal-subtitulo {
        font-size: 14px;
    }

}

/*SOBRE NÓS*/

.conteudo-sobre {
    background-color: #03304B;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;

}

.BD {
    color: #9FD7F9;
}

.conteudo-sobre-escrito {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 32px;
}



.conteudo-sobre-escrito-titulo {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;

}

.conteudo-sobre-escrito-subtitulo {
    max-width: 900px;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}


@media screen and (max-width:840px) {

    .conteudo-sobre {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-sobre-escrito {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }


}

@media screen and (max-width:480px) {

    .conteudo-sobre {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-sobre-escrito {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }


    .conteudo-sobre-titulo {
        font-size: 54px;
    }

    .conteudo-sobre-subtitulo {
        font-size: 14px;
    }

}


/*--------------SERVIÇOS--------------*/

/*BOT*/


.conteudo-bot {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;

}

.conteudo-bot-escrito {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.conteudo-bot-logo {
    width: 255px;
    height: 47px;
}

.conteudo-bot-escrito-titulo {
    font-size: 40px;
    font-weight: 700;
    color: #005183;
}

.conteudo-bot-escrito-subtitulo {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}


@media screen and (max-width:840px) {

    .conteudo-bot {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-bot-escrito {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

}

@media screen and (max-width:480px) {

    .conteudo-bot {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-bot-escrito {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .conteudo-bot-imagem {
        height: 15em;
    }

    .conteudo-bot-titulo {
        font-size: 54px;
    }

    .conteudo-bot-subtitulo {
        font-size: 14px;
    }

}


/*app*/


.conteudo-app {
    background-color: #03304B;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;

}

.conteudo-app-escrito {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.conteudo-app-logo {
    width: 255px;
    height: 47px;
}

.conteudo-app-escrito-titulo {
    font-size: 40px;
    font-weight: 700;
    color: #9FD7F9;
}

.conteudo-app-escrito-subtitulo {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}


@media screen and (max-width:840px) {

    .conteudo-app {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-app-escrito {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

}

@media screen and (max-width:480px) {

    .conteudo-app {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-app-escrito {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .conteudo-app-imagem {
        height: 15em;
    }

    .conteudo-app-titulo {
        font-size: 54px;
    }

    .conteudo-app-subtitulo {
        font-size: 14px;
    }

}

/*automacao*/


.conteudo-automacao {

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;

}

.conteudo-automacao-escrito {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.conteudo-automacao-logo {
    width: 255px;
    height: 47px;
}

.conteudo-automacao-escrito-titulo {
    font-size: 40px;
    font-weight: 700;
    color: #005183;
}

.conteudo-automacao-escrito-subtitulo {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}


@media screen and (max-width:840px) {

    .conteudo-automacao {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-automacao-escrito {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

}

@media screen and (max-width:480px) {

    .conteudo-automacao {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-automacao-escrito {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .conteudo-automacao-imagem {
        height: 15em;
    }

    .conteudo-automacao-titulo {
        font-size: 54px;
    }

    .conteudo-automacao-subtitulo {
        font-size: 14px;
    }

}


/*bi*/


.conteudo-bi {
    background-color: #03304B;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;

}

.conteudo-bi-escrito {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}


.conteudo-bi-logo {
    width: 255px;
    height: 47px;
}

.conteudo-bi-escrito-titulo {
    font-size: 40px;
    font-weight: 700;
    color: #9FD7F9;
}

.conteudo-bi-escrito-subtitulo {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}


@media screen and (max-width:840px) {

    .conteudo-bi {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-bi-escrito {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
    }

}

@media screen and (max-width:480px) {

    .conteudo-bi {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .conteudo-bi-escrito {
        display: flex;
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }

    .conteudo-bi-imagem {
        height: 15em;
    }

    .conteudo-bi-titulo {
        font-size: 54px;
    }

    .conteudo-bi-subtitulo {
        font-size: 14px;
    }

}



/*CLIENTES*/


.conteudo-clientes {
    padding: 60px 0;

}

.conteudo-clientes-escrito-titulo {

    color: #005183;
    font-size: 40px;
    text-align: left;
    padding-bottom: 40px;
    padding: 120px;
}

.lista-clientes {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.conteudo-clientes-imagem {
    max-width: 175px;
    max-height: 175px;
}

@media screen and (max-width:480px) {
    .conteudo-clientes {
        padding: 0px;
        
    
    }

    .lista-clientes {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 35px;
    }
    .conteudo-clientes-escrito-titulo {

        color: #005183;
        font-size: 35px;
        padding: 0;
    }

    .conteudo-clientes-imagem {
        max-width: 150px;
        max-height: 150px;
    }

}


/*-----CONTATO----*/

.conteudo-contato {
    background-color:#03304B;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 60px 0;
}

.conteudo-contato-imagem {
    width: 255px;
    height: 47px;
}

.conteudo-contato-escrito-subtitulo{
    padding-left: 10px;
    padding-top: 30px 0;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.conteudo-contato-fale-titulo{
    font-size: 40px;
    font-weight: 700;
    color: #9FD7F9;
}

.conteudo-contato-fale-subtitulo{
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}


.lista-icones {
    text-align: center;
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

@media screen and (max-width:480px) {

    .conteudo-contato {
        background-color:#03304B;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        padding: 60px 0;
    }

}