  body {
  font-family: 'Montserrat', sans-serif !important;
  color: #6E6E6E;
  overflow-x: hidden;
}

a {
  color: #47b2e4;
  text-decoration: none;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
}

.whatsapp-link {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 10px;
  right: 10px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 1px 1px 2px #888;
  z-index: 1000;
  animation: animate 1s linear infinite;
  text-decoration: none;
}

@media (max-width: 768px) {
  .whatsapp-link {
    left: 10px;
  }
}



@keyframes animate
{
  0%
{
box-shadow: 0 0 0 0 rgba(37, 211, 102,.7);
}
  40%
{
box-shadow: 0 0 0 20px rgba(37, 211, 102,0);
}
  80%
{
box-shadow: 0 0 0 20px rgba(37, 211, 102,0);
}
  100%
{
box-shadow: 0 0 0 0 rgba(37, 211, 102,0);
}
}


.bi-whatsapp {
  margin-top: 0px;
}

.fa-whatsapp {
  margin-top: 16px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #585E6B ;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #585E6B ' ';
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #888e9b;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #888e9b;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}
#header-2 {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: #585e6be7;
}

#header.header-scrolled, #header.header-inner-pages {
  background: #585e6be7;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 900px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  user-select: none;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: block;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px 30px 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  white-space: nowrap;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: rgb(202, 202, 202);
}

.navbar .smedia-navbar:last-child a {
  padding-left: 15px;
}

.navbar .smedia-navbar a > i {
  font-size: 20px;
}

.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 1024px) {
  .mobile-nav-toggle {
    display: none;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 0;
  color: #37517e;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  border: 0;
}

.navbar-mobile .getstarted:hover {
  background-color: transparent;
  color: #47b2e4;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

.navbar-mobile .smedia-navbar {
    position: absolute;
    bottom: 0;
    transform: translateX(-50%);
    left: calc(50% - 25px);
}

.navbar-mobile .smedia-navbar:last-child {
    left: calc(50% + 25px);
}

.navbar-mobile .smedia-navbar > a, .navbar-mobile .smedia-navbar:last-child > a {
  padding: 0;
  margin-bottom: 20px;
}

.navbar-mobile .smedia-navbar > a i {
  font-size: 25px;
  margin: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh; /* ajuste conforme necessário */
  background: #000000;
}

#hero #bg-hero, #hero #bg-hero-next {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  transition: opacity 1s ease;
}

#hero #bg-hero-next {
  opacity: 0; /* Inicie invisível */
}

#hero h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 56px;
  text-align: center;
  user-select: none;
  color: #fff;
  transition: opacity 1s ease;
  padding: 0 130px;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: none;
  width: 58px; /* Ajuste conforme o tamanho real da sua imagem PNG */
  height: 63px; /* Ajuste conforme o tamanho real da sua imagem PNG */
  cursor: pointer;
  background: transparent; /* Remove qualquer cor de fundo */
  background-size: contain; /* Garante que a imagem seja totalmente contida dentro do botão */
  background-repeat: no-repeat;
  background-position: center center;
}

@media (max-width: 1024px) {
  .slide-btn {
    display: none;
  }
  #hero h1 {
    font-size: 25px;
    font-weight: 700;
    line-height: 28px;
    padding: 0 30px;
  }
  .me-auto {
    display: flex;
    justify-content: center; /* Centraliza horizontalmente */
    width: 100vh;
  }
}

#prev-slide {
  left: 10px;
  background-image: url('/assets/img/seta-slides.png');
  transform: translateY(-50%) scaleX(-1); /* Espelha a imagem horizontalmente */
}

#next-slide {
  right: 10px;
  background-image: url('/assets/img/seta-slides.png');
}


@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f3f5fa;
}

.section-title {
  text-align: right;
  padding-bottom: 50px;
}

.section-title-saibamais {
  text-align: center;
  padding-bottom: 70px;
  padding-top: 100px;
}


.img-fluid {
  max-width: 130%; /* Define a largura máxima da imagem */
  height: auto; /* Mantém a proporção da imagem */
  margin-top: -10%;
  margin-left: 30px;
}


