:root {
  --bg-1: #070a10;
  --bg-2: #0b1018;
  --bg-3: #0f141c;
  --surface: rgba(255, 255, 255, .08);
  --surface-strong: rgba(255, 255, 255, .12);
  --line: rgba(255, 255, 255, .14);
  --text: #f8fafc;
  --muted: rgba(255, 255, 255, .68);
  --muted-soft: rgba(255, 255, 255, .58);
  --brand: #ff6b00;
  --brand-2: #ff9f1c;
  --ok: #22c55e;
  --ok-dark: #15803d;
  --closed: #ef4444;
  --shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0, rgba(255, 107, 0, .16), transparent 28rem),
    radial-gradient(circle at 100% 36%, rgba(0, 194, 255, .08), transparent 34rem),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 46%, var(--bg-3) 100%);
}

button, input, textarea, select { font: inherit; }

.page {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 90px;
}

/* Topbar */
.topbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 96px;
  height: 64px;
  object-fit: contain;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .38));
}

.brand strong {
  display: block;
  font-size: 20px;
  line-height: 1.1;
  color: #fff;
}

.brand span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.status::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, .18);
}

.status.closed::before {
  background: var(--closed);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .18);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  min-height: 455px;
  padding: 28px 0 30px;
}

.hero-copy h1 {
  margin: 0 0 14px;
  max-width: 700px;
  font-size: clamp(40px, 5.2vw, 64px);
  line-height: .96;
  color: #fff;
  font-weight: 950;
}

.hero-copy p {
  margin: 0 0 20px;
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 900;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #101010;
  box-shadow: 0 18px 44px rgba(255, 107, 0, .26);
}

.btn-dark {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1px solid var(--line);
}

.hero-card {
  position: relative;
  min-height: 320px;
  border-radius: 12px;
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035)),
    radial-gradient(circle at 50% 10%, rgba(255, 107, 0, .22), transparent 18rem),
    #080b12;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .46);
}

.hero-card img {
  display: block;
  width: min(310px, 86%);
  height: auto;
  max-height: 205px;
  object-fit: contain;
  margin: 4px auto 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  align-self: center;
  justify-self: center;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .48));
}

.hero-card::after {
  content: "Pedido online integrado ao WhatsApp, painel e cozinha";
  display: block;
  max-width: 280px;
  margin-top: 20px;
  color: rgba(255, 255, 255, .78);
  font-size: 20px;
  line-height: 1.15;
  font-weight: 900;
}

.hero-card-note {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid var(--line);
  color: #fff;
}

.hero-card-note strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.hero-card-note span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

/* Section headers */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 26px 0 16px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  color: #fff;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}

.section-head.compact { margin-top: 0; }

/* Cardapio do dia */
.daily-box {
  margin: 10px 0 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .2);
}

.daily-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.daily-group {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, .04);
}

.daily-group h3 {
  margin: 0 0 10px;
  font-size: 16px;
  color: #fff;
}

.daily-options {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.daily-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.daily-option.out {
  text-decoration: line-through;
  opacity: .55;
}

.daily-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

/* Abas Marmitas / Bebidas / Porções extras */
.menu-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
  padding: 7px;

  border: 1px solid rgba(255, 255, 255, .20);
  border-radius: 30px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .055),
      rgba(255, 255, 255, .018)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .06),
    0 12px 28px rgba(0, 0, 0, .18);
}

.menu-tab {
  --tab-icon-color: #ff8a00;

  position: relative;
  overflow: hidden;

  min-width: 0;
  min-height: 154px;
  padding: 20px 12px 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;

  border: 2px solid rgba(255, 255, 255, .20);
  border-radius: 25px;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, .08),
      transparent 62%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .055),
      rgba(255, 255, 255, .018)
    );

  color: #f7f8fa;

  font: inherit;
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 950;
  line-height: 1.12;
  letter-spacing: -.01em;
  text-align: center;
  white-space: normal;

  cursor: pointer;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 8px 22px rgba(0, 0, 0, .18);

  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

