:root { 
    /* Paleta Premium de Alta Gastronomia */
    --bg: #070709; 
    --surface: #13131a; 
    --surface-card: linear-gradient(180deg, #1a1a1e 0%, #0d0d10 100%);
    --surface-hover: linear-gradient(180deg, #1a1a1e 0%, #0d0d10 100%);
    --overlay-bg: rgba(23, 23, 28, 0.82); 

    /* Bordas Finas e Elegantes */
    --border: rgba(255, 255, 255, 0.04); 
    --border-bright: rgba(212, 175, 55, 0.3);

    /* Tipografia de Alta Costura */
    --text-main: #fcfcfd; 
    --text-muted: #6e7687; 
    --text-inverse: #070709;

    /* Ouro Champagne & Brilhos */

    --accent: #dfba4d;          
    --accent-light: #fff2cc;    
    --accent-glow: rgba(223, 186, 77, 0.15); 

    /* Status */
    --danger: #ff4766;          
    --success: #00e699;         

    /* Curvaturas Modernas */
    --radius-xl: 24px; 
    --radius-lg: 16px; 
    --radius-md: 12px; 
    --radius-sm: 8px;

    --transition-cubic: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

    * { 
        margin: 0; 
        padding: 0; 
        box-sizing: border-box; 
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
        -webkit-tap-highlight-color: transparent; 
    }

    body { 
        background-color: var(--bg); 
        color: var(--text-main); 
        min-height: 100vh; 
        padding-bottom: 100px; 
        overflow-x: hidden; 
        display: flex; 
        justify-content: center; 
        letter-spacing: -0.01em;
    }

    .app-shell { 
        position: relative; 
        z-index: 1; 
        width: 100%; 
        max-width: 480px; 
        display: flex; 
        flex-direction: column; 
        
    }

    /* Header Flutuante / Efeito Vidro */
    .app-header { 
        position: sticky; 
        top: 0; 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        padding: 10px 16px; 
        z-index: 90; 
        background-color: var(--overlay-bg); 
        backdrop-filter: blur(20px); 
        -webkit-backdrop-filter: blur(20px); 
        border-bottom: 1px solid var(--border); 
        /* Cantos arredondados separados */
        border-top-left-radius: 0px;
        border-top-right-radius: 0px;
        border-bottom-right-radius: 20px;
        border-bottom-left-radius: 20px;
        margin-bottom: 20px; /* ← ISSO AQUI afasta o conteúdo de baixo */
    }

    .logo-img { height: 38px; width: auto; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5)); }

    /* Hambúrguer Minimalista */
    .menu-hamburger { 
        display: flex; 
        flex-direction: column; 
        justify-content: center; 
        gap: 5px;
        width: 24px; 
        height: 24px; 
        background: none; 
        border: none; 
        cursor: pointer; 
    }

    .menu-hamburger span { 
        display: block; 
        height: 2px; 
        background-color: var(--text-main); 
        border-radius: 2px; 
        transition: var(--transition-cubic);
    }
    .menu-hamburger span:nth-child(1) { width: 18px; } 
    .menu-hamburger span:nth-child(2) { width: 24px; background-color: var(--accent); } 
    .menu-hamburger span:nth-child(3) { width: 12px; }

    .header-right { display: flex; align-items: center; gap: 14px; }

    .bag-btn { 
        background: rgba(255, 255, 255, 0.03); 
        border: 1px solid var(--border); 
        width: 42px; 
        height: 42px; 
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        position: relative; 
        cursor: pointer; 
        transition: var(--transition-cubic);
    }
    .bag-btn:hover {
        background: var(--surface-hover);
        border-color: var(--accent);
        transform: scale(1.05);
    }

    .bag-count { 
        position: absolute; 
        top: -2px; 
        right: -2px; 
        background: var(--accent); 
        color: var(--text-inverse); 
        font-size: 10px; 
        font-weight: 700; 
        min-width: 16px; 
        height: 16px; 
        border-radius: 50%; 
        display: none; 
        align-items: center; 
        justify-content: center; 
        border: 2px solid var(--bg);
    }
    .bag-count.show { display: flex; }
    .bag-btn svg { width: 18px; height: 18px; stroke: var(--text-main); fill: none; stroke-width: 2; }

    /* Overlay do Menu */
    .menu-overlay { 
        position: fixed; 
        top: 0; left: 0; width: 100%; height: 100%; 
        background-color: linear-gradient(180deg, #1a1a1e 0%, #0d0d10 100%); 
        backdrop-filter: blur(8px); 
        z-index: 999; 
        opacity: 0; 
        pointer-events: none; 
        transition: var(--transition-cubic); 
    }
    .menu-overlay.open { opacity: 1; pointer-events: auto; }

    /* Drawer de Menu Lateral Imersivo */
    .drawer-menu { 
        position: fixed; 
        top: 0; 
        left: -320px; 
        width: 310px; 
        height: 100%; 
        background-color: #0b0b11; 
        z-index: 1000; 
        border-radius: 0 var(--radius-xl) var(--radius-xl) 0; 
        padding: 40px 0; 
        display: flex; 
        flex-direction: column; 
        box-shadow: 20px 0 50px rgba(0, 0, 0, 0.8);
        transition: var(--transition-cubic); 
        overflow: hidden;
        contain: paint; /* Impede que conteúdo vaze */
    }
    .drawer-menu.open { left: 0; }

.drawer-video-bg {
    position: absolute;
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    z-index: 1; 
    opacity: 0.42;
    pointer-events: none;
    /* Adicione: */
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
}

    .drawer-menu::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(11,11,17,0.8) 0%, #0b0b11 100%);
        z-index: 2; 
    }

    .drawer-menu > *:not(.drawer-video-bg) { position: relative; z-index: 3; }

    .drawer-header { 
        display: flex; 
        justify-content: space-between; 
        align-items: center; 
        margin-bottom: 32px; 
        padding: 0 28px;
    }
    .drawer-brand { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; color: #fff; } 
    .drawer-close { 
        background: rgba(255, 255, 255, 0.05); 
        border: none;
        width: 36px; height: 36px; 
        border-radius: 50%; 
        color: #fff; cursor: pointer; 
        display: flex; align-items: center; justify-content: center; 
        transition: var(--transition-cubic);
    }
    .drawer-close:hover { background: var(--danger); transform: rotate(90deg); }

    .drawer-user { 
        display: flex; 
        align-items: center; 
        gap: 12px; 
        padding: 16px 20px; 
        margin: 0 24px 32px 24px; 
        background: rgba(255, 255, 255, 0.02); 
        border: 1px solid var(--border); 
        border-radius: var(--radius-lg); 
    }
    .drawer-user-dot { 
        width: 8px; height: 8px; 
        background: var(--success); 
        border-radius: 50%; 
        box-shadow: 0 0 12px var(--success);
    } 
    .drawer-user-name { font-size: 15px; font-weight: 600; color: #fff; }

    .drawer-nav { display: flex; flex-direction: column; gap: 6px; padding: 0 16px; }
    .drawer-link { 
        display: flex; 
        align-items: center; 
        gap: 16px; 
        padding: 14px 20px; 
        color: var(--text-muted); 
        text-decoration: none; 
        font-size: 15px; 
        font-weight: 500; 
        border-radius: var(--radius-md); 
        transition: var(--transition-cubic); 
    }
    .drawer-link:hover, .drawer-link.active { 
        background: rgba(21dfba4d, 255, 255, 0.04);
        color: var(--text-main); 
    }
    .drawer-link:hover .drawer-icon { transform: translateX(3px); filter: brightness(1.2); }

    .drawer-icon { 
        width: 30px; 
        height: 30px; 
        object-fit: contain; 
        transition: var(--transition-cubic); 
    }

    .drawer-footer { 
        margin-top: auto; font-size: 11px; 
        color: rgba(255, 255, 255, 0.2); 
        padding: 16px 24px 0 24px;
        text-align: center;
        letter-spacing: 1px;
    }

    /* Hero Banner Redesenhado */
    .hero-banner { 
        padding: 10px 24px 12px 24px; 
    } 

    .hero-banner h1 strong { 
        display: block; 
        font-weight: 800; 
        font-size:25px; 
        color: #dfbb4da1; 
        letter-spacing: -1px; 
    }

    .hero-banner h1 { 
        font-size: 15px; 
        font-weight: 300; 
        line-height: 1.2; 
        color: #ffffff9f;
    } 




    /* Banner Slider Luxury */
    .banner-slider { 
        margin: 0 24px 28px 24px; 
        border-radius: var(--radius-xl); 
        overflow: hidden; 
        position: relative; 
        height: 180px; 
        background: var(--surface); 
        box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    }
    .banner-slide { position: absolute; inset: 0; display: flex; align-items: flex-end; padding: 28px; color: #fff; opacity: 0; transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1); background-size: cover; background-position: center; }
    .banner-slide::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,7,9,0.95) 0%, rgba(7,7,9,0.1) 100%); z-index: 1; }
    .banner-slide>div { position: relative; z-index: 2; transform: translateY(10px); transition: transform 0.6s ease; } 
    .banner-slide.active { opacity: 1; }
    .banner-slide.active>div { transform: translateY(0); }
    .banner-slide h2 { font-size: 22px; font-weight: 800; color: var(--text-main); letter-spacing: -0.5px; } 
    .banner-slide p { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

    .banner-dots { position: absolute; bottom: 16px; left: 28px; display: flex; gap: 6px; z-index: 2; }
    .banner-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: var(--transition-cubic); }
    .banner-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }

    .section-headline { font-size: 18px; font-weight: 800; padding: 10px 24px; color: var(--text-main); letter-spacing: -0.5px; display: flex; justify-content: space-between; align-items: center;}
    .section-headline span.see-all { font-size: 13px; color: var(--accent); font-weight: 500; cursor: pointer; }

