/* ARQUIVO CSS CRIADO PARA ORGANIZAÇÃO DOS NOVOS MÓDULOS - (Reformulação Davi Emanuel - Mai 2025) */



/* Topbar */
.faixa-topo {
  background: #1f4b78;
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Segoe UI', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.item-contato {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
  color: #fff;
  transition: color 0.3s;
}

.item-contato:hover {
  color: #ffffff;
}

.icone-contato {
  color: #fff;
  margin-right: 6px;
  font-size: 1rem;
}

.botao-rede {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f4b78;
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.2s;
  text-decoration: none;
}

.botao-rede:hover {
  background-color: #00c3ff;
  transform: scale(1.1);
}

.botao-rede i {
  font-size: 1rem;
}
/* Fim Topbar */



/* Menu ativo e fixo*/
.item-menu.ativo a {
  position: relative;
  color: #00ffff !important;
}

.item-menu.ativo a::before {
  content: "";
  position: absolute;
  bottom: -5px; 
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #00ffff;
  border-radius: 2px;
}


.botao-orcamento a {
  background-color: #ffffff;
  color: #000 !important;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
}

  .menu-fixo {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: deslizar-para-baixo 0.3s ease-in-out;
  background-color: rgba(36,88,141,0.9)
}

@keyframes deslizar-para-baixo {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/* Fim Menu ativo e fixo */





/* Botão moderno */
.btn-keycorp {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  text-transform: none;
  outline: none;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 20px 60px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0px 7px 10px -5px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease-in-out 0s;
  cursor: pointer;
  z-index: 0;
  color: #fff;
}

.btn-keycorp:hover, .btn-keycorp:hover {
  text-decoration: none;
}
.btn-keycorp:focus, .btn-keycorp:focus {
  outline: none !important;
}

.btn-keycorp {
  border-color: #24588D;
  color: #fff;
  background: #24588D;
}
.btn-keycorp:hover {
  color: #24588D;
  background: transparent;
  border-color: #24588D;
}
.btn-keycorp:hover::before, .btn-keycorp:hover::after {
  left: 100%;
  transform: rotate(-15deg) translateX(100%);
}
.btn-keycorp::before, .btn-keycorp::after {
  content: "";
  position: absolute;
  width: 30px;
  left: 0;
  top: -50%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: rotate(-15deg) translateX(-150%);
  z-index: -1;
  transition: all 0.5s ease-in-out 0s;
}
.btn-keycorp::after {
  transition-delay: 0.075s;
}
/* Fim botão moderno */



/* =====  INICIO CÓDIGO CSS FADE ===== */
.fade-in, .fade-in-zoom, .fade-in-scale, .fade-in-blur, .fade-in-up, .fade-in-down, .fade-in-left, .fade-in-right {
    opacity: 0;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    transform: none;
}

.fade-in-zoom {
    transform: scale(0.9);
}

.fade-in-scale {
    transform: scale(0.8);
}

.fade-in-blur {
    filter: blur(10px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, filter 0.6s ease-out;
}

.fade-in-up {
    transform: translateY(20px);
}

.fade-in-down {
    transform: translateY(-20px);
}

.fade-in-left {
    transform: translateX(-20px);
}

.fade-in-right {
    transform: translateX(20px);
}

.fade-in.visible, .fade-in-zoom.visible, .fade-in-scale.visible, .fade-in-blur.visible, .fade-in-up.visible, .fade-in-down.visible, .fade-in-left.visible, .fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
    transform: translateY(0);
    transform: scale(1);
    filter: blur(0);
}
/* =====  FIM CÓDIGO CSS  FADE ===== */



/* =====  INICIO CÓDIGO CSS SLIDE ===== */
.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%;
    transition: transform 0.5s ease-in-out;
    flex-wrap: nowrap;
}