/* Ícones das três categorias */
.menu-tab::before {
  content: "";

  width: 50px;
  height: 50px;
  flex: 0 0 50px;

  background-color: var(--tab-icon-color);

  -webkit-mask-image: var(--tab-icon);
  mask-image: var(--tab-icon);

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-position: center;
  mask-position: center;

  -webkit-mask-size: contain;
  mask-size: contain;
}

/* Marmitas */
.menu-tab:nth-child(1) {
  --tab-icon:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10h16l-1 7H5l-1-7Z'/%3E%3Cpath d='M7 10c0-2 1.5-3.5 3.5-3.5S14 8 14 10'/%3E%3Cpath d='M13 10c0-1.7 1.3-3 3-3s3 1.3 3 3'/%3E%3Cpath d='M8 4c-.7-.7-.7-1.5 0-2'/%3E%3Cpath d='M12 4c-.7-.7-.7-1.5 0-2'/%3E%3Cpath d='M16 4c-.7-.7-.7-1.5 0-2'/%3E%3C/svg%3E");
}

/* Bebidas */
.menu-tab:nth-child(2) {
  --tab-icon:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 7h10l-1 13H8L7 7Z'/%3E%3Cpath d='M6 7h12'/%3E%3Cpath d='m14 7 2-5h3'/%3E%3Cpath d='M10 12h4'/%3E%3C/svg%3E");
}

/* Porções extras */
.menu-tab:nth-child(3) {
  --tab-icon:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9h12l-1 11H7L6 9Z'/%3E%3Cpath d='m8 9-.5-6'/%3E%3Cpath d='m11 9-.2-7'/%3E%3Cpath d='m14 9 .3-6'/%3E%3Cpath d='m17 9 .7-5'/%3E%3C/svg%3E");
}

.menu-tab:hover {
  transform: translateY(-2px);

  border-color: rgba(255, 138, 0, .72);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 12px 26px rgba(0, 0, 0, .25),
    0 0 18px rgba(255, 122, 0, .10);
}

.menu-tab:active {
  transform: translateY(0) scale(.985);
}

.menu-tab:focus-visible {
  outline: 3px solid rgba(255, 175, 70, .46);
  outline-offset: 3px;
}

/* Categoria selecionada */
.menu-tab.is-active {
  --tab-icon-color: #ffffff;

  border-color: #ffd08a;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(255, 255, 255, .28),
      transparent 55%
    ),
    linear-gradient(
      145deg,
      #ff9f1a 0%,
      #ff7200 58%,
      #ff5f00 100%
    );

  color: #ffffff;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .42),
    0 10px 28px rgba(255, 104, 0, .35),
    0 0 22px rgba(255, 133, 0, .34);
}

/* Pequeno indicador da aba selecionada */
.menu-tab.is-active::after {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 9px;

  width: 58px;
  height: 5px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .88);
  box-shadow: 0 0 12px rgba(255, 255, 255, .55);

  transform: translateX(-50%);
}

/* Ajuste para celular */
@media (max-width: 640px) {
  .menu-tabs {
    gap: 7px;
    padding: 5px;
    margin-bottom: 22px;
    border-radius: 23px;
  }

  .menu-tab {
    min-height: 124px;
    padding: 15px 5px 17px;
    gap: 10px;

    border-radius: 19px;

    font-size: 15px;
    line-height: 1.08;
  }

  .menu-tab::before {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
  }

  .menu-tab.is-active::after {
    bottom: 7px;
    width: 42px;
    height: 4px;
  }
}

@media (max-width: 370px) {
  .menu-tabs {
    gap: 5px;
  }

  .menu-tab {
    min-height: 112px;
    padding-inline: 3px;
    font-size: 13px;
  }

  .menu-tab::before {
    width: 33px;
    height: 33px;
    flex-basis: 33px;
  }
}

/* Layout principal */
.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 22px;
  align-items: start;
  padding-bottom: 42px;
}

.menu-columns { min-width: 0; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-empty {
  grid-column: 1 / -1;
  color: var(--muted);
  padding: 20px 0;
}

.item {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .035));
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.item h3 {
  margin: 0 0 5px;
  font-size: 20px;
  color: #fff;
}

.item p {
  margin: 0 0 11px;
  color: var(--muted-soft);
  font-size: 14px;
  line-height: 1.35;
}