/*=====================*/
/* AQUI*/

/* ===== Variáveis do Card (Você pode integrar com as suas) ===== */
:root {
  --ch-bg: #121214;
  --ch-bg-hover: #1e1e24;
  --ch-text-main: #f3f3f3;
  --ch-text-muted: #8b8b96;
  --ch-accent: #dfba4d; /* Dourado suave */
  --ch-accent-light: rgba(223, 186, 77, 0.1);
  --ch-border: rgba(255, 255, 255, 0.06);
  --ch-radius: 16px;
  --ch-transition: all 0.3s ease;
}

/* ── Container Principal ── */
.card-horarios-pro {
  background: var(--ch-bg);
  border: 1px solid var(--ch-border);
 border-radius: var(--radius-xl); 
  padding: 24px;
  max-width: 420px;
  margin: 0 auto 28px auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: 'Inter', system-ui, sans-serif;
}





/* ── Lista e Linhas ── */
.horario-lista-pro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.horario-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  transition: var(--ch-transition);
}

.horario-row:hover {
  background: var(--ch-bg-hover);
  border-color: var(--ch-border);
  transform: translateX(4px);
}

/* ── Tipografia dos Dias e Horas ── */
.dia-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dia {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ch-text-muted);
  transition: var(--ch-transition);
}

