
/* ----------------------------
   🌐 1. Estilização Global
---------------------------- */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f7f7f7;
  color: #333;
  overflow-x: hidden;
  position: relative;
}

/* Imagem de fundo só até a primeira section */
body.home::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: 960px; /* altura até onde a imagem deve aparecer (ajuste conforme a section) */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(255, 255, 255, 1)),
              url('img/Predio1.jpg') center/cover no-repeat;
  z-index: -1;
}


/* ----------------------------
   🔰 Logo e Header
---------------------------- */

.container-header {
  max-width: 1200px;
  margin: 0.1%;
  padding: 0px 1px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 30px;
  width: auto;
  border-radius: 4px;
  margin-left: -10px;
}


header {
  background-color: #0e0e0e ;
  color: rgb(0, 0, 0);
  padding: 20px;
  text-align: center;
  position:relative;
  z-index: 1;
}

nav a {
  margin: 0 15px;
  color: #ffffff; /* Cor inicial */
  text-decoration: none !important;
  font-weight: bold;
  transition: color 0.3s ease; /* Efeito suave de transição */
}

nav a:hover {
  color: #49ff38; /*ao passar o mouse mudar a cor*/
}


/* 🔧 PROFISSIONALIZAÇÃO DA SEÇÃO CONTEÚDO */
.conteudo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 30px;
  gap: 70px;
  max-width: 1200px;
  margin: 60px auto;
  background: #ffffff00;
  padding-top: 150px;
  padding-left: 700px;
}

.conteudo img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.233);
  transition: transform 0.3s ease;
}

.conteudo img:hover {
  transform: scale(1.03);
  cursor: pointer;
}

.descricao {
  max-width: 550px;
}

.descricao h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #050505cb;
  font-weight: 700;
}

/* Melhorias sutis para a seção descrição próxima ao carrossel */
section.descricao {
  max-width: 900px;
  margin: 50px auto 60px;
  padding: 0 20px;
  font-size: 1.15rem;
  line-height: 1.75;
  color: #444444;
  text-align: justify;
  letter-spacing: 0.02em;
  font-weight: 400;
}

/* ----------------------------
   3. Serviços
---------------------------- */
.servicos {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2d6a4f;
  background-color: #e6f2e6;
  padding: 40px 20px;
  max-width: 800px;
  margin: 60px auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

}

.servicos h3 {
  color: #333;
  font-size: 2.2rem;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: 1px;
}

.servicos ul {
  list-style: none;
  padding: 0;
}

.servicos ul li {
  font-size: 1.2rem;
  margin: 12px 0;
  position: relative;
  padding-left: 30px;
  font-weight: 600;
  color: #276749;
}


/* ----------------------------
   4. Depoimentos
---------------------------- */
.depoimentos {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.depoimentos h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #2d6a4f;
}

.depoimentos-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.depoimento {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: left;
  flex: 1 1 300px; /* largura mínima de 300px com flexível */
  max-width: 350px;
}

.depoimento .topo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.depoimento .nome {
  font-weight: bold;
  color: #333;
  font-size: 1.1rem;
}

.depoimento .estrelas {
  color: #f4c430;
  font-size: 1.2rem;
}

.depoimento p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}



/* ----------------------------
   5. Localização (mapa)
---------------------------- */
.localizacao {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.localizacao h3 {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #418b2e;
}

.localizacao iframe {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.322);
  width: 90%;
  height: 300px;
  border: none;
}

/* ----------------------------
   6. Botões de Ação
---------------------------- */
.botoes {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 10px;
  margin-bottom: 45px;
}

.botoes a {
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  background-color: #25D366;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.botoes a:hover {
  background-color: #1ebe56;
}

.botoes a.instagram {
  background-color: #E1306C;
}

.botoes a.instagram:hover {
  background-color: #b72b58;
}

/* ----------------------------
   7. Carrossel Horizontal
---------------------------- */
.carouselEsteira-container {
  overflow: hidden;
  width: 100vw;
  padding-top:600px;
}

.cursor{
    position: relative;
    font-size: 16px;
    text-align: justify;
    white-space: normal;
    overflow: hidden;
    transform: translateY(-50%);    
    line-height: 1.6;
}