.slide {
    position: relative;
    width: 100%;
    height: 100vh; 
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.slide-content {
    position: absolute;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
}

.slide-content-left {
    position: absolute;
    z-index: 1;
    padding: 20px;
    border-radius: 10px;
    max-width: 90%;
    left: 10%;
    top: 55%;
    transform: translateY(-50%);
    text-align: left;
    align-items: flex-start;
}


.slide h2 {
    margin: 0;
    font-size: 36px;
    color: #fff;
}

.slide p {
    margin-top: 10px;
    font-size: 18px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 16px;
    color: white;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    z-index: 10;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.btn-slide-principal {
  background-color: #007bff;
  color: white;
  padding: 14px 32px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.btn-slide-principal:hover {
  background-color: #fff;
  color: #007bff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.btn-slide-secundaria {
  background-color: white;
  color: #007bff;
  padding: 14px 32px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn-slide-secundaria:hover {
  background-color: #007bff;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 06);
}



.btn-keycorp-slide {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  text-transform: none;
  outline: none;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 20px 60px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0px 7px 10px -5px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease-in-out 0s;
  cursor: pointer;
  z-index: 0;
  color: #fff;
}

@media (max-width: 768px) {
    .btn-keycorp-slide {
        font-size: 18px;
        padding: 10px 20px;
    }
}

.btn-keycorp-slide:hover, .btn-keycorp-slide:hover {
  text-decoration: none;
}
.btn-keycorp-slide:focus, .btn-keycorp-slide:focus {
  outline: none !important;
}

.btn-keycorp-slide {
  border-color: #24588D;
  color: #fff;
  background: #24588D;
}
.btn-keycorp-slide:hover {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}
.btn-keycorp-slide:hover::before, .btn-keycorp-slide:hover::after {
  left: 100%;
  transform: rotate(-15deg) translateX(100%);
}
.btn-keycorp-slide::before, .btn-keycorp-slide::after {
  content: "";
  position: absolute;
  width: 30px;
  left: 0;
  top: -50%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: rotate(-15deg) translateX(-150%);
  z-index: -1;
  transition: all 0.5s ease-in-out 0s;
}
.btn-keycorp-slide::after {
  transition-delay: 0.075s;
}


.btn-keycorp-branco {
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  text-transform: none;
  outline: none;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 20px 60px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0px 7px 10px -5px rgba(0, 0, 0, 0.25);
  transition: all 0.5s ease-in-out 0s;
  cursor: pointer;
  z-index: 0;
  color: #fff;
}

@media (max-width: 768px) {
    .btn-keycorp-branco {
        font-size: 20.5px;
        padding: 10px 20px;
    }
}

.btn-keycorp-branco:hover, .btn-keycorp-branco:hover {
  text-decoration: none;
}
.btn-keycorp-branco:focus, .btn-keycorp-branco:focus {
  outline: none !important;
}

.btn-keycorp-branco {
  border-color: #fff;
  color: #24588D;
  background: #fff;
}
.btn-keycorp-branco:hover {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}
.btn-keycorp-branco:hover::before, .btn-keycorp-branco:hover::after {
  left: 100%;
  transform: rotate(-15deg) translateX(100%);
}
.btn-keycorp-branco::before, .btn-keycorp-branco::after {
  content: "";
  position: absolute;
  width: 30px;
  left: 0;
  top: -50%;
  height: 200%;
  background-color: rgba(255, 255, 255, 0.7);
  transform: rotate(-15deg) translateX(-150%);
  z-index: -1;
  transition: all 0.5s ease-in-out 0s;
}
.btn-keycorp-branco::after {
  transition-delay: 0.075s;
}

.btn-icone-whatsapp {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  color: #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 22px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
  animation: pulse-white-glow 2s infinite;
  text-decoration: none;
}

@media (max-width: 767.98px) {
  .btn-icone-whatsapp {
    display: none !important;
  }
}

.btn-icone-whatsapp:hover {
  background-color: #00b825;
  color: white;
  transition: all 0.3s ease;
}

.btn-icone-whatsapp:hover i {
  color: white;
}


.btn-icone-whatsapp i {
  color: #007bff; 
  font-size: 30px;
  pointer-events: none;
}

@keyframes pulse-white-glow {
  0%, 100% {
    box-shadow:
      0 0 5px rgba(255, 255, 255, 0.9),
      0 0 15px rgba(255, 255, 255, 0.8),
      0 0 35px rgba(0, 123, 255, 0.6);
  }
  5%, 25%, 50% {
    box-shadow:
      0 0 20px rgba(255, 255, 255, 1),
      0 0 40px rgba(255, 255, 255, 0.9),
      0 0 60px rgba(0, 123, 255, 0.8);
  }
}

@media (max-width: 768px) {
    .btn-icone-whatsapp {
        width: 145px;
        height: 58px;
    }
}




/* Estilos responsivos */
@media (max-width: 768px) {
    .slide-content {
        padding: 15px;
    }

    .slide h2 {
        font-size: 28px;
    }

    .slide p {
        font-size: 16px;
    }

    .prev, .next {
        font-size: 20px;
        padding: 12px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 10px;
    }

    .slide h2 {
        font-size: 22px;
    }

    .slide p {
        font-size: 14px;
    }

    .prev, .next {
        font-size: 18px;
        padding: 10px;
    }
}

.titulo-slide {
  font-size: 50px;
  font-weight: 700;
}

@media (max-width: 768px) {
  .titulo-slide {
    font-size: 30px;
  }
}

.h1-titulo{
  font-size: 45px
}

.h2-titulo {
  font-size: 50px; 
  font-weight: 700
}

/* =====  FIM CÓDIGO CSS SLIDE ===== */



/* Cards pág inicial */
.modulo-cards {
  margin-top: -150px;
  padding: 80px 20px 60px;
  position: relative;
  z-index: 2;
}

.container-cards {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.card-icon img {
  width: 100%;
  height: auto;
}

.card h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 600;
}

.card p {
  color: #555;
  font-size: 0.97rem;
  line-height: 1.6;
}
/* FIM Cards pág inicial */



/* SOBRE NÓS */
.link-sobre-nos ul {
  list-style: none;
  padding-left: 0;
}

.link-sobre-nos li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #007bff;
  font-weight: 500;
  font-size: 18px;
}

.link-sobre-nos li::before {
  content: "➣"; 
  position: absolute;
  left: 0;
  top: 5px;
  color: #007bff;
  font-size: 14px;
  line-height: 1;
}

.img-sobre-nos {
  max-width:90%;
  margin-left: 80px; 
  margin-top: 40px;
}

@media (max-width: 768px) {
  .img-sobre-nos {
    margin-left: 0px; 
  }
}
/* FIM SOBRE NÓS */



/* Por que nos contratar */
.pq-contratar{
	margin-top: 5rem;
  padding: 5rem;
  background-color: #f5f5f5;
}

@media (max-width: 768px) {
  .pq-contratar {
    padding: 1rem;
  }
}

.pq-contratar .pq-contratar-unico{
	text-align:center;
	position:relative;
	padding:10px 20px;
}
.pq-contratar .pq-contratar-unico::before {
	position: absolute;
	content: "";
	right: -72px;
	top: 60px;
	width: 118px;
	border-bottom: 3px dotted #1a76d1;
}
.pq-contratar .pq-contratar-unico.last::before{
	display:none;
}
.pq-contratar .pq-contratar-unico .icone-unico{
	position:relative;
}
.pq-contratar .pq-contratar-unico .icone-unico i{
	font-size:50px;
	color:#1a76d1;
	position:absolute;
	left:50%;
	margin-left:-50px;
	top:0;
	height:100px;
	width:100px;
	line-height:100px;
	text-align:center;
	border:1px solid #dddddd;
	border-radius:100%;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
}
.pq-contratar .pq-contratar-unico:hover .icone-unico i{
	background:#1A76D1;
	color:#fff;
	border-color:transparent;
}
.pq-contratar .pq-contratar-unico h3{
	padding-top: 128px;
	color:#2C2D3F;
	font-weight:600;
	font-size:21px;
}
.pq-contratar .pq-contratar-unico p {
	margin-top: 20px;
}
/* FIM Por que nos contratar */



  /* MÓD SERVIÇOS */
  .servicos-title-h1 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }

  .servicos-link-cartao {
    text-decoration: none;
  }

  .servicos-sombra-card {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .servicos-sombra-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  }

  .servicos-transicao {
    transition: all 0.3s ease;
  }

  .servicos-cartao {
    border: none;
    border-radius: 10px;
  }

  .servicos-corpo-cartao h2 {
    font-size: 1.25rem;
    font-weight: bold;
  }

  .servicos-corpo-cartao p {
    color: #1a1a1a;
    font-size: 18px;
  }

  .servicos-card-title {
    color: #1cb09b;
    font-size: 24px !important;
  }

  .servicos-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(4px);
  border-radius: 16px;
  padding: 0px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 3;
}

.servicos-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.12);
}
/* FIM MÓD SERVIÇOS */

