/* =========================================================
   NUNES BURGUER • STYLE.CSS
   Visual original, premium e comercial
========================================================= */

/* =========================
   RESET / BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0d0d0f;
  --bg-soft: #151518;
  --bg-elevated: #1b1b20;
  --panel: rgba(24, 24, 28, 0.88);
  --panel-strong: rgba(20, 20, 24, 0.96);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #f6f2eb;
  --text-soft: #c9beb0;
  --text-muted: #9e9080;

  --primary: #ff7a1a;
  --primary-strong: #e35f00;
  --primary-soft: rgba(255, 122, 26, 0.12);

  --accent: #ffd166;
  --accent-soft: rgba(255, 209, 102, 0.14);

  --success: #49c38b;
  --danger: #ff6b57;

  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.24);
  --shadow-sm: 0 10px 26px rgba(0, 0, 0, 0.16);

  --radius-xs: 12px;
  --radius-sm: 16px;
  --radius-md: 22px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --container: 1240px;

  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 20px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 40px;
  --space-8: 48px;
  --space-9: 64px;
  --space-10: 80px;
  --space-11: 110px;

  --transition: 0.28s ease;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.06), transparent 22%),
    linear-gradient(180deg, #0a0a0c 0%, #101013 50%, #0d0d10 100%);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  outline: none;
}

.site-body {
  position: relative;
}

/* =========================
   DECOR
========================= */
.bg-orb {
  position: fixed;
  z-index: -3;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.8;
}

.bg-orb-1 {
  top: 110px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(255, 122, 26, 0.18);
}

.bg-orb-2 {
  top: 180px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: rgba(255, 209, 102, 0.12);
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.8) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 95%);
}

/* =========================
   LAYOUT / UTILITÁRIOS
========================= */
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.section {
  padding: var(--space-11) 0 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: var(--space-8);
}

.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 122, 26, 0.16);
  color: #ffd8bb;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.section-heading h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 0.96rem;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff7f1;
  background: linear-gradient(180deg, #ff8f3b 0%, #ff6f0f 100%);
  box-shadow: 0 14px 30px rgba(255, 122, 26, 0.24);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #ff9b50 0%, #ff7b1e 100%);
}

.btn-outline {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-strong);
}

.btn-lg {
  min-height: 58px;
  padding: 0 28px;
  border-radius: 18px;
}

.btn-full {
  width: 100%;
}

/* =========================
   HEADER
========================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 18px 0 14px;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.92), rgba(13, 13, 15, 0.56));
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.header-wrapper {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo-wrap {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 122, 26, 0.16), rgba(255, 122, 26, 0.05)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 122, 26, 0.18);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

.brand-logo-fallback {
  font-weight: 900;
  font-size: 1rem;
  color: #fff1e3;
  letter-spacing: -0.05em;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 1.04rem;
  letter-spacing: -0.03em;
}

.brand-text span {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color var(--transition);
}

.main-nav a:hover {
  color: #fff7f0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  margin-left: auto;
  padding: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: #f7efe6;
  border-radius: 999px;
}

.mobile-menu {
  display: none;
  width: min(calc(100% - 32px), var(--container));
  margin: 14px auto 0;
  padding: 14px;
  border-radius: 22px;
  background: rgba(21, 21, 24, 0.96);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 13px 12px;
  border-radius: 12px;
  color: var(--text-soft);
  font-weight: 700;
}

.mobile-menu a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

/* =========================
   HERO
========================= */
.hero-section {
  padding-top: 42px;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 28px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.1);
  border: 1px solid rgba(255, 122, 26, 0.18);
  color: #ffd5b4;
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-copy h1 {
  margin: 20px 0 18px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.08em;
  max-width: 700px;
}

.hero-copy h1 span {
  color: var(--primary);
}

