.mr-dafoe-regular {
  font-family: "Mr Dafoe", cursive;
  /* font-weight: 100; */
  font-style: normal;
}

/* .mr-dafoe-regular {
  font-family: "Mr Dafoe", cursive;
  font-weight: 400;
  font-style: normal;
} */

body, main {
  overflow-x: hidden; /* Evita barra lateral indesejada */
}


body { font-family: 'Istok Web', sans-serif; 
    margin: 0;
    padding: 0;
}
.logo { font-size: 24px; font-weight: bold; }

/* 🟢 Responsividade da logo */
.logo {
  width: 100%;
  max-width: 500px; /* Mantém um tamanho máximo */
  height: auto; /* Mantém a proporção original */
  display: block;
  margin: 0 auto; /* Centraliza a logo */
}

/* 📌 Ajustes no mobile */
@media screen and (max-width: 768px) {
  .logo {
      max-width: 300px; /* Reduz um pouco a logo no mobile */
  }
}

@media screen and (max-width: 480px) {
  .logo {
      max-width: 200px; /* Para telas muito pequenas, reduz mais a logo */
  }
}







.hero { text-align: center; padding: 50px; background: #f8f9fa; }

.sessoes {
  text-align: center;
  font-family: 'Roboto', sans-serif;
  color: #fff;
  font-weight: 600;
  padding: 50px;
  background-image: url("../imagens/banner-principal/banner-01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative; /* Mantém a posição relativa para alinhamento correto */
  z-index: 1; /* Elevação suficiente para manter o conteúdo visível */
}

.sessoes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Camada escura */
  z-index: -1; /* Mantém a camada atrás do conteúdo */
}

.sessoes h1 {
  position: relative; /* Mantém o texto sobre a camada escurecida */
  z-index: 2; /* Garante que o texto fique acima da camada preta */
}


.services img { max-width: 100%; border-radius: 10px; }

       /* Estilos Gerais */
/* Estilos do Navbar */
     
    /* Estilos do Navbar */
    .navbar {
      /* background-color: white; */
      padding:0px!important;
  box-shadow: none!important;
  }

  /* .navbar-brand img {
      max-height: 500px;
      width: auto;
  } */

  /* Estilos do Menu */
  .navbar-nav .nav-item {
      position: relative;
  }

  

/* Estilos do Menu */
.navbar-nav .nav-link {
  color: #000;
  font-weight: 500;
  padding: 10px 20px;
  position: relative;
  padding: 30px;
  overflow: hidden; /* Evita que o efeito ultrapasse os limites */
  transition: color 0.3s ease-in-out; /* Suaviza a mudança de cor do texto */
}


@media (min-width: 992px) {
  .navbar-nav .nav-link {
     margin-left: 30px;
  }
  

}


/* Efeito ao passar o mouse */
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: #8dbf41; /* Cor verde ao passar o mouse */
  z-index: -1;
  transition: height 0.3s ease-in-out;
}

/* Faz o fundo verde subir */
.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-item:hover .nav-link::before {
  height: 100%;
}

/* Mantém o texto branco ao passar o mouse */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-item:hover .nav-link {
  color: #fff !important;
}

/* Estilos do Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #2f383a; /* Fundo escuro */
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Corrige a cor do texto dos itens do submenu */
.dropdown-menu .dropdown-item {
  color: #000 !important; 
  font-weight: 500;
  padding: 10px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}

/* Hover no dropdown */
.dropdown-menu .dropdown-item:hover {
  color: #8dbf41 !important;
  background-color: #1e2426; /* Fundo levemente mais escuro */
}

/* Exibe o dropdown no hover para desktop */
@media (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
      display: block;
      opacity: 1;
  }
}

/* Corrige a cor do texto dos itens do submenu  desktop*/
@media (min-width: 992px) {
.dropdown-menu .dropdown-item {
  color: #fff !important; 
  }
}

/* Corrige a cor do texto no mobile sem expandir o submenu automaticamente */
@media (max-width: 991px) {
  .dropdown-menu {
      background-color: white !important;
  }

  .dropdown-menu.show {
      display: block;
      opacity: 1;
  }
}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/




/* Estilos para o novo banner rotativo */
.new-rotating-banner {
  height: 50vh; /* Mantém o banner na altura da tela */
  overflow: hidden;
}