/* ============ SETA TOP ============ */
.scroll-to-top {
    position: fixed;
    bottom: 50px;
    right: 100px;
    font-size: 30px;
    cursor: pointer;
    display: none;
    background-color: #0048ff;
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
    border-radius: 50%;
    z-index: 9999;
}

.scroll-to-top:hover {
    background-color: #00113d;
}

@media (max-width: 768px) {
    .scroll-to-top {
    bottom: 20px;
    right: 20px;
    }
}
/* ============ FIM SETA TOP ============ */




/* ============ CONTATO ============ */
.form-map-container {
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  padding: 40px;
  overflow: hidden;
}

#map iframe {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  border: none;
}

.input-rounded {
  padding: .75rem;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
}

.btn-mensagem {
  color: #74b7ff;
  background-color: transparent;
  border: 2px solid #74b7ff;
  border-radius: 20px;
  padding: 10px 20px;
  transition: all 0.3s ease-in-out;
}

.btn-mensagem:hover {
  background-color: #74b7ff;
  color: #fff;
}

.form-label {
  color: #c1c0c0;
  font-weight: 500;
}

.form-control {
  padding:.75rem !important;
}
/* ============ FIM CONTATO ============ */


/* ============ RODAPÉ ============ */
.rodape {
  background-color: #082542 !important;
  color: #f1f1f1;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 0px !important;
}