.hero-copy p {
  max-width: 640px;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.08rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hero-highlight {
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.hero-highlight strong {
  display: block;
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

.hero-highlight span {
  display: block;
  margin-top: 6px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-product-card {
  width: 100%;
  max-width: 640px;
  padding: 20px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.12), transparent 26%),
    radial-gradient(circle at bottom right, rgba(255, 209, 102, 0.08), transparent 24%),
    rgba(24, 24, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.product-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.16);
  color: #ffe29a;
  font-size: 0.84rem;
  font-weight: 800;
}

.hero-product-image {
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 26px;
  margin-top: 18px;
}

.hero-product-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.hero-product-info h2 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  letter-spacing: -0.05em;
}

.hero-product-info p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 420px;
}

.hero-price-box {
  min-width: 170px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.hero-price-box span {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-price-box strong {
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.hero-product-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: #f2e8dc;
  font-size: 0.86rem;
  font-weight: 700;
}

/* =========================
   FEATURES
========================= */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card {
  padding: 24px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(24, 24, 28, 0.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.18);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 122, 26, 0.12);
  border: 1px solid rgba(255, 122, 26, 0.16);
  font-size: 1.4rem;
}

.feature-card h3 {
  margin: 18px 0 10px;
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.feature-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

/* =========================
   HIGHLIGHTS
========================= */
.highlight-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 20px;
}

.highlight-card {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(24, 24, 28, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    border-color var(--transition);
}

.highlight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 26, 0.18);
}

.highlight-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.highlight-card-large img {
  height: 100%;
  min-height: 420px;
}

.highlight-card-large {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 420px;
}

.highlight-content {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 209, 102, 0.1);
  border: 1px solid rgba(255, 209, 102, 0.15);
  color: #ffe29b;
  font-size: 0.8rem;
  font-weight: 800;
}

.highlight-content h3 {
  margin: 18px 0 10px;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.highlight-content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.highlight-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
}

.highlight-meta strong {
  font-size: 1.5rem;
  letter-spacing: -0.05em;
}

/* =========================
   MENU
========================= */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.menu-item {
  overflow: hidden;
  border-radius: 26px;
  background: rgba(24, 24, 28, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.menu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 26, 0.18);
  box-shadow: var(--shadow-md);
}

.menu-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.menu-item-content {
  padding: 20px;
}

.menu-item-content h3 {
  margin: 0 0 10px;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.menu-item-content p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
  min-height: 82px;
}

.menu-item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
}

.menu-item-foot strong {
  font-size: 1.34rem;
  letter-spacing: -0.05em;
}

/* =========================
   ORDER
========================= */
.section-order {
  padding-bottom: 0;
}

.order-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 22px;
  align-items: start;
}

.order-form-card,
.order-summary-card {
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 122, 26, 0.08), transparent 26%),
    rgba(24, 24, 28, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.order-form-card {
  padding: 24px;
}

.order-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group-full {
  grid-column: 1 / -1;
}

.field-group label {
  color: #d2c4b5;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: #fff8f1;
  border-radius: 16px;
  padding: 0 16px;
  transition:
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.field-group input,
.field-group select {
  min-height: 56px;
}

.field-group textarea {
  min-height: 140px;
  padding-top: 14px;
  resize: vertical;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: #8f8171;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(255, 122, 26, 0.35);
  box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

.order-summary-card {
  padding: 22px;
  position: sticky;
  top: 110px;
}

.summary-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.summary-label {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-header h3 {
  margin: 8px 0 0;
  font-size: 1.8rem;
  letter-spacing: -0.05em;
}

.clear-order-btn {
  color: #ffb08f;
  font-size: 0.92rem;
  font-weight: 800;
  transition: opacity var(--transition);
}

.clear-order-btn:hover {
  opacity: 0.82;
}

.summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 160px;
  max-height: 360px;
  overflow: auto;
  padding-right: 4px;
}

.summary-list::-webkit-scrollbar {
  width: 8px;
}

.summary-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.empty-order {
  display: grid;
  place-items: center;
  min-height: 150px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  text-align: center;
  line-height: 1.7;
}

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.order-item-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-item-info strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.order-item-info span {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.order-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-item-price {
  font-weight: 800;
  color: #ffe8d0;
}

.remove-item-btn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(255, 107, 87, 0.12);
  border: 1px solid rgba(255, 107, 87, 0.16);
  color: #ffc1b8;
  font-weight: 900;
}

.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-total span {
  color: var(--text-soft);
  font-weight: 700;
}

.summary-total strong {
  font-size: 2rem;
  letter-spacing: -0.06em;
}

.summary-footnote {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =========================
   TESTIMONIALS
========================= */
.section-testimonials {
  overflow: hidden;
}

.testimonials-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
}

.testimonials-marquee::before,
.testimonials-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(13, 13, 16, 1) 0%, rgba(13, 13, 16, 0) 100%);
}

.testimonials-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(13, 13, 16, 1) 0%, rgba(13, 13, 16, 0) 100%);
}

