/* Ícone da lupa */
.soc-search-icon {
  cursor: pointer;
  font-size: 20px;
  margin-left: 15px;
  display: inline-block;
}

/* Overlay Barra */
.soc-search-overlay {
  display: none;
  position: fixed;
  top: 0; /* JS ajusta dinamicamente */
  left: 0;
  width: 100%;
  height: 140px;
  background: #1E4FA8;
  z-index: 9999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  text-align: center;
  padding-top: 20px;
}

.soc-overlay-text {
  color: #fff;
  font-size: 18px;
  margin-bottom: 15px;
}

.soc-overlay-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.soc-search-form {
  width: 80%;
  max-width: 700px;
  display: flex;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}

.soc-search-input {
  flex: 1;
  padding: 15px;
  font-size: 16px;
  border: none;
  outline: none;
}

.soc-search-submit {
  background: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
}

.soc-close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}
