/* whatsApp Flutuante */

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* 🔥 RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🔧 PREVENÇÃO GLOBAL DE ESTOURO */
html, body {
  overflow-x: hidden;
  width: 100%;
}

/* 🔷 CORPO GERAL */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
}

/* 🔷 CONTAINERS GERAIS */
.centralizado,
.container-setor2,
.menu,
.conteudo-setor8,
.setor11-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* 🔷 TOPO FIXO – Setores 1, 2 e 3 */
.topo-fixo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: transparent;
}

.topo-fixo > div {
  width: 100%;
  display: block;
}

/* 🔸 ÁREA CENTRAL – Setores 5 a 10 */
.conteudo-central {
  padding-top: 180px;
  padding-bottom: 10px;
  width: 100%;
  display: block;
}

/* 🔻 RODAPÉ – Setor 11 */
footer#setor11 {
  padding: 25px 20px;
  text-align: center;
  font-size: 14px;
}

/* 🔧 RESPONSIVIDADE */
@media (max-width: 768px) {
  .conteudo-central {
    padding-top: 160px;
    padding-left: 10px;
    padding-right: 10px;
  }

  footer#setor11 {
    padding: 20px 10px;
  }

  #setor5,
  #setor6,
  #setor7,
  #setor9,
  #setor10 {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
}

/* 🔥 Reset página interna */
.pagina-centralizada {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.8;
  color: #333;
  display: block;
  position: relative;
  clear: both;
  z-index: 1;
}

.pagina-centralizada h1 {
  color: #000;
  font-size: 32px;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.3;
  width: 100%;
  display: block;
  position: relative;
}

.pagina-centralizada h2 {
  color: #000;
  font-size: 24px;
  margin-bottom: 15px;
  margin-top: 25px;
  font-weight: 700;
  line-height: 1.3;
  width: 100%;
  display: block;
}

.pagina-centralizada p {
  margin-bottom: 15px;
  text-align: justify;
  width: 100%;
  display: block;
  position: relative;
}

.pagina-centralizada ul {
  margin: 10px 0 15px 20px;
  padding: 0;
  list-style: disc;
}

.pagina-centralizada li {
  margin-bottom: 8px;
}

.pagina-centralizada strong {
  font-weight: 700;
}

.pagina-centralizada a {
  color: #f58634;
  text-decoration: underline;
}

.pagina-centralizada a:hover {
  color: #c45300;
}

/* 🔷 PÁGINA PRODUTO */