.testimonials-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marqueeScroll 34s linear infinite;
  will-change: transform;
}

.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  width: 350px;
  min-height: 220px;
  padding: 22px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(24, 24, 28, 0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.testimonial-card p {
  margin: 18px 0 24px;
  color: #f2ece5;
  line-height: 1.82;
  font-size: 1rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: rgba(255, 122, 26, 0.12);
  border: 1px solid rgba(255, 122, 26, 0.16);
  color: #ffd9bc;
  font-weight: 800;
}

.testimonial-user strong {
  display: block;
  font-size: 0.98rem;
}

.testimonial-user span {
  display: block;
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 0.9rem;
}

/* =========================
   FAQ
========================= */
.faq-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(24, 24, 28, 0.92);
  border: 1px solid var(--border);
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.faq-item.active {
  border-color: rgba(255, 122, 26, 0.18);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  min-height: 84px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
}

.faq-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffe7d1;
  font-size: 1.1rem;
  transition:
    transform var(--transition),
    background var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 122, 26, 0.12);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.34s ease;
}

.faq-item.active .faq-answer {
  max-height: 220px;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--text-soft);
  line-height: 1.8;
}

/* =========================
   CTA
========================= */
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at left center, rgba(255, 122, 26, 0.1), transparent 28%),
    radial-gradient(circle at right center, rgba(255, 209, 102, 0.08), transparent 24%),
    rgba(24, 24, 28, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.cta-box h2 {
  margin: 18px 0 10px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.cta-box p {
  max-width: 720px;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  padding: 70px 0 24px;
  margin-top: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.55fr));
  gap: 28px;
}

.footer-brand-block p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.footer-links h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-weight: 700;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff5ea;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  margin: 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* =========================
   HELPER CLASSES FOR JS
========================= */
.is-hidden {
  display: none !important;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1180px) {
  .hero-layout,
  .order-layout {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .highlight-card-large {
    grid-column: 1 / -1;
  }

  .menu-grid,
  .feature-grid,
  .footer-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-summary-card {
    position: static;
  }
}

@media (max-width: 980px) {
  .main-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 10vw, 4.6rem);
  }

  .hero-highlights,
  .feature-grid,
  .menu-grid,
  .footer-layout,
  .order-form-grid {
    grid-template-columns: 1fr;
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }

  .highlight-card-large {
    grid-template-columns: 1fr;
  }

  .highlight-card-large img {
    min-height: 260px;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding-top: 14px;
  }

  .section {
    padding-top: 74px;
  }

  .hero-section {
    padding-top: 28px;
  }

  .hero-product-card,
  .feature-card,
  .order-form-card,
  .order-summary-card,
  .testimonial-card,
  .cta-box {
    border-radius: 24px;
  }

  .hero-product-image {
    height: 280px;
  }

  .hero-product-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-price-box {
    width: 100%;
  }

  .hero-actions,
  .hero-product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-box .btn {
    width: 100%;
  }

  .menu-item img,
  .highlight-card img {
    height: 220px;
  }

  .testimonial-card {
    width: 300px;
  }

  .faq-question {
    min-height: 74px;
    padding: 0 16px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 16px 18px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand-logo-wrap {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .brand-text span {
    display: none;
  }

  .hero-copy h1,
  .section-heading h2,
  .cta-box h2 {
    letter-spacing: -0.05em;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-highlight strong,
  .summary-total strong {
    font-size: 1.5rem;
  }

  .menu-item-content,
  .highlight-content,
  .order-form-card,
  .order-summary-card,
  .feature-card,
  .testimonial-card,
  .cta-box {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-product-card {
    padding: 16px;
  }

  .hero-product-image {
    height: 230px;
    border-radius: 20px;
  }

  .hero-product-info h2 {
    font-size: 1.6rem;
  }

  .hero-highlight {
    padding: 16px;
  }

  .testimonial-card {
    width: 270px;
    min-height: 200px;
  }

  .testimonial-card p {
    font-size: 0.94rem;
  }
}
.produto-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    gap: 10px;
}

.preco {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.btn-add {
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    border: none;
    padding: 12px 18px;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    white-space: nowrap;
}

.btn-add:hover {
    transform: scale(1.05);
}
/* MODAL FUNDO */
.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    z-index: 9999;
}

/* CAIXA LOGIN */
.admin-box {
    width: 100%;
    max-width: 380px;
    padding: 30px;

    background: rgba(20,20,20,0.85);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);

    box-shadow: 0 20px 60px rgba(0,0,0,0.6);

    display: flex;
    flex-direction: column;
    gap: 15px;

    animation: fadeIn 0.3s ease;
}

/* TEXTO */
.admin-box h2 {
    color: #fff;
    margin: 0;
}

.admin-box p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 10px;
}