.horario-row:hover .dia {
  color: var(--ch-text-main);
}

.hora-group {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ch-text-main);
}

.hora-group .divisor {
  color: var(--ch-text-muted);
  font-size: 0.8rem;
  font-weight: 400;
}

/* ── Linha em Destaque (Ex: Domingo/Hoje) ── */
.horario-row.destaque {
  background: var(--ch-accent-light);
  border: 1px solid rgba(223, 186, 77, 0.2);
}

.horario-row.destaque .dia,
.horario-row.destaque .hora-group {
  color: var(--ch-accent);
}




/* ── Responsividade ── */
@media (max-width: 480px) {
  .card-horarios-pro {
    padding: 20px;
    margin: 0 16px 20px 16px;
  }
  
  .horario-row {
    padding: 12px;
  }
  
  .dia, .hora-group {
    font-size: 0.85rem;
  }
  
  .status-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  

}


/* ── Card de Horários ── */



    /* Categorias Horizontais Minimalistas */
    .categories-slider { display: flex; gap: 16px; overflow-x: auto; padding: 12px 24px 28px 24px; -webkit-overflow-scrolling: touch; } 
    .categories-slider::-webkit-scrollbar { display: none; }
    
    .category-wrapper { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        cursor: pointer; 
        min-width: 72px;
        text-decoration: none; 
    }
    .category-box { 
        display: flex; align-items: center; justify-content: center; 
        width: 64px; height: 64px; 
        background-color: var(--surface); 
        border: 1px solid var(--border); 
        border-radius: 20px; 
        transition: var(--transition-cubic); 
    }
    .wrapper-icon-box { width: 32px; height: 32px; object-fit: contain; transition: var(--transition-cubic); }
    .category-wrapper span { 
        font-size: 11px; color: var(--text-muted); 
        margin-top: 10px; font-weight: 600; 
        text-align: center; letter-spacing: 0.3px;
        transition: var(--transition-cubic);
    }
    .category-wrapper:hover .category-box { transform: translateY(-4px); border-color: rgba(255,255,255,0.1); }
    .category-wrapper.active .category-box { background-color: var(--accent); border-color: var(--accent); box-shadow: 0 8px 20px rgba(223, 186, 77, 0.25); } 
    .category-wrapper.active .wrapper-icon-box { filter: brightness(0) invert(1); }
    .category-wrapper.active span { color: var(--text-main); font-weight: 700; }

    /* SURPRESA: Filtros Rápidos (Pills) */
    .quick-filters { display: flex; gap: 10px; overflow-x: auto; padding: 0 24px 20px 24px; }
    .quick-filters::-webkit-scrollbar { display: none; }
    .filter-pill { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 8px 16px; border-radius: 30px; font-size: 12px; font-weight: 600; color: var(--text-muted); cursor: pointer; white-space: nowrap; transition: var(--transition-cubic); }
    .filter-pill.active, .filter-pill:hover { background: var(--surface-card); color: var(--accent); border-color: var(--accent-bright); }

    /* Cards de Produtos Elegantes */
    .products-deck { 
        display: flex; gap: 20px; 
        overflow-x: auto; 
        padding: 12px 24px 32px 24px; 
        -webkit-overflow-scrolling: touch; 
        scroll-snap-type: x mandatory; 
    }
    .products-deck::-webkit-scrollbar { display: none; }

    .product-card {
        background-color: var(--overlay-bg); 
        border: 1px solid var(--border); 
        min-width: 190px; 
        max-width: 210px;
        border-radius: var(--radius-xl); 
        padding: 0; 
        display: flex; flex-direction: column; 
        cursor: pointer; text-decoration: none; 
        color: var(--text-main); scroll-snap-align: center;
        overflow: hidden; 
        position: relative;
        box-shadow: 0 10px 24px rgba(0,0,0,0.2);
        transition: var(--transition-cubic);
    }
    .product-card:hover, .product-card.zoomed { transform: translateY(-6px) scale(1.02); border-color: rgba(255,255,255,0.08); box-shadow: 0 16px 32px rgba(0,0,0,0.4); }
    
    .product-card .img-frame { width: 100%; height: 130px; display: block; overflow: hidden; position: relative; }
    .product-card .img-frame img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-cubic); }
    .product-card:hover .img-frame img { transform: scale(1.08); }

    /* SURPRESA: Tag de novidade ou destaque interna no card */
    .product-card .card-tag { position: absolute; top: 12px; left: 12px; background: rgba(7, 7, 9, 0.75); backdrop-filter: blur(4px); padding: 4px 10px; border-radius: 20px; font-size: 9px; font-weight: 700; color: var(--accent); letter-spacing: 0.5px; text-transform: uppercase; border: 1px solid rgba(223,186,77,0.2); }

    .product-card .card-content { padding: 16px; display: flex; flex-direction: column; flex-grow: 1; }
    .product-card .title { font-size: 15px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; color: var(--text-main); }
    .product-card .subtitle { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
    
    .product-card .footer-row { display: flex; justify-content: space-between; align-items: center; width: 100%; margin-top: 16px; }
    .product-card .price { font-size: 16px; font-weight: 800; color: var(--text-main); }
    
    /* Botão adicionar elegante */
    .product-card .add-btn { width: 32px; height: 32px; background: rgba(255,255,255,0.05); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); font-size: 18px; font-weight: 500; transition: var(--transition-cubic); border: 1px solid var(--border); }
    .product-card:hover .add-btn { background: var(--accent); color: var(--text-inverse); border-color: var(--accent); transform: scale(1.1); }

    /* SURPRESA: Seção Mosaico Premium "Chef's Choice" */
  
    

    .premium-text h4 { font-size: 13px; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; margin-bottom: 4px;}
    .premium-text h3 { font-size: 18px; font-weight: 800; color: #fff;}
    .premium-text p { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

    /* Navbar Inferior Estilo Flutuante Island */
    .navbar-bottom { 
        position: fixed; 
        bottom: 16px; left: 16px; right: 16px; 
        height: 72px; 
        background: rgba(19, 19, 26, 0.85); 
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        display: flex; 
        justify-content: space-around; 
        align-items: center; 
        border: 1px solid rgba(255,255,255,0.04); 
        padding: 0 12px; 
        z-index: 100; 
        border-radius: 30px; 
        box-shadow: 0 16px 44px rgba(0,0,0,0.6);
    }
    
    .navbar-item { 
        display: flex; 
        flex-direction: column; 
        align-items: center; 
        justify-content: center; 
        color: var(--text-muted); 
        font-size: 10px; 
        font-weight: 600; 
        gap: 5px; 
        width: 54px; 
        height: 54px; 
        border-radius: 20px;
        cursor: pointer; 
        text-decoration: none; 
        transition: var(--transition-cubic);
    }
    .navbar-item:hover { color: var(--text-main); background: rgba(255,255,255,0.02); }
    .navbar-item.active { color: var(--accent); } 
    
    /* Hub Central Modernizado */
    .navbar-item-hub { 
        position: relative; 
        top: -18px; 
        width: 58px; 
        height: 58px; 
        background-color: var(--accent);
        border-radius: 50%; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        box-shadow: 0 8px 24px rgba(223, 186, 77, 0.35);
        border: 4px solid var(--bg);
        transition: var(--transition-cubic);
     }
     .navbar-item-hub:hover { transform: translateY(-3px) scale(1.05); background-color: var(--accent); }
     .navbar-item-hub:active { transform: scale(0.92); }

    .navbar-icon { width: 20px; height: 20px; object-fit: contain; opacity: 0.6; transition: var(--transition-cubic); }
    .navbar-item.active .navbar-icon { opacity: 1; filter: sepia(1) saturate(3) hue-rotate(5deg); }
    .navbar-icon-hub { width: 22px; height: 22px; object-fit: contain; filter: brightness(0) invert(1); }
