/* Importa a fonte Montserrat do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Aplica a fonte globalmente */
body {
  font-family: 'Montserrat', sans-serif !important;
}

/* ================= Archive Produto Styles ================= */
/* Container Geral */
.archive-produto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* Cabeçalho */
.archive-header .page-title {
  font-size: 40px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #006600;
 
}

.archive-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.archive-banner img {
  display: block;        /* Garante que o elemento se comporte como bloco */
  max-width: 100%;       /* Não ultrapassa a largura do container */
  height: auto;          /* Mantém a proporção ao redimensionar */
  max-height: 300px;     /* Define a altura máxima, ajuste conforme desejado */
  object-fit: cover;     /* Corta a imagem se ultrapassar a altura definida */
  margin: 0 auto;        /* Centraliza a imagem horizontalmente */
}


/* Layout Conteúdo */
.archive-content {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

/* Grid de Produtos */
.product-grid {
  width: 100%;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 25px !important;
  justify-content: flex-start !important;
}

#produto-list-container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 25px !important;
  justify-content: flex-start !important;
}

/* Card de Produto (Archive) */
.produto-item {
  position: relative;
  flex: 0 0 210px !important;
  box-sizing: border-box;
  width: 200px;
  border: 0px solid #118B24 !important;
  padding: 3.5px 3.5px 8px 3.5px !important;
  background: #f2f2f2 !important;
  text-align: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5) !important;
  margin-bottom: 15px;
}

.produto-item:hover {
  border-color: #064E3B !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}

.produto-item img {
  max-width: 200px !important;
  max-height: 230px !important;
  display: block !important;
  margin: 0 auto;
  border-radius: 4px 4px 0 0 !important;
}

.archive-produto-container .produto-title {
  margin: 10px 0;
  font-size: 16px;
  color: #000000;
  text-transform: uppercase;
}

.archive-produto-container .produto-price {
  color: #000000;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}

.produto-link span {
  display: inline-block;
  padding: 4px 6px;
  background-color: #118B24;
  color: #FFF;
  border: none;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.produto-link span:hover {
  background-color: #118B24;
  color: #000000;
}

/* ================= Filtro Panel Styles ================= */
.filter-sidebar-wrapper {
  text-align: center;
  width: 15%;
  position: -webkit-sticky;
  position: sticky;
  top: 20px;
}

.filter-sidebar {
  display: inline-block !important;
  width: auto !important;
  padding: 10px !important;
  text-align: center !important;
  vertical-align: top;
  border-radius: 0px 6px 0px 6px !important;
  background: #f2f2f2;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3) !important;
}

.filter-sidebar h2,
.filter-group h3 {
  text-transform: uppercase !important;
  font-weight: bold !important;
}

.filter-sidebar h2 {
  font-size: 20px !important;
  margin-bottom: 15px !important;
  color: #118B24 !important;
}

.filter-group {
  text-align: left !important;
}

.filter-group h3 {
  font-size: 16px !important;
  margin-bottom: 10px !important;
}

.filter-group label {
  display: flex !important;
  align-items: center !important;
  margin-bottom: 8px !important;
  font-size: 14px;
  text-align: left !important;
}

.filter-group label input[type="checkbox"] {
  margin-right: 8px !important;
}

#apply-filters {
  padding: 10px 20px;
  background: #118B24 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background 0.3s ease;
}

#apply-filters:hover {
  background: #064E3B !important;
}

/* ================= Quote Form Panel ================= */
.produto-quote-link {
  position: absolute;
  top: 206px;
  right: 6px;
  width: 35px;
  height: 35px;
  border-radius: 8%;
  background: #fff;
  border: 0px solid #FFF;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  transition: background 0.3s ease, color 0.3s ease;
}

.produto-quote-link:hover {
  background: #118B24;
  color: #fff;
}

.produto-quote-link .produto-quote-icon {
  font-size: 21px;
}

#quote-form-panel {
  position: fixed;
  top: 45%;
  right: 0;
  transform: translateY(-50%) translateX(100%);
  width: 400px;
  background: #fff;
  border: 2px solid #118B24;
  border-radius: 0px 8px 8px 0px;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.2);
  padding: 35px;
  z-index: 9999999;
  transition: transform 0.3s ease;
  overflow: visible;
}

#quote-form-panel.open {
  transform: translateY(-50%) translateX(0);
}

.quote-form-header {
  margin-bottom: 15px;
  text-align: center;
}

#quote-form {
  display: flex;
  flex-direction: column;
}

#quote-form input,
#quote-form textarea {
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
}

#quote-form button {
  padding: 10px;
  background: #118B24;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

#quote-form button:hover {
  background: #064E3B;
}

.quote-form-toggle {
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 433px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #118B24;
  background-color: transparent;
  padding: 0;
  border: 2px solid #118B24;
  border-radius: 8px 0px 0px 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.quote-form-toggle:hover {
  background-color: #118B24;
  color: #ffffff;
}

#selected-products {
  margin-top: 10px;
  padding: 5px;
  border: 1px dashed #118B24;
  font-size: 14px;
  color: #118B24;
}

