html {
  scroll-behavior: smooth;
}

section {
   overflow: hidden;
   overscroll-behavior: none;
}

input:focus, button:focus, select:focus, textarea:focus {
    outline: none;
}

.meio {
	margin: auto;
}

.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: 999;
    bottom: 20px;
    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: 10px 0;
    background-color: #22345d;
    color: #fff;
    font-family: 'Montserrat';
}

.header .linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .linha .nada {
        display: block;
    width: 235px;
    height: 30px;
}

.header .logo img {
    width: 100%;
    max-width: 200px;
}

.header .logo {
    margin: 0 auto;
    display: block;
}

.header .chamada a {
    display: block;
    width: fit-content;
    padding: 6px 20px;
    background-color: #F4D44C;
    border-radius: 5px;
    color: #22345D;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
}

.header .chamada a img {
    display: block;
    width: 26px;
}

.menu {
    border-top: 1px solid #5e6c8d;
    background-color: #22345d;
    color: #fff;
    font-family: 'Montserrat';
}

.menu nav {
    display: flex;
    justify-content: space-evenly;
}

.menu nav a {
    color: #fff;
    text-decoration: none;
    padding: 5px;
}

.menu nav a.active {
    padding: 4px 5px;
    border-bottom: 2px solid #f4d44c;
}

.menu .sub span {
    color: #fff;
    text-decoration: none;
    transition: .2s;
    position: relative;
    display: inline-block;
}

.menu nav span.active {
    padding: 4px 5px;
    border-bottom: 2px solid #f4d44c;
}

.menu .sub {
    display: flex;
    align-items: center;
    position: relative;
}

.menu .sub:hover .lista {
    display: block;
}

.menu .sub .lista {
    display: none;
    position: absolute;
    width: 250px;
    background: #000;
    z-index: 99;
    border-radius: 0px;
    overflow: hidden;
    top: 35px;
}

.menu .sub .lista a {
    display: block;
    background: #FFf;
    padding: 10px 15px;
    color: #22345D;
    font-weight: bold;
    transition: 0s;
}

.menu .sub .lista a:hover {
    border-bottom: 2px solid #22345D;
}

#navbar {
  position: fixed; /* Make it stick/fixed */
  top: -115px; /* Hide the navbar 50 px outside of the top view */
  width: 100%; /* Full width */
  transition: top 0.3s;
  z-index: 100;
}

.infobanner {
    min-height: 440px;
    font-family: 'Montserrat';
    display: flex;
    align-items: flex-start;
    padding-top: 50px;
    color: #fff;
    position: relative;
    background-color: #1B345B;
}

.infobanner.banner1 {
    background-image: url(../img/banner-1.webp);
    background-size: cover;
    background-repeat: no-repeat; 
}

.infobanner.banner2 {
    background-image: url(../img/banner-index-3.webp);
    background-size: cover;
    background-repeat: no-repeat; 
}

.infobanner .detalhe {
    width: fit-content;
    margin: 0 0 10px;
}

.infobanner .detalhe span {
    background-color: #F4D44C;
    color: #1B345B;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 5px;
    display: block;
    width: fit-content;
    letter-spacing: 1px;
}

.infobanner .detalhe:before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F4D44C;
    margin: 0 0 3px;
}

.infobanner h1 {
    font-weight: 700;
    margin: 0;
    font-size: 32px;
    text-transform: uppercase;
}

.infobanner h1 b {
    color: #F4D44C;
}

.infobanner a.chamada {
    display: block;
    margin: 10px 0;
    width: fit-content;
    padding: 6px 20px;
    background-color: #F4D44C;
    border-radius: 5px;
    color: #22345D;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: .2s;
}

.infobanner a.chamada:hover {
    text-decoration: none;
    color: #22345D;
}

.infobanner a.chamada i {
    transition: .2s;
    font-style: normal;
    border: 1px solid;
    width: 16px;
    height: 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.infobanner a.chamada:hover i {
    margin: 0 15px 0 0;
}   

.vitrini {
    padding: 4rem 20px;
    font-family: 'Montserrat';
}

.vitrini .detalhe {
    width: fit-content;
    margin: 0 auto 10px;
}

.vitrini .detalhe span {
    background-color: #F4D44C;
    color: #1B345B;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 5px;
    display: block;
    width: fit-content;
    letter-spacing: 1px;
}

.vitrini .detalhe:before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F4D44C;
    margin: 0 0 3px;
}

