/* ===================== RESET & CONFIGURAÇÕES GERAIS ===================== */
::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-thumb {
    background: #1faa13;
    border-radius: 10px;
  }
  ::-webkit-scrollbar-thumb:hover {
    background: #1faa13;
    border-radius: 10px;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "League Spartan";
  }


  #aquiverde{
    color: #1faa13;
  }
  
  html, body {
    height: 100vh;
    scroll-behavior: smooth;
    overflow: hidden; /* O scroll será controlado via JavaScript */
    background-color: white;
  }
  
  /* ===================== CONTAINER DE SCROLL MAGNÉTICO ===================== */
  #scroll-container {
    height: 100vh;
    overflow: hidden; /* Desabilita o scroll nativo */
    scroll-snap-type: y mandatory;
  }
  
  #scroll-container section {
    min-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
  }
  

    #scroll-container section:nth-child(even) {
      background-color: #ffffff;
    }
    #scroll-container section:nth-child(odd) {
      background-color: #ffffff;
    }
    #scroll-container section.rodape { background-color: #000 !important;}
  
  /* Alterna cores para visualização */

  
  /* ===================== HEADER (MENU) ===================== */
  /* O header inicia oculto e aparecerá somente na seção do vídeo */
  #header-id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #33333300;
    color: white;
    padding: 15px 0;
    text-align: center;
    z-index: 1100; /* Fica acima dos elementos de vídeo */
    transition: transform 0.01s ease-out;
    transform: translateY(-100%);
  }
  
  #header-id.header-visible {
    transform: translateY(0);
  }

  /* ===================== SEÇÃO DO VÍDEO, OVERLAY & CONTEÚDO ===================== */
  .video-do-site {
    position: relative;
    height: 100vh; /* Ajuste conforme seu design */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }
  .video-do-site img{
    height: 100%;
    z-index: 100;
  }
  .video-site {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1000;
  }
  
  .overlay-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #29242499; /* Ajuste a opacidade conforme necessário */
    z-index: 1001;
  }
  
  .video-do-site .content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
    color: white;
    font-size: 4.5rem;
    text-align: center;
    animation-name: brilho2;
    animation-iteration-count: infinite;
  }

  .video-do-site .content span {
    color: #1faa13;
  }
  /*===============================FIM VIDEO=============================================*/

  /*=================================INICIO OUTRA TELA==================================*/

  .fotogeral{
    position: relative;
    height: 100vh; /* Ajuste conforme seu design */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
  }

  .fotogeral img{
    height: 100%;
    z-index: 100;
    width: auto;
    object-fit: cover;
    object-position: center;
  }

  .foto-site{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fotogeral .conteudo{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1002;
    color: #ffffff;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 0 0 2px #1faa13, 0 0 5px #1faa13;
    animation-name: brilho2;
    animation-iteration-count: infinite;
  }

  .enderecos{
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
    padding: 0 12px;
    box-sizing: border-box;
  }
  .sobrepor{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3f7e4899; /* Ajuste a opacidade conforme necessário */
    z-index: 1001;
  }

  .localidades{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: #20aa13d7; /* Ajuste a opacidade conforme necessário */
    z-index: 1010;
    border-radius: 10px;
  }

  .localidades .enderecos{
    padding: 20px;
  }

  .localidades .enderecos .endloja{
    padding: 20px;
    position: absolute;
    left: 0;
    }

    .localidades .enderecos .endloja a{
      text-decoration: none;
      color: #ffffff;
      padding: 20px;
    }

    .localidades .enderecos .endloja h5 :hover{
      text-shadow: 0 0 2px #ffffff, 0 0 4px #ffffff;
      transform: .4s;
    }

    .localidades .enderecos .endloja h4{
      font-size: 50px;
    }

    .localidades .enderecos .endloja h5{
      font-size: 25px;
    }

    .localidades .enderecos .kley{
      padding: 20px;
      position: absolute;
      right: 0;
    }
    .localidades .enderecos .kley a{
        text-decoration: none;
        color: #ffffff;
        padding: 20px;
      }
    .localidades .enderecos .kley h5 :hover{
        text-shadow: 0 0 2px #ffffff, 0 0 4px #ffffff;
        transform: .4s;
      }
      .localidades .enderecos .kley h4{
      font-size: 50px;
      
      }
      .localidades .enderecos .kley h5{
      font-size: 25px;
  }
  /* ================================ FIM OUTRA TELA =============================== */


  /* =================================PERGUNTAS FREQUENTES============================= */
  .frequente{
    position: relative;
  }

  .tituloperguntas{
    position: absolute;
    top: 0;
    bottom: 0;
    padding: 30px;
  }

  .faq{
    padding: 20px;
    text-align: center;
  }

  .pergunta{
    padding: 25px;
    margin: 12px;
    color: #1faa13;
    border-radius: 10px;
  
  }

  .pergunta h4{
    font-size: 20px;
    color: #000;
  }

  .pergunta h3{
    font-size: 45px;
    padding-bottom: 7px;
  }

  /* =============================== ELEMENTOS GERAIS ================================ */
  a {
    text-decoration: none;
  }
  
  .interface {
    max-width: 1280px;
    margin: 0 auto;
    font-size: 18px;
  }
  
  .flex {
    display: flex;
  }
  
  .btn-contato button {
    padding: 10px 40px;
    font-size: 20px;
    font-weight: 600;
    background-color: #1faa13;
    color: #ffffff;
    border: solid 0.7px #232423 ;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.2s;
  }
  
  button:hover,
  form .btn-enviar input:hover {
    box-shadow: 0 0 9px #ffffff,
    0 0 20px #1faa13,
    0 0 30px #1faa13;
    transform: scale(1.05);
    transition: 0.2s;
  }
  
  h2.titulo {
    color: #1faa13;
    font-size: 38px;
    text-align: center;
  }
  
  h2.titulo span {
    color: black;
  }
  
  .interagir:hover {
    cursor: pointer;
    color: black;
  }
  
  #verde {
    color: #ffffff; 
  }

  .video-do-site .content span:hover{
    animation-name: brilho;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    cursor: default;
  }

  @keyframes brilho{
    0%{
      color: #1faa13;
      text-shadow: 0 0 12px #1faa13,
      0 0 50px #1faa13, 
      0 0 100px #1faa13;
      transition: 1.5s;
    }
    10%, 90%{
      color: #ffffff;
      text-shadow: 0 0 20px #1faa13;
      transition: 1.5s;
    }
  }

  @keyframes brilho2{
    0%{
      color: #ffffff;
      text-shadow: 0 0 10px #1faa13;
      transition: 1s;
    }
    10%{
      text-shadow: 0 0 10px #1faa13,
      0 0 20px #1faa13;
    }
    20%{
      text-shadow: 0 0 10px #1faa13,
      0 0 20px #1faa13,
      0 0 30px #1faa13;
    }
    30%, 90%{
      text-shadow: 0 0 10px #1faa13,
      0 0 20px #1faa13,
      0 0 30px #1faa13,
      0 0 40px #1faa13;
    }
  }
  
  .interface.logo img {
    width: 500px;
    height: 400px;
  }
  
  /* ===================== CABEÇALHO (OUTROS ESTILOS DO MENU) ===================== */
  header {
    padding: 40px 4%;
  }
  header > .interface {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  header a {
    color: #232423;
    text-decoration: none;
    display: inline-block;
  }
  header a:hover {
    color: #1faa13;
    transform: scale(1.01);
    transition: 0.2s;
  }
  header nav ul {
    list-style-type: none;
  }
  header nav.menu-desktop ul li {
    display: inline-block;
    padding: 0 40px;
  }
  header nav.menu-desktop ul li a:hover {
    color: #1faa13;
  }
  
  /* ===================== MENU MOBILE ===================== */
  .menu-mobile {
    background-color: #ffffff;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99999;
    width: 0%;
    overflow: hidden;
    transition: 0.4s;
  }
  .menu-mobile.abrir-menu {
    width: 70%;
  }
  .menu-mobile.abrir-menu ~ .overlay-menu {
    display: block;
  }
  .btn-abrir-menu i {
    color: #39ec84;
    font-size: 60px;
  }
  .btn-abrir-menu i:hover {
    color: #1faa13;
    transition: 0.3s;
    cursor: pointer;
    text-shadow: 0 0 10px #2bf650,
    0 0 20px #1faa13;
    box-shadow: 0 0 0.4px #1faa13;
  }
  .menu-mobile .btn-fechar i {
    color: #232423;
    font-size: 32px;
    display: flex;
    align-items: end;
  }
  .menu-mobile .btn-fechar i:hover{
    color: #1faa13;
    cursor: pointer;
    text-shadow: 0 0 10px #1faa13,
    0 0 20px #1faa13,
    0 0 30px #1faa13;
    transition: 1s;
  }
  .menu-mobile .btn-fechar {
    padding: 10px 4%;
  }
  .menu-mobile nav ul {
    text-align: right;
  }
  .overlay-menu {
    background-color: #23242310;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 888;
    display: none;
  }
  .menu-mobile nav ul li a {
    color: #1faa13;
    font-size: 20px;
    font-weight: 300;
    padding: 10px 2%;
    display: block;
  }
  .menu-mobile nav ul li a:hover {
    background-color: #1faa1393;
    color: black;
    transition: 0.1s;
  }
  .menu-mobile {
    background-image: url("images/cactodefundo6.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
  }
  /*USUARIO*/
  div.user i{
    color: #1faa13;
    font-size: 30px;
    border: none;
    display: flex;
    align-items: end;
    justify-content: end;
  }

  div.user i:hover{
    color: #1faa13;
    cursor: pointer;
  }

  .menu-mobile .userbtn-menu i {
    color: #232423;
    font-size: 32px;
    display: flex;
    justify-content: end;
    padding: 20px 5%;
  }

  .menu-mobile .userbtn-menu i:hover{
    color: #1faa13;
    cursor: pointer;
  }
  
  /* ===================== OUTROS ESTILOS (TOPO, ESPECIALIDADES, PORTIFÓLIO, ETC.) ===================== */
  /*SOBRE*/
  section.sobre{
    display: flex;
    padding: 80px 4%;
    background-image: url("images/cactodefundo5.png");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    text-align: left;
}

section.sobre .flex{
  gap: 60px;
}
.sobre .txt-sobre{
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-right: 25%;
}
.sobre .txt-sobre{
  color: #232423; 
  text-shadow: 2px 0 #ffffff, -2px 0 #ffffff, 0 2px #ffffff, 0 -2px #ffffff, 1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
}

.sobre .txt-sobre h2{
    font-size: 40px;
    line-height: 40px;
    margin-bottom: 30px;
}

.sobre .txt-sobre h2 span{
    color: black; /* #1faa13 (verde) → preto */
}

.btn-social i{
  width: 45px;
  height: 45px;
  color: #1faa13;
  font-size: 22px;
  cursor: pointer;
  margin: 0 5px;
  padding-top: 20px;
}

.btn-social i:hover{
  color: #1faa13;
  transition: .3s;
}

section.cactus{
  display: flex;
  justify-content: center;
  display: flex;

}

section.cactus h2{
  text-align: center;
  font-size: 30px;
}

section.idscactus .cactusids{
  text-align: right;
  font-size: 15px;
}

section.cactus p{
  font-size: 17px;
  text-align: center;
}

section.cactus .cactusloja{
  display: flex;
  justify-content: left;
  align-items: center;
  padding-right: 75px;
}

.consulta a {
  position: relative;
  display: flex;
  color: #1faa13;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.7em;
  letter-spacing: .1em;
  border: solid 2px #267c26;
  padding: 2px 2px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  transition: 1s;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  justify-content: center;
}

.consulta a:hover{
  color: #232423;
  box-shadow: 0px 0px 5px #0c89af,
  0px 0px 10px #1faa13,
  0px 0px 20px #1faa13,
  0px 0px 30px #1faa13,
  0px 0px 50px #1faa13,
  0px 0px 80px #1faa13;
}

.consulta a::before{
  content: "";
  position: absolute;
  top: 0;
  left: -50;
  width: 0;
  height: 100%;
  background-color: #1faa13;
  transform: skewX(-35deg);
  transition: 1s;
  z-index: -1;
}

.consulta a:hover:before{
  width: 100%;
}

.consulta_fab a {
  position: relative;
  display: flex;
  color: #1faa13;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.3em;
  letter-spacing: .1em;
  border: solid 2px #1faa13;
  padding: 2px 2px;
  text-align: center;
  margin-top: 15px;
  margin-bottom: 10px;
  transition: 1s;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 90%;
  height: auto;
}

.consulta_fab a:hover{
  color: #232423;
  box-shadow: 0px 0px 5px #0c89af,
  0px 0px 10px #1faa13,
  0px 0px 20px #1faa13,
  0px 0px 30px #1faa13,
  0px 0px 50px #1faa13,
  0px 0px 80px #1faa13;
}

.consulta_fab a::before{
  content: "";
  position: absolute;
  top: 0;
  left: -50;
  width: 0;
  height: 100%;
  background-color: #1faa13;
  transform: skewX(-35deg);
  transition: 1s;
  z-index: -1;
}

.consulta_fab a:hover:before{
  width: 100%;
}

section.idscactus{
  display: none;
  justify-content: center;
  display: flex;
}

section.idscactus h2{
  text-align: center;
  font-size: 30px;
}

section.cactus .cactusloja img{
  width: 80%;
  height: auto;

}

.idscactus .cactusids img{
  width: 80%;
  height: auto;
}

section.idscactus p{
  font-size: 15px;
  text-align: center;
}

section.idscactus .cactusids{
  display: flex;
  justify-content: left;
  align-items: center;
  flex-direction: column;
}

.fotodafabrica{
  display: flex;
  flex-direction: column;
  padding-right: 10px;
}

/*CARROSSEL*/
/* Contêiner que agrupa o título e o carrossel */
.portifolio-do-carrossel {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centraliza horizontalmente */
  justify-content: center;
  width: 100%;
  padding: 20px 0; /* Espaço extra para separar dos demais conteúdos */
}

/* Ajuste do título para ficar centralizado e com espaçamento abaixo */
.portifolio-do-carrossel .titulo {
  text-align: center;
  margin-bottom: 20px; /* Espaço entre o título e o carrossel */
}

/* Regras já existentes para o carrossel */
.carrossel {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
  border-radius: 10px;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px; /* Ajuste a altura conforme necessário */
}

#localizacao{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.çlocalizacao{
  display: flex;
  flex-direction: column;
  padding: 5px 2%;
  margin: 5px;
}

#localizacao a{ 
  color: #1faa13;
  font-size: 28px;
}

