/* ==========================================================================
   Nexo Burger - Design System & Stylesheet
   Direção de Arte: Estética Noturna, Carvão Matte, Laranja Nexo & Tipografia Editorial
   ========================================================================== */

:root {
  /* Cores Base */
  --bg-deep: #0a0a0a;
  --bg-main: #111111;
  --bg-surface: #181818;
  --bg-card: #1f1f1f;
  --bg-card-hover: #262626;
  --bg-card-elevated: #292929;

  /* Cores da Marca */
  --brand-orange: #ff5a00;
  --brand-orange-hover: #e04e00;
  --brand-orange-glow: rgba(255, 90, 0, 0.28);
  --brand-gold: #f5a623;
  --brand-gold-glow: rgba(245, 166, 35, 0.22);
  --brand-amber: #c76a20;

  /* Cores de Interface */
  --text-main: #f4f2ed;
  --text-muted: #9e9892;
  --text-dim: #6e6863;
  --border-subtle: #2b2b2b;
  --border-strong: #3d3d3d;
  --border-brand: rgba(255, 90, 0, 0.45);

  /* Status */
  --status-open: #22c55e;
  --status-open-bg: rgba(34, 197, 94, 0.12);
  --status-closed: #ef4444;
  --status-closed-bg: rgba(239, 68, 68, 0.12);
  --whatsapp: #25d366;
  --whatsapp-hover: #1eb956;

  /* Tipografia */
  --font-heading: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Espaçamentos e Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --container-max: 1200px;
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100%;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-deep);
}

::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-orange);
}

/* Utilitários de Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  min-width: 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-normal);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1rem;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.brand-meta {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text-main);
  line-height: 1.1;
}

.brand-name span {
  color: var(--brand-orange);
}

.brand-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.4px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Badge de Status de Funcionamento */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.status-pill.open {
  background: var(--status-open-bg);
  color: #4ade80;
  border-color: rgba(34, 197, 94, 0.3);
}

.status-pill.open .status-dot {
  background: var(--status-open);
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s infinite;
}

.status-pill.closed {
  background: var(--status-closed-bg);
  color: #f87171;
  border-color: rgba(239, 68, 68, 0.3);
}

.status-pill.closed .status-dot {
  background: var(--status-closed);
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn-sm {
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
}

.btn-primary {
  background: var(--brand-orange);
  color: #fff;
  box-shadow: 0 4px 16px var(--brand-orange-glow);
}

.btn-primary:hover {
  background: var(--brand-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(255, 90, 0, 0.4);
}

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: var(--bg-card);
  border-color: var(--border-strong);
  color: #fff;
}

/* ==========================================================================
   HERO BANNER
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #0d0d0d;
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to bottom, rgba(10, 10, 10, 0.72) 0%, rgba(10, 10, 10, 0.95) 85%, #0a0a0a 100%),
                    url('../assets/marca/capa.webp');
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.15) contrast(1.05);
  opacity: 0.45;
  transform: scale(1.02);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 90, 0, 0.14);
  border: 1px solid rgba(255, 90, 0, 0.35);
  color: var(--brand-gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 5.2vw, 3.8rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--text-main);
  margin-bottom: 1.25rem;
  overflow-wrap: break-word;
  word-break: break-word;
}

.hero-title em {
  font-style: normal;
  color: var(--brand-orange);
  position: relative;
  display: inline-block;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 2.25rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.75rem;
}

.hero-badges-strip {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.hero-badge-item svg {
  color: var(--brand-orange);
  flex-shrink: 0;
}

/* ==========================================================================
   DESTAQUE DO CHEF (NEXO MAJOR BANNER)
   ========================================================================== */
.featured-section {
  padding: 2.5rem 0 1rem;
}

.featured-card {
  position: relative;
  background: linear-gradient(135deg, #1c130c 0%, #151515 55%, #191919 100%);
  border: 1px solid rgba(255, 90, 0, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2.5rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.featured-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 90, 0, 0.16) 0%, transparent 70%);
  pointer-events: none;
}

.featured-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  z-index: 2;
}

