/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: #ffffff;
  padding: 18px 0;
  border-bottom: 1px solid #e5e5e5;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.top-logo img {
  height: 90px;
  width: auto;
}

/* BUSCADOR */
.top-search {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid #d0d0d0;
  border-radius: 6px;
  overflow: hidden;
}

.top-search input {
  width: 100%;
  padding: 8px 12px;
  border: none;
  outline: none;
  font-size: 16px;
}

.top-search button {
  background: #fff;
  border: none;
  padding: 0 14px;
  cursor: pointer;
  font-size: 18px;
}

.top-search button:hover {
  background: #e9e9e9;
}

/* ===========================
   NAV MENU INFERIOR
=========================== */
.nav-menu {
  background: #1c8a9c;   /* color teal */
  width: 100%;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-menu li a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  transition: background 0.25s ease, color 0.25s ease;
}

/* BOTÓN ACTIVO ROJO */
.nav-menu li a.active {
  background: #c62843;
  color: #fff;
}

/* HOVER VERDE (como pediste) */
.nav-menu li a:hover {
  background: #1FA35C !important;  /* verde */
  color: #fff;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 992px) {
  .top-bar-content {
    flex-direction: column;
    align-items: center;
  }

  .top-logo img {
    height: 70px;
  }

  .nav-menu ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}