.section-title h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: absolute;
  color: #2D2D2D;
}

.section-title-saibamais h2 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: absolute;
  color: #585E6B;
  left: 55%;
}

.section-title2 h2 {
  font-size: 45px;
  padding-bottom: 20px;
  position: absolute;
  font-weight: bold;
  color: #2D2D2D;
  font-family: 'Montserrat', sans-serif !important;
}

.section-title2 p {
  font-size: 17px;
  margin-top: 150px;
  margin-bottom: -120px;
  font-family: 'Montserrat', sans-serif !important;
  color: #6E6E6E;
  text-align: justify;
}

.p2 {
  font-size: 17px;
  margin-top: -100px;
  color: #585E6B;
}

.btnfos-4 {
  margin-top: 150px;
  background-color: transparent;
  border: transparent;
  font-size: 16px;  
  font-weight: bold;
  color: #072D54;
  border-radius: 20px;

}

.row2 p {
  font-size: 17px;
  margin-bottom: 90px;
  padding-bottom: 20px;
  color: #585E6B;
  left: 65%;
}

.slider {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  overflow: hidden;
  margin-left: 600px;
  margin-top: -300px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  width: 100%;
  flex: 0 0 100%;
  background-size: cover;
  background-position: right;
  height: 400px; /* ajuste conforme necessário */
  border-radius: 20px;
}

.navigation {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
}

