body {
  margin: 0;
  font-family: sans-serif;
  background: #0f172a;
  color: white;
}

/* NAV */
.nav {
  padding: 15px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  text-align: center;
}

/* HERO */
/* HERO CON IMAGEN */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1540189549336-e6e99c3679fe?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OSCURECER IMAGEN (CLAVE) */
.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* hace que el texto se lea */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENIDO */
.hero-content {
  text-align: center;
  color: white;
  max-width: 700px;
}

/* BADGES */
.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  margin: 5px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  font-size: 14px;
}

/* TITULO */
.hero h1 {
  font-size: 3rem;
  margin: 20px 0;
}

/* BOTONES */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  margin: 5px;
  display: inline-block;
}

.primary {
  background: #22c55e;
  color: white;
}

.secondary {
  border: 1px solid white;
  color: white;
}

/* ABOUT */
.about {
  padding: 60px 20px;
  text-align: center;
  background: #111827;
}

/* MENU */
.menu-app {
  padding: 60px 20px;
  text-align: center;
}

.filters button {
  background: #1e293b;
  border: none;
  padding: 10px 15px;
  margin: 5px;
  border-radius: 20px;
  color: white;
  cursor: pointer;
}

.filters button:hover {
  background: #22c55e;
}

/* GRID */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* CARD */
.item {
  width: 280px;
  background: #1e293b;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.item:hover {
  transform: scale(1.05);
}

.item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.info {
  padding: 15px;
  text-align: left;
}

.info span {
  color: #22c55e;
  font-weight: bold;
}

/* CONTACT */
.contact {
  padding: 60px;
  text-align: center;
  background: #111827;
}