.titulo-produto {
  font-size: 22px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.destaque-laranja {
  color: #f58634;
}

.linha-divisoria {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}

.linha {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.coluna-2-5 {
  flex: 0 0 38%;
  max-width: 80%;
  box-sizing: border-box;
}

.coluna-3-5 {
  flex: 0 0 60%;
  max-width: 60%;
  box-sizing: border-box;
}

.imagem-principal img {
  width: var(--largura-imagem-principal, 80%);
  height: var(--altura-imagem-principal, 330px);
  object-fit: cover;
  border: none;
  padding: 4px;
  box-shadow: none;
  display: block;
  max-width: 100%;
}

/* MODELOS – ÁREA 2 */
.modelos-scroll {
  height: var(--altura-imagem-principal, 330px);
  overflow-y: auto;
  padding: 10px;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  box-sizing: border-box;
  align-content: flex-start;
  border: 1px solid #ebe9e9; /* ou qualquer cor que deseje */
  border-radius: 4px;        /* opcional: para deixar com cantos arredondados */
}

.modelo {
  width: 150px;
  text-align: center;
  font-size: 12px;
  color: #f58634;
}

.modelo img {
  width: 100%;
  height: auto;
  border: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.modelo img:hover {
  transform: scale(1.1);
  z-index: 10;
}

.modelo span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
}

/* ÁREA 3 – Detalhes */
.detalhes-produto p {
  font-size: 14px;
  margin-bottom: 10px;
  color: #333;
}

/* ÁREA 4 – Formulário */
.formulario {
  font-size: 14px;
}

.formulario label {
  display: block;
  margin: 8px 0 2px;
  color: #333;
}

.formulario input,
.formulario textarea {
  width: 100%;
  padding: 6px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  border: 1px solid #f68121;
  border-radius: 4px;
  box-sizing: border-box;
}

.formulario textarea {
  height: 80px;
  resize: vertical;
}

.botoes-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.btn-enviar,
.btn-limpar {
  padding: 8px 16px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.btn-enviar {
  background-color: #f58634;
  color: white;
}

.btn-limpar {
  background-color: #ccc;
  color: #333;
}

.linha-dois-campos {
  display: flex;
  gap: 10px;
}

.campo-metade {
  flex: 1;
}

.campo-metade label,
.campo-metade input {
  width: 100%;
  display: block;
}
/* 🔷 MODAL DE IMAGEM */
.image-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.image-modal-overlay.active {
  display: flex;
}

.image-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.image-modal-img {
  max-width: 100%;
  max-height: 100%;
}

.image-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  text-shadow: 0 0 5px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.image-modal-close:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

/* 🔷 DESTAQUE DE MODELO SELECIONADO */
.modelo.selecionado img {
  border: 3px solid #f58634;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}
/* Ocultar setores 1, 2 e 3 quando modal aberto */
body.modal-aberto #setor1,
body.modal-aberto #setor2,
body.modal-aberto #setor3 {
  display: none;
}


.botoes-form button {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  min-width: 100px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border 0.3s;
  border: none;
}


.botoes-form .btn-enviar {
  background-color: #f58634;
  color: #fff;
}

.botoes-form .btn-enviar:hover {
  background-color: #d66a20;
}

.botoes-form .btn-limpar {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
}

.botoes-form .btn-limpar:hover {
  background-color: #e0e0e0;
  border-color: #999;
}
.botao-form {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  padding: 10px 20px;
  min-width: 100px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background 0.3s, color 0.3s, border 0.3s;
}

.botao-enviar {
  background-color: #f58634;
  color: #fff;
}

.botao-enviar:hover {
  background-color: #d66a20;
}

.botao-limpar {
  background-color: #f0f0f0;
  color: #333;
  border: 1px solid #ccc;
}

.botao-limpar:hover {
  background-color: #e0e0e0;
  border-color: #999;
}

/* CAMPO BUSCA NO SETOR 2 */
.sugestoes-busca {
  border: 1px solid #ccc;
  background: #fff;
  position: absolute;
  z-index: 1000;
  width: 200px; /* ajuste conforme necessário */
  max-height: 150px;
  overflow-y: auto;
}

.sugestao-item {
  padding: 5px 10px;
  cursor: pointer;
}

.sugestao-item:hover {
  background: #eee;
}


.search-box input::placeholder {
  text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-style: none !important;
}

/* PÁGINA SOBRE */
.galeria-6, .galeria-7, .galeria-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}

.galeria-6 a,
.galeria-7 a,
.galeria-4 a {
  flex: 1 0 calc(100% / 6);
  max-width: calc(100% / 6);
}

.galeria-7 a {
  flex: 1 0 calc(100% / 7);
  max-width: calc(100% / 7);
}

.galeria-4 a {
  flex: 1 0 calc(100% / 4);
  max-width: calc(100% / 4);
}

.galeria-6 a img,
.galeria-7 a img,
.galeria-4 a img {
  width: 100%;
  height: auto;
  display: block;
}

/* TABELA DE PREÇO DENTRO DOS CALENDS */

.tabela-preco-ajustada {
  width: 100%;
  margin: 20px 0;
  text-align: left;
  margin-left: 0; /* crucial para encostar à esquerda */
}

.tabela-preco-ajustada table {
  width: 100%;
  border-collapse: collapse;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  margin: 0;
}
.tabela-preco-ajustada th,
.tabela-preco-ajustada td {
  border: 1px solid #ccc;
  padding: 4px;
}

/* EFEITO PULSE SETOR 5 */

@keyframes pulse-suave {
  0%, 100% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.10);
  }
}

.pulse-suave {
  display: inline-block !important;
  animation: pulse-suave 2.5s ease-in-out infinite !important;
  will-change: transform;
}

