    :root {
      --naranja: #bd4c1c;
      --negro: #000;
      --blanco: #fff;
      --gris: #1e1e1e;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Helvetica Neue', Arial, sans-serif;
    }

    body {
      color: var(--blanco);
      background-color: var(--negro);
      line-height: 1.6;
    }

    /* HEADER */
    header {
      position: absolute;
      top: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.85);
      padding: 20px 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
    }

    /* LOGO */
    .logo-container {
      display: flex;
      align-items: center;
    }

    .logo {
      height: 40px;
      width: auto;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 20px;
    }

    nav ul li a {
      text-decoration: none;
      color: var(--blanco);
      font-weight: 500;
      transition: color 0.3s ease;
    }

    nav ul li a:hover {
      color: var(--naranja);
    }

    /* Menú móvil */
    .menu-toggle {
      display: none;
      font-size: 1.8rem;
      color: var(--blanco);
      cursor: pointer;
      z-index: 1100;
    }

    @media (max-width: 768px) {
      nav ul {
        display: none;
        flex-direction: column;
        gap: 20px;
        background: rgba(0,0,0,0.95);
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        padding: 60px 40px;
        text-align: center;
        justify-content: center;
        align-items: center;
      }

      nav ul.show {
        display: flex; 
      }

      .menu-toggle {
        display: block;
      }

      .menu-toggle.close {
        content: "✕";
        font-size: 2.5rem;
      }
    }


/* ===============================
   HERO PRINCIPAL
================================ */
.hero {
  position: relative;
  width: 100%;
  min-height: 600px;
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
  max-height: 800px;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.35);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content h1 {
  font-weight: 700;
  background: linear-gradient(90deg, #BD4C1C, #FF7A3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  font-size: 2rem;
  margin-bottom: 10px;
  line-height: 1.2;
  transition: all 0.2s ease;
}

.hero-content p {
  color: #BD4C1C;
  font-size: 1rem;
  margin-bottom: 15px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.15);
  line-height: 1.5;
}

.btn-ordenar {
  display: inline-block;
  background: linear-gradient(145deg, #BD4C1C, #FF7A3A);
  color: #fff;
  text-decoration: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 4px 4px 10px rgba(0,0,0,0.25),
              -2px -2px 6px rgba(255,255,255,0.15),
              inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-ordenar:hover {
  background: linear-gradient(145deg, #FF7A3A, #BD4C1C);
  transform: translateY(-2px);
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2),
              -2px -2px 6px rgba(255,255,255,0.2),
              inset 0 1px 2px rgba(255,255,255,0.3);
}

.btn-ordenar:active {
  transform: scale(0.97);
  box-shadow: inset 4px 4px 6px rgba(0,0,0,0.2),
              inset -4px -4px 6px rgba(255,255,255,0.15);
}

/* ===============================
   MODAL MENU PREVIEW
================================ */
.modal {
  position: fixed;
  inset:0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity:0;
  pointer-events:none;
  transition: opacity 0.3s ease;
  z-index:1000;
}

.modal.show {
  opacity:1;
  pointer-events:auto;
}

.modal-content {
  background:#1c1c1c;
  border-radius:20px;
  max-width:95%;
  width:800px;
  text-align:center;
  padding:35px;
  position:relative;
  box-shadow:0 10px 25px rgba(0,0,0,0.5);
  transform: translateY(30px) scale(0.95);
  opacity:0;
  transition: all 0.35s ease;
}

.modal.show .modal-content {
  transform: translateY(0) scale(1);
  opacity:1;
}

.modal-content img {
  width:100%;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.5);
}

/* Imagen preview con efecto zoom */
#menu-preview img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transform: scale(0.95);      /* escala inicial */
  opacity: 0;                  /* invisible al inicio */
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.modal.show #menu-preview img {
  transform: scale(1);         /* escala completa al abrir */
  opacity: 1;                  /* visible al abrir */
}

#menu-preview img:hover {
  transform: scale(1.05);  /* zoom extra al hover */
  transition: transform 0.3s ease;
}

