/* === ESTILOS CABECERA === */
.header-top {
  background: #0496d1;
  text-align: center;
  padding: 10px 0;
  justify-content: center;
}

.header-top .menu {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.header-top .menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  font-size: 15px;
}

.header-top .menu span {
  color: #ffffff;
}

/* === BARRA DE BUSQUEDA === */
.search-bar {
  background: #03a2bd;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 15px 0;
}

.search-bar form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.search-bar label {
  color: #ffcc00;
  font-weight: bold;
  font-size: 16px;
}

.search-bar input[type="text"],
.search-bar select {
  padding: 8px 10px;
  border: none;
  border-radius: 3px;
  min-width: 200px;
  font-size: 14px;
}

.search-bar .btn-buscar {
  background: #f4f4f4;
  color: #333;
  border: none;
  padding: 8px 15px;
  border-radius: 3px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
}

.search-bar .btn-buscar:hover {
  background: #ddd;
}

/* === BOTÓN REGISTRA TU EMPRESA === */
.btn-empresa {
  border: 2px solid #ffcc00;
  color: #fff;
  font-weight: bold;
  padding: 8px 15px;
  border-radius: 3px;
  text-decoration: none;
  transition: 0.2s;
}

.btn-empresa:hover {
  background: #ffcc00;
  color: #d10000;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .search-bar {
    flex-direction: column;
    width: 100%;
    max-width: 1500px;
  }

  .search-bar form {
    flex-direction: column;
    gap: 10px;
  }

  .search-bar input,
  .search-bar select {
    width: 100%;
    max-width: 300px;
  }
  
  .header-top{
      display:none;
  }
}