.bar {
  display: block;
  width: 10px;
  height: 10px;
  margin: 2px;
  background-color: rgb(59, 59, 59);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bar:hover, .bar.active {
  background-color: rgb(133, 133, 133)
}

.section-title p {
  margin-bottom: 0;
}

.section-title-saibamais p {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .section-title {
    text-align: center;
    margin-right: 0;
    margin-bottom: -50px;
  }

  .section-title h2 {
    position: relative;
    margin: 0 auto 20px;
    left: auto;
    top: auto;
  }

  .col-lg-6 {
    margin-top: 30px;
  }

  .col-lg-6 .content {
    text-align: center;
  }

  .col-lg-6 .content2 {
    text-align: left;
  }

  .img-fluid {
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}

@media (max-width: 1024px) {
  .section-title-saibamais h2 {
    margin-top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .img-fluid {
    max-width: 90%;
  }
}

@media (max-width: 991px) {
  .img-fluid {
    display: none;
  }
}

/*--------------------------------------------------------------
# Reformas / Obras Realizas
--------------------------------------------------------------*/

.section-title-reformas {
  text-align: center;
  padding-bottom: 50px;
  padding-top: 100px;
}


.section-title-reformas h2 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  color: #585E6B;
}

.catalogo-reformas .row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px; /* Espaçamento entre as linhas de imagens */
}

.catalogo-reformas .col {
  flex: 0 0 calc(33.333% - 20px); /* Ajuste a largura conforme necessário */
  margin: 10px; /* Espaçamento entre as imagens */
  text-align: center; /* Centraliza o título abaixo da imagem */
}

.catalogo-reformas .catalogo-img {
  width: 80%;
  height: auto; /* Mantém a proporção da imagem */
  border: 1px solid #ccc; /* Se desejar uma borda para as imagens */
  margin-bottom: 8px; /* Espaçamento entre a imagem e o título */
  cursor: pointer;
}

.catalogo-reformas .catalogo-titulo {
  font-size: 15px; /* Ajuste o tamanho da fonte conforme necessário */
  color: #333; /* Cor do título */
}

.popup-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-gallery img {
  width: 18%; /* Ajusta a largura de cada imagem */
  height: 150px; /* Ajusta a altura para ser consistente */
  object-fit: cover; /* Garante que a imagem cubra a área designada sem perder a proporção */
  margin: 1%; /* Adiciona margem em torno das imagens */
  box-shadow: 2px 2px 5px rgba(0,0,0,0.3); /* Sombra opcional para melhorar a estética */
  cursor: pointer; /* Indica que a imagem pode ser clicada */
}

.popup-gallery {
  width: 90%; /* Ajusta a largura do contêiner da galeria */
  padding: 10px; /* Adiciona um pouco de padding */
  background: white; /* Fundo branco para a galeria */
  border-radius: 10px; /* Bordas arredondadas */
  display: flex;
  flex-wrap: wrap; /* Assegura que as imagens envolvam */
  align-items: flex-start; /* Alinha itens ao topo */
  justify-content: left; /* Centraliza horizontalmente */
  overflow-y: auto; /* Adiciona rolagem se necessário */
  max-height: 80%;
}


.popup-background {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

@media (max-width: 768px) {
  .catalogo-reformas .catalogo-img {
    width: 300px;
  }

  .catalogo-reformas .catalogo-titulo {
    font-size: 16px;
  }

  .popup-gallery img {
    width: 46%; /* Aumenta a largura de cada imagem para melhor visualização em dispositivos móveis */
    height: 100px; /* Ajusta a altura para ser menor e mais adequada para telas menores */
    margin: 2%; /* Aumenta a margem para melhor separação */
  }

  .popup-gallery {
    padding: 5px; /* Reduz o padding */
    justify-content: center; /* Ajusta a justificação para centralizar as imagens */
  }

  .popup-background {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Cliens
--------------------------------------------------------------*/
.cliens {
  padding: 12px 0;
  text-align: center;
}

.cliens img {
  height: 100px;
  margin-bottom: 50px;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  filter: grayscale(100);
}

.cliens img:hover {
  filter: none;
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-left: 28px;
  position: relative;
}

.about .content ul li + li {
  margin-top: 10px;
}

.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}

.about .content p {
  margin-bottom: 30px;
  width: 100%;
  text-align: justify;
  
}

.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}

.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

.section-title h2 {
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
  background: none; /* Ensure no background color is applied */
  max-width: 100%; /* Ensure the title doesn't overflow */
  font-family: 'Montserrat', sans-serif !important;
}

.about .section-title h3 {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: left;
  display: block;
}

.about .row {
  display: flex;
  flex-wrap: wrap;
}

.about .col-lg-6 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.about .col-lg-6.d-flex {
  justify-content: center;
  align-items: center;
}

.about .col-lg-6 img {
  border-radius: 10px;
  margin-right: 20%; /* Adjusted for alignment after swapping columns */
}

@media (min-width: 992px) {
  .about .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Media queries para tablet e celular */
@media (max-width: 991px) {
  .about .section-title h3,
  .about .section-title h2 {
    text-align: center;
    margin-left: 10%;
    margin-right: 10%;
  }

  .about .section-title h2 {
    margin-bottom: -50px !important;
  }

  .about .content {
    margin-top: 50px; /* Adjusted for better spacing on smaller screens */
    margin-left: 10%;
    margin-right: 10%;
  }

  .about .col-lg-6 img {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .about .row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 575px) {
  .about .section-title h3,
  .about .section-title h2,
  .about .content {
    margin-left: 5%;
    margin-right: 5%;
  }

  .about .section-title h3 {
    font-size: 16px; /* Optional: Adjust the font size for smaller screens */
  }

  .about .section-title h2 {
    font-size: 30px !important; /* Optional: Adjust the font size for smaller screens */
  }

  .section-title h5 {
    font-size: 30px !important;
  }

  .diferenciais-text h2 {
    font-size: 30px !important;
  }

  .about .content p {
    font-size: 15px; /* Optional: Adjust the font size for smaller screens */
  }
}
/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.servicos .box {
  padding: 40px;
  position: relative;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  min-height: 100%;
  text-align: left;
  overflow: hidden; /* Adicionado para garantir que a imagem não ultrapasse os limites da caixa */
}

.servicos .btn-saiba-mais,
.servicos .btn-saiba-mais2 {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease-in-out;
}

.servicos .btn-saiba-mais:hover,
.servicos .btn-saiba-mais2:hover {
  transform: translateY(-10px);
}

.fade-in {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.servicos .box-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1; /* Garantir que a imagem fique atrás do conteúdo */
}

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

.servicos .box.dark-bg:hover .box-img {
  opacity: 0.5;
}

.servicos .box.light-bg:hover .box-img {
  opacity: 0.6;
  background: #5c5c5c;
}

.servicos .box.light-bg:hover {
  background: #000000;
  color: #fff;
}

.servicos .box.light-bg:hover .btn-saiba-mais {
  color: #fff;
}

.servicos .box i,
.servicos .box h4,
.servicos .box p,
.servicos .btn-saiba-mais,
.servicos .btn-saiba-mais2 {
  position: relative;
  z-index: 2; /* Garantir que o conteúdo fique na frente da imagem */
}

.servicos .box i {
  font-size: 40px; /* Tamanho do ícone */
  margin-bottom: 10px; /* Espaço abaixo do ícone */
  display: block; /* Garantir que o ícone ocupe uma linha inteira */
}

.servicos .box.light-bg {
  background: #f0f0f0;
}

.servicos .box.dark-bg {
  background: #072D54;
  color: #fff;
}

.section-title .atualizacao {
  text-align: center;
}

.section-title h5 {
  font-size: 45px;
  font-weight: bold;
  color: #2D2D2D;
  text-align: center;
  font-family: 'Montserrat', sans-serif !important;
}

.servicos .box h4 {
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  padding: 0;
  margin: 0 0 15px 0;
  user-select: none;
}

.servicos .box p {
  font-size: 17px;
  text-align: left;
  margin-bottom: 20px;
  user-select: none;
}

.servicos .btn-saiba-mais, .servicos .btn-saiba-mais2 {
  font-size: 15px;
  font-weight: bold;
  transition: 0.3s;
  border-style: solid;
  border-width: 0 0 2px;
  border-radius: 0;
}

.servicos .btn-saiba-mais {
  color: #072D54;
}

.servicos .btn-saiba-mais2 {
  color: #fff;
}

.top-left-radius {
  border-top-left-radius: 30px;
}

.top-right-radius {
  border-top-right-radius: 30px;
}

.bottom-left-radius {
  border-bottom-left-radius: 30px;
}

.bottom-right-radius {
  border-bottom-right-radius: 30px;
}

.row .col-lg-6 {
  padding-left: 0;
  padding-right: 0;
}

.no-gap {
  margin-bottom: 0;
}

.no-gap > [class*='col-'] {
  margin-bottom: 0;
}

.bordered {
  border: 2px solid #ddd;
  border-radius: 30px;
  box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
}
/* Media queries para dispositivos móveis */
@media (max-width: 1000px) {
  .servicos .row.no-gap {
    flex-direction: column;
  }
  .servicos .section-title {
    margin-bottom: 0;
    margin-top: -100px;
  }
  .servicos .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px; /* Espaço curto entre os retângulos */
  }

  .servicos .box {
    border-radius: 15px; /* Arredondar os cantos dos retângulos */
  }

  .servicos .box.light-bg {
    margin-bottom: 20px; /* Espaço curto entre os retângulos */
  }

  .servicos .col-lg-6:nth-child(3) {
    order: 4; /* Move the 3rd child to the 4th position */
  }

  .servicos .col-lg-6:nth-child(4) {
    order: 3; /* Move the 4th child to the 3rd position */
  }
}

@media (max-width: 575px) {
  .servicos .row.no-gap {
    flex-direction: column;
  }

  .servicos .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 15px; /* Espaço curto entre os retângulos */
  }

  .servicos .box {
    border-radius: 15px; /* Arredondar os cantos dos retângulos */
  }

  .servicos .box.light-bg {
    margin-bottom: 15px; /* Espaço curto entre os retângulos */
  }

  .servicos .col-lg-6:nth-child(3) {
    order: 4; /* Move the 3rd child to the 4th position */
  }

  .servicos .col-lg-6:nth-child(4) {
    order: 3; /* Move the 4th child to the 3rd position */
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.diferenciais {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  margin-top: -100px;
  /* Mantém o layout original para o computador */
}

/* Adicionando regra @media para dispositivos móveis */
@media (max-width: 1160px) {
  /* Global reset aplicado apenas em dispositivos móveis */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Garante que padding e bordas sejam incluídos no tamanho total */
  }

  .diferenciais {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px; /* Adiciona padding lateral */
    width: 100%; /* Ocupa toda a largura da tela */
  }

  .diferenciais-images, .diferenciais-text {
    width: 100%; /* Garante que as divs ocupem 100% da largura */
    max-width: 100%; /* Limita a largura máxima ao tamanho da tela */
    margin: 0 auto; /* Centraliza o conteúdo */
    text-align: center; /* Centraliza o texto */
  }

  .diferenciais-text {
    margin-top: 20px;
  }

  .image-container {
    width: 100%;
    margin-left: 0; /* Remove margens */
  }

  .image-container img {
    width: 60% !important; /* Garante que a imagem ocupe toda a largura da div */
    display: block;
    margin: 0 auto;
    border-radius: 30px;
    border: 10px solid white;
  }

  .main-image {
    margin-right: -20px !important;
  }

  .benefits-list li {
    margin-bottom: 15px; /* Aumenta o espaçamento entre os itens da lista */
  }

  .btn, .btn2 {
    width: 100%; /* Botões ocupam 100% da largura */
    margin: 10px 0;
  }

  .buttons {
    justify-content: center; /* Centraliza os botões */
  }

  .diferenciais-text {
    margin-right: 0 !important;
  }
}

/* Restante do código original */

.diferenciais-images {
  position: relative;
  width: 350px;
  margin-right: 0;
}

.image-container {
  position: relative;
  margin-left: -160px;
}

.image-container img {
  margin-top: 80px;
  width: 300px;
  border-radius: 30px;
  border: 10px solid white;
}

.main-container {
  position: relative;
  z-index: 1;
}

.overlay-container {
  position: absolute;
  top: 150px;
  left: 200px;
  width: 100%;
  z-index: 2;
}

.overlay-container img {
  border: 10px solid white;
  border-radius: 30px;
  opacity: 0;
}

.label {
  position: absolute;
  top: 10px;
  left: 50px;
  background-color: #072D54;
  color: white;
  padding: 21px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif !important;
  white-space: nowrap;
  text-align: left;
  border-radius: 30px;
  opacity: 0;
}

.diferenciais-text {
  width: 600px;
  margin-top: 150px;
  margin-right: -180px;
}

.diferenciais-text h3 {
  color: #334271;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  font-family: 'Montserrat', sans-serif !important;
  margin-bottom: 10px;
}

.diferenciais-text h2 {
  font-size: 40px;
  font-weight: bold;
  color: #2D2D2D;
  font-family: 'Montserrat', sans-serif !important;
  margin-bottom: 20px;
  opacity: 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  margin-bottom: 10px;
  font-size: 18px;
}

.accordion-header {
  cursor: pointer;
  padding: 10px;
  background-color: #f9f9f9;
  color: #072D54;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
}

.accordion-header:hover {
  background-color: #eee;
}

.accordion-header::after {
  content: '+';
  font-size: 20px;
  transition: transform 0.3s;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #ffffff;
  padding: 0 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 14px;
}

.accordion-content p {
  padding: 10px 0;
  margin: 0;
}

.benefits-list .active .accordion-content {
  max-height: 500px; /* Ajuste conforme necessário */
}

.benefits-list .active .accordion-header::after {
  content: '-';
}

.buttons {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 10px 20px;
  background-color: #072D54;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.btn2 {
  padding: 10px 20px;
  background-color: transparent;
  color: #072D54;
  border: 2px solid #072D54;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

.btn:hover {
  background-color: #74808d;
}

@keyframes slideInRight {
  from {
      transform: translateX(100%);
      opacity: 0;
  }
  to {
      transform: translateX(0);
      opacity: 1;
  }
}

@keyframes slideInDown {
  from {
      transform: translateY(-100%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

@keyframes slideInUp {
  from {
      transform: translateY(200%);
      opacity: 0;
  }
  to {
      transform: translateY(0);
      opacity: 1;
  }
}

.visible .label {
  animation: slideInDown 1s ease-in-out forwards;
}

.visible .overlay-container img {
  animation: slideInRight 1.3s ease-in-out forwards;
}

.visible .diferenciais-text h2 {
  animation: slideInUp 1.3s ease-in-out forwards;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
}

.services .icon-box .icon {
  margin-bottom: 10px;
}

.services .icon-box .icon i {
  color: #47b2e4;
  font-size: 36px;
  transition: 0.3s;
}

.services .icon-box h4 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 24px;
}

.services .icon-box h4 a {
  color: #37517e;
  transition: ease-in-out 0.3s;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  transform: translateY(-10px);
}

.services .icon-box:hover h4 a {
  color: #47b2e4;
}

@media (max-width: 1024px) {
  .section-title2 {
    text-align: center; /* Centraliza o título */
  }

  .section-title2 h2 {
    font-size: 28px; /* Reduz o tamanho do título para caber na tela */
    position: relative;
    margin: 0;
  }

  .section-title2 p {
    font-size: 15px; /* Reduz o tamanho do texto para caber na tela */
    margin: 10px 0;
  }

  .slider {
    width: 100%; /* Define a largura do slide como 100% */
    max-width: none; /* Remove a largura máxima */
    margin: 0 auto; /* Centraliza o slide na tela */
    margin-top: 20px; /* Adiciona um espaçamento acima do slide */
  }

  .navigation {
    bottom: 20px; /* Ajusta a posição dos controles de navegação */
  }

  .btnfos-4 {
    margin-top: 20px; /* Adiciona um espaçamento acima do botão "Saiba mais" */
  }
}

@media (max-width: 768px) {
  .slide {
    height: 200px;
  }
}



/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(#6d717ac0, #072D54), url("../img/foto123.jpg") fixed center center;
  background-size: cover;
  padding: 120px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif !important;
}

.cta p {
  color: #fff;
  font-family: 'Montserrat', sans-serif !important;
  text-align: justify;
}

.cta .cta-btn {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  cursor: pointer;
}

.cta .cta-btn:hover {
  background: #47b2e4;
  border: 2px solid #47b2e4;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #47b2e4;
  color: #fff;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(55, 81, 126, 0.8);
  padding: 10px 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}

.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

.team .member .member-info {
  padding-left: 30px;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 40px;
}

.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}

.pricing h3 {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
  color: #37517e;
}

.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}

.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured {
  border-top-color: #47b2e4;
}

.pricing .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
}

.pricing .featured .buy-btn:hover {
  background: #23a3df;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

.container {
  padding: 0 15px; /* Adiciona um pouco de espaço nas bordas */
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
/* Estilos para o modal */
/* Estilos para o contactModal */
.contact-modal {
  display: none;
  position: fixed;
  z-index: 10000; /* Garantir que o modal sobreponha outros elementos */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* Fundo semitransparente */
  padding-top: 60px;
}

.contact-modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  border: 3px solid #072D54;
  width: 80%;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s;
  position: relative;
}

.contact-close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
}

.contact-close:hover,
.contact-close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

.contact-modal-content form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  width: 100%;
}

.contact-modal-content form .form-group {
  margin-bottom: 15px;
}

.contact-modal-content form label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
  text-align: left;
  display: block;
}

.contact-modal-content form input,
.contact-modal-content form select,
.contact-modal-content form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #072d5465;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  resize: none;
}

