
    /* ─────────────────────────────────────────────
       VARIABLES GLOBALES – colores, tipografía
    ───────────────────────────────────────────── */
    :root {
      --pink:       #e8185a;
      --pink-light: #ff4d82;
      --dark:       #1a1a1a;
      --mid:        #3a3a3a;
      --gray:       #888;
      --border:     #e8e8e8;
      --bg:         #f8f7f5;
      --white:      #ffffff;
      --open-bg:    #e6f9ec;
      --open-text:  #1a8a3a;
      --closed-bg:  #fdecea;
      --closed-text:#c0392b;
      --radius:     14px;
      --shadow:     0 4px 24px rgba(0,0,0,.08);
    }

    /* ─────────────────────────────────────────────
       RESET + BASE
    ───────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--bg);
      color: var(--dark);
      font-size: 15px;
      line-height: 1.6;
    }
    img { display: block; width: 100%; object-fit: cover; }
    a { color: inherit; text-decoration: none; }

    /* ─────────────────────────────────────────────
       HERO / CARRUSEL
    ───────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 300px;
      background: linear-gradient(135deg, #1a1a1a 0%, #2d0d1a 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 48px 20px 56px;
      overflow: hidden;
      text-align: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(232,24,90,.35) 0%, transparent 60%);
      z-index: 2;
      pointer-events: none;
    }

    /* Slides de fondo */
    .hero-carousel {
      position: absolute;
      inset: 0;
      z-index: 0;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease;
    }
    .hero-slide.active { opacity: 1; }

    /* Overlay oscuro para legibilidad */
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(15, 5, 10, .60);
      z-index: 1;
    }

    /* Todos los elementos de contenido sobre el overlay */
    .hero-logo,
    .hero h1,
    .hero p,
    .search-wrap,
    .hero-slide-cta,
    .hero-dots {
      position: relative;
      z-index: 3;
    }

    /* Botón CTA del slide activo */
    .hero-slide-cta {
      margin-top: 16px;
      min-height: 40px;
    }
    .hero-cta-btn {
      display: none;
      background: transparent;
      border: 1.5px solid rgba(255,255,255,.55);
      color: var(--white);
      padding: 9px 20px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      transition: background .2s, border-color .2s;
    }
    .hero-cta-btn.active { display: inline-block; }
    .hero-cta-btn:hover {
      background: var(--pink);
      border-color: var(--pink);
    }

    /* Indicadores (dots) */
    .hero-dots {
      display: flex;
      gap: 7px;
      margin-top: 20px;
    }
    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,.35);
      cursor: pointer;
      padding: 0;
      transition: background .3s, transform .3s;
    }
    .hero-dot.active {
      background: var(--pink-light);
      transform: scale(1.3);
    }
    .hero-logo {
      font-family: 'Syne', sans-serif;
      font-size: 28px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -0.5px;
      position: relative;
      z-index: 1;
      margin-bottom: 8px;
    }
    .hero-logo span { color: var(--pink-light); }
    .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(22px, 6vw, 38px);
      font-weight: 800;
      color: var(--white);
      position: relative;
      z-index: 1;
      max-width: 520px;
      line-height: 1.2;
      margin-bottom: 6px;
    }
    .hero p {
      color: rgba(255,255,255,.7);
      font-size: 15px;
      position: relative;
      z-index: 1;
      margin-bottom: 28px;
    }

    /* ─────────────────────────────────────────────
       SEARCH BAR
    ───────────────────────────────────────────── */
    .search-wrap {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 480px;
      display: flex;
      gap: 0;
      border-radius: 50px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,.35);
    }
    .search-wrap input {
      flex: 1;
      border: none;
      padding: 14px 20px;
      font-size: 14px;
      font-family: 'DM Sans', sans-serif;
      outline: none;
      background: var(--white);
      color: var(--dark);
    }
    .search-wrap input::placeholder { color: var(--gray); }
    .search-wrap button {
      background: var(--pink);
      border: none;
      color: var(--white);
      padding: 14px 22px;
      font-size: 13px;
      font-weight: 600;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      white-space: nowrap;
      transition: background .2s;
    }
    .search-wrap button:hover { background: var(--pink-light); }

    /* ─────────────────────────────────────────────
       FILTROS + ETIQUETAS
    ───────────────────────────────────────────── */
    .filters-section {
      padding: 20px 16px 8px;
      max-width: 900px;
      margin: 0 auto;
    }
    .filters-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      align-items: center;
    }
    .filter-label {
      font-size: 12px;
      font-weight: 600;
      color: var(--gray);
      text-transform: uppercase;
      letter-spacing: .5px;
      margin-right: 4px;
      white-space: nowrap;
    }

    /* Botones de filtro de servicio (Take Away / Delivery / Reserva) */
    .filter-btn {
      border: 1.5px solid var(--border);
      background: var(--white);
      color: var(--mid);
      padding: 6px 14px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
    }
    .filter-btn:hover,
    .filter-btn.active {
      background: var(--pink);
      border-color: var(--pink);
      color: var(--white);
    }

    /* Etiquetas de categoría (pizza, sushi, etc.) */
    .tag-btn {
      border: 1.5px solid var(--border);
      background: var(--white);
      color: var(--mid);
      padding: 5px 12px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 500;
      font-family: 'DM Sans', sans-serif;
      cursor: pointer;
      transition: all .2s;
      white-space: nowrap;
    }
    .tag-btn:hover,
    .tag-btn.active {
      background: var(--dark);
      border-color: var(--dark);
      color: var(--white);
    }

    .tags-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      padding: 10px 16px 0;
      max-width: 900px;
      margin: 0 auto;
    }

    /* ─────────────────────────────────────────────
       GRILLA DE LOCALES
    ───────────────────────────────────────────── */
    .section-title {
      font-family: 'Syne', sans-serif;
      font-size: 22px;
      font-weight: 800;
      padding: 28px 16px 4px;
      max-width: 900px;
      margin: 0 auto;
    }
    .section-sub {
      color: var(--gray);
      font-size: 13px;
      padding: 0 16px 16px;
      max-width: 900px;
      margin: 0 auto;
    }

    .restaurants-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 16px;
      padding: 0 16px 32px;
      max-width: 900px;
      margin: 0 auto;
    }

    /* ─────────────────────────────────────────────
       TARJETA DE LOCAL
    ───────────────────────────────────────────── */
    .card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform .2s, box-shadow .2s;
      display: flex;
      flex-direction: column;
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 40px rgba(0,0,0,.13);
    }

    /* Imagen de la tarjeta */
    .card-img {
      position: relative;
      height: 160px;
      background: #ddd;
      overflow: hidden;
    }
    .card-img img {
      height: 100%;
      transition: transform .35s;
    }
    .card:hover .card-img img { transform: scale(1.05); }

    /* Badge de estado abierto/cerrado */
    .status-badge {
      position: absolute;
      top: 10px;
      right: 10px;
      padding: 3px 10px;
      border-radius: 50px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3px;
    }
    .status-badge.open  { background: var(--open-bg);   color: var(--open-text); }
    .status-badge.closed{ background: var(--closed-bg); color: var(--closed-text); }

    /* Cuerpo de la tarjeta */
    .card-body {
      padding: 14px 16px 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .card-name {
      font-family: 'Syne', sans-serif;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.2;
    }
    .card-category {
      font-size: 12px;
      color: var(--gray);
    }

    /* Chips de servicio en la tarjeta */
    .card-services {
      display: flex;
      gap: 5px;
      flex-wrap: wrap;
      margin-top: 4px;
    }
    .service-chip {
      font-size: 11px;
      font-weight: 600;
      padding: 2px 9px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      color: var(--mid);
    }

    /* Horario */
    .card-hours {
      font-size: 12px;
      color: var(--gray);
      margin-top: 2px;
    }

    /* Botón Ver menú */
    .btn-menu {
      display: block;
      margin-top: 10px;
      background: var(--pink);
      color: var(--white);
      text-align: center;
      padding: 10px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      transition: background .2s, transform .15s;
    }
    .btn-menu:hover {
      background: var(--pink-light);
      transform: scale(1.02);
    }

    /* Mensaje sin resultados */
    .no-results {
      grid-column: 1 / -1;
      text-align: center;
      color: var(--gray);
      padding: 40px 0;
      font-size: 15px;
    }

    /* ─────────────────────────────────────────────
       BANNER APP
    ───────────────────────────────────────────── */
    .app-banner {
      background: linear-gradient(135deg, #1a1a1a, #2d0d1a);
      color: var(--white);
      text-align: center;
      padding: 40px 20px;
      margin-top: 16px;
    }
    .app-banner h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(18px, 5vw, 26px);
      font-weight: 800;
      margin-bottom: 8px;
    }
    .app-banner p { color: rgba(255,255,255,.65); font-size: 14px; margin-bottom: 24px; }
    .app-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
    .app-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--pink);
      color: var(--white);
      padding: 12px 22px;
      border-radius: 50px;
      font-size: 13px;
      font-weight: 600;
      transition: background .2s;
    }
    .app-btn:hover { background: var(--pink-light); }
    .app-btn--outline {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,.4);
    }
    .app-btn--outline:hover {
      background: rgba(255,255,255,.1);
      border-color: rgba(255,255,255,.7);
    }

    /* ─────────────────────────────────────────────
       FOOTER
    ───────────────────────────────────────────── */
    footer {
      background: #111;
      color: rgba(255,255,255,.5);
      padding: 28px 20px;
      text-align: center;
      font-size: 12px;
    }
    footer a { color: rgba(255,255,255,.5); }
    footer a:hover { color: var(--pink-light); }
    .footer-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 10px; }

    /* ─────────────────────────────────────────────
       RESPONSIVE – desktop mejoras
    ───────────────────────────────────────────── */
    @media (min-width: 640px) {
      .hero { min-height: 340px; }
    }
 /* ============ Whatsapp ============ */

  .wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 9999;
  transition: transform 0.15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float:hover .wa-tip {
  display: block;
}
.wa-tip {
  display: none;
  position: absolute;
  bottom: 66px;
  right: 0;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  white-space: nowrap;
  color: #333;
}