#localizacao a:hover{
  color: #1faa13;
  transition: .4s;
}

#localizacao a i{
  color: #000;
}

#localizacao a i:hover{
  color: #1faa13;
  transition: .4s;
}

.slide img {
  width: 100%;
  height: auto;
}

/* Posicionamento dos dots abaixo do carrossel */
.dots {
  position: absolute;
  bottom: 10px; /* Posiciona os dots a 10px da parte inferior */
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  z-index: 10;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  border-radius: 50%;
  background-color: #1faa13;
  cursor: pointer;
}

.dot.active {
  background-color: #1faa13;
}

section.portifolio-da-loc{
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #20aa1300;
}

.localização{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

  /* Topo do Site */
  section.topo-do-site {
    background-color: #ffffff;
    padding: 40px 4%;
  }
  section.topo-do-site .flex {
    align-items: center;
    justify-content: center;
    gap: 90px;
  }
  .topo-do-site .txt-topo-site h1 {
    color: #1faa13;
    font-size: 42px;
    text-shadow: 2px 0 #ffffff, -2px 0 #ffffff, 0 2px #ffffff, 0 -2px #ffffff,
                 1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
  }
  .topo-do-site .txt-topo-site h1 span {
    color: black;
    text-shadow: 2px 0 #ffffff, -2px 0 #ffffff, 0 2px #ffffff, 0 -2px #ffffff,
                 1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
  }
  .topo-do-site .txt-topo-site p {
    color: #1faa13;
    margin: 40px 0;
    text-shadow: 2px 0 #ffffff, -2px 0 #ffffff, 0 2px #ffffff, 0 -2px #ffffff,
                 1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
  }
  .topo-do-site .img-topo-site img {
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
  }
  @keyframes flutuar {
    0% { top: 0; }
    100% { top: 30px; }
  }
  
  /* Especialidades */
  section.especialidades {
    padding: 40px 4%;
  }
  section.especialidades .flex {
    gap: 60px;
  }
  .especialidades .especialidade-box {
    color: #232423;
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
    transition: 0.2s;
    text-shadow: 2px 0 #ffffff, -2px 0 #ffffff, 0 2px #ffffff, 0 -2px #ffffff,
                 1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
      
  }
  .especialidades .especialidade-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #20aa1370,
    0 0 40px #1faa13,
    0 0 50px #1faa13;
  }
  .especialidades .especialidade-box i {
    font-size: 70px;
    color: #1faa13;
    
  }
  .especialidades .especialidade-box h3 {
    font-size: 20px;
    margin: 15px 0;
  }
  
  /* Portifólio */
  section.portifolio {
    padding: 80px 4%;
    box-shadow: 0 0 40px 10px #1faa131d;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .img-port {
    width: 1200px;
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left;
    transition: 8s;
    background-position: 100% 0%;
    cursor: pointer;
    border-radius: 40px;
    position: relative;
  }
  .img-port:hover {
    background-position: 100% 100%;
  }

  .overlay-foto{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff86;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #1faa13;
    opacity: 0;
    transition: 0.5s;
    padding: 20px 4%;
    gap: 30px;
  }

  .overlay-foto:hover{
    opacity: 1;
  }
  section.portifolio .flex {
    display: flex;
    justify-content: space-around;
    gap: 100px;
    margin-top: 60px;
  }
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: #1faa13;
    opacity: 0;
    transition: 0.5s;
    padding: 20px 4%;
    gap: 30px;
  }
  .overlay:hover {
    opacity: 1;
  }

  /*------------------------------------------CLIENTES DA CACTUS -------------------------------------------------------------*/
