  /* ===================== Estilo Global ===================== */
  body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
    width: 100vw;
    overflow-x: hidden;
    
  }

  h2 {
    border-bottom: 3px solid #a78e04;
    padding-bottom: 0.3em;
    margin-bottom: 1em;
  }

  a {
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }

  /* ===================== Header ===================== */
  header {
    background: #a78e04;
    color: white;
    padding: 1em 0;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(4px);
  }

  .header-container {
    display: flex;
    align-items: center;
    justify-content: center; /*alinhar menus*/
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1em;
    flex-wrap: wrap;
  }
   /*alterar o tamanho do logo */
  header img {
  height: 90px; /* ou até 36px mais compacto */
  max-height: 80px;
  width: auto;
  }

  .menu {
    display: flex;
    gap: 0.6em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }

  .menu a {
    color: white;
    font-weight: 500;
    padding: 0.4em 0.7em;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  }

  .menu a:hover {
    background-color: #fff8e1;
    color: #a78e04;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  }

  /* Caso use ícones dentro dos links do menu */
  .menu a img.icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 8px;
  }

   /* ===================== alteração logo no topo ===================== */
   .topo-contatos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #f2f2f2;
  padding: 0.5em 1em;
  gap: 1em;
}

.logo-topo img {
  height: 80px; /* ajuste conforme o visual desejado */
  width: auto;
  display: block;
}
 


  /* ===================== Main ===================== */
  main {
    max-width: 900px;
    margin: 2em auto;
    background: white;
    padding: 1em;
    box-shadow: 0 0 10px #ccc;
  }

  section {
    margin-bottom: 2em;
  }

  /* ===================== Footer ===================== */
  footer {
    background: #d9cbb6;
    text-align: center;
    padding: 0; /*alterar pad entre slide e rodapé*/
    margin-top: 0; /*inserir uma marbem entre slide e rodapé*/
    font-size: 0.9em;
    color: #4a3a14;
  }

  /* ===================== Slideshow ===================== */
  .slideshow-container {
    width: 100%;
    height: 800px;
    max-height: 90vh;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
  }

  .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
  }

  .slide img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomPan 20s ease-in-out infinite;
    transition: opacity 2s ease-in-out;
  }

  .slideshow-texto {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    max-width: 90%;
  }
  
  /*slide show mineração e seja bem vindo*/
  .slideshow-texto h2,
  .slideshow-texto p {
    color: #003366; 
    font-family: Georgia, serif;/* <-- tipo de fonte */
    font-size: 3rem;
    font-weight: 700;
    text-shadow:
      0 0 5px #676e6e;   /* brilho ciano suave */
    /* 0 0 10px #ebeeee,  /* brilho mais forte */
    /* 0 0 20px #00ffff,  /* brilho mais espalhado */
    /* 0 0 40px #00ffff,  /* brilho intenso ao redor */
    /* 2px 2px 4px #05226e; /* sombra escura para profundidade */
    /*text-shadow: 1px 1px 2px #05226e;*/
    /*text-shadow: 1px 1px 2px rgba(0, 128, 0, 0.5), 3px 3px 3px rgba(255, 255, 0, 0.4);*/
    margin: 0.5em 0 0;
  }

  /* ===================== Animações ===================== */
  @keyframes zoomPan {
    0% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-55%) scale(1.1); }
    100% { transform: translateX(-50%) scale(1); }
  }

  @keyframes fade {
    from { opacity: 0.3; }
    to { opacity: 1; }
  }

  .fade {
    animation-name: fade;
    animation-duration: 2s;
  }

/* ===================== Carrossel de Produtos ===================== */
.carousel-container-produto {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  margin-top: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-produto {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease;
  justify-content: center;
}

.produto-item {
  display: none;
  flex: 0 0 100%;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  padding: 2em;
  box-shadow: 0 0 15px #a78e04;
  transition: transform 0.5s ease;
}

.produto-item.ativo {
  display: flex;
}

.produto-item.alterna-direita {
  flex-direction: row-reverse;
}

.produto-item img {
  width: 40%;
  max-width: 250px;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 2em;
}

.produto-texto {
  width: 55%;
  max-width: 400px;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.produto-texto h3 {
  margin-top: 0;
  color: #003366;
}

/* Botões Carrossel */
.btn-carousel-produto {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #6e4b1b;
  font-size: 2.5em;
  border: none;
  cursor: pointer;
  padding: 0.1em 0.4em;
  border-radius: 5px;
  z-index: 10;
  transition: color 0.3s ease;
}

.btn-carousel-produto:hover {
  color: #000;
}

.prev-produto { left: 10px; }
.next-produto { right: 10px; }

/* ===================== Responsivo ===================== */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    justify-content: center;
    margin-left: 0;
    width: 100%;
  }

  .menu a,
  nav a {
    padding: 0.5em;
    margin: 10px 0 0;
  }

  nav a i {
    margin-right: 8px;
    color: #fff;
  }

  main {
    margin: 1em;
    padding: 1em;
  }

  .slideshow-container {
    height: 40vh;
    max-height: 300px;
  }

  .slide img {
    width: 150%;
  }

  .slideshow-texto h2,
  .slideshow-texto p {
    font-size: 1.6rem;
  }

  .produto-item {
    flex-direction: column !important;
    text-align: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
  }

  .produto-item img,
  .produto-texto {
    width: 100%;
    margin: 0 auto;
  }

  .produto-texto {
    padding: 1em;
  }

  .btn-carousel-produto {
    font-size: 1.5em;
    padding: 0.2em 0.4em;
  }

  .container-produtos {
    max-width: 1000px;
    margin: 4em auto;
    padding: 2em;
    background: #fefefe;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
  }

  #produtos-full {
    scroll-margin-top: 100px;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 2em 0;
  }

  .contato-container {
    flex-direction: column;
  }

  .contato-texto,
  .formulario-contato {
    flex: 1 1 100%;
    padding: 1.5em;
    box-shadow: none;
    background-color: transparent;
    border: 2px solid #ccc;
  }
}