.item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price {
  color: var(--brand-2);
  font-size: 18px;
  font-weight: 950;
}

.add {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #111;
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(255, 107, 0, .22);
}

.add:disabled {
  opacity: .48;
  cursor: not-allowed;
  box-shadow: none;
}

.item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 11px;
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(34, 197, 94, .16);
  color: #4ade80;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.stock-badge.out {
  background: rgba(239, 68, 68, .16);
  color: #f87171;
}

/* Carrinho */
.cart {
  position: sticky;
  top: 16px;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  align-self: start;
}

.cart h2 {
  margin: 0 0 14px;
  font-size: 24px;
  color: #fff;
}

.cart-empty {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.4;
}

.cart-list {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.cart-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
}

.cart-row-main strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.cart-row-main span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.cart-row-actions {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.qty button {
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  cursor: pointer;
  font-weight: 900;
}

.cart-remove {
  border: 0;
  background: none;
  color: #f87171;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  padding: 2px 0;
  text-decoration: underline;
}

.cart-choice-list {
  margin: 4px 0 0;
  padding-left: 15px;
  color: var(--muted-soft);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

/* Campos */
.field {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
}

label {
  font-size: 14px;
  font-weight: 900;
  color: rgba(255, 255, 255, .92);
}

input, textarea, select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 9px;
  background: #fff;
  color: #151515;
  padding: 12px;
  outline: none;
}

select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #6b6b6b 50%), linear-gradient(135deg, #6b6b6b 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 15px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
  cursor: pointer;
}

textarea {
  min-height: 86px;
  resize: vertical;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .18);
}

.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 16px 0 14px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.total span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.total strong {
  color: #fff;
  font-size: 30px;
  font-weight: 950;
  line-height: 1;
}

.send {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ok), var(--ok-dark));
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(22, 163, 74, .22);
}

.send:disabled {
  opacity: .45;
  cursor: not-allowed;
  background: linear-gradient(135deg, var(--ok-dark), #166534);
  box-shadow: none;
}

.notice {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 107, 0, .14);
  color: #ffb877;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
}

.notice.show { display: block; }

/* Barra fixa do carrinho no mobile */
.mobile-cart-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: #0f141c;
  border-top: 1px solid var(--line);
  box-shadow: 0 -12px 30px rgba(0, 0, 0, .4);
}

.mobile-cart-bar[hidden] { display: none; }

.mobile-cart-info {
  display: grid;
  color: #fff;
}

.mobile-cart-info strong { font-size: 14px; }
.mobile-cart-info span { color: var(--muted); font-size: 13px; font-weight: 800; }

.mobile-cart-bar button {
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #101010;
  font-weight: 950;
  cursor: pointer;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .68);
}

.modal-backdrop[hidden] { display: none; }

.modal {
  width: min(720px, 100%);
  max-height: min(820px, calc(100vh - 36px));
  overflow: auto;
  border-radius: 12px;
  background: #fff;
  color: #1f130b;
  box-shadow: var(--shadow);
}