.gallery{
  background-color: #ffffff;

}

.clientes{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: space-evenly;
  align-items: stretch;
  gap:0.5rem;
  padding: 1.5rem;
}

.imgclientes{
  padding: 20px;
  border: 2px solid #1d6f30;
  border-radius: 40px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.imgclientes:hover{
  box-shadow: 0 0 8px #0c89af,
  0 0 10px #1faa13,
  0 0 20px #1faa13;
  cursor: pointer;
  transition: .5s;

}

.titleclientes{
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.imgclientes img{
    width: 70%;
    height: auto;
}

/*--------------------------------------------FIM DA AREA DE CLIENTES----------------------------------------*/
  
  /* ----------------------------------------------Formulário------------------------------------------------*/
  section.formulario {
    padding: 80px 4%;
  }
  form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
  }
  form input,
  form textarea {
    width: 100%;
    background-color: #242424;
    border: none;
    outline: 0;
    padding: 20px 15px;
    border-radius: 15px;
    color: #1faa13;
    font-size: 18px;
  }

  /* Rodapé */
  footer {
    padding: 60px 4%;
    box-shadow: 0 0 40px 10px #1faa131d;
    max-height: 100%;
  }

.rodape{
  display: flex;
  flex-direction: column;
}

  .carao {
    color: #1faa13;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  section.rodape .flex {
    justify-content: space-between;
  }
  section.rodade .line-footer {
    padding: 20px 0;
  }
  .borda {
    border-top: 2px solid black;
  }
  section.rodape .line-footer p i {
    color: black;
    font-size: 22px;

  }
  footer .line-footer p a {
    color: #1faa13;
  }
  .custom-icon {
    color: #1faa13;
  }
  .locmobile {
    display: none;
  }

  .localizaçõa img{
    width: 100%;
    height: auto;
  }

  .localizacao{
    padding: 20px;
  }

  .setacima .cima{
    width: 45px;
    height: 45px;
    border: none;
    font-size: 30px;
    border-radius: 50%;
  }

  .imagemloc{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: auto;
  }

  .setacima i{
    color: #1faa13;
  }

  .setacima i:hover{
    cursor: pointer;
    color: #1d6f30;
  }

  .line-footer-borda i{
    color: #1faa13;
  }

  .line-footer-borda i:hover{
    color: #1faa13;
    cursor: pointer;
    transition: .3s;
  }

  .line-footer-borda p {
    color: #1faa13;
  }

  .line-footer-borda a{
    color: #1faa13;
  }

  .line-footer-borda a:hover{
    cursor: pointer;
    color: #1faa13;
    transition: .3s;
  }

  
  /* Botão Materiais (Responsivo) */
@media screen and (max-width:1000px) {
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    .flex {
      flex-direction: column-reverse;
    }
    .menu-desktop {
      display: none;
    }
    h2.titulo {
      font-size: 33px;
      line-height: 30px;
    }
    .logo {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .btn-contato {
      display: none;
    }
    section.topo-do-site .flex {
      gap: 40px;
    }
    section.topo-do-site {
      padding: 20px 8%;
    }
    .topo-do-site h1 {
      font-size: 30px;
    }
    .topo-do-site .img-topo-site img {
      width: 100%;
    }

    .overlay-foto{
      height: 180px;
    }

    section.especialidades {
      padding: 40px 8%;
    }
    section.sobre {
      padding: 80px 8%;
    }
    .sobre .txt-sobre h2 {
      font-size: 34px;
      line-height: 35px;
      text-align: center;
      padding-bottom: 12px;
    }
    .btn-social {
      text-align: center;
    }
    .btn-social i{
      padding: 2% 20px;
    }
    .img-sobre img {
      width: 100%;
    }
    section.portfolio {
      padding: 80px 8%;
    }
    .img-port {
      width: 100%;
      max-width: 400px;
      background-size: contain;
      margin: 0 auto;
      height: 180px;
    }
    section.portifolio .flex {
      gap: 60px;
    }
    footer .flex {
      flex-direction: column;
      gap: 30px;
    }
    footer .line-footer {
      text-align: center;
    }
    .texto-loc {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .texto-loc i {
      margin-right: 10px;
      font-size: 1.5rem;
    }
    .texto-loc a {
      margin: 0;
      font-size: 1rem;
      color: black;
      text-decoration: none;
    }
    .texto-loc a:hover {
      text-decoration: underline;
    }
    section.cactus{
      flex-direction: column;
    }
    section.cactus .cactusloja{
      padding-left: 0px;
      text-align: center;
    }
    .clientes{
      margin-bottom: 10px;
      padding-bottom: 10px;
      grid-template-columns: repeat(2, 1fr);
    }

    .overlay-foto{
      display: flex;
      border: none;
      border-radius: 0px;
      align-items: center;
      padding-right: 20px;
    }

    .img-port{
      background-position: center center;
    }

    .localizacao a{
      font-size: 19px;
    }

    .localizacao{
      padding: 20px;
    }

  .sobre .txt-sobre{
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-right: 0;
  }

    section.sobre{
      display: flex;
      padding: 40px 2%;
      background-image: none;
      background-repeat: no-repeat;
      background-position: right;
      background-size: contain;
      text-align: center;
      justify-content: center;
      align-items: center;
    }

    .titleclientes{
      font-size: 80%;    
      margin: 20px 0;
      text-align: center;
    }

    .sobrepor{
      height: 100%;
      width: 100%;
    }

    .conteudo{
        font-size: 1.2rem;
    }

    .enderecos {
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      margin-top: 10px;
    }

    .endloja{
      align-items: center;
      width: 10%;
      padding: 15px;
      border-radius: 10px;
      font-size: 10px;
    }
    .kley{
        width: 10%;
        padding: 15px;
        border-radius: 10px;
        font-size: 10px;
    }

    .fotogeral img {
        height: 250px; 
        object-fit: cover;
    }

    .fotogeral img{
      height: 100%;
      margin-right: 270%;
    }

  .localidades .enderecos .endloja br {
    display: none; /* esconde as quebras só em <=1000px */
  }

  .endloja, .kley {
    width: 100%;        /* ocupar melhor a largura mobile */
    box-sizing: border-box;
  }

  .localidades .enderecos .kley{
    margin-top: 27%;
  }

  .localidades .enderecos .endloja h4{
    font-size: 25px;
  }

  .localidades .enderecos .kley h4{
    font-size: 25px;
  }

  .localidades .enderecos .endloja h5{
    font-size: 15px;
  }

  .localidades .enderecos .kley h5{
    font-size: 15px;
  }
    
  }


      @media (prefers-color-scheme: dark){
      #scroll-container section:nth-child(even) {
        background-color: #000;
      }
      #scroll-container section:nth-child(odd) {
        background-color: #000;
      }
      #scroll-container section.rodape { background-color: #000 !important;}
      #localizacao a i{
        color: #fff;
      }

    .texto-loc a {
      margin: 0;
      font-size: 1rem;
      color: #ffffff;
      text-decoration: none;
    }
    h2.titulo span {
      color: #ffffff;
    }
    .interagir:hover {
      cursor: pointer;
      color: #ffffff;
    }
    .sobre .txt-sobre h2 span{
      color: #ffffff; /* #1faa13 (verde) → preto */
    }
    .topo-do-site .txt-topo-site h1 span {
      color: #ffffff;
      text-shadow: 2px 0 #ffffff, -2px 0 #ffffff, 0 2px #ffffff, 0 -2px #ffffff,
                  1px 1px #ffffff, -1px -1px #ffffff, 1px -1px #ffffff, -1px 1px #ffffff;
    }
  }