.vitrini h1 {
    color: #1B345B;
    font-weight: 700;
    text-align: center;
}

.vitrini p {
    color: #1B345B;
    text-align: center;
}

.vitrini .caixa {
    background-color: aquamarine;
    height: 460px;
    width: 90%;
    margin: auto;
    border-top: 6px solid #22345D;
    display: flex;
    align-items: flex-end;
    padding: 0px 0px;
    justify-content: center;
    transition: .2s;
}

.vitrini .caixa:hover {
    border-top: 6px solid #F4D44C;
}

.vitrini .caixa:hover .titulo {
    box-shadow: inset 0px -55px 50px -13px #22345d;
}

.vitrini .caixa:hover a {
    opacity: 1;
}

.vitrini .caixa.porta {
    background-image: url(../img/vitrini-portaria.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.vitrini .caixa.limpeza {
    background-image: url(../img/vitrini-limpeza.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.vitrini .caixa.manutencao {
    background-image: url(../img/vitrini-zeladoria.webp);
    background-size: cover;
    background-repeat: no-repeat;
}

.vitrini .caixa h2 {
    background: #F4D44C;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #22345d;
    border-radius: 5px;
    padding: 5px 0;
    scale: 1.1;
}

.vitrini .caixa .titulo {
    width: 100%;
    padding: 40px 0 20px;
    transition: .2s;
}

.vitrini .caixa a {
    color: #F4D44C;
    text-decoration: none;
    text-align: center;
    display: block;
    margin: 10px auto 0;
    opacity: 0;
    transition: .2s;
}

.segmentos {
    padding: 3rem 0;
    margin: 3rem 0 0;
    font-family: 'Montserrat';
    color: #fff;
    background-image: url(../img/banner-segmentos.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.segmentos .grade {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.segmentos .grade .caixa {
    display: flex;
    width: 32%;
    padding: 15px 10px;
    background-color: #D3D6DF;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    height: 175px;
}

.segmentos .grade .caixa.amarelo {
    background-color: #F4D44C;
}

.segmentos a {
        display: block;
    width: fit-content;
    padding: 6px 20px;
    background-color: #F4D44C;
    border-radius: 5px;
    color: #22345D;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: .2s;
}

.segmentos a:hover {
    color: #22345D;
    text-decoration: none;
    transform: scale(1.1);
}

.segmentos a img {
    display: block;
    width: 26px;
}

.segmentos .caixa img {
    width: 100%;
    max-width: 65px;
    display: block;
}

.segmentos .caixa h3 {
    font-size: 20px;
    text-align: center;
    color: #1B345B;
    font-weight: 700;
}

.segmentos .detalhe {
    width: fit-content;
    margin: 0 0 10px;
}

.segmentos .detalhe span {
    background-color: #F4D44C;
    color: #1B345B;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 5px;
    display: block;
    width: fit-content;
    letter-spacing: 1px;
}

.segmentos .detalhe:before {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background-color: #F4D44C;
    margin: 0 0 3px;
}

.segmentos .col-md-6 {
    align-self: center;
}

.opcoes {
   font-family: 'Montserrat';
   color: #22345D;
}

.opcoes h1 {
    font-weight: 700;
}

.opcoes .col-md-6 {
    padding: 6rem 2rem;
}

.opcoes .caixa {
    width: 75%;
}

.opcoes .esquerda {
    display: flex;
    justify-content: flex-end;
    background-color: #F4D44C;
}

.opcoes .direita {
    display: flex;
    justify-content: flex-start;
    background-color: #D3D6DF;
}

.opcoes a {
    background-color: #22345D;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    display: block;
    width: fit-content;
    text-decoration: none;
    transition: .2s;
}

.opcoes a:hover {
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

.opcoes img {
    display: block;
    margin-bottom: 10px;
}

.rodape {
    background-color: #22345D;
    color: #fff;
    padding: 2rem 0;
    font-family: 'Montserrat', sans-serif;
}

.rodape .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
}

.rodape .cada {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    margin-bottom: 20px;
}

.rodape .cada img {
    max-width: 30px;
    margin-bottom: 5px;
}

.rodape .cada .texto {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.rodape .cada .texto span {
    font-weight: bold;
    color: #F4D44C;
}

.rodape .cada .texto a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.rodape .cada .texto a:hover {
    color: #F4D44C;
}

.rodape .col-md-3 {
    flex: 1;
    min-width: 200px;
    padding: 0 15px;
}

.wecan {
    background-color: #1B345B;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

.wecan a {
    color: #F4D44C;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.wecan a:hover {
    color: #fff;
    text-decoration: underline;
}

.wecan a span {
    font-family: 'Poppins';
    color: gold;
    font-size: 20px;
    line-height: 0px;
}

.apresenta {
    padding: 2rem 20px;
    font-family: 'Montserrat';
    color: #22345D;
    height: 300px;
    display: flex;
    align-items: center;
}

.apresenta.sobrenos {
    background-image: url(../img/banner-sobre.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.apresenta.porta {
    background-image: url(../img/banner-portaria.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.apresenta.limp {
    background-image: url(../img/banner-limpeza.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.apresenta.sistem {
    background-image: url(../img/banner-sistema-integrado.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.apresenta.trabal {
    background-image: url(../img/banner-trabalhe-conosco.webp);
    background-repeat: no-repeat;
    background-size: cover;
}

.apresenta.trabal h1 {
    color: #fff;
}

.apresenta.sistem h1 {
    color: #fff;
}

.apresenta.limp h1 {
    color: #fff;
}

.apresenta.porta h1 {
    color: #fff;
}

.apresenta span {
    display: block;
    width: fit-content;
    background-color: #F4D44C;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 5px 20px;
    border-radius: 5px;
    font-size: 16px;
    margin: auto;
}

.apresenta h1 {
    text-align: center;
    font-weight: 700;
}

.historia {
    padding: 2rem 0;
    font-family: 'Montserrat';
    color: #fff;
    background-color: #22345D;
    background-image: url(../img/sobre-fachada.webp);
    background-size: 45% 100%;
    background-repeat: no-repeat;
    background-position: right;
}

.historia h1 {
    font-weight: 700;
}

.historia p {
    font-size: 0.9rem;
}

.valores {
    padding: 2rem 0;
    color: #22345D;
    font-family: 'Montserrat';
    background-color: #F4D44C;
}

.valores.cinza {
    background-color: #Fff;
} 

.valores .col-md-8 {
    display: flex;
    gap: 30px;
    align-items: center;
}

.valores h1 {
    font-weight: 700;
}

.valores img {
    border-radius: 10px;
} 

.pessoas {
    padding: 4rem 15px;
    font-family: 'Montserrat';
    color: #fff;
    text-align: center;
    background-image: url(../img/banner-pessoas.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.pessoas h1 {
    font-weight: 700;
}

.pessoas h1 b {
    color: #F4D44C;
}

.portaria {
    padding: 4rem 15px;
    font-family: 'Montserrat';
    background-image: url(../img/banner-amarelo.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    color: #22345D;
    position: relative;
}

.portaria h1 {
    font-weight: 700;
}

.portaria h1 b {
    color: #fff;
    font-weight: 700;
}

.portaria a {
    display: block;
    width: fit-content;
    padding: 6px 20px;
    background-color: #22345d;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: .2s;
}

.portaria a:hover {
    transform: scale(1.1);
    color: #fff;
    text-decoration: none;
}

.portaria a img {
        display: block;
    width: 26px;
    filter: brightness(11.5);
}

.portaria h3 {
    font-weight: 700;
}

.portaria .cada {
    margin: 30px 0;
    display: block;
}

.portaria .cada img {
    background-color: #22345d;
    padding: 10px;
    border-radius: 10px;
    width: 90px;
    height: 90px;
    object-fit: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 10px;
}

.portaria img.opaco {
    max-width: 300px;
    width: 200%;
    position: absolute;
    bottom: 0;
    right: 0;
} 

.portaria img.maior {
    display: block;
    width: 100%;
}

.solucoes {
    padding: 3rem 15px;
    font-family: 'Montserrat';
    color: #fff;
    background-image: url(../img/banner-pessoas.svg);
    background-repeat: no-repeat;
    background-size: 150%;
    text-align: center;
}

.solucoes h1 {
    font-weight: 700;
}

.solucoes .grade {
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.solucoes .grade .cada {
    background: #D3D6DF;
    display: flex;
    flex-direction: column;
    width: 16%;
    padding: 10px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
}

.solucoes .grade .cada.amarelo {
    background: #F4D44C;
}

.solucoes .grade .cada span {
    color: #1B345B;
}

.solucoes .grade .cada img {
    margin-bottom: 5px;
    width: 60px;
}

.solucoes a {
    display: block;
    width: fit-content;
    padding: 6px 20px;
    background-color: #F4D44C;
    border-radius: 5px;
    color: #22345D;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin: 20px auto;
    transition: .2s;
}

.solucoes a:hover {
    transform: scale(1.1);
    text-decoration: none;
    color: #22345D;
}

.solucoes a img {
    display: block;
    width: 26px;
}

.frase {
    padding: 4rem 15px;
    font-family: 'Montserrat';
    color: #22345D;
}

.frase h1 {
    font-weight: 700;
}

.aplicativo {
    font-family: 'Montserrat';
    background-image: url(../img/banner-pessoas.svg);
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
    margin: 2rem 0;
}

.aplicativo .col-md-7 {
    align-self: center;
}

.aplicativo h1 {
    font-weight: 700;
}

.aplicativo .imagem {
    height: 450px;
    position: relative;
    bottom: 0;
    width: 100%;
}

.aplicativo .imagem img {
    position: absolute;
    bottom: -80px;
    width: 100%;
    max-width: 290px;
    right: 0;
    left: 0;
    margin: auto;
}

.aplicativo .botoes {
    display: flex;
    gap: 20px;
}

.aplicativo .botoes a {
    width: 150px;
    height: 50px;
    display: block;
    text-decoration: none;
    transition: .2s;
}

.aplicativo .botoes a:hover {
    transform: scale(1.1);
}

.aplicativo .botoes a img {
    width: 100%;
}

.suporte {
    font-family: 'Montserrat';
    color: #22345D;
    margin: 2rem 0;
    padding: 4rem 0;
}

.suporte h1 {
    font-weight: 700;
    margin-bottom: 30px;
}

.suporte .divisao {
    display: flex;
    align-items: center;
}

.suporte .divisao .cada{
    display: flex;
    align-items: center;
    gap: 10px;
}

.suporte .divisao .cada p {
    margin: 0;
}

.falaequipe {
    padding: 4rem 15px;
    font-family: 'Montserrat';
    color: #22345D;
    text-align: center;
    background-image: url(../img/banner-amarelo.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

.falaequipe h1 {
    font-weight: 700;
    margin-bottom: 30px;
}

.falaequipe a {
    display: block;
    width: fit-content;
    padding: 6px 20px;
    background-color: #183051;
    border-radius: 5px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    margin: auto;
    transition: .2s;
}

.falaequipe a:hover {
    text-decoration: none;
    color: #fff;
    transform: scale(1.1);
}

.falaequipe a img {
    display: block;
    width: 26px;
    filter: brightness(35.5);
}

.trabalhe {
    padding: 4rem 15px;
    font-family: 'Montserrat';
}

.trabalhe h1 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #22345D;
    text-align: center;
}

.trabalhe p {
    text-align: center;
}

.trabalhe span {
    display: block;
}

.trabalhe form input {
    display: block;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid gray;
    margin-bottom: 10px;
}

.trabalhe form input[type='file']{
    padding: 7px 10px;
}

.trabalhe form textarea {
    display: block;
    width: 100%;
    border-radius: 5px;
    padding: 10px;
    border: 1px solid gray;
}

.trabalhe button {
    background-color: #22345D;
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    margin: 15px auto;
    width: fit-content;
    display: block;
    transition: .2s;
}

.trabalhe button:hover {
    transform: scale(1.1);
    background-color: #485f95;
}