html {
  scroll-behavior: smooth;
}

*{
    font-family: "Nunito", sans-serif;
}

section {
   overflow: hidden;
   overscroll-behavior: none;
   
}

input:focus, button:focus, select:focus, textarea:focus {
    outline: none;
}

*::-webkit-scrollbar{
        background: #fff;
    width: 15px;
}
*::-webkit-scrollbar-thumb{
    background: #E74E03;
}


.meio {
	margin: auto;
    position: relative;
    z-index: 1;
}

.wppvoa {
    display: flex;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    text-align: center;
    width: fit-content;
    padding: 10px;
    border-radius: 5px;
    position: fixed;
    z-index: 999999999;
    bottom: 30px;
    left: 20px;
    animation: 1.5s ease 0s infinite normal none running pisca;
}

.wppvoa:hover {
    text-decoration: none;
    color: #fff;
}

.wppvoa:hover i {
    transform: rotate(360deg);
}

.wppvoa i {
    font-size: 25px;
    margin: 0 5px;
    transition: .5s;
}

@keyframes pisca{
    0% {
        -webkit-transform:scale(0.9);
        -ms-transform:scale(0.9);
        transform:scale(0.9);
        }
    70% {
        -webkit-transform:scale(1);
        -ms-transform:scale(1);
        transform:scale(1);
        box-shadow:0 0 0 25px #ffff0000;
        }
    100%{
        -webkit-transform:scale(0.9);
        -ms-transform:scale(0.9);
        transform:scale(0.9);
        box-shadow:0 0 0 0 #ffff0000;
    }
}

.header {
    padding: 1rem 0;
    position: absolute;
    background: transparent;
    top: 0;
}

.header .menulinha {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.header .logo img {
    max-width: 240px;
}

.header nav {
    display: flex;
    gap: 30px;
}

.header nav a {
    color: #fff;
    text-decoration: none;
    transition: .3s;
    position: relative;
    display: inline-block;
}

.header nav a.active {
    border-bottom: 2px solid #E74E03;
    color: #fff;
}

.header nav a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #E74E03;
    border-radius: 2px;
    scale: 0 1;
    transform-origin: left;
    transition: scale 0.25s;
}

.header nav a:hover:before {
    scale: 1;
}

.header .acoes {
        display: flex;
    align-items: center;
    gap: 10px;
}

.header .acoes a {
    color: #151C69;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #E74E03;
    display: block;
    width: fit-content;
    transition: .2s;
}

.header .acoes a:hover {
    transform: scale(1.05);
}

.header .acoes a.bot1 {
    background: #E74E03;
    border: none;
    color: #fff;
    display: block;
    width: fit-content;
    transition: .2s;
}

.header .acoes a.bot1:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.header .acoes a img {
    max-width: 24px;
    margin: 0 0px 0 5px;
}