.cerrar {
  position:absolute;
  top:10px;
  right:15px;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

/* Botones estilo DALE dentro modal */
.modal-actions {
  display:flex;
  justify-content:center;
  gap:15px;
  margin-top:20px;
  flex-wrap: wrap;
}

.btn-dale {
  padding:0.6rem 1.4rem;
  border-radius:50px;
  background: linear-gradient(145deg, #BD4C1C, #FF7A3A);
  color:#fff;
  font-weight:600;
  cursor:pointer;
  border:none;
  text-decoration:none;
  box-shadow:4px 4px 10px rgba(0,0,0,0.25),
              -2px -2px 6px rgba(255,255,255,0.15),
              inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.25s ease;
}

.btn-dale:hover {
  background: linear-gradient(145deg, #FF7A3A, #BD4C1C);
  transform: translateY(-2px);
  box-shadow:2px 2px 8px rgba(0,0,0,0.2),
              -2px -2px 6px rgba(255,255,255,0.2),
              inset 0 1px 2px rgba(255,255,255,0.3);
}

.btn-dale:active {
  transform: scale(0.97);
  box-shadow: inset 4px 4px 6px rgba(0,0,0,0.2),
              inset -4px -4px 6px rgba(255,255,255,0.15);
}

/* ===============================
   RESPONSIVE
================================ */
@media (min-width: 480px) {
  .hero { min-height: 650px; }
  .hero-video { max-height: 850px; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-content p { font-size: 1.2rem; }
}

@media (min-width: 768px) {
  .hero { min-height: 750px; }
  .hero-video { max-height: 900px; }
  .hero-content h1 { font-size: 3rem; }
  .hero-content p { font-size: 1.4rem; }
}

@media (min-width: 1024px) {
  .hero { min-height: 900px; }
  .hero-video { max-height: 1000px; }
  .hero-content h1 { font-size: 3.5rem; }
  .hero-content p { font-size: 1.6rem; }
}

    /* SECCIONES */
    section {
      padding: 80px 20px;
      text-align: center;
    }

    section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--naranja);
    }

    section p {
      max-width: 800px;
      margin: 0 auto 40px auto;
    }

/* ===== SECCIÓN MENÚ PREMIUM ===== */
/* ===============================
   MENÚ DALE ESTILO HERO / GLOSSY
================================ */

/* Título principal del menú */
.menu-title {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  text-align: center;

  /* Gradient tipo hero */
  background: linear-gradient(90deg, #BD4C1C, #FF7A3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
}

/* Subtítulo / descripción */
.menu-subtitle {
  font-size: 1.2rem;
  max-width: 750px;
  margin: 0 auto 50px auto;
  color: #f5f5f5;
  line-height: 1.5;
  text-align: center;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Grid de items del menú */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 10px;
}

/* Item individual del menú */
.menu-item {
  background: rgba(30, 30, 30, 0.85); /* efecto glass */
  backdrop-filter: blur(8px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  opacity: 0; /* animación fade-in */
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s ease, opacity 0.8s ease;
}

/* Imagen dentro del item */
.menu-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.4s ease;
}

.menu-item:hover img {
  transform: scale(1.05);
}

/* Contenido / texto */
.menu-texto {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Título del item con gradient */
.menu-item h3 {
  font-size: 1.6rem;
  font-weight: 700;

  /* Gradient tipo hero */
  background: linear-gradient(90deg, #BD4C1C, #FF7A3A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Descripción del item */
.menu-item p {
  font-size: 1rem;
  color: #e0e0e0;
  line-height: 1.5;
}

/* Botón WhatsApp con estilo DALE */
.menu-item .btn-whatsapp {
  display: inline-block;
  background: linear-gradient(145deg, #BD4C1C, #FF7A3A);
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;

  /* efecto glossy */
  box-shadow:
    4px 4px 10px rgba(0,0,0,0.25),
    -2px -2px 6px rgba(255,255,255,0.15),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: all 0.25s ease;
}

.menu-item .btn-whatsapp:hover {
  background: linear-gradient(145deg, #FF7A3A, #BD4C1C);
  transform: translateY(-2px);
  box-shadow:
    2px 2px 8px rgba(0,0,0,0.2),
    -2px -2px 6px rgba(255,255,255,0.2),
    inset 0 1px 2px rgba(255,255,255,0.3);
}

.menu-item .btn-whatsapp:active {
  transform: scale(0.97);
  box-shadow:
    inset 4px 4px 6px rgba(0,0,0,0.2),
    inset -4px -4px 6px rgba(255,255,255,0.15);
}


.btn-whatsapp {
  margin-top: 10px;
  padding: 10px 15px;
  background-color: var(--naranja);
  color: #fff;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1ebe57;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

.menu-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.7);
}

.menu-item:hover img {
  transform: scale(1.05);
}

/* FADE-IN + ESCALA (para JS) */
.fade-in {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .menu-title { font-size: 2.5rem; }
  .menu-subtitle { font-size: 1rem; margin-bottom: 40px; }
  .menu-item img { height: 200px; }
}

@media (max-width: 480px) {
  .menu-title { font-size: 2rem; }
  .menu-subtitle { font-size: 0.95rem; margin-bottom: 30px; }
  .menu-item img { height: 180px; }
}


    .nosotros {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 30px;
    }

    .nosotros img {
      flex: 1;
      max-width: 500px;
      border-radius: 8px;
      width: 100%;
    }

    .nosotros-texto {
      flex: 1;
      text-align: left;
    }

    .contacto-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
    }

    .contacto-item {
      flex: 1 1 300px;
      max-width: 400px;
    }

    iframe {
      width: 100%;
      height: 250px;
      border: none;
      border-radius: 8px;
    }

    footer {
      background-color: #111;
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      color: var(--blanco);
    }

.nosotros {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.nosotros img {
  flex: 1;
  max-width: 400px;
  border-radius: 8px;
  width: 100%;
}

.nosotros-texto {
  flex: 2;
  text-align: left;
}

@media (max-width: 768px) {
  .nosotros {
    flex-direction: column;
    text-align: center;
  }
  .nosotros-texto {
    text-align: center;
  }
}


    /* ----- ESTILOS CONTACTO ----- */
    .contacto-item {
      color: #fff;
      text-align: left;
      margin-top: 20px;
    }

    .contacto-item h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
      color: #bd4c1c; /* naranja quemado */
    }

    .contacto-item p {
      margin: 4px 0;
      font-size: 1rem;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 8px;
    }

    .social-icons a img {
      width: 35px;
      height: 35px;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .social-icons a img:hover {
      transform: scale(1.2);
      filter: brightness(1.3);
    }

    /* Botones flotantes modificados */
    .floating-socials {
      position: fixed;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 8px;
      z-index: 9999;
    }

    .floating-socials a img {
      width: 32px;
      height: 32px;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .floating-socials a img:hover {
      transform: scale(1.2);
      filter: brightness(1.3);
    }

    @media (max-width: 480px) {
      .floating-socials {
        top: auto;
        bottom: 15px;
        right: 10px;
        flex-direction: row;
        transform: none;
      }
      .floating-socials a img {
        width: 28px;
        height: 28px;
      }
    }

    #cuentaRegresiva {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem auto;
  flex-wrap: wrap;
}

#cuentaRegresiva .tiempo {
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 1rem 1.2rem;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  transition: transform 0.2s;
}

#cuentaRegresiva .tiempo:hover {
  transform: scale(1.05);
}

#cuentaRegresiva .tiempo span:first-child {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #bd4c1c; /* acento DALE */
}

#cuentaRegresiva .tiempo span:last-child {
  display: block;
  font-size: 0.85rem;
  color: #ffffff;
  margin-top: 0.2rem;
}

/* Responsivo */
@media (max-width: 480px) {
  #cuentaRegresiva {
    gap: 0.5rem;
  }
  #cuentaRegresiva .tiempo {
    min-width: 60px;
    padding: 0.8rem;
  }
  #cuentaRegresiva .tiempo span:first-child {
    font-size: 1.5rem;
  }
  #cuentaRegresiva .tiempo span:last-child {
    font-size: 0.75rem;
  }
}