.rodape-titulo-coluna {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #ffffff;
  
}

.separador-rodape {
  width: 60px;             
  height: 3px;             
  background-color: #fff; 
  margin-bottom: 2rem;
  border-radius: 100rem;
}

.rodape-texto-sobre {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d1d1d1;
  text-align: left;
}

.lista-menu li,
.lista-servicos li,
.lista-contato li {
  margin-bottom: 0.5rem;
}

.link-rodape {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.link-rodape:hover {
  color: #00eaff;
  text-decoration: underline;
  margin-left: 10px;
}

.redes-sociais {
  margin-top: 3rem;
}

.rodape-link-icone {
  color: #f1f1f1;
  font-size: 1.25rem;
  margin-right: 10px;
  transition: color 0.3s;
  padding: 10px 10px;
  border: 2px solid #fff;
}

.rodape-link-icone:hover {
  color: #082542;
  background-color: #fff;
}

.linha-separadora {
  height: 1px;
  background-color: #333;
  margin-top: 2rem;
}

.texto-rodape {
  font-size: 0.875rem;
  color: #aaaaaa;
}

.rodape-copyright {
  background-color: #061b31;
  padding: 15px 0px 25px 0px;
}

.contato-rodape {
  background-color: #082542;
  padding: 15px 0px 25px 0px;
  border-bottom: 1px solid #fff;
}

.icone-rodape {
  border-radius: 50%; 
  border: 1px solid #fff; 
  padding: 15px; 
  font-size: 25px;
  color: #fff;
  margin: 10px 0px 20px 0px;
}

.img-logo-rodape {
  width: 140%;
}

@media (max-width: 768px) {
    .img-logo-rodape {
   width: 100%;
    }
}
/* ============ FIM RODAPÉ ============ */



/* ============ Aba lateral ============ */
.aba-lateral {
	position: fixed;
	right: -300px;
	width: 300px;
	height: auto;
	line-height: 46px;
	font-size: 14px;
	background: #fff;
	text-align: left;
	color: #333;
	top: 40%;
	transform:translateY(-50%);
	box-shadow: -4px 0px 30px #00000036;
	color: #fff;
	z-index: 9999;
	padding:20px 30px 30px 30px;
	-webkit-transition:all 0.4s ease;
	-moz-transition:all 0.4s ease;
	transition:all 0.4s ease;
  border-radius: 0px 0px 20px 20px;
}
.aba-lateral.active{
	right:0;
}
.aba-lateral li.titulo-aba-lateral {
	font-weight: 600;
	color: #1A76D1;
	font-size: 15px;
}
.aba-lateral li.title {
	font-weight: 600;
	color: #1A76D1;
	font-size: 15px;
}
.aba-lateral .button .btn {
	width: 100%;
	text-align: center;
	margin-top: 8px;
	display: inline-block;
	float: left;
	font-size: 13px;
	width: 100%;
	text-transform: capitalize;
}
.aba-lateral li {
	color: #333;
	margin: 0;
	padding: 0;
	line-height: 22px;
	margin-bottom: 10px;
}
.btn-aba-lateral {
	position: absolute;
	left: -80px;
	width:80px;
	height: 45px;
	line-height: 45px;
	font-size: 14px;
	border-radius: 5px 0 0 5px;
	background: #1A76D1;
	text-align: center;
	color: #fff;
	top: 0;
	cursor: pointer;
	box-shadow: -4px 0px 5px #00000036;
}

.titula-aba-lateral {
  color: #1A76D1;
  font-size: 25px;
  margin-bottom: 20px;
}

.link-aba-lateral {
  color: #5e5e5e;
  font-size: 14px;
}

.link-aba-lateral:hover {
  color: #1A76D1;
  margin-left: 15px;
}
/* ============ FIM Aba lateral ============ */