.contact-modal-content form textarea {
  height: 100px;
}

.contact-modal-content form .full-width {
  grid-column: span 2;
}

.contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}

@media (max-width: 600px) {
  .contact-modal-content form {
      display: flex;
      flex-direction: column;
  }
  .contact-footer {
      flex-direction: column;
  }
  .btn.right {
      align-self: stretch;
      margin-top: 10px;
  }
  .form-group {
      text-align: left;
  }
}

.contact-info {
  font-size: 13px;
  color: #333;
  text-align: left;
  display: block;
}

.contact-info i {
  margin-right: 8px;
  color: #072D54;
}

.contact-modal-content form .btn {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #585e6be7;
  box-shadow: 1px 1px 2px #888;
  cursor: pointer;
}

.contact-modal-content form .btn.right {
  margin-left: auto;
}

.contact-modal-content form .btn:hover {
  background: rgb(23, 115, 158);
}

/* Estilos para a notificação */
.notification {
  margin: 10px 0;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  display: none;
}
.notification.success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}
.notification.error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

/* Estilos para o popup de sucesso */
#successPopup .modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.5s;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f3f5fa;
  min-height: 40px;
  margin-top: 72px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #4668a2;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #072D54;
  padding: 40px 0;
  font-size: 24px; /* Aumentado de 14px para 24px */
  color: #fff;
}