.featured-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 166, 35, 0.15);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: var(--brand-gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.featured-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  color: #fff;
}

.featured-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.featured-pills-list {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.spec-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
}

.featured-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.featured-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--brand-gold);
  letter-spacing: -0.5px;
}

.featured-media {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.featured-img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: var(--radius-md);
  object-fit: cover;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.65));
  transition: transform var(--transition-normal);
}

@media (max-width: 640px) {
  .featured-img {
    max-width: 100%;
  }
}

.featured-card:hover .featured-img {
  transform: scale(1.03) rotate(-1deg);
}

/* ==========================================================================
   CARDÁPIO / CATÁLOGO INTERATIVO
   ========================================================================== */
.menu-section {
  padding: 3.5rem 0 5rem;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-orange);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.section-title em {
  font-style: normal;
  color: var(--brand-orange);
}

/* Barra de Filtros e Busca */
.menu-controls {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
  min-width: 0;
  max-width: 100%;
}

.search-wrapper {
  position: relative;
  width: 100%;
  max-width: 720px;
}

.search-input {
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 2.8rem 0.85rem 2.8rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.search-input:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 3px var(--brand-orange-glow);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  pointer-events: none;
}

.search-clear {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dim);
  padding: 0.25rem;
  border-radius: var(--radius-full);
  display: none;
}

.search-clear:hover {
  color: var(--text-main);
  background: var(--border-subtle);
}

.search-clear.visible {
  display: block;
}

/* Categorias em Abas */
.category-tabs {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  min-width: 0;
  max-width: 100%;
  -webkit-overflow-scrolling: touch;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 0.84rem;
  font-weight: 600;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  transition: all var(--transition-fast);
  user-select: none;
}

.tab-btn:hover {
  border-color: var(--border-strong);
  color: var(--text-main);
  background: var(--bg-card);
}

.tab-btn.active {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
  color: #fff;
  box-shadow: 0 4px 14px var(--brand-orange-glow);
}

.tab-count {
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
}

/* Grade de Produtos */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}

/* Card do Produto */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 90, 0, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  background: #141414;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

/* Placeholder para itens sem foto própria */
.product-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1f140e 0%, #151515 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--brand-gold);
  padding: 1rem;
}

.placeholder-icon {
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

.placeholder-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-dim);
  font-weight: 600;
}

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.card-badge.gold {
  background: rgba(245, 166, 35, 0.9);
  color: #111;
  border-color: var(--brand-gold);
}

.card-badge.orange {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}

.product-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
}

.product-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.2rem;
}

.product-chip {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  padding: 2px 6px;
  border-radius: 4px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: auto;
}

.product-price-wrapper {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--brand-gold);
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.product-price-sub {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.btn-details {
  background: rgba(255, 90, 0, 0.12);
  border: 1px solid rgba(255, 90, 0, 0.35);
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-details:hover {
  background: var(--brand-orange);
  color: #fff;
  border-color: var(--brand-orange);
}

/* Estado de Nenhum Produto Encontrado */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--bg-surface);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  color: var(--text-muted);
}

.empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   MODAL DE DETALHES DO PRODUTO (NATIVE <dialog>)
   ========================================================================== */
.product-dialog {
  border: none;
  background: transparent;
  padding: 1rem;
  max-width: 620px;
  width: 94vw;
  margin: auto;
  outline: none;
}

.product-dialog::backdrop {
  background: rgba(0, 0, 0, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dialog-card {
  background-color: #1a1a1a;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  opacity: 1;
}

.dialog-header-media {
  position: relative;
  width: 100%;
  height: 280px;
  background: #121212;
  overflow: hidden;
}

.dialog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dialog-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--transition-fast);
}

.dialog-close-btn:hover {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}

.dialog-body {
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dialog-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.dialog-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.dialog-price {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--brand-gold);
  white-space: nowrap;
}

.dialog-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.dialog-extra-note {
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--brand-orange);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.85rem;
  color: var(--text-main);
}

