* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f9fbfc;
  color: #222;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #0077b6;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  z-index: 1000;
}

/* ======== LOGO ======== */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}

.logo img {
  width: 15%;  /* tamaño del logo */
  height: auto;
  border-radius: 20px; /* opcional si el logo es cuadrado */
}

.logo span {
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
}

.logo:hover {
  transform: scale(1.05);
  color: #caf0f8;
}


.logo { font-weight: 600; font-size: 1.3em; }

.nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover, .nav a.active { color: #caf0f8; }

/* HAMBURGUESA */
.menu-toggle { display: none; font-size: 1.8em; cursor: pointer; }

/* RESPONSIVE NAV */
@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .logo img {
  width: 22%;  /* tamaño del logo */
  height: auto;
  border-radius: 20px; /* opcional si el logo es cuadrado */
  }

  .nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0077b6;
    display: none;
    flex-direction: column;
    align-items: center;
  }

  .nav.show { display: flex; }

  .nav ul { flex-direction: column; width: 100%; }

  .nav ul li {
    width: 100%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.3);
  }

  .nav a { display: block; padding: 15px 0; }
}

/* RESPONSIVE NAV */
@media (max-width: 500px) {
  .menu-toggle { display: block; }

  .logo img {
  width: 22%;  /* tamaño del logo */
  height: auto;
  border-radius: 20px; /* opcional si el logo es cuadrado */
  }
}

/* BOTONES GLOBALES */
.btn-pedir {
  background: #00b4d8;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: bold;
}
.btn-pedir:hover { background: #0096c7; }

/* FOOTER GLOBO */
footer {
  background: #023e8a;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 60px;
}