#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#footer .logo-section {
  text-align: center;
}

#footer .links ul, 
#footer .contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .links ul li,
#footer .contact ul li {
  margin-bottom: 10px; /* Aumentado de 10px para 20px */
}

#footer .links ul li a,
#footer .contact ul li {
  color: #fff;
  text-decoration: none;
  font-size: 17px; /* Aumentado de 16px para 26px */
}

#footer .links ul li a:hover,
#footer .contact ul li:hover {
  color: #858585;
}

#footer .links h5, 
#footer .contact h5 {
  font-size: 26px; /* Aumentado de 16px para 26px */
  font-weight: bold;
  margin-bottom: 25px; /* Aumentado de 15px para 25px */
  color: #fff;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
      flex-direction: column;
      text-align: center;
  }
}

/*--------------------------------------------------------------
# Client Area
--------------------------------------------------------------*/

.section-title-parceiros {
  text-align: center;
  padding-bottom: 50px;
}

.section-title-parceiros h2 {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #585E6B;
}

.parceirostitulo::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #acacac;
  top: 31px;
  left: calc(50% - 60px);
}

.parceirostitulo::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #343a40;
  top: 30px;
  left: calc(50% - 20px);
}

#client-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(0,0,0,.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

#client-area > div {
   background-color: #37517e;
   border: 1px solid #000;
   width: 300px;
   padding: 30px;
   transition: all .2s;
   opacity: 0;
   transform: scale(.8);
}

