/* ==========================================================================
   Table of Contents
   ========================================================================== */
/*
    1. Font Face
    2. General
    3. Utilities
    4. Header
    5. Page Content
    6. Footer
    7. Third Party Elements
    8. Media Queries

 */
/* $variable: #b4b4c4; */
/* ==========================================================================
   1. Font Face - Sets up the website fonts
   ========================================================================== */
/*

@font-face {
  font-family: 'FontFamilyName';
  src: url('../../fonts/fontFolder/fontfile.eot');
  src: url('../../fonts/fontFolder/fontfile.eot') format('embedded-opentype'),
       url('../../fonts/fontFolder/fontfile.woff2') format('woff2'),
       url('../../fonts/fontFolder/fontfile.woff') format('woff'),
       url('../../fonts/fontFolder/fontfile.ttf') format('truetype'),
       url('../../fonts/fontFolder/fontfile.svg#FontFamilyName') format('svg');
}

*/
/* ==========================================================================
   2. General - Setting up some base styles
   ========================================================================== */

html,
body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', sans-serif;
}

#servicos,
#cronograma,
#servicos,
#manutencao,
#cases,
#sobre-nos,
#contato {
  padding: 80px 0;
}

#depoimentos {
  padding: 0 0 80px 0;
}

/* MENU */
.navbar {
  border-bottom: 2px solid #EDF3FC;
}

.navbar-nav .nav-link {
  color: #3C3D3F;
  position: relative;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  line-height: normal;
}

.navbar-nav .nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background-color: #FF8345;
  transition: width 0.3s;
  position: absolute;
  bottom: 0;
  left: 0;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link:focus::after {
  width: 100%;
}

.btn-cases {
  background-color: #2C6D97;
  color: #fff !important;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
  width: 210px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
}

.btn-cases:hover {
  background-color: #FF8345;
  color: #fff !important;
}

.btn-contato {
  background-color: #fff;
  color: #2C6D97 !important;
  border: 1.5px solid #2C6D97;
  border-radius: 5px;
  width: 210px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-contato:hover {
  background-color: #FF8345;
  color: #fff !important;
  border-color: #FF8345;
}

/* SEÇÃO BANNER */
.banner-hero {
  min-height: 75vh;
  overflow: hidden;
}

.badge-banner {
  background-color: #ECF0FF;
  color: #2C6D97;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 6px 16px;
  display: inline-block;
  max-width: max-content;
  border-radius: 48px;
}

.titulo-banner {
  font-size: 48px;
  font-weight: 700;
  color: #3C3D3F;
  font-family: 'Manrope', sans-serif;
}

.titulo-banner .destaque {
  color: #FF8345;
  font-weight: 800;
}

.legenda-banner {
  font-size: 18px;
  color: #3C3D3F;
  max-width: 85%;
  margin: 1.5rem 0 2rem 0;
}

.btn-analise {
  background-color: #2C6D97;
  color: #fff !important;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
  width: 320px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
}

.btn-analise:hover {
  background-color: #FF8345;
  color: #fff !important;
}

.icones-inferiores img {
  max-width: 40px;
  margin-bottom: 0.5rem;
}

.icone-borda {
  width: 65px;
  height: 65px;
  border: solid 1px #BBD0DF;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.legenda-icone {
  font-size: 16px;
  color: #004069;
  margin: 9.5px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}

/* SEÇÃO SOBRE NÓS */
.titulo-sobre {
  font-size: 36px;
  font-weight: 700;
  color: #3C3D3F;
  font-family: 'Manrope', sans-serif;
}

.linha-sobre {
  width: 220px;
  height: 3px;
  background-color: #FF8345;
}

.texto-sobre {
  color: #5C5E61;
  line-height: 1.6;
  font-size: 16px;
}

.numero-sobre {
  font-size: 36px;
  font-weight: 700;
  color: #EF7D00;
  margin-bottom: 4px;
  font-family: 'Manrope', sans-serif;
}

.legenda-sobre {
  font-size: 16px;
  color: #5C5E61;
  margin: 0;
}

.contador {
  transition: all 0.3s ease-in-out;
}

/* SEÇÃO SERVIÇOS */
.servicos {
  overflow: hidden;
}

.servicos .img-bg {
  object-fit: cover;
  height: 100%;
}

.titulo-servicos {
  font-size: 36px;
  color: #3C3D3F;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
}

.linha-laranja {
  width: 220px;
  height: 3px;
  background-color: #FF8345;
}

.subtitulo-servicos {
  font-size: 18px;
  color: #5C5E61;
}

.icone-svg {
  width: 49px;
  height: 65px;
  border: solid 1px #BBD0DF;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 22px; */
}

.icone-servico {
  width: 40px;
  height: auto;
  display: block;
}

.card-servico {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 342px;
  height: 224px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  margin-left: auto;
  margin-right: auto;
}

.card-servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.titulo-card-servico {
  font-size: 18px;
  color: #004069;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  min-height: 41px;
  margin-top: 10px;
}

.texto-card-servico {
  font-size: 16px;
  color: #5C5E61;
  line-height: 1.6;
}

.btn-servicos {
  background-color: #2C6D97;
  color: #fff !important;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
  width: 377px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
}

.btn-servicos:hover {
  background-color: #FF8345;
  color: #fff !important;
}

/* SEÇÃO CRONOGRAMA */
.titulo-cronograma {
  font-size: 28px;
  color: #3C3D3F;
  font-weight: 700;
}

.grid-cronograma {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  position: relative;
}

.grid-cronograma::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  height: 2px;
  background-color: #E9E7E7;
  z-index: 1;
  width: 100%;
  overflow: hidden;
}