@media(prefers-color-scheme: dark){
  .sobre .txt-sobre{
      color: #ffffff; 
        text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000, 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000
        ;
  }
      #scroll-container section:nth-child(even) {
        background-color: #000;
      }
      #scroll-container section:nth-child(odd) {
        background-color: #000;
      }
      #scroll-container section.rodape { background-color: #000 !important;}
  
    .topo-do-site .txt-topo-site h1 {
    color: #ffffff;
    font-size: 42px;
    text-shadow: 2px 0 #1faa13, -2px 0 #1faa13, 0 2px #1faa13, 0 -2px #1faa13,
                 1px 1px #1faa13, -1px -1px #1faa13, 1px -1px #1faa13, -1px 1px #1faa13;
  }

  .topo-do-site .txt-topo-site p {
    color: #ffffff;
    font-size: 42px;
    text-shadow: 2px 0 #1faa13, -2px 0 #1faa13, 0 2px #1faa13, 0 -2px #1faa13,
                 1px 1px #1faa13, -1px -1px #1faa13, 1px -1px #1faa13, -1px 1px #1faa13;
  }

  .cactusids .especialidade-box p {
    color: #ffffff;

  }
  .cactusids .especialidade-box h2 {
    color: #ffffff;

  }

  .idscactus .cactusids h2{
    color: #ffffff;
  }
   .idscactus .cactusids p{ 
     color: #ffffff;
  }
.especialidades .especialidade-box {
    color: #ffffff;
    padding: 50px;
    border-radius: 20px;
    margin-top: 50px;
    transition: 0.2s;
    text-shadow: 2px 0 #000, -2px 0 #000, 0 2px #000, 0 -2px #000,
                 1px 1px #000, -1px -1px #000, 1px -1px #000, -1px 1px #000;
                }

  }