.selected-product {
  display: block;
  margin-bottom: 5px;
  position: relative;
  padding-right: 5px;
}

.remove-selected-product {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  color: red;
  font-weight: bold;
  cursor: pointer;
}

.selected-product:hover .remove-selected-product {
  display: inline;
}

/* ================= Single Produto Styles ================= */
.single-produto-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.produto-top-section {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.produto-thumbs-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.produto-thumb-item img {
  width: 100px;
  height: 100px;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.produto-thumb-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.produto-main-image {
  flex: 0 0 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
}
.main-image-wrapper img {
  width: 600px;
  height: 600px;
  object-fit: cover;
  border: 0px solid #118B24;
  border-radius: 4px;
}

.slider-arrow {
  font-size: 32px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
}

.produto-info-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  position: relative;
  min-height: 450px;
}

.produto-info-top {
  width: 100%;
}

.produto-title-container {
  height: 60px;
  overflow: hidden;
  background: #fff;
  padding: 5px 0;
}

.single-produto-container .produto-title {
  font-size: 40px;
  color: #118B24;
  margin: 0;
  text-transform: uppercase;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 5px 0;
  width: 100%;
  word-wrap: break-word;
}

.produto-tamanho-section {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.tamanho-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tamanho-wrapper select {
  flex-shrink: 0;
  width: 150px;
}
.tamanho-wrapper .btn-add-size {
  flex-shrink: 0;
  padding: 8px 12px;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: none;
}
.tamanho-wrapper .btn-add-size:hover {
  background: #118B24;
  color: #fff;
}

.selected-size-price {
  min-height: 20px;
  font-size: 18px;
  color: #118B24;
  margin-top: 10px;
}

/* Container fixo para os tamanhos adicionados (quadrado) */
.selected-sizes-container {
  margin: 10px 0;         /* 10px de espaço acima e abaixo */
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 80%;
  box-sizing: border-box;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

/* Garantir que os elementos interativos fiquem acima */
.tamanho-wrapper,
#select-tamanho,
.btn-add-size,
.selected-size-price {
  position: relative;
  z-index: 2;
}

/* Botão "Faça seu Orçamento" */
.produto-quote-button .btn-orcamento {
  position: absolute;         /* Se você quiser que ele fique fixo no rodapé da coluna */
  bottom: 10px;               /* Distância do fundo */
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;

  padding: 12px 20px;
  background: #118B24;        /* Cor de fundo original */
  color: #fff;                /* Cor do texto */
  border: none;
  border-radius: 4px;
  font-weight: bold;          /* Se você usava fonte em negrito */
  cursor: pointer;
  transition: background 0.3s ease;
  z-index: 3;                 /* Fica acima de outros elementos da coluna */
}

.produto-quote-button .btn-orcamento:hover {
  background: #064E3B;        /* Cor de fundo ao passar o mouse */
}

/* Demais estilos do Single permanecem inalterados */
.produto-descricao-section {
  margin-top: 40px;
  text-align: center;
  padding: 20px;
  background: #f2f2f2;
  border: 0px solid #118B24;
  border-radius: 4px;
  box-shadow: 3px 3px 6px rgba(0,0,0,0.2);
}
.produto-descricao-title {
  font-size: 24px;
  margin-bottom: 15px;
  color: #006600;
  text-transform: uppercase;
}
.produto-descricao-content {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.produto-main-slider {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 0 auto;
  overflow: hidden;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: none;
}
.slide.active {
  display: block;
}
.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: none;
  justify-content: space-between;
  pointer-events: none;
}
.produto-main-slider:hover .slider-nav {
  display: flex;
}
.slider-arrow {
  pointer-events: auto;
  font-size: 32px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
}
.slider-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
}
.slider-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
}
.slider-dot.active {
  background: #118B24;
}

.produto-thumbs-column {
  flex: 0 0 100px;
  height: 600px;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.produto-thumbs-column::-webkit-scrollbar {
  display: none;
}

.feedback-message {
  background-color: #118B24;
  color: #fff;
  padding: 10px;
  margin-bottom: 10px;
  text-align: center;
  border-radius: 4px;
  font-size: 16px;
}

@media (max-width: 992px) {
  .produto-top-section {
    flex-direction: column;
    align-items: center;
  }
  .produto-thumbs-column,
  .produto-main-image,
  .produto-info-column {
    flex: 0 0 auto;
    width: 100%;
  }
  .produto-main-image {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .main-image-wrapper img {
    width: 100%;
    height: auto;
  }
}

.produto-info-column {
  min-height: 600px;
}

.selected-sizes-container {
  min-height: 330px;
}
.whatsapp-quote {
  position: fixed;
  bottom: 10px;  /* distância da parte inferior */
  right: 17px;   /* distância da direita */
  z-index: 10000;
}

.whatsapp-quote img {
  width: 66px;   /* ajuste o tamanho conforme necessário */
  height: auto;
  transition: transform 0.3s ease; /* Transição suave */
}

.whatsapp-quote:hover img {
  transform: scale(1.1); /* Aumenta 10% no hover */
}