.modal * { color: #1f130b; }

.modal-head {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 17px;
  border-bottom: 1px solid #eadfd6;
  background: #fff;
}

.modal-head strong { display: block; font-size: 21px; }
.modal-head span { color: #695f57; font-size: 14px; font-weight: 750; }

.close {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff0e3;
  cursor: pointer;
  font-size: 24px;
  font-weight: 900;
}

.choice-content {
  display: grid;
  gap: 14px;
  padding: 17px;
}

.choice-group {
  border: 1px solid #eadfd6;
  border-radius: 10px;
  padding: 13px;
  background: #fffaf6;
}

.choice-group-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.choice-group-title span { color: #695f57; font-size: 12px; font-weight: 850; }

.choice-options {
  display: grid;
  gap: 8px;
}

.choice-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 10px;
  border: 1px solid #eadfd6;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.choice-option.disabled {
  opacity: .48;
  cursor: not-allowed;
}

.choice-option input { width: auto; min-height: 0; }
.choice-option small { color: #695f57; font-weight: 850; }

.flavor-input {
  min-height: 48px;
}

.modal-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 17px;
  border-top: 1px solid #eadfd6;
  background: #fff;
}

.modal-actions .btn-primary {
  background: var(--brand);
  color: #111;
}

/* Responsivo */
@media (max-width: 980px) {
  .hero, .layout {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 320px;
    max-width: 520px;
  }

  .cart {
    position: static;
  }
}

@media (max-width: 680px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .brand img {
    width: 82px;
    height: 56px;
  }

  .hero {
    padding-top: 10px;
    min-height: auto;
  }

  .hero-copy h1 { font-size: 39px; }

  .hero-actions, .btn { width: 100%; }

  .section-head { display: block; }
  .section-head p { margin-top: 7px; }

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

  .daily-groups { grid-template-columns: 1fr; }

  .modal-actions { display: grid; }

  .choice-option { grid-template-columns: auto 1fr; }
  .choice-option small { grid-column: 2; }

  .mobile-cart-bar { display: flex; }

  .page { padding-bottom: 96px; }
}


/* AJUSTE VISUAL VITRINE CARDAPIO FORTE 20260704 */
.daily-box {
  background: linear-gradient(135deg, rgba(255,122,24,.14), rgba(255,255,255,.045) 34%, rgba(255,255,255,.03)) !important;
  border: 1px solid rgba(255,122,24,.45) !important;
  box-shadow: 0 18px 48px rgba(255,122,24,.12), 0 14px 34px rgba(0,0,0,.22) !important;
}

.daily-box .section-head.compact,
.daily-box > .section-head {
  margin-bottom: 16px !important;
}

.daily-box h2,
.daily-box #dailyTitle {
  color: #ffffff !important;
}

.daily-box #dailyDate {
  color: #ffd6b0 !important;
}

.daily-group {
  background: rgba(6,10,18,.58) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 12px !important;
}

.daily-group h3 {
  color: #ffb36b !important;
}

.daily-option {
  background: transparent !important;
  border: 1px dashed rgba(255,179,107,.52) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  cursor: default !important;
}

.daily-option small {
  display: inline-flex !important;
  align-items: center !important;
  margin-left: 3px !important;
  padding: 2px 6px !important;
  border-radius: 999px !important;
  background: rgba(34,197,94,.18) !important;
  color: #b7f7c8 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
}

.daily-option.out {
  border-style: solid !important;
  opacity: .48 !important;
}

.daily-note {
  color: #ffd6b0 !important;
}
/* FIM AJUSTE VISUAL VITRINE CARDAPIO FORTE 20260704 */