/* CTA */
.cta {
  padding: 60px;
  text-align: center;
  background: linear-gradient(135deg,#22c55e,#14532d);
}

/* FOOTER */
footer {
  padding: 20px;
  text-align: center;
  background: #020617;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  padding: 15px;
  border-radius: 50%;
  font-size: 22px;
  text-decoration: none;
  color: white;
}

/* HIDE */
.hide {
  display: none;
}

.contact-pro {
  padding: 80px 20px;
  text-align: center;
  background: #0f172a;
}

.subtitle {
  opacity: 0.7;
  margin-bottom: 40px;
}

/* GRID */
.contact-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARD INFO */
.contact-card {
  background: #1e293b;
  padding: 25px;
  border-radius: 15px;
  width: 300px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.contact-card h3 {
  margin-top: 15px;
  color: #22c55e;
}

/* WHATSAPP BUTTON */
.btn-whatsapp {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 15px;
  background: #25d366;
  color: white;
  border-radius: 25px;
  text-decoration: none;
}

/* FORM */
.contact-form {
  background: #1e293b;
  padding: 25px;
  border-radius: 15px;
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  border-radius: 8px;
  border: none;
  outline: none;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form button {
  padding: 10px;
  background: #22c55e;
  border: none;
  color: white;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #16a34a;
}

.reserve-section {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1555992336-03a23c7b20ee?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* OVERLAY OSCURO */
.reserve-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENIDO */
.reserve-content {
  text-align: center;
  color: white;
  width: 90%;
  max-width: 500px;
}

/* TITULO */
.reserve-content h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* FORM */
.reserve-form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.reserve-form input,
.reserve-form select {
  padding: 12px;
  border: none;
  border-radius: 8px;
  outline: none;
}

/* BOTÓN */
.reserve-form button {
  padding: 12px;
  border: none;
  background: #22c55e;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}

.reserve-form button:hover {
  background: #16a34a;
}

/* WHATSAPP */
.wa-reserve {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 15px;
  background: #25d366;
  color: white;
  border-radius: 25px;
  text-decoration: none;
}

.cta-order {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/fondo-vegano.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-order h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.cta-order p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Botones base */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* Botón principal */
.btn.primary {
  background: #4CAF50;
  color: #fff;
}

.btn.primary:hover {
  background: #43a047;
}

/* Botón llamada */
.btn.call {
  background: #2196f3;
  color: #fff;
}

.btn.call:hover {
  background: #1e88e5;
}

/* Botón WhatsApp */
.btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.btn.whatsapp:hover {
  background: #1ebe5d;
}.cta-order {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/fondo-vegano.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-order h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.cta-order p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Botones base */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* Botón principal */
.btn.primary {
  background: #4CAF50;
  color: #fff;
}

.btn.primary:hover {
  background: #43a047;
}

/* Botón llamada */
.btn.call {
  background: #2196f3;
  color: #fff;
}

.btn.call:hover {
  background: #1e88e5;
}

/* Botón WhatsApp */
.btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.btn.whatsapp:hover {
  background: #1ebe5d;
}
.cta-order {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('images/fondo-vegano.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.cta-order h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.cta-order p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Botones base */
.btn {
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

/* Botón principal */
.btn.primary {
  background: #4CAF50;
  color: #fff;
}

.btn.primary:hover {
  background: #43a047;
}

/* Botón llamada */
.btn.call {
  background: #2196f3;
  color: #fff;
}

.btn.call:hover {
  background: #1e88e5;
}

/* Botón WhatsApp */
.btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.btn.whatsapp:hover {
  background: #1ebe5d;
}

/*footer legal*/
.footer {
  background: #0d0d0d;
  color: #fff;
  text-align: center;
  padding: 60px 20px 30px;
}

.footer-brand h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.footer-brand p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 25px;
}

/* Enlaces */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #4CAF50;
}

/* Botones */
.footer-contact {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
}

.btn.call {
  background: #2196f3;
  color: #fff;
}

.btn.whatsapp {
  background: #25D366;
  color: #fff;
}

/* footer Legal */
.footer-legal {
  margin-bottom: 15px;
}

.footer-legal a {
  margin: 0 10px;
  font-size: 0.8rem;
  color: #888;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #4CAF50;
}

/* Copy */
.footer-copy {
  font-size: 0.75rem;
  color: #666;
}

/*boton volver al inicio*/
.back-home {
  display: inline-block;
  margin-bottom: 25px;
  padding: 10px 18px;
  background: #4CAF50;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: 0.3s;
}

.back-home:hover {
  background: #43a047;
}

/*header*/
.legal-header {
  background: #111;
  padding: 15px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: auto;
}

.logo a {
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  text-decoration: none;
}

nav a {
  color: #ccc;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

nav a:hover {
  color: #4CAF50;
}

/* Botón PRO */
.btn-back {
  background: #4CAF50;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: 0.3s;
}

.btn-back:hover {
  background: #43a047;
}

 
/* MENU DESKTOP */

.menu{
  display:flex;
  gap:25px;
  list-style:none;
  align-items:center;
}

/* HAMBURGUESA */

.hamburger{
  width:35px;
  height:30px;
  display:none;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
  z-index:2000;
  position:relative;
}

.hamburger span{
  width:100%;
  height:4px;
  background:white;
  border-radius:10px;
  transition:0.3s;
  position:absolute;
  left:0;
}

.hamburger span:nth-child(1){
  top:0;
}

.hamburger span:nth-child(2){
  top:13px;
}

.hamburger span:nth-child(3){
  top:26px;
}

/* X */

.hamburger.active span:nth-child(1){
  top:13px;
  transform:rotate(45deg);
}

.hamburger.active span:nth-child(2){
  opacity:0;
}

.hamburger.active span:nth-child(3){
  top:13px;
  transform:rotate(-45deg);
}

/* MOBILE */

@media(max-width:768px){

  .hamburger{
    display:flex;
  }

 .menu{
  position: fixed;
  top: 40px;
  right: -100%;
  width: 260px;
  height: 20vh;
  background: #111;
  flex-direction: column;
  padding: 25px;
  gap: 20px;
  transition: 0.4s;
  z-index: 1500;
  border-radius: 0 0 0 20px;
}

  .menu.active{
    right:0;
  }

}

  

  