.cursor::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  background-color: rgba(16, 16, 16, 0.75);
  animation: blink 0.7s steps(1) infinite;
  vertical-align: bottom;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.carouselEsteira-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carouselEsteira-track {
  animation: moverEsteiraBootstrap 30s linear infinite;
  gap: 2rem;
  display: flex;
}

.carouselEsteira-item {
  position: relative;
  flex: 0 0 auto;
  width: 250px;
  cursor: pointer;
}

.carouselEsteira-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: block;
}

.carouselEsteira-item img:hover {
  transform: scale(1.05);
}

.carouselEsteira-item .descricao-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.550);
  color: white;
  padding: 20px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0 0 1px 1px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.carouselEsteira-item:hover .descricao-hover {
  opacity: 1;
  pointer-events: auto;
}



.carouselEsteira-item {
  transition: transform 0.3s ease;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.carouselEsteira-item:hover {
  transform: scale(1.1);
  z-index: 10;
}


.carouselEsteira-track,
.carouselEsteira-wrapper,
.carouselEsteira-container {
  overflow: visible !important;
}


.modal {
  display: none; /* escondido por padrão */
  position:fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.918); /* fundo escuro */
  text-align: center;
  padding-top: 60px;
}

.modal-corpo {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin: auto;
  gap: 30px;
  flex-wrap: wrap;
}

.modal-imagem {
  max-width: 47%;
  max-height: 60vh;
  border-radius: 6px;
  margin-top: 10%;
}

.modal-descricao {
  color: rgb(0, 0, 0);
  font-size: 18px;
  max-width: 50%;
  text-align: left;

}

.fechar {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #000000;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}


/* ----------------------------
   8. Animações
---------------------------- */
@keyframes moverEsteiraBootstrap {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Botão Voltar ao Topo */
#voltarTopo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background: #2da756;
  color: rgb(255, 255, 255);
  border: none;
  padding: 25px 35px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 999;
}

.destaque {
  color: #18a2e2; 
  font-weight: bold; /* opcional: deixa em negrito */
}

.cnpj {
  color: #ffffff; 
  font-weight: bold; /* opcional: deixa em negrito */
}


.rodape {
  background-color: #000000; /* cor escura elegante */
  color: #ffffff; /* texto suave */
  text-align: center;
  padding: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.rodape a {
  color: #ffffff; 
  text-decoration: none !important;
  transition: color 0.3s ease;
}

.rodape a:hover {
  color: #49ff38; /*ao passar o mouse mudar a cor*/
  text-decoration: underline;
}


/* ----------------------------
   9. Responsivo para conteúdo
---------------------------- */
@media (max-width: 768px) {
  
  /* Ajusta o pseudo-elemento ::before na página inicial */
  body.home::before {
    top: 65px;
  }

  /* Impede rolagem lateral em dispositivos menores */
  html, body {
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Reduz o tamanho da logo para caber melhor em telas pequenas */
  .logo {
    height: 1.55em;
    width: 7.25em;
  }

  /* Reduz o espaçamento entre os links do menu */
  nav a {
    margin: 0 5px;
  }

  /* Coloca o conteúdo em coluna e centraliza no mobile */
  .conteudo {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  /* Dá espaço abaixo das imagens no conteúdo */
  .conteudo img {
    margin-bottom: 25px;
  }

  /* Reduz o tamanho do título da descrição */
  .descricao h2 {
    font-size: 1.7rem;
  }

  /* Reduz o tamanho do parágrafo da descrição */
  .descricao p {
    font-size: 1rem;
  }

  /* Ajusta a seção de descrição para melhor leitura */
  section.descricao {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 15px;
    margin: 40px auto;
    text-align: left;
  }

h1, h2, .titulo {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }


  /* Oculta o botão "Voltar ao Topo" completamente no mobile */
  #voltarTopo {
    display: none !important;
  }

  /* Ajusta a descrição visível ao passar o mouse em itens do carrossel */
  .carouselEsteira-item .descricao-hover {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}










/* ----------------------------
   10. Responsivo ainda menor (até 600px)
---------------------------- */
@media (max-width: 600px) {
  /* Ajusta tamanho e padding do rodapé em telas bem pequenas */
  .rodape {
    font-size: 13px;
    padding: 15px;
  }


.modal-imagem {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  display: block;
  margin-top: 100px !important;
  margin: 0 auto;
}


#modalDescricao {
    text-align:start;
    
    max-width: 600px;
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
  }



}