.etapa-cronograma {
  text-align: center;
  position: relative;
  z-index: 2;
}

.numero-etapa {
  background-color: #2C6D97;
  color: #fff;
  font-weight: 700;
  font-size: 26px;
  width: 66px;
  height: 66px;
  font-family: 'Manrope', sans-serif;
  border-radius: 50%;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  fill: #FFF;
  filter: drop-shadow(2px 3px 10px rgba(239, 125, 0, 0.25)) drop-shadow(-2px -2px 10px rgba(239, 125, 0, 0.25));
  border: solid 3px #fff;
  position: relative;
  z-index: 3;
}

.card-etapa {
  padding: 16px;
  width: 210px;
  height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid #E9E7E7;
  background: #FFF;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.06);
}

.titulo-etapa {
  font-size: 16px;
  color: #2C6D97;
  margin-bottom: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}

.prazo-etapa {
  font-size: 16px;
  color: #004069;
  background-color: #ECF0FF;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 16px;
  font-weight: 600;
  margin: 0;
  width: 137px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SEÇÃO MANUTENÇÃO */
.plano-swiper {
  width: 100%;
  padding-bottom: 30px;
}

.plano-swiper .swiper-wrapper {
  display: flex;
}

.plano-swiper .swiper-slide {
  flex-shrink: 0;
  min-width: 220px;
  height: 224px;
  box-sizing: border-box;
}

.card-flip {
  perspective: 1000px;
  width: 100%;
  height: 100%;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.card-flip:hover .card-inner {
  transform: rotateY(180deg);
}

.card-flip:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #E9E7E7;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
  text-align: center;
  box-sizing: border-box;
}

.card-front {
  background-color: #ffffff;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.card-back {
  background-color: #004069;
  color: #ffffff;
  transform: rotateY(180deg);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.titulo-card {
  font-size: 20px;
  margin: 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  margin: 0.8rem 0 0.5rem 0;
  color: #2C6D97;
}

.card-back p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.subtitulo-card {
  font-size: 14px;
  color: #5C5E61;
  margin-top: 4px;
}

.card-front i {
  font-size: 28px;
}

/* SEÇÃO CASES */
.grid-cases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card-case {
  overflow: hidden;
  transition: transform 0.3s ease;
  position: relative;
  border-radius: 0 0 10px 10px;
  border: 1px solid #E9E7E7;
  background: #F8F9FD;
  box-shadow: -4px 4px 8px 0 rgba(0, 0, 0, 0.06);
}

.card-case:hover {
  transform: translateY(-4px);
}

.img-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.img-portfolio {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  max-height: 100%;
  z-index: 2;
}

.hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 3;
}

.card-case:hover .hover-overlay {
  opacity: 1;
}

.info-card-case {
  padding: 24px;
}

.tag-categoria {
  background-color: #F8EDE4;
  color: #EF7D00;
  font-size: 16px;
  padding: 5px 25px;
  border-radius: 18px;
  max-width: max-content;
  font-weight: 600;
}

.titulo-case {
  font-size: 22px;
  color: #004069;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  margin: 16px 0;
}

.legenda-case {
  font-size: 16px;
  color: #5C5E61;
  margin-bottom: 16px;
}

.btn-case {
  border: 1px solid #004069;
  color: #004069;
  background-color: transparent;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-case:hover {
  background-color: #EF7D00;
  color: #fff;
  border: 1px solid #EF7D00;
}

.btn-case .icon-arrow path {
  fill: #EF7D00;
  transition: fill 0.3s ease;
}

.btn-case:hover .icon-arrow path {
  fill: #fff;
}

.btn-load-more {
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-load-more span {
  color: #5C5E61;
  font-size: 16px;
}

/* SEÇÃO DEPOIMENTOS */
.card-depoimento {
  border-radius: 10px;
  border: 1px solid #E9E7E7;
  background: #FFF;
  box-shadow: 4px 4px 6px 0 rgba(0, 0, 0, 0.08);
}

.texto-depoimento {
  font-size: 16px;
  color: #5C5E61;
  line-height: 160%;
}

.nome-depoente {
  font-size: 22px;
  color: #004069;
  font-weight: 600;
}

.empresa-depoente {
  font-size: 16px;
  color: #5C5E61;
}

/* SEÇÃO CONTATO */
.secao-contato {
  background-color: #F7F9FF;
}

.tag-contato {
  text-transform: uppercase;
  font-size: 16px;
  color: #2C6D97;
  background-color: #ECF0FF;
  padding: 5px 24px;
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 600;
  border-radius: 18px;
  letter-spacing: 0.8px;
}

.titulo-contato {
  font-size: 40px;
  color: #3C3D3F;
  font-weight: 800;
  margin-bottom: 40px;
  font-family: 'Manrope', sans-serif;
  line-height: 140%;
}

.descricao-contato {
  font-size: 18px;
  color: #5C5E61;
  line-height: 160%;
  margin-bottom: 64px;
}

.subtitulo-clientes {
  font-size: 16px;
  color: #004069;
  font-weight: 600;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 32px;
}

.logos-clientes {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.formulario-contato {
  background-color: #FFFFFF;
  border: 1px solid #E9E7E7;
  border-radius: 10px;
  padding: 32px;
  border-radius: 10px;
  box-shadow: 4px 4px 8px 0 rgba(0, 0, 0, 0.06);

  .wpcf7-form br {
    display: none;
  }
}

.titulo-formulario {
  font-size: 20px;
  color: #004069;
  font-weight: 700;
  margin-bottom: 8px;
}

.legenda-formulario {
  color: #5C5E61;
  margin-bottom: 24px;
}

.label-campo {
  color: #2C6D97;
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 6px 16px;
  display: block;
}

.campo-form {
  background-color: #F3F5F7;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  color: #5C5E61;
  width: 100%;
  padding: 14px 16px;
}

.campo-textarea {
  background-color: #F3F5F7;
  border: none;
  border-radius: 5px;
  font-size: 14px;
  color: #5C5E61;
  width: 100%;
  padding: 12px;
  resize: vertical;
  min-height: 115px;
}

.btn-enviar {
  width: 100%;
  background-color: #2C6D97;
  color: #fff !important;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  height: 50px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-enviar:hover {
  background-color: #EF7D00;
  color: #fff !important;
}

/* FOOTER */
.footer-site {
  padding: 72px 0 24px 0;
}

.footer-descricao {
  font-size: 15px;
  color: #524E5A;
  max-width: 70%;
  font-weight: 400;
  line-height: 24px;
}

.footer-titulo {
  color: #004069;
  font-size: 16px;
  text-transform: uppercase;
  font-family: 'Manrope', sans-serif;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-lista {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2;
}

.footer-lista a {
  text-decoration: none;
  font-size: 15px;
  color: #5C5E61;
  transition: color 0.3s ease;
}

.footer-lista a:hover {
  color: #EF7D00;
}

.linha-footer {
  border-top: 1px solid #E5E5E5;
}

.footer-copy {
  font-size: 15px;
  color: #524E5A;
  margin: 0;
}

.copy-marca {
  color: #EF7D00;
  font-weight: 600;
}

/* PÁGINA 404 */
.page-404 {
  text-align: center;
}

.the-title {
  font-family: 'Manrope', sans-serif;
  text-transform: uppercase;
  font-size: 45px;
  color: #004069;
}

.the-title h1 {
  margin: 0;
}

.the-content {
  font-size: 18px;
  color: #5C5E61;
  font-family: 'Inter', sans-serif;
  margin: 1.2rem 0;
}

.page-404 a {
  background-color: #2C6D97;
  color: #fff;
  border-radius: 5px;
  transition: background 0.3s ease, color 0.3s ease;
  width: 320px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
}

.page-404 a:hover {
  background-color: #FF8345;
  color: #fff;
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1023px) {
  .banner-hero {
    padding: 4rem 0;
  }

  .legenda-banner {
    max-width: 100%;
  }

  .grid-cronograma {
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
  }

  .grid-cronograma::before {
    display: none;
  }

  .etapa-cronograma {
    margin-bottom: 1.5rem;
  }

  .menu-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #2C6D97;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  .navbar-toggler:not(.collapsed) .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .navbar-toggler:not(.collapsed) .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler:not(.collapsed) .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }

  .btn-cases {
    margin: 0.5rem 0;
  }

  .navbar-collapse li {
    margin-bottom: 0.5rem;
  }

  .footer-site {
    text-align: center;
  }

  .footer-descricao {
    max-width: 100%;
  }
}

/* MOBILE */
@media all and (max-width: 768px) {
  .banner-hero {
    padding: 4rem 0;
  }

  .legenda-banner {
    max-width: 100%;
  }

  .btn-analise {
    width: 100%;
  }

  .titulo-contato {
    line-height: 135%;
    font-size: 36px;
    margin-bottom: 24px;
  }

  .descricao-contato {
    margin-bottom: 34px;
  }

  .grid-cronograma {
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
  }

  .grid-cronograma::before {
    display: none;
  }

  .etapa-cronograma {
    margin-bottom: 1.5rem;
    max-width: calc(100% - 10px);
    box-sizing: border-box;
  }

  .etapa-cronograma:nth-child(1) {
    padding-top: 15px;
  }
  .etapa-cronograma:nth-child(2) {
    padding-top: 15px;
  }

  .card-etapa {
    width: auto;
    height: auto;
    min-height: 117px;
  }

  .menu-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #2C6D97;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }

  .navbar-collapse a,
  .navbar-collapse li {
    width: 100%;
  }

  .navbar-collapse li {
    text-align: center;
  }

  .navbar-toggler:not(.collapsed) .menu-icon span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }

  .navbar-toggler:not(.collapsed) .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler:not(.collapsed) .menu-icon span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }

  .navbar-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
  }

  .estrelas-depo {
    margin-top: 1rem;
  }

  .btn-cases {
    margin: 0.5rem 0;
  }

  .navbar-collapse li {
    margin-bottom: 0.5rem;
  }

  .footer-site {
    text-align: center;
  }

  .footer-descricao {
    max-width: 100%;
  }

  .footer-titulo {
    margin-top: 1rem;
  }
}


.swal2-styled.swal2-confirm{
  background-color: rgb(44, 109, 151) !important;
}
.swal2-styled.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(44, 109, 151, 0.5) !important;
}

.btn-whatsapp-pulse {
	background: #25d366;
	color: white;
	position: fixed;
	bottom: 20px;
	right: 20px;
	font-size: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 0;
	height: 0;
	padding: 35px;
	text-decoration: none;
	border-radius: 50%;
	animation-name: pulse;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
	}
	80% {
		box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
	}
}

.btn-whatsapp-pulse-border {
	bottom: 120px;
	right: 20px;
	animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
	content: "";
	position: absolute;
	border-radius: 50%;
	padding: 25px;
	border: 5px solid #25d366;
	opacity: 0.75;
	animation-name: pulse-border;
	animation-duration: 1.5s;
	animation-timing-function: ease-out;
	animation-iteration-count: infinite;
}

@keyframes pulse-border {
	0% {
		padding: 25px;
		opacity: 0.75;
	}
	75% {
		padding: 50px;
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}