/* ===================== Logo e Título ===================== */
.logo-linha {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.titulo {
  margin: 0;
  white-space: nowrap;
}

.logo-inline {
  width: 50px;
  height: auto;
}
/* ===================== Seção Sobre ===================== */
.sobre-main {
  background: #f7f7f7;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

.sobre-bloco {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 3em auto;
  max-width: 1000px;
  width: 100%;
}

.sobre-bloco::after {
  content: "";
  position: absolute;
  top: 40px;
  left: -20px;
  border-width: 0 20px 20px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.sobre-bloco.alternar::after {
  left: auto;
  right: -20px;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #fff;
}

.sobre-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  min-height: 300px;
}

.sobre-container.alternar {
  flex-direction: row-reverse;
}

.sobre-imagem {
  flex: 1 1 600px;
  max-width: 900px;
}

.sobre-imagem img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.sobre-texto {
  flex: 2 1 400px;
  text-align: justify; /* Aplica como fallback, mas o ideal é nos <p> */
}

.sobre-texto h2 {
  color: #a78e04;
  margin-bottom: 1em;
  font-size: 28px;
}

/* Aplica estilo ao texto principal */
.sobre-texto p,
.sobre-texto ul {
  color: #003366;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  text-justify: inter-word;
}


.sobre-texto ul {
  padding-left: 1.2em;
}

/* ===================== Contato ===================== */
/* Cabeçalho da página de contato */
.contato-cabecalho {
  background-color: #a78e04;
  color: white;
  padding: 2em 1em;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 2em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contato-cabecalho h1 {
  font-size: 1.8em;
  margin: 0;
}

.contato-cabecalho h2 {
  font-size: 1.5em;
  margin: 0;
}

.contato-cabecalho p {
  font-size: 1em;
  margin: 0;
}

/* Container que engloba o contato e o formulário */
.contato-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  padding: 2em;
  box-sizing: border-box;
}

.contato-texto {
  flex: 1 1 100%;
  padding: 1.5em;
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #f2f2f2;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  max-width: 1000px;
  margin: 0 auto;
}

.contato-texto i {
  margin-right: 6px;
  vertical-align: middle;
  color: #003366;
}

.contato-texto address p {
  margin: 0.2em 0;
  line-height: 1.4;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #ccc;
}

.contato-grupo {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #ccc;
}

.contato-grupo:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

address {
  font-style: normal;
  margin-top: 1.5em;
}

.formulario-box {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 2em;
  background-color: #f2f2f2;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
}

.formulario-titulo {
  font-weight: bold;
  font-size: 1.2em;
  color: #6e4b1b;
  margin-bottom: 1em;
  text-align: center;
}

.titulo-moldura {
  border: 2px solid #a78e04;
  padding: 0.5em 1em;
  border-radius: 8px;
  background-color: #fff8f0;
  color: #6e4b1b;
  text-align: center;
  margin-bottom: 1.5em;
  font-size: 1.1em;
}


  /*ajuste do texto preencha o formulario*/
.formulario-contato legend {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 1.5em;
  background-color: #f2f2f2;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 1em; /* empurra o conteúdo interno para baixo */
  position: relative;
   top: 2em; /* controla a altura do texto */
}

/*titulo informação de contato*/
.titulo-moldura,
.formulario-contato legend {
  border: 2px solid #a78e04;
  padding: 0.5em 1em;
  border-radius: 8px;
  background-color: #fff8f0;
  color: #6e4b1b;
  text-align: center;
  margin-bottom: 2em;
  font-size: 1.2em;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
  display: block;  /* Para ajustar a largura ao conteúdo */
  max-width: 100%;        /* Evita estourar a largura do container */
  box-sizing: border-box;
}

  /*campos do formulario*/
.formulario-contato select,
.formulario-contato input,
.formulario-contato textarea {
  width: 95%;
  max-width: 1000px; 
  padding: 0.8em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  margin: 10px auto;
}

.formulario-contato button {
  padding: 0.8em 1.5em;
  background: #6e4b1b;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.formulario-contato button:hover {
  background: #a78e04;
}

.formulario-contato fieldset {
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 1.5em;
  background-color: #f2f2f2;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  position: center;
}

.formulario-contato legend {
  font-weight: bold;
  font-size: 1.2em;
  color: #6e4b1b;
  padding: 0 10px; /* espaçamento horizontal dentro da borda */
  margin-left: 10px; /* posiciona um pouco para dentro */
  margin-top: 2em; /* ou aumente para 1.5em, 2em etc, conforme desejar */
  padding-top: 0.5em;
}


/* Responsivo (mobile) */
@media (max-width: 768px) {
  .contato-container {
    flex-direction: column;
    padding: 1em;
  }

  .contato-texto,
  .formulario-contato {
    flex: 1 1 100%;
    padding: 1.5em;
  }

  .contato-texto {
  text-align: center;
}

  .cabecalho-logo-titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 1em;
  }

  .logo-contato {
    height: 60px;
    width: auto;
  }
}
/* Popup de confirmação */
.popup {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-conteudo {
  background-color: #fff;
  padding: 2em;
  border-radius: 10px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.popup-conteudo h2 {
  color: #28a745;
  margin-bottom: 1em;
}

.popup-conteudo button {
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 0.8em 1.2em;
  border-radius: 5px;
  cursor: pointer;
}

.popup-conteudo button:hover {
  background-color: #218838;
}

/* Botão flutuante genérico */
.btn-flutuante,
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-flutuante {
  background-color: #6e4b1b;
  font-size: 1.5em;
  line-height: 60px;
}

.btn-flutuante:hover {
  background-color: #a78e04;
}

.btn-flutuante img.icone-flutuante {
  width: 70%;
  height: auto;
  border-radius: 50%;
}

.whatsapp-button {
  background-color: #25d366;
}

.whatsapp-button:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

.whatsapp-button i {
  font-size: 28px;
}

/* Texto do produto */
.produto-texto {
  width: 100%;
  max-width: 600px;
  padding: 1.5em;
  margin: 0 auto;
  text-align: justify;
}

.produto-texto ul {
  padding-left: 1.2em;
  list-style: disc;
  color: #003366;
  line-height: 1.6;
}

.produto-texto ul li {
  margin-bottom: 0.8em;
}

/* Contato no topo */
.topo-contatos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #f2f2f2;
  padding: 0.5em 1em;
}

.contato-item {
  margin-right: 1em;
  font-size: 0.9em;
}

.idiomas a img {
  width: 28px;
  margin-left: 0.5em;
  border-radius: 50%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.idiomas a img:hover {
  transform: scale(1.1);
}

/* Rodapé */
.rodape-social {
  background-color: #a78e04;
  color: #ccc;
  padding: 1em 0.5em 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 0;
}

.bandeira-esquerda,
.bandeira-direita {
  display: flex;
  align-items: flex-start;
  margin: 0 5px;
}

.bandeira-esquerda img,
.bandeira-direita img {
  width: 100px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.938);
  transition: transform 0.3s ease;
}

.bandeira-esquerda img:hover,
.bandeira-direita img:hover {
  transform: scale(1.05);
}

.rodape-texto {
  flex: 1 1 auto;
  max-width: 600px;
  margin: 0 10px;
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: center;
}

.rodape-texto a {
  color: #003366;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.rodape-texto a:hover {
  color: #003366;
  text-decoration: none;
}

.rodape-texto p {
  margin: 0 0 0.5em;
  text-align: center; /* justificar texto rodapé */
}

/* Linha no rodapé */
.linha-rodape {
  height: 1px;
  background-color: #ccc;
  width: 80%;
  margin: 1em auto;
}

/* Botão WhatsApp - sempre visível */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px; /* alternar lado do balão watsapp */
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
}

.whatsapp-float i {
  font-size: 28px;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
  .rodape-social {
    flex-direction: column;
    text-align: center;
  }

  .rodape-texto {
    padding: 1em 0;
  }

}

  /*Localização*/
 /* Estilos da localização (fora da media query) */
.pagina-localizacao {
  padding: 2em;
  background-color: #fdfaf5;
  color: #333;
  text-align: center;
}

.mapa-container {
  margin: 2em 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.mapa-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.enderecos ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 1.8;
}

.botao-mapa {
  display: inline-block;
  padding: 0.75em 1.5em;
  background-color: #4a3a14;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  margin: 0.5em;
  transition: background 0.3s ease;
}

.botao-mapa:hover {
  background-color: #3b2e0f;
}

/* Responsivo para telas menores */
@media (max-width: 768px) {
  .rodape-social {
    flex-direction: column;
    text-align: center;
  }

  .rodape-texto {
    padding: 1em 0;
  }

  * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  }


}

