 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9c16a;
  
  background-size: cover;
  color: black;
}

header {
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

 .menu-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.categoria-box {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  padding: 20px;
  border-radius: 15px;
  width: 300px;
  backdrop-filter: blur(5px);
  color: black;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.categoria-box h3 {
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 20px;
  background-color: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 10px;
}

.sub-lista {
  list-style: none;
  padding-left: 10px;
}

.sub-lista li {
  margin: 8px 0;
}

.sub-lista a {
  color: black;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s;
}

.sub-lista a:hover {
  background: rgba(255,255,255,0.3);
}
.menu-categorias {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.categoria-box {
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid white;
  padding: 20px;
  border-radius: 15px;
  width: 300px;
  backdrop-filter: blur(5px);
  color: black;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.categoria-box h3 {
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 20px;
  background-color: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 10px;
}

.sub-lista {
  list-style: none;
  padding-left: 10px;
}

.sub-lista li {
  margin: 8px 0;
}

.sub-lista a {
  color: black;
  text-decoration: none;
  background: rgba(255,255,255,0.15);
  padding: 8px 12px;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s;
}

.sub-lista a:hover {
  background: rgba(255,255,255,0.3);
}

.platillo-box {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
  background-color: rgba(255,255,255,0.15);
  border: 2px solid white;
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  color: black;
  transition: all 0.3s ease;
}

.platillo-box img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.platillo-box p {
  font-size: 18px;
  line-height: 1.6;
}

.cerrar-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  font-size: 20px;
  font-weight: bold;
  color: black;
  padding: 5px 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cerrar-btn:hover {
  background: rgba(255, 255, 255, 0.6);
}
