body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

.navbar {
  background: white;
  text-align: center;
  padding: 10px;
}
.logo {
  height: 50px;
}

.slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.slides {
  display: flex;
  animation: slide 12s infinite;
}
.slide {
  width: 100%;
  flex-shrink: 0;
}

@keyframes slide {
  0%, 33% { transform: translateX(0); }
  34%, 66% { transform: translateX(-100%); }
  67%, 100% { transform: translateX(-200%); }
}

.menu-section {
  background: #d32f2f;
  text-align: center;
  padding: 20px;
}
.menu-btn {
  background: white;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}

.maps {
  margin-top: 20px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  font-size: 28px;
  padding: 12px 16px;
  border-radius: 50%;
  text-decoration: none;
}

footer {
  background: black;
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}
.popup-content {
  background: white;
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  width: 80%;
  max-width: 300px;
}
.close-btn {
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
  font-size: 20px;
}

.consulta-puntos {
  text-align: center;
  padding: 30px 20px;
  background: #f7f7f7;
  margin-top: 20px;
}
.consulta-puntos input {
  padding: 10px;
  margin: 10px;
  width: 80%;
  max-width: 300px;
  font-size: 16px;
}
.consulta-puntos button {
  background: #d32f2f;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
}
#resultado-puntos {
  margin-top: 10px;
  font-weight: bold;
}

.popup-close-btn {
  margin-top: 15px;
  background: #d32f2f;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

.popup-close-btn:hover {
  background: #b71c1c;
}


