.setor2 {
  background: #ffffff;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.container-setor2 {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo-setor2 {
  height: 80px;
  margin-top: 10px;
}

.search-box {
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
  background: #fbf9f9;
  border-radius: 50px;
  padding: 5px 10px;
  position: relative !important;
  overflow: visible !important;
  z-index: 10000 !important;
  border: none !important;
  box-shadow: none !important;
}

.search-box input {
  border: none !important;
  outline: none !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
  font-size: 18px;
  padding: 10px 0 6px 10px;
  color: #333;
  position: relative;
  z-index: 2;
}

.search-box input::placeholder {
  text-decoration: none;
}


.sugestoes-busca {
  display: none;
  position: absolute !important;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  max-height: 200px;
  overflow-y: auto;
  font-size: 14px;
  z-index: 10001 !important;
  border-radius: 0 0 10px 10px;
  margin-top: 4px;
}

.sugestao-item {
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  border-bottom: 1px solid #eee;
}

.sugestao-item:hover {
  background-color: #f0f0f0;
}

.botoes-setor2 {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.botoes-setor2 a {
  cursor: pointer;
}

.btn-whatsapp-setor2 {
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-whatsapp-setor2:hover {
  background-color: #1ebe5d;
}

.btn-flip {
  height: 40px;
  line-height: 40px;
  perspective: 1000px;
  position: relative;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  outline: none;
  padding: 0;
  width: auto;
  min-width: 130px;
}

.btn-flip:hover::after {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.btn-flip:hover::before {
  opacity: 0;
  transform: translateY(50%) rotateX(90deg);
}

.btn-flip::after {
  content: attr(data-back);
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  color: #323237;
  display: block;
  transition: 0.5s;
  position: absolute;
  background: #f58634;
  transform: translateY(-50%) rotateX(90deg);
  box-sizing: border-box;
}

.btn-flip::before {
  content: attr(data-front);
  top: 0;
  left: 0;
  opacity: 1;
  color: #adadaf;
  display: block;
  padding: 0 30px;
  line-height: 40px;
  transition: 0.5s;
  position: relative;
  background: #323237;
  transform: translateY(0) rotateX(0);
  box-sizing: border-box;
}

hr {
  display: none; /* esconde qualquer <hr> literal */
}

@media (max-width: 768px) {
  .setor2 {
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .container-setor2 {
    width: 100%;
    max-width: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .logo-setor2 {
    height: 45px;
    margin: 0;
  }

  .search-box {
    flex: 1;
    margin: 0;
    max-width: 130px;
    padding: 4px 8px;
    border-radius: 30px;
  }

  .search-box input {
    font-size: 12px;
    padding: 4px 5px;
  }

  .search-button {
    font-size: 14px;
    margin-left: 4px;
  }

  .botoes-setor2 {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    margin-top: 0;
  }

  .btn-flip {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1.2;
    padding: 2px 4px;
    position: relative;
  }

  .btn-flip::before,
  .btn-flip::after {
    display: none;
    content: none;
  }
}
.search-button {
  width: 32px;
  height: 32px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  border: none;
  cursor: pointer;
  padding: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f58634'><path d='M10.5 3a7.5 7.5 0 015.9 12.1l4.7 4.7a1 1 0 01-1.4 1.4l-4.7-4.7A7.5 7.5 0 1110.5 3zm0 2a5.5 5.5 0 100 11 5.5 5.5 0 000-11z'/></svg>");
}

