/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Century Gothic', sans-serif;
  color: #333;
  background-color: #fff;
}

a {
  text-decoration: none;
}
/* POPUP BUSCA */
.popup-busca {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup-conteudo {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 90%;
  max-width: 400px;
  font-family: 'Century Gothic', sans-serif;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.popup-conteudo h2 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

.popup-conteudo a {
  color: #FF6600;
  font-weight: bold;
  text-decoration: none;
}

.popup-conteudo a:hover {
  text-decoration: underline;
}

.popup-fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  color: #333;
  cursor: pointer;
}

.botao-ir {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #FF6600;
  border: none;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.botao-ir:hover {
  background-color: #cc5200;
}

#popup-link {
  max-height: 300px; /* ajuste conforme o design */
  overflow-y: auto;
  padding-right: 10px; /* espaço para a barra */
}

/* CONTAINER CENTRALIZADO */
.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 20px;
}

/* MENU SUPERIOR */
.menu-topo {
  background-color: #000;
}
.menu-conteudo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
}
.logo {
  height: 50px;
}
.menu-navegacao {
  display: flex;
  align-items: center;
  gap: 25px;
}
.menu-navegacao a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  transition: color 0.3s;
}
.menu-navegacao a:hover {
  color: #FF6600;
}

/* BARRA DE BUSCA MODERNA */
.barra-busca {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 30px;
  margin-left: 15px;
  transition: border 0.3s, background 0.3s;
}
.barra-busca:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FF6600;
}
.barra-busca input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14px;
  padding-left: 8px;
  width: 100px;
}
.icone-lupa {
  color: #fff;
  font-size: 16px;
}

/* BOTÃO HAMBÚRGUER */
.menu-hamburguer {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-hamburguer div {
  width: 25px;
  height: 3px;
  background-color: #fff;
}

/* MENU DROPDOWN (MOBILE) */
.menu-mobile {
  display: none;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
.menu-mobile a {
  font-size: 14px;
  text-decoration: none;
  color: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #333;
}

/* ÍCONES SVG */

.item-produto img {
  width: 80px;
  height: 80px;
  filter: brightness(0) invert(1); /* transforma preto em branco */
  transition: filter 0.3s ease;
}

.item-produto:hover img {
  filter: brightness(0) saturate(100%) invert(53%) sepia(92%) saturate(3167%) hue-rotate(0deg) brightness(100%) contrast(102%);
  /* transforma preto em laranja (FF6600) */
}
.item-produto:hover span {
  color: #FF6600;
}



/* BARRA DE PRODUTOS */
.barra-produtos {
  background-color: #000;
  border-bottom: none;
}
.produtos-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.botao-seta {
  width: 36px;
  height: 36px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  font-size: 20px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}
.botao-seta:hover {
  border-color: #FF6600;
  color: #FF6600;
  background-color: rgba(255, 102, 0, 0.1);
}
.produtos-scroll {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  gap: 30px;
  padding: 10px 0;
}
.produtos-scroll::-webkit-scrollbar {
  display: none;
}
.item-produto {
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border 0.3s ease, color 0.3s ease;
  padding: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item-produto a {
  text-decoration: none;
  color: inherit;
}
.item-produto span {
  text-decoration: none;
  color: #fff;
  font-size: 12px;
}
.item-produto:hover {
  border: 1px solid #FF6600;
}

/* BANNER */
.carousel {
  position: relative;
  width: 100%;
  max-width: 1350px;
  margin: 30px auto 0 auto; / /* espaço entre o menu e o carrossel */
  overflow: hidden;
  border-radius: 20px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  max-width: 1350px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
  display: none;
  width: 100%;
}
.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: white;
  font-size: 40px;
  cursor: pointer;
  padding: 0 20px;
  z-index: 10;
}
.carousel-arrow.prev {
  left: 0;
}
.carousel-arrow.next {
  right: 0;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.dot {
  width: 10px;
  height: 10px;
  background-color: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}
.dot.active {
  opacity: 1;
}


/* RODAPÉ */
.rodape {
  background-color: #000000;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 15px;
  margin-top: 60px;
}

.rodape-conteudo {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.coluna {
  flex: 1;
  min-width: 260px;
}

.coluna h4 {
  margin-bottom: 12px;
  font-size: 18px;
  color: #FF6600;
}

.coluna p {
  margin-bottom: 10px;
  line-height: 1.5;
}

.coluna button {
  display: block;
  width: 60%;
  margin: 8px 0;
  background-color: #FF6600;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.coluna button:hover {
  background-color: #e25400;
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.rodape-base {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #ccc;
}

/* Ícones Redes Sociais */
.icones-redes {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.icone-social {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 22px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icone-social:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.instagram { background-color: #E4405F; }
.facebook  { background-color: #1877F2; }
.linkedin  { background-color: #0077B5; }
.blog      { background-color: #ff6600; }
.youtube   { background-color: #FF0000; }

.menu-institucional {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-institucional li {
  margin-bottom: 10px;
}

.menu-institucional a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
}

.menu-institucional a:hover {
  color: #FF6600;
}

/* Responsivo */
@media (max-width: 768px) {
  .rodape-conteudo {
    flex-direction: column;
    gap: 30px;
  }
  .rodape .coluna {
    min-width: 100%;
  }
}


/* RESPONSIVO */
@media (max-width: 768px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu-navegacao {
    display: none;
  }

  .menu-hamburguer {
    display: flex;
  }

  .menu-topo.expande .menu-mobile {
    display: flex;
  }

  .botao-seta {
    display: flex;
  }

  .produtos-scroll {
    gap: 20px;
    padding: 10px;
  }

  .item-produto {
    min-width: 70px;
  }
}