.new-rotating-banner .carousel-item {
  position: relative;
}

.banner-img {
  width: 100%;
  height: 50vh;
  object-fit: cover;
}

/* Faixa semitransparente */
.custom-banner-band {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  padding: 10px 15px;
}

/* Texto dentro da faixa */
.custom-banner-text {
  color: #fff;
  text-align: center;
  width: 90%;
  max-width: 800px;
}

.custom-banner-text h5 {
  font-size: 24px;
  /* font-weight: bold; */
  margin-bottom: 5px;
}

.custom-banner-text p {
  font-size: 18px;
  line-height: 1.2;
}

/* Ajustes para telas menores */
@media (max-width: 768px) {
  .new-rotating-banner,
  .banner-img {
    height: 60vh;
  }

  .custom-banner-band {
    height: auto;
    padding: 10px;
  }

  .custom-banner-text h5 {
    font-size: 18px;
  }

  .custom-banner-text p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .new-rotating-banner,
  .banner-img {
    height: 50vh;
  }

  .custom-banner-band {
    height: auto;
    padding: 5px;
  }

  .custom-banner-text {
    max-width: 85%;
  }

  .custom-banner-text h5 {
    font-size: 10px!important;
  }

  .custom-banner-text p {
    font-size: 10px;
  }
}





.card-img-top{
max-width: 360x;
max-height: 225px;

}



/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/



.img-servicos{
  margin-top: 5px;
  margin-bottom: 20px;

}

.descricao-servico-site-home{
font-size: 12px;

}



.efeito_botao_servico:hover {
    color: #ffffff !important;
    font-weight: 800;
    background-color: #2b2c2a; /* Cor verde ao passar o mouse */
    transition: height 0.3s ease-in-out;

}


.botao-leia-mais {
  position: relative;
  display: inline-block;
  padding: 15px 15px; /* Reduzi o tamanho nas laterais */
  font-size: 14px;
  border: none;
  overflow: hidden;
  color: white; /* Mantém o texto sempre branco */
  background-color: #8dbf41 !important;
  transition: color 0.3s ease-in-out;
  z-index: 1;
  text-decoration: none;
  max-width: 150px;
  margin: 0 auto;
  font-weight:600;
  letter-spacing:2px;
 
}

.botao-leia-mais::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%; /* Começa fora do botão */
  width: 100%;
  height: 100%;
  background: black;
  transition: bottom 0.4s ease-in-out;
  z-index: -1; /* Mantém o efeito no fundo sem cobrir o texto */
}

.botao-leia-mais:hover::after {
  bottom: 0; /* Sobe preenchendo */
}

.botao-leia-mais:hover {
  color: white !important; /* Mantém o texto visível */
}




.botao-leia-mais_blog{

  position: relative;
  display: inline-block;
  padding: 15px 15px; /* Reduzi o tamanho nas laterais */
  font-size: 14px;
  border: none;
  overflow: hidden;
  color: white; /* Mantém o texto sempre branco */
  background-color: #8dbf41 !important;
  transition: color 0.3s ease-in-out;
  z-index: 1;
  text-decoration: none;
  margin: 0 auto;
  font-weight:600;
  letter-spacing:2px; margin-top: 200px; margin-bottom: 150px;
}




.botao-leia-mais_blog::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%; /* Começa fora do botão */
  width: 100%;
  height: 100%;
  background: black;
  transition: bottom 0.4s ease-in-out;
  z-index: -1; /* Mantém o efeito no fundo sem cobrir o texto */
}

.botao-leia-mais_blog:hover::after {
  bottom: 0; /* Sobe preenchendo */
}

.botao-leia-mais_blog:hover {
  color: white !important; /* Mantém o texto visível */
}








/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
html, body {
  height: 100%; /* Garante que a página ocupe 100% da altura */
  margin: 0;
  display: flex;
  flex-direction: column;
}


.container-principal {
  flex: 1; /* Faz com que esse conteúdo ocupe o espaço restante */
}

.footer {
  background: #363f45;
  color: white;
  padding: 20px;
  text-align: center;
}

.ultimos-post-index{
  margin-top: 20px !important;
background-color: #f2f2f2;
color: #8dbf41!important;

}