/* Opções e Personalizações mapeadas */
.dialog-options-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dialog-options-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--brand-gold);
  display: flex;
  align-items: center;
  gap: 6px;
}

.option-group-card {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
}

.option-group-card:first-of-type {
  border-top: none;
  padding-top: 0;
}

.option-group-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.option-choices-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.option-choice-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
}

.option-choice-price {
  color: var(--brand-gold);
  font-weight: 600;
}

.coming-soon-notice {
  background: rgba(255, 90, 0, 0.09);
  border: 1px solid rgba(255, 90, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-main);
  text-align: center;
}

.dialog-footer {
  padding: 1.1rem 1.25rem;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dialog-footer .btn {
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
}

/* ==========================================================================
   INFORMAÇÕES, HORÁRIOS & LOCALIZAÇÃO
   ========================================================================== */
.info-section {
  background: var(--bg-main);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 4.5rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Tabela de Horários */
.hours-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hours-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hours-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hour-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: background var(--transition-fast);
}

.hour-row.today {
  background: rgba(255, 90, 0, 0.1);
  border-color: rgba(255, 90, 0, 0.35);
  color: var(--text-main);
  font-weight: 600;
}

.hour-row.today .day-name {
  color: var(--brand-orange);
}

.today-pill {
  font-size: 0.68rem;
  background: var(--brand-orange);
  color: #fff;
  padding: 2px 7px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  font-weight: 700;
  text-transform: uppercase;
}

.hour-row.closed .time-range {
  color: #f87171;
}

/* Card de Localização & Atendimento */
.location-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.service-mode-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.service-icon {
  color: var(--brand-orange);
}

.service-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

.service-desc {
  font-size: 0.72rem;
  color: var(--text-dim);
  line-height: 1.3;
}

.address-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.address-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.address-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 48px;
  width: auto;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: var(--brand-orange);
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 1rem;
}

/* Botão Flutuante do WhatsApp (FAB) */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   RESPONSIVIDADE
   ========================================================================== */
@media (max-width: 900px) {
  .featured-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .featured-pill {
    align-self: center;
  }

  .featured-pills-list {
    justify-content: center;
  }

  .featured-footer {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .site-header {
    width: 100%;
    max-width: 100%;
  }

  .header-inner {
    height: 56px;
    gap: 0.5rem;
  }

  .brand-link {
    gap: 0.5rem;
    min-width: 0;
  }

  .brand-logo {
    height: 32px;
    width: 32px;
    flex-shrink: 0;
  }

  .brand-name {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .brand-subtitle {
    display: none;
  }

  .header-actions {
    gap: 0.4rem;
    flex-shrink: 0;
  }

  .status-pill {
    padding: 0.35rem;
    border-radius: var(--radius-full);
  }

  .status-pill span:not(.status-dot) {
    display: none;
  }

  .btn-whatsapp.btn-sm {
    padding: 0.45rem;
    border-radius: var(--radius-full);
    width: 34px;
    height: 34px;
    justify-content: center;
  }

  .btn-whatsapp.btn-sm span {
    display: none;
  }

  .hero {
    padding: 2.25rem 0 1.75rem;
  }

  .hero-tag {
    font-size: 0.72rem;
    padding: 0.35rem 0.75rem;
    letter-spacing: 0.3px;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    box-sizing: border-box;
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 6.2vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.5px;
    word-break: break-word;
    overflow-wrap: break-word;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.75rem;
    padding: 0 0.25rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badges-strip {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    padding-top: 1.25rem;
  }

  .hero-badge-item {
    font-size: 0.8rem;
    text-align: center;
    justify-content: center;
  }

  .featured-card {
    padding: 1.5rem 1rem;
  }

  .featured-title {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
  }

  .featured-footer {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 0.75rem;
  }

  .featured-footer .btn {
    width: 100%;
    justify-content: center;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .btn-details {
    padding: 0.45rem 0.75rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .service-modes {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .fab-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 48px;
    height: 48px;
  }

  .dialog-footer {
    flex-direction: column;
    align-items: stretch;
  }
}