/* INPUTS */
.admin-box input {
    width: 100%;
    padding: 12px 14px;

    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;

    color: #fff;
    font-size: 14px;
    outline: none;
}

/* PASSWORD COM OLHO */
.input-password {
    position: relative;
}

.input-password span {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* BOTÃO */
.admin-box button {
    margin-top: 10px;
    padding: 14px;

    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    border: none;
    border-radius: 12px;

    color: #fff;
    font-weight: 600;
    font-size: 15px;

    cursor: pointer;
    transition: 0.3s;
}

.admin-box button:hover {
    transform: scale(1.03);
}

/* ANIMAÇÃO */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== DASHBOARD BASE ===== */
.dashboard-body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0f0f0f;
    color: #fff;
}

.dashboard {
    display: flex;
    height: 100vh;
}

/* ===== SIDEBAR ===== */
.sidebar {
    width: 250px;
    background: linear-gradient(180deg, #141414, #0d0d0d);
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* NAV */
.sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar nav a {
    padding: 12px;
    border-radius: 10px;
    color: #aaa;
    text-decoration: none;
    transition: 0.2s;
}

.sidebar nav a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

.sidebar nav a.active {
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: #fff;
}

/* FOOTER */
.sidebar-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    width: 35px;
    height: 35px;
    background: #222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar button {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #222;
    color: #fff;
    cursor: pointer;
}

/* ===== MAIN ===== */
.main {
    flex: 1;
    padding: 30px;
}

/* TOPO */
.topbar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* ===== CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

.card span {
    color: #aaa;
    font-size: 14px;
}

.card h2 {
    margin: 10px 0 0;
}

/* ===== TABELA ===== */
.tabela-box {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    text-align: left;
    padding: 12px;
}

th {
    color: #aaa;
    font-weight: 500;
}

tr {
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

td:last-child {
    color: #ff7a18;
}
/* ===== DASHBOARD MODERNO ===== */
.dash-body {
    background: #0d0d0d;
    color: #fff;
    font-family: Arial;
}

.dash {
    display: flex;
}

/* SIDEBAR */
.dash-sidebar {
    width: 250px;
    background: #111;
    height: 100vh;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.logo {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.logo-box {
    background: linear-gradient(135deg,#ff7a18,#ff3d00);
    padding: 10px;
    border-radius: 10px;
}

/* NAV */
.dash-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-sidebar nav a {
    padding: 12px;
    border-radius: 10px;
    display: flex;
    gap: 10px;
    color: #aaa;
    cursor: pointer;
}

.dash-sidebar nav a.active,
.dash-sidebar nav a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
}

/* MAIN */
.dash-main {
    flex: 1;
    padding: 30px;
}

/* CARDS */
.dash-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.dash-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
}

/* BOX */
.box {
    margin-top: 30px;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
}

.hidden {
    display: none;
}
/* =========================================================
   NUNES — FLUXO DE CAIXA ESTILO AZUL PREMIUM
   ========================================================= */

/* Card do Fluxo de Caixa (é o primeiro da grid lg:col-span-2) */
#panel-chart{
  background: linear-gradient(
    135deg,
    #071a35 0%,
    #0b2447 40%,
    #0d2c5a 100%
  ) !important;

  border: 1px solid rgba(59,130,246,.25) !important;
  box-shadow: 
    inset 0 1px 0 rgba(255,255,255,.05),
    0 20px 50px rgba(0,0,0,.45) !important;
}

/* Título */
#panel-chart h3{
  color: #ffffff !important;
}

/* Ícone */
#panel-chart i{
  color: #60a5fa !important;
}