.infobanner {
        padding: 8rem 0 0;
    background-image: url('../img/banner-infobanner.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.infobanner h1 {
    color: #fff;
    font-weight: 800;
    font-size: 46px;
    margin-bottom: 20px;
}

.infobanner h1 b {
    padding: 0px 5px;
    font-weight: 800;
    border-radius: 5px;
    background: #E74E03;
}

.infobanner .acoes {
        display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 50px;
}

.infobanner .acoes a {
    color: #151C69;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid #151C69;
    display: block;
    width: fit-content;
    transition: .2s;
}

.infobanner .acoes a:hover {
    background: #151C69;
    color: #fff;
    transform: scale(1.05);
}

.infobanner .acoes a.bot1 {
    background: #0087FF;
    border: none;
    color: #fff;
    display: block;
    width: fit-content;
    transition: .2s;
}

.infobanner .acoes a.bot1:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.infobanner .caixa {
        background: #0000003b;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    color: #fff;
    max-width: 280px;
    margin: auto;
}

.infobanner .caixa p {
    margin: 0;
}

.infobanner .caixa p b{
    padding: 0px 5px;
    font-weight: 400;
    border-radius: 5px;
    background: #E74E03;
}

.sobrehome {
    padding: 4rem 0;
}

.sobrehome img {
    width: 100%;
    margin-bottom: 30px;
}

.sobrehome h2 {
    font-weight: 800;
    color: #0C9FA5;
    font-size: 38px;
}

.sobrehome h2 b {
    background: #E74E03;
    color: #fff;
    padding: 0 5px;
    border-radius: 5px;
    font-weight: 800;
}

.sobrehome .col-md-6 {
    align-content: center;
}

a.botglobal {
        background: #E74E03;
    border-radius: 70px;
    border: none;
    color: #fff;
    display: block;
    margin: 15px 0;
    width: fit-content;
    text-decoration: none;
    padding: 10px 30px;
    transition: .2s;
}

a.botglobal:hover {
    transform: scale(1.05);
    text-decoration: none;
    color: #fff;
}

.vitrini {
    padding: 6rem 0 0;
    margin: 4rem 0;
    color: #fff;
    background-image: url('../img/banner-vitrini-laranja.webp');
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.vitrini .caixa .linha {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-bottom: 2px solid #fff;
    max-width: 400px;
}

.vitrini .caixa .linha img {
    max-width: 40px;
}

.vitrini .caixa .linha h5 {
    margin: 0;
}

.vitrini h2 {
    font-weight: 800;
    color: #fff;
    font-size: 46px;
}

.vitrini h2 b {
    background: #0C9FA5;
    color: #fff;
    padding: 0 5px;
    border-radius: 5px;
    font-weight: 800;
}

.solucoes{
    padding: 4rem 0;
}

.solucoes img {
    width: 100%;
    margin-bottom: 30px;
}

.solucoes .titulo {
    text-align: center;
    margin-bottom: 30px;
}

.solucoes .titulo h2 {
    font-weight: 800;
    color: #0C9FA5;
    font-size: 46px;
}

.solucoes .titulo h2 b {
    background: #E74E03;
    color: #fff;
    padding: 0 5px;
    border-radius: 5px;
    font-weight: 800;
}

.porque {
    padding: 4rem 0;
    margin: 4rem 0 0;
    background: #0C9FA5;
    color: #fff;
    text-align: center;
}

.porque h2 {
    font-weight: 800;
    font-size: 46px;
    margin-bottom: 30px;
}

.porque h2 b {
    background: #E74E03;
    color: #fff;
    padding: 0 5px;
    border-radius: 5px;
    font-weight: 800;
}

.porque img {
    max-width: 80px;
    width: 100%;
    margin-bottom: 20px;
}

.porque h6 {
    background: #E74E03;
    padding:  5px;
    display: block;
    width: fit-content;
    margin: 0 auto 10px;
    border-radius: 5px;
    font-weight: 800;
}

.chamada {
    padding: 6rem 0;
    background-image: url('../img/banner-chamada.webp');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.chamada img {
    max-width: 80px;
    width: 100%;
    margin-bottom: 20px;
}

.chamada a {
    background: #0C9FA5;
}

.rodape {
    padding: 4rem 0;
}

.rodape .logo img{
    width: 100%;
}

.rodape h6 {
    font-weight: 700;
    color: #0C9FA5;
}

.rodape .logo img {
    width: 100%;
}

.rodape .navegacao {
    display: flex;
    gap: 20px;
}

.rodape nav {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.rodape nav a {
    color: #000;
    text-decoration: none;
    transition: .1s;
}

.rodape nav a:hover{
    text-decoration: underline;
}

.rodape .contat {
    display: flex;
    gap: 20px;
    justify-content: space-around;
}

.rodape .contat a {
    display: flex;
    gap: 5px;
    align-items: center;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
}

.rodape .contat a i {
    font-size: 20px;
    color: #0C9FA5;
}

.rodape .contat .linha {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.wecan {
    background: #E2E2E2;
    color: #000;
}

.wecan .col-md-12 {
    align-self: center;
}

.wecan p {
    padding: 10px 0;
    margin: 0;
    font-weight: 400;
    text-align: center;
    font-size: 14px;
}

.wecan a {
    font-family: 'Libre Franklin';
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: 1s;
}

.wecan a:hover {
    box-shadow: inset 70px 0 0 black;
    color: #fff;
    text-decoration: none;
}

.wecan a span {
    font-family: 'Poppins';
    color: gold;
    font-size: 20px;
    line-height: 0px;
}

.capa {
    padding: 6rem 0;
    background-image: url("../img/banner-contato.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.capa h1 {
    font-weight: 800;
    color: #fff;
}

.capa h1 b {
    background: #E74E03;
    color: #fff;
    padding: 0 5px;
    border-radius: 5px;
    font-weight: 800;
}

.contato {
    padding: 8rem 0;
}

.contato img {
    width: 100%;
    margin-bottom: 30px;
}

.contato h2 {
    font-weight: 800;
    color: #E74E03;
    font-size: 42px;
}

.contato input {
    padding: 10px;
    border: 1px solid gray;
    border-radius: 5px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.contato textarea {
    padding: 10px;
    border: 1px solid gray;
    border-radius: 5px;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.contato label {
    margin: 0px;
}

.contato button {
        background: #E74E03;
    border-radius: 70px;
    border: none;
    color: #fff;
    display: block;
    margin: 15px 0;
    width: fit-content;
    text-decoration: none;
    padding: 10px 50px;
    transition: .2s;
}

.contato button:hover {
    transform: scale(1.05);
}

.missao {
    padding: 4rem 0;
    text-align: center;
}

.missao .caixa {
    padding: 4rem 2rem;
    background: #E6E6E6;
    border-radius: 20px;
    margin-bottom: 2rem;
    position: relative;
}

.missao .caixa h2 {
    background: #E74E03;
    color: #fff;
    font-weight: 800;
    font-size: 42px;
    border-radius: 5px;
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    top: -20px;
    width: fit-content;
    margin: 0 auto 0;
    padding: 0 20px;
}

.bannerfim {
    background-image: url("../img/banner-fim.svg");
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    padding: 2rem 0;
}

.bannerfim h3 {
    font-weight: 800;
    font-size: 42px;
}

.bannerfim img {
        max-width: 400px;
    width: 100%;
    position: absolute;
    bottom: -50px;
}

.aplicacoes {
    padding: 4rem 0;
    text-align: center;
}

.aplicacoes .caixa {
    padding: 2rem;
    background: #E6E6E6;
    border-radius: 20px;
}

.aplicacoes .caixa p {
    font-size: 20px;
}

.aplicacoes span {
    padding: 10px;
    background: #E74E03;
    font-weight: 700;
    color: #fff;
    border-radius: 10px;
    display: block;
    width: fit-content;
    margin: 20px auto;
}

.aplicacoes img {
    width: 100%;
    margin-bottom: 30px;
}

.locais {
    padding: 4rem 0;
}

.locais h2 {
    font-weight: 800;
    font-size: 42px;
    text-align: center;
    color: #0C9FA5;
    margin-bottom: 3rem;
}

.locais h2 b{
    font-weight: 800;
    padding: 0 10px;
    background: #E74E03;
    color: #fff;
    border-radius: 5px;
}

.locais .caixa {
    padding: 2rem;
    border-radius: 10px;
    border-radius: 10px;
    background: #0C9FA5;
    color: #fff;
    display: flex;
    gap: 10px;
    align-items: center;
    min-height: 145px;
    justify-content: space-around;
}

.locais .caixa h5 {
    font-weight: 700;
    margin: 0px;
}

.locais .caixa img {
    max-width: 50px;
}

.tecnologia {
    padding: 4rem 0 8rem;
}

.tecnologia h2 {
    font-weight: 800;
    font-size: 42px;
    text-align: center;
    color: #0C9FA5;
    margin-bottom: 3rem;
}

.tecnologia h2 b{
    font-weight: 800;
    padding: 0 10px;
    background: #E74E03;
    color: #fff;
    border-radius: 5px;
}

.tecnologia .grade {
    display: grid;
    gap: 30px; /* Espaço entre os itens */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tecnologia .grade .caixa {
    padding: 2rem;
    border-radius: 20px;
    background: #E74E03;
    color: #fff;
}

.tecnologia .grade .caixa img {
    max-width: 70px;
    margin-bottom: 10px;
}

.tecnologia .grade .caixa h6 {
    font-size: 22px;
    font-weight: 800;
}

.tecnologia .grade .caixa.azul {
    background: #0C9FA5;
}