.ultimos-post-index .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.ultimos-post-index .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.ultimos-post-index .card-text {
  flex-grow: 1;
}

.ultimos-post-index .mt-auto {
  margin-top: auto !important;
}








/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* Área dos depoimentos */
/* ------------------ */
/* ESTILO GERAL */
/* ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: auto;
  padding-top: 20px;
}

/* ------------------ */
/* ÁREA DOS DEPOIMENTOS */
/* ------------------ */


/* ------------------ */
/* RESPONSIVIDADE     */
/* ------------------ */

/* Tablet: 2 depoimentos por vez */
/* Tablet: 2 depoimentos por vez */
@media (max-width: 1024px) {
  .depoimento {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* Mobile: Apenas 1 depoimento por vez */
@media (max-width: 768px) {
  .depoimento {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.divisor-diagonal {
  width: 100vw; /* Largaça, pega a tela inteira */
  height: 60px; /* Altura do divisor */
  background: #8dbf41; /* Cor do divisor */
  position: relative;
  z-index: 2; /* Fica sobre as seções */
}

/* Criando a borda diagonal com a seção anterior */
.divisor-diagonal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #f8f9fa; /* Cor da seção anterior */
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}




/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/



.contact-container {
  margin-left: -30px;
  background-color: #fff;
  color: #6b757c;
  font-size: 14px;
  text-align: start;
  line-height: 21px;
  font-weight: 400;
  font-family: "Istok Web", sans-serif;
  width: 100%;
  max-width: 1170px;
  margin: auto;
  padding: 20px;
}

.contact-header {
  padding: 0;
  margin-bottom: 51px;
  font-size: 18px;
  font-weight: 200;
  line-height: 31.5px;
  border-radius: 5px;
  text-align: center;
  padding: 50px 20px;
}

.contact-header h1 {
  margin: 0;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 1px;
  /* background: url("imagens/h1-contact.jpg") center bottom no-repeat; */
  padding-bottom: 27px;
  text-transform: uppercase;
  color: #363f45;
}

.contact-header p {
  margin: 0 auto;
  line-height: 24px;
  font-size: 14px;
  max-width: 800px;
  padding: 0 20px;
}
/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/








.social-link {
  display: inline-block;
  margin: 0 8px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.social-link img {
  width: 100%;
  height: auto;
  display: block;
}

.social-link:hover {
  transform: scale(1.1);
}

.btn-dark {
  background-color: #333;
  border: none;
}

.btn-dark:hover {
  background-color: #555;
}



/*//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

/* Estiliza o link ativo no menu principal */
.navbar-nav .nav-link.active {
  color: #fff !important; 
  font-weight: bold;
  background-color: #8dbf41 !important;
}

/* Estiliza os links dentro do dropdown */
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
  color: #fff !important;
  font-weight: bold;
  background-color: #8dbf41 !important;
}

/* Para garantir que o hover no submenu fique correto */
.dropdown-menu .dropdown-item:hover {
  color: #fff !important;
  background-color: #7faa38 !important; /* Um verde um pouco mais escuro */
}
/* ///////////////////////////////////////////////////////////////////// */

.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.review-box {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #e0e0e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-box:hover {
  transform: translateY(-3px);
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.profile-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
  border: 3px solid #FFD700;
}

.review-content {
  flex: 1;
}

.review-content strong {
  font-size: 16px;
  color: #333;
}

.stars {
  display: inline-block;
  margin-left: 8px;
  color: #FFD700;
  font-size: 14px;
}

.review-text {
  margin-top: 5px;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .review-box {
      flex-direction: column;
      text-align: center;
  }
  .profile-photo {
      margin-bottom: 10px;
  }
}

.btn-avaliar {
display: inline-block;
background-color: #28a745;
color: white;
font-weight: bold;
padding: 12px 20px;
border-radius: 8px;
text-decoration: none;
font-size: 16px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
transition: background 0.3s ease;
}

.btn-avaliar:hover {
background-color: #218838;
}

/* ////////////////////////////////////////////////// */

/* <!-- Botão Flutuante do WhatsApp --> */


		.blob {
   
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(5, 122, 35, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(6, 177, 43, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(4, 194, 35, 0);
    }
}

	