/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* HEADER */
.header {
  background: #fff;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 80px;
}

/* MENÚ */
.nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav ul li a {
  text-decoration: none;
  color: #007BFF;
  font-weight: bold;
}

.nav ul li a:hover {
  color: #0056b3;
}

/* BOTÓN HAMBURGUESA */
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #007BFF;
}

/* FOOTER */
.footer {
  background-color: #f4f4f4;
  padding: 30px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.footer a {
  color: #007BFF;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none !important;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #fff;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .nav.show {
    display: block !important;
  }

  .nav ul {
    flex-direction: column;
    gap: 10px;
  }
}

