html {
  scroll-behavior: smooth;
  background: #000;
}

body {
  background-color: #000 !important;
}

*{
    font-family: "Montserrat", sans-serif;
    color: #fff;
}

section {
   overflow: hidden;
   overscroll-behavior: none;
   
}

input:focus, button:focus, select:focus, textarea:focus {
    outline: none;
}

*::-webkit-scrollbar{
        background: #000;
    width: 15px;
}
*::-webkit-scrollbar-thumb{
    background-image: linear-gradient(180deg, #C17000, #EC9200, #FFAA00, #F19D00, #C07000, #FFC51D) !important;
}


.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;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
    background-image: linear-gradient(182deg, black, #00000087, transparent, transparent);
}

.header .logo img {
    max-width: 190px;
    width: 100%;
}

.header .alinhar {
    display: flex;
    gap: 1rem;
}

.header .menu {
    width: 100%;
}

.header .menu .superior {
    display: flex;
    justify-content: end;
    gap: 0rem;
    border-bottom: 1px solid white;
    padding: 1rem 0;
}

.header .menu a {
    text-decoration: none;
    color: #fff;
    transition: .2s;
}

.header .menu a img {
    margin: 0 5px 0 0;
}

.header .menu .superior .cada {
    display: flex;
    gap: 1rem;
    border-left: 2px solid white;
    padding: 0 1rem;
}

.header .menu .superior .cada ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .menu .superior .cada ul li a i {
    font-size: 20px;
}

.header .menu .inferior {
        padding: 0rem 0;
    display: flex;
    gap: 3rem;
    justify-content: flex-end;
    align-items: center;
}

.header .menu .inferior nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header .menu .inferior nav a {
    position: relative;
    display: inline-block;
    transition: .3s;
    margin: 1rem 0;
}

.header .menu .inferior nav a:before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(90deg, #C17000, #EC9200, #FFAA00, #F19D00, #C07000, #FFC51D);
    border-radius: 2px;
    scale: 0 1;
    transform-origin: left;
    transition: scale 0.25s;
}

.header .menu .inferior nav a:hover:before {
    scale: 1;
}

.header .menu .inferior nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(90deg, #C17000, #EC9200, #FFAA00, #F19D00, #C07000, #FFC51D);
    border-radius: 2px;
    scale: 1;
    transform-origin: left;
}

.header .menu .inferior .desce {
    position: relative;
}

.header .menu .inferior nav .submenu {
    position: absolute;
    display: none;
    top: 50px;
    right: 0;
    left: 0;
    z-index: 99;
    min-width: 220px;
    background-color: #fff;
    width: fit-content;
    padding: 30px;
    border-radius: 0px;
    gap: 1rem;
    box-shadow: 4px 4px 2px #0000002e;
}

.header .menu .inferior nav .submenu::after {
        content: '';
    display: flex;
    clip-path: polygon(100% 100%, 50% 0%, 0% 100%);
    background: #fff;
    width: 20px;
    height: 16px;
    position: absolute;
    left: 30px;
    top: -10px;
}

.header .menu .inferior nav .submenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .menu .inferior nav .submenu span {
    color: #008B3A;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.header .menu .inferior nav .submenu.maior {
        position: absolute;
    display: none;
    top: 50px;
    right: 0;
    left: 0px;
    z-index: 99;
    background-color: #fff;
    min-width: 600px;
    padding: 30px;
    border-radius: 0px;
    gap: 1rem;
    box-shadow: 4px 4px 2px #0000002e;
}

.header .menu .inferior nav .submenu a {
    color: #000;
    display: block;
    width: fit-content;
    margin: 0 0 5px;
}

.header .menu .inferior nav .desce:hover .submenu{
    display: block !important;
}

.header .menu .inferior .botoes {
    display: flex;
    gap: .5rem;
}

.header .menu .inferior .botoes a {
    padding: 5px 15px;
    display: block;
    width: fit-content;
    border-radius: 1px;
    text-decoration: none;
    color: #fff;
    background: #008B3A;
    transition: .2s;
}

.header .menu .inferior .botoes a:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.botdourado {
    padding: 5px 15px;
    display: block;
    width: fit-content;
    border-radius: 1px;
    text-decoration: none;
    color: #000 !important;
    font-weight: 600;
    background-image: linear-gradient(90deg, #C17000, #EC9200, #FFAA00, #F19D00, #C07000, #FFC51D) !important;
    transition: .2s;
}

.botdourado i {
    color: #000;
}

.botdourado:hover {
    transform: scale(1.05);
    text-decoration: none;
}

.chamada {
    padding: 2rem 0;
    background-image: url("../img/banner-final.svg");
    background-repeat: no-repeat;
    background-size: cover;
}

.chamada .caixa {
        display: flex;
    align-items: center;
    gap: 2rem;
}

.chamada .caixa h2 {
    padding: 2rem;
    border-left: 1px solid #fff;
}

.chamada .caixa h2 b {
    display: block;
    width: fit-content;
    webkit-text-fill-color: #fff;
}

.chamada .col-md-4 {
    align-content: center;
    text-align: center;
}

.rodape {
    padding: 4rem 0;
}

.rodape h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0px 0 20px;
}

.rodape h4 {
    font-size: 16px;
    font-weight: 500;
    color: #008B3A;
    margin: 0px 0 5px;
}

.rodape .linha {
    display: flex;
    gap: 1rem;
}

.rodape a {
    text-decoration: none;
    color: #fff;
    display: block;
    width: fit-content;
    margin: 0 0 5px;
    transition: .1s;
    position: relative;
}

.rodape a:hover {
    text-decoration: none;
    color: #fff;
    transform: scale(1.03);
}

.rodape ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.rodape ul li a i {
    font-size: 20px;
}

.rodape ul li a {
    display: block;
    width: fit-content;
    transition: .2s;
}

.rodape ul li a:hover {
    transform: rotate(360deg);
}

.rodape .soluc a::after {
    content: '';
    display: flex;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background: #FFAA00;
    width: 10px;
    height: 10px;
    position: absolute;
    left: -20px;
    top: 5px;
}

.wecan {
    background: #494949;
    color: #FFF;
}

.wecan .col-md-12 {
    align-self: center;
}

.wecan p {
    padding: 10px 0;
    margin: 0;
    font-weight: 500;
    text-align: center;
    font-size: 14px;
}

.wecan a {
    font-family: 'Libre Franklin';
    font-weight: 700;
    color: #fff;
    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: 8rem 0 2rem;
    background: #000;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.capa.institu {
    background-image: url("../img/banner-institucional.png");
}

.capa.capaControle {
    background-image: url("../img/banner-controlador-de-acesso.png");
}

.capaMastervision {
    background-image: url("../img/banner-mastervision.png");
}

.capaPortaria {
    background-image: url("../img/banner-portaria.png");
}

.capaReconhecimento {
    background-image: url("../img/banner-reconhecimento.png");
}

.capaSupervisao {
    background-image: url("../img/banner-supervisao-online.png");
}

.capaLimpeza {
    background-image: url("../img/banner-limpeza.png");
}

.capaRecepcionista {
    background-image: url("../img/banner-recepcionista.png");
}

.capaGerente {
    background-image: url("../img/banner-gerente.png");
}

.capaBombeiro {
    background-image: url("../img/banner-bombeiro.png");
}

.capaCaes {
    background-image: url("../img/banner-caes.png");
}

.capaZeladoria {
    background-image: url("../img/banner-zeladoria.png");
}

.capa .botoes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.capa .botoes a {
    padding: 5px 15px;
    display: block;
    width: fit-content;
    border-radius: 1px;
    text-decoration: none;
    color: #fff;
    background: #008B3A;
    transition: .2s;
}

.capa .botoes a:hover {
    transform: scale(1.06);
}

.acessojuri {
    background-image: url("../img/banner-acessoria-juridica.png");
}

.contat {
    background-image: url("../img/banner-contato.png");
}

.traconosco {
    background-image: url("../img/banner-trabalhe-conosco.png");
}

.capa h1 {
    font-weight: 800;
}

.capa i {
    font-size: 30px;
}

.missao {
    margin: 4rem 0;
}

.missao .caixa {
        background-image: url("../img/card-missao.svg");
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 460px;
    padding: 2rem;
    border: 1px solid #006a2c;
    margin-bottom: 30px;
}

.missao .caixa img {
    max-width: 90px;
    margin-bottom: 20px;
}

.missao .caixa h5 {
    font-weight: 800;
    font-size: 22px;
}

.missao .caixa p {
    font-size: 14px;
}

.sedes .texto h4::before {
    content: '';
    display: block;
    width: 65px;
    height: 6px;
    background: #008B3A;
    margin-bottom: 10px;
}

.sobreserv {
    padding: 6rem 0;
    background-image: url("../img/detalhe-servicos.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top left;
}

.sobreserv .caixa {
        padding: 2rem;
    background-image: linear-gradient(180deg, #3B3B3B, #000000);
}

.sobreserv .caixa img {
    max-width: 140px;
    width: 100%;
    margin-bottom: 20px;
}

.sobreserv .caixa h5 {
    margin-bottom: 20px;
    font-weight: 700;
}

.sobreserv .caixa nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sobreserv .caixa nav a {
    text-decoration: none;
    color: #fff;
    margin: 0 20px;
    position: relative;
    transition: .2s;
}

.sobreserv .caixa nav a:hover {
    margin: 0 25px;
}

.sobreserv .caixa nav a::after {
    content: '';
    display: flex;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    background: #008B3A;
    width: 10px;
    height: 10px;
    position: absolute;
    left: -20px;
    top: 5px;
}

.sobreserv a.botdourado {
    padding: 10px 25px;
    margin: 10px auto;
}

.sobreserv img.imgprincipal {
    width: 100%;
    margin-bottom: 20px;
}

.sobreserv h2 {
    margin-bottom: 30px;
    font-weight: 700;
}

.sobreserv h2 b{
    font-weight: 700;
    background: #008B3A;
    padding: 0 2px;
}

.sobreserv span {
    display: block;
    width: fit-content;
    padding: 0 5px;
    color: #fff;
    background: #008B3A;
    font-weight: 800;
    margin-bottom: 10px;
}

.blog {
    padding: 4rem 1rem;
}

.blog .caixa {
    position: relative;
    background-image: linear-gradient(180deg, #3B3B3B, #000000);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 2rem;
    /*border: 1px solid #006a2c;*/
    margin-bottom: 30px;
    min-height: 580px;
}

.blog .caixa img {
    width: 100%;
    min-height: 135px;
    object-fit: cover;
    object-position: center;
    margin-bottom: 20px;
}

.blog .caixa h3 {
    font-weight: 700;
    text-transform: uppercase;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 30px;
    max-height: 5em;
    font-size: 26px;
    margin-bottom: 15px;
}

.blog .caixa p {
    display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5em;
  max-height: 9em; /* 6 linhas x 1.5em */
}

.blog .caixa a {
        padding: 5px 15px;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    color: #000 !important;
    font-weight: 600;
    border-radius: 1px;
    text-decoration: none;
    color: #fff;
    background-image: linear-gradient(90deg, #C17000, #EC9200, #FFAA00, #F19D00, #C07000, #FFC51D) !important;
    transition: .1s;
}

.blog .caixa a:hover {
    transform: scale(1.05);
}