/* Reset básico */
* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   font-family: 'Montserrat', sans-serif;
}

/* Navbar */
.navbar {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   background: #000;
   padding: 1rem 2rem;
   transition: all 0.3s ease;
   display: flex;
   justify-content: space-between;
   align-items: center;
   z-index: 1000;
   width: 100vw !important;
}

/* Logo */
.logo img {
   height: 70px;
}

/* Enlaces de navegación */
.nav-links {
   display: flex;
   gap: 2rem;
}

.nav-links a {
   color: white;
   text-decoration: none;
   transition: color 0.3s ease;
   font-weight: 500;
}

.nav-links a:hover {
   color: #ff0000;
}

/* Botón de hamburguesa */
.menu-toggle {
   display: none;
   flex-direction: column;
   justify-content: space-between;
   width: 30px;
   height: 21px;
   cursor: pointer;
   margin-left: 20px;
}

.menu-toggle span {
  position: static;
  width: 100%;
  height: 3px;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s ease;
  display: block;
  font-size: initial;
  text-transform: none;
  font-weight: normal;
  color: inherit;
  z-index: auto;
  top: auto;
}

.menu-toggle.active span:nth-child(1) {
   transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
   opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
   transform: translateY(-9px) rotate(-45deg);
}

/* Media queries */
@media (max-width: 768px) {
   .menu-toggle {
       display: flex;
   }

   .nav-links {
       display: none;
       position: absolute;
       top: 100%;
       left: 0;
       width: 100%;
       background: #000;
       flex-direction: column;
       padding: 1rem 0;
   }

   .nav-links.active {
       display: flex;
   }

   .nav-links a {
       padding: 0.8rem 2rem;
       text-align: center;
   }
}