#client-area img {
  display: block;
  width: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

#client-area form {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

#client-area form > input {
  width: 100%;
}

#client-area form > input[type=text], #client-area form > input[type=password] {
  margin: 5px 0 10px;
  font-size: 14px;
}

#client-area form > input[type=submit] {
  margin-top: 20px;
  font-weight: 500;
  padding: 5px 10px;
  border: 1px solid #000;
  background-color: #47b2e4;
  color: #fff;
  border-radius: 50px;
}

#client-area form > input[type=submit]:hover {
  background-color: #209dd8;
}

#img-people {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

#animation2 {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

.seguros-button {
  font-weight: 600;
}

.seguros-button a:hover, .seguros-button .active, .seguros-button .active:focus, .seguros-button li:hover > a {
  color: yellow;
}

.newlogoimg {
  padding-bottom: 1px;
  width: 24px;
  height: 24;
}

#ctn-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: rgba(43, 37, 37, 0);
  display: flex;
  justify-content: center;
  align-items: center;
}

#ctn-area > div {
   background-color: #37517e;
   border: 1px solid #000;
   width: 300px;
   padding: 30px;
   transition: all .2s;
   opacity: 0;
   transform: scale(.8);
}

#ctn-area img {
  display: block;
  width: 60px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

#ctn-area form {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

#ctn-area form > input {
  width: 100%;
}

#ctn-area form > input[type=text], #ctn-area form > input[type=password] {
  margin: 5px 0 10px;
  font-size: 14px;
}

#ctn-area form > input[type=submit] {
  margin-top: 20px;
  font-weight: 500;
  padding: 5px 10px;
  border: 1px solid #000;
  background-color: #47b2e4;
  color: #fff;
  border-radius: 50px;
}

#ctn-area form > input[type=submit]:hover {
  background-color: #209dd8;
}