/* Contenedor general */
body {
  background-image: url('../images/baner/CIUDAD2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  padding: 0;
}
.header-container {
  background-color: transparent;
  box-shadow: none;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.header-inner{
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 10px;
}

/* Parte superior: logos */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
}

.logos-left, .logos-right {
  display: flex;
  align-items: center;
}

.gov-logo, .desarrollo-logo {
  height: 100px;
  margin-right: 15px;
}

.campaign-logo img {
  height: 90px;
}

/* Menú principal */
.nav-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  background-color: #fff;
  border-top: 1px solid #eee;
  border-radius: 0 0 10px 10px;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  position: absolute;
  left: 20px;
}
.hamburger-menu .bar {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
.nav-links li {
  margin: 0 12px;
}
.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
  transition: color 0.3s ease, transform 0.3s ease;
  font-size: 23px;
}
.nav-links a:hover {
  color: #7a1e32;
  transform: translateY(-2px);
}
.active-link {
  color: #7a1e32;
  border-bottom: 2px solid #7a1e32;
  padding-bottom: 4px;
}

.nav-links i {
  margin-right: 6px;
  color: #7a1e32;
}


/* Responsive */
@media (max-width: 992px) {
  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .hamburger-menu {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }
}