/* CHOICE_MODAL_DARK_REDESIGN */
.modal-backdrop {
  background: rgba(3, 5, 9, .78);
}
.modal {
  background: linear-gradient(180deg, var(--bg-3), var(--bg-2));
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.modal-head {
  background: linear-gradient(180deg, var(--bg-3), rgba(15, 20, 28, .92));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(6px);
}
.modal-head strong { color: var(--text); }
.modal-head span { color: var(--muted); }
.close {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  transition: background .15s ease;
}
.close:hover { background: var(--surface-strong); }
.choice-content { background: transparent; }
.choice-group {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.choice-group-title strong { color: var(--text); }
.choice-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.choice-tag.tag-required {
  color: #fca5a5;
  background: rgba(239, 68, 68, .14);
  border: 1px solid rgba(239, 68, 68, .3);
}
.choice-tag.tag-optional {
  color: var(--brand-2);
  background: rgba(255, 159, 28, .12);
  border: 1px solid rgba(255, 159, 28, .28);
}
.choice-option {
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color .15s ease, background .15s ease;
}
.choice-option:hover { border-color: rgba(255, 107, 0, .45); }
.choice-option:has(input:checked) {
  border-color: var(--brand);
  background: rgba(255, 107, 0, .1);
}
.choice-option.disabled { opacity: .4; }
.choice-option input { accent-color: var(--brand); }
.choice-option span { color: var(--text); }
.choice-option span small { color: var(--muted-soft); }
.choice-option > small { color: var(--brand-2); font-weight: 800; }

.modal-actions {
  background: linear-gradient(0deg, var(--bg-3), rgba(15, 20, 28, .92));
  border-top: 1px solid var(--line);
  justify-content: space-between;
  backdrop-filter: blur(6px);
}
.modal-summary {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.modal-summary small {
  color: var(--muted-soft);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.modal-summary strong {
  font-size: 20px;
  color: var(--text);
}
.modal-buttons {
  display: flex;
  gap: 10px;
}
.modal-actions .btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #101010;
  box-shadow: 0 18px 44px rgba(255, 107, 0, .26);
}
@media (max-width: 560px) {
  .modal-actions { flex-wrap: wrap; }
  .modal-buttons { width: 100%; }
  .modal-buttons .btn { flex: 1; }
}
/* FIM CHOICE_MODAL_DARK_REDESIGN */


/* MOBILE_CATEGORY_HIGHLIGHT_FIX_START */
/*
 * Destaque das categorias na versão mobile.
 * Mantido isolado para não alterar o desktop nem as funções.
 */
@media (max-width: 700px) {
  body .menu-tabs {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;

    width: 100% !important;
    margin: 0 0 22px !important;
    padding: 5px !important;

    border: 1px solid rgba(255, 255, 255, .24) !important;
    border-radius: 23px !important;

    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, .055),
        rgba(255, 255, 255, .018)
      ) !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .07),
      0 10px 24px rgba(0, 0, 0, .22) !important;
  }

  body .menu-tabs .menu-tab {
    position: relative !important;
    overflow: hidden !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    min-width: 0 !important;
    width: 100% !important;
    min-height: 122px !important;

    gap: 10px !important;
    padding: 14px 4px 17px !important;

    border: 2px solid rgba(255, 255, 255, .22) !important;
    border-radius: 19px !important;

    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, .08),
        transparent 65%
      ),
      linear-gradient(
        180deg,
        rgba(255, 255, 255, .055),
        rgba(255, 255, 255, .018)
      ) !important;

    color: #ffffff !important;

    font-size: 14px !important;
    font-weight: 950 !important;
    line-height: 1.08 !important;
    text-align: center !important;
    white-space: normal !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .07),
      0 7px 18px rgba(0, 0, 0, .20) !important;
  }

  body .menu-tabs .menu-tab::before {
    content: "" !important;
    display: block !important;

    width: 39px !important;
    height: 39px !important;
    flex: 0 0 39px !important;

    background-color: #ff8a00 !important;

    -webkit-mask-image: var(--tab-icon) !important;
    mask-image: var(--tab-icon) !important;

    -webkit-mask-repeat: no-repeat !important;
    mask-repeat: no-repeat !important;

    -webkit-mask-position: center !important;
    mask-position: center !important;

    -webkit-mask-size: contain !important;
    mask-size: contain !important;
  }

  body .menu-tabs .menu-tab.is-active {
    border-color: #ffd49a !important;

    background:
      radial-gradient(
        circle at 50% 0%,
        rgba(255, 255, 255, .30),
        transparent 56%
      ),
      linear-gradient(
        145deg,
        #ff9e18 0%,
        #ff7500 55%,
        #ff5c00 100%
      ) !important;

    color: #ffffff !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .42),
      0 9px 24px rgba(255, 104, 0, .38),
      0 0 19px rgba(255, 133, 0, .30) !important;
  }

  body .menu-tabs .menu-tab.is-active::before {
    background-color: #ffffff !important;
  }

  body .menu-tabs .menu-tab.is-active::after {
    content: "" !important;

    position: absolute !important;
    left: 50% !important;
    bottom: 7px !important;

    display: block !important;

    width: 42px !important;
    height: 4px !important;

    border-radius: 999px !important;

    background: rgba(255, 255, 255, .94) !important;
    box-shadow: 0 0 10px rgba(255, 255, 255, .58) !important;

    transform: translateX(-50%) !important;
  }
}

@media (max-width: 390px) {
  body .menu-tabs {
    gap: 5px !important;
    padding: 4px !important;
  }

  body .menu-tabs .menu-tab {
    min-height: 112px !important;
    padding: 12px 2px 16px !important;
    font-size: 12.5px !important;
  }

  body .menu-tabs .menu-tab::before {
    width: 34px !important;
    height: 34px !important;
    flex-basis: 34px !important;
  }
}
/* MOBILE_CATEGORY_HIGHLIGHT_FIX_END */
