/* === NAV === */
nav {
  width: 100%;
  background: #1e1e2f;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 70px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #ffffff;
  font-weight: bold;
  position: relative;
  padding: 5px 0;
  transition: color 0.3s ease-in-out;
  text-decoration: none; 
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  background-color: #f39c12;
  transition: width 0.3s ease-in-out;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: #f39c12;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #ffffff;
}

/* === HEADER ESTÁTICO === */
header#inicio {
  background-color: #121212;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 2rem;
}

.header-content h1 {
  font-size: 3rem;
  color: #f39c12;
  margin-bottom: 1rem;
}

.header-content p {
  color: #bbbbbb;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  padding: 15px 30px;
  background: #f39c12;
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e67e22;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #1e1e2f;
    position: absolute;
    top: 70px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .logo img {
    height: 50px;
  }

  .header-content h1 {
    font-size: 2rem;
  }
}