/* Remove aquele tom marrom antigo */
html.theme-dark #panel-chart{
  background: linear-gradient(
    135deg,
    #071a35 0%,
    #0b2447 40%,
    #0d2c5a 100%
  ) !important;
}

/* Ajuste do canvas (pra não ficar apagado) */
#panel-chart canvas{
  filter: brightness(1.05) contrast(1.05);
}
.order-summary-card .summary-total {
    margin-bottom: 12px;
}

.order-summary-card .btn-full {
    margin-top: 12px;
}
/* ===========================
   UPGRADE FORM PEDIDO
=========================== */

.order-type-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.order-type-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    color: #f5e6d3;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
    overflow: hidden;
}

.order-type-option input {
    display: none;
}

.order-type-option.active {
    border-color: rgba(255, 132, 32, 0.65);
    background: linear-gradient(180deg, rgba(255,132,32,0.18), rgba(255,132,32,0.08));
    box-shadow: 0 0 0 1px rgba(255,132,32,0.12), 0 10px 30px rgba(255,132,32,0.12);
    color: #fff;
}

.hidden-field {
    display: none;
}

.summary-pricing {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255,255,255,0.82);
    font-size: 0.98rem;
}

.summary-line strong {
    color: #fff;
    font-weight: 700;
}

.summary-time {
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
}

.summary-total {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-top: 6px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.summary-total span {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f7e7d6;
}

.summary-total strong {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
    font-weight: 900;
    color: #fff4e8;
    text-shadow: 0 0 18px rgba(255, 132, 32, 0.20);
}

.order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.06);
}

.order-item + .order-item {
    margin-top: 12px;
}

.order-item-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.order-item-name {
    font-size: 1.03rem;
    font-weight: 700;
    color: #fff;
}

.order-item-unit {
    margin-top: 4px;
    color: rgba(255,255,255,0.58);
    font-size: 0.84rem;
}

.order-item-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.order-item-right strong {
    font-size: 1.05rem;
    color: #fff;
    font-weight: 800;
}

.remove-item-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.remove-item-btn:hover {
    background: rgba(255,132,32,0.12);
    color: #ff9b52;
}

.order-summary-card .btn-full {
    margin-top: 18px;
}

@media (max-width: 768px) {
    .order-type-toggle {
        grid-template-columns: 1fr;
    }

    .summary-total {
        align-items: flex-start;
        flex-direction: column;
    }

    .summary-total strong {
        font-size: 2.2rem;
    }

    .order-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .order-item-right {
        width: 100%;
        justify-content: space-between;
    }
}
.summary-total strong {
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    text-shadow: none !important;
}
/* ==========================
   SELECT DARK MODE FIX
========================== */

select {
    background-color: #1a1a1d !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 16px !important;
}

select:focus {
    outline: none !important;
    border-color: rgba(255,132,32,0.6) !important;
    box-shadow: 0 0 0 2px rgba(255,132,32,0.15) !important;
}

/* Cor das opções (funciona melhor no Chrome) */
select option {
    background-color: #1a1a1d;
    color: #ffffff;
}
/* FAQ funcionando de verdade */
.faq-answer {
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item .faq-icon {
    transition: transform 0.25s ease, background 0.25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}