/* ========= Base ========= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

:root {
  /* Ajuste aqui para bater 100% com as cores do site atual */
  --bg: #fff7ee;
  /* creme */
  --surface: #ffffff;
  /* branco */
  --ink: #1f1a17;
  /* texto */
  --muted: #6f6a66;
  /* texto secundário */

  --primary: #c5161d;
  /* vermelho */
  --primary-2: #e6452f;
  /* vermelho/laranja */
  --accent: #f2b705;
  /* amarelo “queijo” */

  --line: rgba(31, 26, 23, 0.10);
  --shadow: 0 18px 45px rgba(17, 12, 10, 0.12);
  --radius-lg: 22px;
  --radius-md: 16px;

  --container: 1120px;
  --ease: 180ms ease;

  --brand-green: #2E7D32;
  --accent-green: color-mix(in srgb, var(--brand-green) 70%, white 30%);
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

/* ========= Helpers ========= */
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.muted {
  color: var(--muted);
}

.badge--logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  /* mantém a altura parecida do badge de texto */
}

.badge--logo .badge-logo {
  height: 76px;
  /* ajuste fino: 14-18px costuma ficar perfeito */
  width: auto;
  display: block;
}


.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(242, 183, 5, 0.16), rgba(197, 22, 29, 0.10));
  border: 1px solid rgba(16, 114, 20, 0.375);
  color: #3a2622;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* ========= Botões ========= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 15px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.88rem;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
  user-select: none;
  white-space: nowrap;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 14px 30px rgba(197, 22, 29, 0.22);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(197, 22, 29, 0.30);
}

.btn-outline {
  background: var(--surface);
  border: 1px solid #2E7D32;
  color: #2E7D32;
}

.btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: var(--surface);
  border: 1px solid rgba(16, 114, 20, 0.375);
  color: #2E7D32
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ========= Header ========= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255, 247, 238, 0.78);
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  height: 94px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  position: relative;
  padding: 10px 10px;
  border-radius: 999px;
  color: #3a2f2b;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background var(--ease), color var(--ease), transform var(--ease);
}

.nav-link:hover {
  background: rgba(242, 183, 5, 0.16);
  transform: translateY(-1px);
}

.nav-link.is-active {
  background: rgba(197, 22, 29, 0.10);
  color: var(--primary);
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  border-radius: 999px;
  background: var(--brand-green);
}

.btn-nav {
  margin-left: 6px;
}

/* Hamburger (desktop escondido; mobile no media.css) */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #2a1f1b;
  border-radius: 999px;
}

/* ========= Hero ========= */
.hero {
  padding: 44px 0 28px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.40), rgba(242, 183, 5, 0.00) 62%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -160px -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(197, 22, 29, 0.22), rgba(197, 22, 29, 0.00) 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 26px;
  align-items: center;
  position: relative;
}

.hero-title {
  font-size: clamp(2.0rem, 3.2vw, 2.25rem);
  line-height: 1.06;
  margin: 12px 0 12px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.05rem;
  max-width: 56ch;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.hero-mini {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(31, 26, 23, 0.18);
}

.mini-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #3a2f2b;
  font-weight: 650;
  font-size: 0.95rem;
}

.mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 6px 14px rgba(197, 22, 29, 0.18);

  background: var(--brand-green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-green) 18%, transparent);
}

.mini-doti {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 6px 14px rgba(197, 22, 29, 0.18);

  background: var(--brand-green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-green) 18%, transparent);
}

.mini-dotz {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 6px 14px rgba(197, 22, 29, 0.18);

  background: var(--brand-green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-green) 18%, transparent);
}

.mini-dott {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 6px 14px rgba(197, 22, 29, 0.18);

  background: var(--brand-green);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-green) 18%, transparent);
}

/* ========= Hero Art (pizza card) ========= */
.hero-art {
  display: flex;
  justify-content: flex-end;
}

.pizza-card {
  width: min(420px, 100%);
  background: var(--surface);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transform: rotate(0.5deg);
}

.pizza-media {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #fff3e3;
}

/* A imagem ocupa todo o espaço e corta as bordas mantendo proporção */
.pizza-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Opcional: overlay para manter texto/efeitos com contraste */
.pizza-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.28),
      rgba(0, 0, 0, 0.00) 60%);
  pointer-events: none;
}


.pizza-slice {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 26px;
  left: 24px;
  top: 26px;
  transform: rotate(-8deg);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.55), transparent 40%),
    radial-gradient(circle at 40% 60%, rgba(242, 183, 5, 0.65), rgba(242, 183, 5, 0.0) 58%),
    linear-gradient(135deg, rgba(197, 22, 29, 0.86), rgba(230, 69, 47, 0.86));
  box-shadow: 0 18px 38px rgba(197, 22, 29, 0.22);
}

.slice-2 {
  left: 160px;
  top: 46px;
  transform: rotate(10deg) scale(0.88);
  opacity: 0.9;
}

.slice-3 {
  left: 88px;
  top: 118px;
  transform: rotate(24deg) scale(0.72);
  opacity: 0.75;
}

.pizza-meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 16px 18px;
}

.meta-title {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #4a3b36;
}

.meta-sub {
  font-weight: 900;
  font-size: 1.12rem;
  margin-top: 2px;
}

.meta-right {
  text-align: right;
}

.meta-price {
  font-weight: 950;
  color: var(--primary);
  font-size: 1.12rem;
}

.meta-note {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Selo "Quentinha" (adesivo) - fundo via ::before */
.pizza-card {
  position: relative;
}

/* garante referência do absolute */




/* ========= Info strip ========= */
.info-strip {
  padding: 18px 0 34px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: 0 10px 22px rgba(17, 12, 10, 0.06);
}

/* Botão "Conferir" dentro dos cards de info */
.info-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 10px;
  padding: 10px 14px;

  border-radius: 999px;
  border: 1.5px solid rgba(0, 0, 0, .15);
  background: #f01414;
  color: #ffffff;

  font-weight: 700;
  font-size: 14px;
  text-decoration: none;

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

.info-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 0, 0, .22);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .08);
}

.info-cta:active {
  transform: translateY(0);
  box-shadow: none;
}


.info-kicker {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #4a3b36;
  margin-bottom: 6px;
}

.info-strong {
  font-weight: 950;
  font-size: 1.05rem;
}

.info-muted {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

/* ========= Highlights ========= */
.highlights {
  padding: 34px 0 58px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.food-card {
  background: var(--surface);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 24px rgba(17, 12, 10, 0.07);
  transition: transform var(--ease), box-shadow var(--ease);
}

.food-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 12, 10, 0.12);
}

.food-thumb {
  height: 150px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(31, 26, 23, 0.08);
  background: #ffe8d2;
  /* fallback enquanto carrega */
}

.food-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* enquadra sem deformar */
  object-position: center;
  display: block;
}


/* variações sutis */
.thumb-2 {
  background:
    radial-gradient(circle at 25% 40%, rgba(197, 22, 29, 0.20), transparent 58%),
    radial-gradient(circle at 75% 55%, rgba(242, 183, 5, 0.35), transparent 60%),
    linear-gradient(135deg, #fff, #ffe8d2);
}

.thumb-3 {
  background:
    radial-gradient(circle at 40% 30%, rgba(242, 183, 5, 0.35), transparent 60%),
    radial-gradient(circle at 65% 75%, rgba(197, 22, 29, 0.18), transparent 60%),
    linear-gradient(135deg, #fff, #ffe8d2);
}

.food-card h3 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* ========= Footer ========= */
.footer {
  border-top: 1px solid rgba(31, 26, 23, 0.08);
  background: rgba(255, 255, 255, 0.6);
  padding: 22px 0 30px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 6px;
}

.footer-link {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #3a2f2b;
  font-weight: 750;
}

.footer-link:hover {
  border-color: rgba(197, 22, 29, 0.22);
  background: rgba(242, 183, 5, 0.14);
}

/* ========= Modal ========= */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 10, 0.54);
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  z-index: 80;
}

.overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  width: min(520px, 100%);
  background: radial-gradient(circle at top left, rgba(242, 183, 5, 0.22), transparent 55%),
    radial-gradient(circle at bottom right, rgba(197, 22, 29, 0.14), transparent 60%),
    var(--surface);
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
}

.modal h2 {
  margin: 10px 0 8px;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}

.modal-info {
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.label {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #4a3b36;
}

.value {
  font-weight: 900;
  margin-top: 4px;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.75);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 1.4rem;
  line-height: 1;
}


/* PAGAMENTOS.HTML */
/* ===========================
   PAGAMENTOS (pagamentos.html)
   =========================== */

.page-hero {
  padding: 44px 0 24px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -140px -120px auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.38), rgba(242, 183, 5, 0.00) 62%);
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto auto -170px -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(197, 22, 29, 0.20), rgba(197, 22, 29, 0.00) 60%);
  pointer-events: none;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
  position: relative;
}

.page-title {
  font-size: clamp(2.1rem, 3.0vw, 3.0rem);
  line-height: 1.06;
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
}

.page-subtitle {
  font-size: 1.05rem;
  max-width: 62ch;
  color: #3a2f2b;
}

.page-hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* Arte CSS - cartão */
/* ===== Cardápio hero: imagem única ===== */
.menu-hero-photo {
  width: min(420px, 100%);
  border-radius: 26px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  background: #ffe8d2;
}

.menu-hero-photo img {
  width: 100%;
  height: 360px;
  /* ajuste se quiser mais alto/baixo */
  object-fit: cover;
  /* enquadra sem deformar */
  object-position: center;
  display: block;
}

/* leve degradê para dar contraste pro selo */
.menu-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.00) 55%);
  pointer-events: none;
}

.menu-hero-stamp {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #ffd86a);
  color: #3a2f2b;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(242, 183, 5, 0.22);
  transform: rotate(10deg);
  z-index: 1;
}


.pay-card {
  width: min(420px, 100%);
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background:
    radial-gradient(circle at 30% 20%, rgba(242, 183, 5, 0.38), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(197, 22, 29, 0.20), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 232, 210, 0.88));
  box-shadow: var(--shadow);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.pay-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 210deg, rgba(197, 22, 29, 0.0), rgba(197, 22, 29, 0.12), rgba(242, 183, 5, 0.16), rgba(197, 22, 29, 0.0));
  transform: rotate(12deg);
  pointer-events: none;
}

.pay-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.chip {
  width: 54px;
  height: 42px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(242, 183, 5, 0.95), rgba(255, 216, 106, 0.9));
  border: 1px solid rgba(31, 26, 23, 0.18);
  box-shadow: 0 14px 24px rgba(242, 183, 5, 0.18);
  position: relative;
}

.chip::before,
.chip::after {
  content: "";
  position: absolute;
  inset: 10px 8px;
  border-radius: 8px;
  border: 1px solid rgba(31, 26, 23, 0.18);
}

.chip::after {
  inset: 16px 8px;
  opacity: 0.7;
}

.contactless {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.65);
  position: relative;
}

.contactless::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 2px solid rgba(197, 22, 29, 0.30);
}

.contactless::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 999px;
  border: 2px solid rgba(197, 22, 29, 0.22);
}

.pay-card-mid {
  margin-top: 18px;
  position: relative;
  z-index: 1;
}

.digits {
  font-weight: 950;
  letter-spacing: 0.12em;
  color: #2a1f1b;
  font-size: 1.06rem;
}

.name {
  margin-top: 8px;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.pay-card-bot {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  z-index: 1;
}

.logo-dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(197, 22, 29, 0.26);
  border: 1px solid rgba(31, 26, 23, 0.10);
}

.logo-dot.is-2 {
  background: rgba(242, 183, 5, 0.36);
}

/* Seção clara “soft” */
.section-soft {
  padding: 28px 0 60px;
}

.pay-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.pay-method {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
  transition: transform var(--ease), box-shadow var(--ease);
}

.pay-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 12, 10, 0.10);
}

.pay-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: linear-gradient(135deg, rgba(242, 183, 5, 0.22), rgba(197, 22, 29, 0.12));
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

/* Ícones CSS puros (minimalistas) */
.pay-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  border: 2px solid rgba(197, 22, 29, 0.35);
}

.pay-icon.is-qr::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 8px;
  height: 8px;
  background: rgba(197, 22, 29, 0.28);
  box-shadow:
    12px 0 0 rgba(197, 22, 29, 0.22),
    0 12px 0 rgba(197, 22, 29, 0.22),
    12px 12px 0 rgba(197, 22, 29, 0.30),
    24px 12px 0 rgba(242, 183, 5, 0.30);
  border-radius: 2px;
}

.pay-icon.is-cash::after {
  content: "£";
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-weight: 950;
  color: rgba(197, 22, 29, 0.38);
  transform: rotate(-10deg);
}

.pay-icon.is-card::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 22px;
  height: 14px;
  border-radius: 6px;
  border: 2px solid rgba(242, 183, 5, 0.55);
}

.pay-icon.is-bank::after {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 2px solid rgba(197, 22, 29, 0.22);
  transform: rotate(8deg);
}

.pay-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(197, 22, 29, 0.28);
  background: rgba(255, 255, 255, 0.70);
}

.pay-note-title {
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a3b36;
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.pay-note-text {
  color: #3a2f2b;
}

.faq {
  margin-top: 22px;
  padding-top: 10px;
}

.faq-title {
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.acc {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(17, 12, 10, 0.06);
  margin-bottom: 10px;
}

.acc-toggle {
  width: 100%;
  text-align: left;
  padding: 14px 14px;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
  color: #2a1f1b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.acc-plus {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.14);
  position: relative;
  flex: 0 0 auto;
}

.acc-plus::before,
.acc-plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 2px;
  background: rgba(197, 22, 29, 0.65);
  border-radius: 999px;
  top: 0;
  bottom: 0;
}

.acc-plus::after {
  width: 2px;
  height: 10px;
  left: 0;
  right: 0;
}

.acc.is-open .acc-plus::after {
  opacity: 0;
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease;
  padding: 0 14px;
}

.acc.is-open .acc-panel {
  padding: 0 14px 14px;
}

.center-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

/*alergenicos.html*/
/* ===========================
   ALERGÊNICOS (alergenicos.html)
   =========================== */

.page-allergens .page-hero {
  padding: 44px 0 18px;
}

/* Banner de alerta */
.alert-banner {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 22, 29, 0.18);
  background: linear-gradient(135deg, rgba(197, 22, 29, 0.10), rgba(242, 183, 5, 0.10));
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
}

.alert-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(31, 26, 23, 0.414);
  background: rgba(254, 230, 74, 0.963);
  position: relative;
  flex: 0 0 auto;
}

.alert-icon::before {
  content: "!";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: rgba(197, 22, 29, 0.75);
}

.alert-title {
  font-weight: 950;
  letter-spacing: 0.04em;
}

.alert-text {
  margin-top: 2px;
  color: #3a2f2b;
}

/* Arte CSS */
.allergy-card {
  width: min(420px, 100%);
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background:
    radial-gradient(circle at 30% 20%, rgba(242, 183, 5, 0.35), transparent 58%),
    radial-gradient(circle at 80% 70%, rgba(197, 22, 29, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.allergy-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pill {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(31, 26, 23, 0.10);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #4a3b36;
}

.dots {
  display: inline-flex;
  gap: 6px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(197, 22, 29, 0.25);
}

.dots span:nth-child(2) {
  background: rgba(242, 183, 5, 0.35);
}

.dots span:nth-child(3) {
  background: rgba(31, 26, 23, 0.10);
}

.allergy-card-body {
  margin-top: 12px;
  height: 220px;
  border-radius: 18px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 232, 210, 0.80));
  position: relative;
  overflow: hidden;
}

.ring {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  left: -70px;
  top: -70px;
  border: 14px solid rgba(242, 183, 5, 0.18);
}

.lines {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: grid;
  gap: 10px;
  align-content: center;
}

.line {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(197, 22, 29, 0.22), rgba(242, 183, 5, 0.20));
}

.line.w1 {
  width: 82%;
}

.line.w2 {
  width: 64%;
}

.line.w3 {
  width: 74%;
}

.stamp {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: #2a1f1b;
  background: linear-gradient(135deg, var(--accent), #ffd86a);
  box-shadow: 0 18px 30px rgba(242, 183, 5, 0.22);
  transform: rotate(8deg);
}

.allergy-card-foot {
  margin-top: 12px;
}

.allergy-card-foot .meta-title {
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  color: #4a3b36;
}

.allergy-card-foot .meta-sub {
  font-weight: 950;
  font-size: 1.12rem;
}

/* Busca + chips */
.search-row {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.search {
  flex: 1 1 360px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #2E7D32;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 10px 20px rgba(17, 12, 10, 0.06);
}

.search-ico {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #2E7D32;
  position: relative;
}

.search-ico::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background: #2E7D32;
  right: -7px;
  bottom: -4px;
  transform: rotate(45deg);
  border-radius: 999px;
}

.search input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  font-weight: 650;
  color: #2a1f1b;
}

.chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip-btn {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: rgba(255, 255, 255, 0.80);
  font-weight: 900;
  color: #3a2f2b;
  letter-spacing: 0.02em;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.chip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 12, 10, 0.10);
}

.chip-btn.is-active {
  border-color: rgba(197, 22, 29, 0.22);
  background: rgba(197, 22, 29, 0.10);
  color: var(--primary);
}

/* Grid de alergênicos */
.allergen-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.allergen-item {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
  transition: transform var(--ease), box-shadow var(--ease), opacity var(--ease);
}

.allergen-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 12, 10, 0.10);
}

.allergen-item.is-hidden {
  opacity: 0.18;
  pointer-events: none;
}

.a-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a-ico-img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
}


.a-ico {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: linear-gradient(135deg, rgba(242, 183, 5, 0.22), rgba(197, 22, 29, 0.12));
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}


.allergen-item h3 {
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

/* CTA painel */
.cta-panel {
  margin-top: 18px;
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 232, 210, 0.70));
  box-shadow: 0 14px 26px rgba(17, 12, 10, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-panel h2 {
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}

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




/* ===========================
   CARDÁPIO (cardapio.html)
   =========================== */

.page-menu .menu-hero {
  padding: 44px 0 18px;
}

.menu-art {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background:
    radial-gradient(circle at 30% 20%, rgba(242, 183, 5, 0.36), transparent 58%),
    radial-gradient(circle at 80% 70%, rgba(197, 22, 29, 0.18), transparent 60%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.menu-art-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  border: 18px solid rgba(242, 183, 5, 0.16);
  left: -110px;
  top: -110px;
}

.menu-art-tile {
  position: absolute;
  width: 160px;
  height: 120px;
  border-radius: 18px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 183, 5, 0.30), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(197, 22, 29, 0.16), transparent 60%),
    linear-gradient(135deg, #fff, #ffe8d2);
  box-shadow: 0 16px 30px rgba(17, 12, 10, 0.10);
}

.menu-art-tile.t1 {
  right: 22px;
  top: 26px;
  transform: rotate(6deg);
}

.menu-art-tile.t2 {
  left: 28px;
  bottom: 40px;
  transform: rotate(-8deg);
}

.menu-art-tile.t3 {
  right: 58px;
  bottom: 80px;
  transform: rotate(14deg);
  opacity: 0.9;
}

.menu-art-stamp {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #ffd86a);
  color: #3a2f2b;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(242, 183, 5, 0.22);
  transform: rotate(10deg);
}

.menu-controls {
  padding: 10px 0 0;
  position: static;
  top: 76px;
  z-index: 40;
  background: rgba(255, 247, 238, 0.80);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(31, 26, 23, 0.04);
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
}

.controls-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
}

.btn-compact {
  padding: 10px 14px;
  font-size: 0.82rem;
}

.category-bar {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow: auto;
  padding: 0 0 12px;
  -webkit-overflow-scrolling: touch;
}

.category-bar::-webkit-scrollbar {
  height: 8px;
}

.category-bar::-webkit-scrollbar-thumb {
  background: rgba(31, 26, 23, 0.10);
  border-radius: 999px;
}

.cat-chip {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: rgba(255, 255, 255, 0.82);
  font-weight: 900;
  color: #3a2f2b;
  white-space: nowrap;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}

.cat-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 12, 10, 0.10);
}

.cat-chip.is-active {
  border-color: rgba(197, 22, 29, 0.22);
  background: rgba(197, 22, 29, 0.10);
  color: var(--primary);
}

.menu-list {
  padding: 18px 0 32px;
}

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

.menu-card {
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(17, 12, 10, 0.07);
  transition: transform var(--ease), box-shadow var(--ease);
  display: flex;
  flex-direction: column;
}

.menu-card:hover,
.value-card:hover,
.pay-method:hover,
.contact-card:hover {
  box-shadow:
    0 12px 26px rgba(0, 0, 0, .08),
    0 0 0 1px color-mix(in srgb, var(--brand-green) 22%, transparent);
}


.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(17, 12, 10, 0.12);
}

.menu-photo {
  height: 170px;
  background: #ffe8d2;
  border-bottom: 1px solid rgba(31, 26, 23, 0.08);
  overflow: hidden;
}

.menu-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.menu-body {
  padding: 14px;
  display: grid;
  gap: 8px;
}

.menu-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.menu-name {
  font-size: 1.06rem;
  letter-spacing: -0.01em;
}

.menu-price {
  font-weight: 950;
  color: var(--primary);
  white-space: nowrap;
}

.menu-desc {
  color: var(--muted);
  font-size: 0.95rem;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.tag {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: rgba(242, 183, 5, 0.12);
  color: #4a3b36;

  border-color: color-mix(in srgb, var(--brand-green) 35%, transparent);
  background: color-mix(in srgb, var(--brand-green) 12%, white);
  color: color-mix(in srgb, var(--brand-green) 75%, #111);
}

.menu-actions {
  padding: 0 14px 14px;
  display: flex;
  gap: 10px;
  margin-top: auto;
}

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

/* Modal pedido */
.modal-order {
  width: min(720px, 100%);
}

.order-form {
  margin-top: 10px;
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-label {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: #4a3b36;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.92);
  outline: none;
  font-weight: 650;
  color: #2a1f1b;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}

.field textarea {
  resize: vertical;
  min-height: 92px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(197, 22, 29, 0.28);
  box-shadow: 0 0 0 4px rgba(197, 22, 29, 0.10);
}

.order-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.order-actions .btn {
  flex: 1 1 240px;
}

.form-hint {
  font-size: 0.9rem;
}


/* ===== Modal: permitir scroll no conteúdo (mobile) ===== */
.overlay {
  overflow: auto;
  /* scroll no overlay se precisar */
  -webkit-overflow-scrolling: touch;
}

.modal {
  max-height: calc(100dvh - 24px);
  /* viewport dinâmica (melhor no mobile) */
  overflow-y: auto;
  /* scroll dentro do modal */
}

/* fallback caso algum browser não suporte dvh */
@supports not (height: 100dvh) {
  .modal {
    max-height: calc(100vh - 24px);
  }
}


/* ===========================
   CONTATO (contato.html)
   =========================== */

.page-contact .contact-hero {
  padding: 44px 0 18px;
}

/* Arte */
.contact-art {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-art-blob {
  position: absolute;
  inset: -40% -40% auto auto;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.35), transparent 58%);
  transform: rotate(18deg);
}

.contact-art-card {
  position: absolute;
  width: 210px;
  height: 150px;
  border-radius: 20px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 183, 5, 0.28), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(197, 22, 29, 0.14), transparent 60%),
    linear-gradient(135deg, #fff, #ffe8d2);
  box-shadow: 0 18px 34px rgba(17, 12, 10, 0.10);
}

.contact-art-card.c1 {
  left: 22px;
  top: 34px;
  transform: rotate(-6deg);
}

.contact-art-card.c2 {
  right: 26px;
  bottom: 70px;
  transform: rotate(8deg);
  opacity: 0.95;
}

.contact-art-pin {
  position: absolute;
  left: 46%;
  top: 50%;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(197, 22, 29, 0.18), rgba(242, 183, 5, 0.18));
  border: 1px solid rgba(31, 26, 23, 0.10);
  box-shadow: 0 18px 30px rgba(197, 22, 29, 0.12);
  transform: translate(-50%, -50%) rotate(10deg);
}

.contact-art-pin::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 999px;
  border: 3px solid rgba(197, 22, 29, 0.35);
}

.contact-art-stamp {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #ffd86a);
  color: #3a2f2b;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(242, 183, 5, 0.22);
  transform: rotate(-6deg);
}

/* Layout principal */
.contact-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
  transition: transform var(--ease), box-shadow var(--ease);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 12, 10, 0.10);
}

.c-ico {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: linear-gradient(135deg, rgba(242, 183, 5, 0.22), rgba(197, 22, 29, 0.12));
  margin-bottom: 10px;
  position: relative;
}

.c-ico::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  border: 2px solid rgba(197, 22, 29, 0.28);
}

.c-ico.is-wa::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(242, 183, 5, 0.55);
}

.c-ico.is-mail::after {
  content: "@";
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-weight: 950;
  color: rgba(197, 22, 29, 0.45);
}

.c-ico.is-time::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(242, 183, 5, 0.55);
}

.c-ico.is-map::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 10px;
  height: 14px;
  border-radius: 10px 10px 10px 10px;
  border: 2px solid rgba(242, 183, 5, 0.55);
}

/* Form card */
.form-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
}

/* Mapa */
.map-wrap {
  margin-top: 18px;
}

.map-head {
  margin-bottom: 10px;
}

.map-iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
  border-radius: 12px;
}


.map-placeholder {
  height: 320px;
  display: grid;
  place-items: center;
  padding: 16px;
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 183, 5, 0.22), transparent 58%),
    radial-gradient(circle at 70% 70%, rgba(197, 22, 29, 0.14), transparent 60%),
    linear-gradient(135deg, #fff, #ffe8d2);
}

/* WhatsApp flutuante */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;

  box-shadow: 0 18px 44px rgba(197, 22, 29, 0.26);
  transition: transform var(--ease), box-shadow var(--ease);
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(197, 22, 29, 0.32);
}

.wa-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(242, 183, 5, 0.95);
  box-shadow: 0 0 0 6px rgba(242, 183, 5, 0.18);
}

/* ===== Contato: arte mais “fale conosco” (CSS puro) ===== */
.page-contact .contact-art {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background:
    radial-gradient(circle at 30% 20%, rgba(242, 183, 5, 0.28), transparent 58%),
    radial-gradient(circle at 80% 70%, rgba(197, 22, 29, 0.14), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 232, 210, 0.86));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* halo suave */
.page-contact .contact-art::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 220deg,
      rgba(197, 22, 29, 0.00),
      rgba(197, 22, 29, 0.10),
      rgba(242, 183, 5, 0.14),
      rgba(197, 22, 29, 0.00));
  transform: rotate(8deg);
  pointer-events: none;
  opacity: 0.65;
}

/* bolha grande (fundo) */
.page-contact .contact-art-blob {
  position: absolute;
  left: -22%;
  top: -22%;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.22), transparent 62%);
  filter: blur(0.2px);
  pointer-events: none;
}

/* Cards viram “bolhas de chat” */
.page-contact .contact-art-card {
  position: absolute;
  width: 250px;
  height: 170px;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 183, 5, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(197, 22, 29, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(17, 12, 10, 0.10);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

/* “Rabinho” da bolha */
.page-contact .contact-art-card::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: rgba(255, 255, 255, 0.82);
  border-left: 1px solid rgba(31, 26, 23, 0.12);
  border-bottom: 1px solid rgba(31, 26, 23, 0.12);
  border-bottom-left-radius: 6px;
  left: 26px;
  bottom: -9px;
  transform: rotate(45deg);
}

/* “linhas de texto” dentro da bolha */
.page-contact .contact-art-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 22px;
  height: 90px;
  background:
    linear-gradient(90deg, rgba(31, 26, 23, 0.12), rgba(31, 26, 23, 0.06)) 0 0 / 78% 10px no-repeat,
    linear-gradient(90deg, rgba(31, 26, 23, 0.10), rgba(31, 26, 23, 0.05)) 0 22px / 64% 10px no-repeat,
    linear-gradient(90deg, rgba(31, 26, 23, 0.10), rgba(31, 26, 23, 0.05)) 0 44px / 72% 10px no-repeat,
    linear-gradient(90deg, rgba(31, 26, 23, 0.08), rgba(31, 26, 23, 0.04)) 0 66px / 48% 10px no-repeat;
  border-radius: 10px;
  opacity: 0.9;
}

/* posicionamento + animação sutil */
@keyframes floaty {
  0% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(-8px) rotate(-6deg);
  }

  100% {
    transform: translateY(0) rotate(-6deg);
  }
}

@keyframes floaty2 {
  0% {
    transform: translateY(0) rotate(8deg);
  }

  50% {
    transform: translateY(-10px) rotate(8deg);
  }

  100% {
    transform: translateY(0) rotate(8deg);
  }
}

.page-contact .contact-art-card.c1 {
  left: 20px;
  top: 34px;
  transform: rotate(-6deg);
  animation: floaty 3.6s ease-in-out infinite;
}

.page-contact .contact-art-card.c2 {
  right: 20px;
  bottom: 72px;
  transform: rotate(8deg);
  animation: floaty2 4.2s ease-in-out infinite;
}

/* PIN vira “ícone de telefone” */
.page-contact .contact-art-pin {
  position: absolute;
  left: 52%;
  top: 54%;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(197, 22, 29, 0.18), rgba(242, 183, 5, 0.22));
  border: 1px solid rgba(31, 26, 23, 0.10);
  box-shadow: 0 18px 30px rgba(197, 22, 29, 0.12);
  transform: translate(-50%, -50%) rotate(10deg);
}

/* “telefone” com bordas */
.page-contact .contact-art-pin::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 12px;
  border: 2px solid rgba(197, 22, 29, 0.35);
}

/* “aviãozinho de enviar” (triângulo) */
.page-contact .contact-art-pin::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: 16px;
  top: 18px;
  border-left: 12px solid rgba(242, 183, 5, 0.75);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: rotate(12deg);
  filter: drop-shadow(0 8px 12px rgba(242, 183, 5, 0.18));
}

/* selo mantém */
.page-contact .contact-art-stamp {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #ffd86a);
  color: #3a2f2b;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(242, 183, 5, 0.22);
  transform: rotate(-6deg);
}



/* ===========================
   SOBRE (sobre.html)
   =========================== */

.page-about .about-hero {
  padding: 44px 0 18px;
}

.about-lead {
  margin-top: 12px;
  max-width: 70ch;
}

.about-bullets {
  margin-top: 16px;
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed rgba(31, 26, 23, 0.18);
}

/* Arte CSS “sobre” */
.about-art {
  width: min(420px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.about-art-heat {
  position: absolute;
  inset: -40% -40% auto auto;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(197, 22, 29, 0.18), transparent 62%);
  transform: rotate(12deg);
}

.about-art-card {
  position: absolute;
  width: 250px;
  height: 170px;
  border-radius: 22px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background:
    radial-gradient(circle at 30% 30%, rgba(242, 183, 5, 0.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(197, 22, 29, 0.10), transparent 60%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 34px rgba(17, 12, 10, 0.10);
}

.about-art-card.k1 {
  left: 22px;
  top: 44px;
  transform: rotate(-8deg);
}

.about-art-card.k2 {
  right: 22px;
  bottom: 86px;
  transform: rotate(10deg);
  opacity: 0.95;
}

/* Coração com pseudo-elementos */
.about-art-heart {
  position: absolute;
  left: 52%;
  top: 52%;
  width: 64px;
  height: 64px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 16px;
  background: rgba(197, 22, 29, 0.12);
  border: 1px solid rgba(31, 26, 23, 0.10);
  box-shadow: 0 18px 30px rgba(197, 22, 29, 0.12);
}

.about-art-heart::before,
.about-art-heart::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(242, 183, 5, 0.22);
  border: 1px solid rgba(31, 26, 23, 0.08);
}

.about-art-heart::before {
  left: -10px;
  top: 12px;
}

.about-art-heart::after {
  left: 12px;
  top: -10px;
}

.about-art-stamp {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #ffd86a);
  color: #3a2f2b;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 12px;
  border-radius: 14px;
  box-shadow: 0 18px 30px rgba(242, 183, 5, 0.22);
  transform: rotate(-6deg);
}

/* Story layout */
.about-story {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.story-text {
  background: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(31, 26, 23, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
}

.story-highlights {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-kpi {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: 16px;
  padding: 12px;
}

.kpi-title {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: #4a3b36;
}

.kpi-value {
  margin-top: 4px;
  font-weight: 950;
  font-size: 1.2rem;
  color: #2E7D32;
  letter-spacing: -0.01em;
}

.kpi-sub {
  margin-top: 6px;
  font-size: 0.92rem;
}

.story-media {
  display: grid;
  gap: 10px;
}

.about-photo {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31, 26, 23, 0.10);
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
  background: #ffe8d2;
}

.about-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.00) 55%);
  pointer-events: none;
}

.about-photo-tag {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 26, 23, 0.12);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.about-photo-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-photo-mini img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
  display: block;
  background: #ffe8d2;
}

/* Valores */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.value-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
  transition: transform var(--ease), box-shadow var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(17, 12, 10, 0.10);
}

.v-ico {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: linear-gradient(135deg, rgba(242, 183, 5, 0.22), rgba(197, 22, 29, 0.12));
  margin-bottom: 10px;
  position: relative;
}

.v-ico::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 10px;
  border: 2px solid rgba(197, 22, 29, 0.28);
}

.v-ico.is-oven::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 12px;
  height: 10px;
  border-radius: 6px;
  border: 2px solid rgba(242, 183, 5, 0.55);
}

.v-ico.is-cheese::after {
  content: "";
  position: absolute;
  right: 13px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(242, 183, 5, 0.55);
}

.v-ico.is-chat::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 12px;
  height: 9px;
  border-radius: 6px;
  border: 2px solid rgba(242, 183, 5, 0.55);
}

.v-ico.is-care::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(197, 22, 29, 0.24);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   HOME: Avaliações
   =========================== */

.reviews {
  padding: 42px 0 70px;
}

.reviews-shell {
  margin-top: 14px;
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr 46px;
  gap: 10px;
  align-items: center;
}

/* Track com scroll-snap (carrossel natural) */
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 14px;

  overflow-x: auto;
  padding: 8px 4px 14px;

  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  -webkit-overflow-scrolling: touch;
}

.reviews-track::-webkit-scrollbar {
  height: 10px;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: rgba(31, 26, 23, 0.12);
  border-radius: 999px;
}

/* Card */
.review-card {
  scroll-snap-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 26, 23, 0.10);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(17, 12, 10, 0.10);
}

/* detalhe decorativo */
.review-card::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(242, 183, 5, 0.24), transparent 62%);
  pointer-events: none;
}

.review-card::after {
  content: "“”";
  position: absolute;
  right: 14px;
  bottom: 6px;
  font-weight: 950;
  font-size: 52px;
  letter-spacing: -0.08em;
  color: rgba(197, 22, 29, 0.16);
  pointer-events: none;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid rgba(31, 26, 23, 0.10);
  background: #ffe8d2;
}

.review-name {
  font-weight: 950;
  letter-spacing: -0.01em;
}

.review-sub {
  font-size: 0.9rem;
}

.review-text {
  color: #3a2f2b;
  font-weight: 600;
  line-height: 1.6;
}

/* Setas */
.reviews-arrow {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(31, 26, 23, 0.12);
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 12px 22px rgba(17, 12, 10, 0.06);
  font-size: 26px;
  font-weight: 900;
  color: #2a1f1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--ease), box-shadow var(--ease);
}

.reviews-arrow:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(17, 12, 10, 0.10);
}

/* Rodapé da seção */
.reviews-bottom {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Dots */
.reviews-dots {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(31, 26, 23, 0.14);
  border: 1px solid rgba(31, 26, 23, 0.10);
  transition: transform var(--ease), background var(--ease);
}

.reviews-dot.is-active {
  background: rgba(22, 197, 51, 0.45);
  transform: scale(1.15);
}



/* ====================================
   LANG SWITCH (BANDEIRAS RETANGULARES)
   ==================================== */

/* Switch de idioma com imagens (retangular) */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Use seletor mais específico pra ganhar de CSS antigo */
.lang-switch .flag {
  width: 40px;
  height: 24px;
  border-radius: 6px;
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  position: relative;
}

/* Mata qualquer CSS antigo que desenhava bandeira via pseudo-elemento */
.lang-switch .flag::before,
.lang-switch .flag::after {
  content: none !important;
  display: none !important;
}

/* Garante que a imagem fique na frente */
.lang-switch .flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  border-radius: 4px;
}


.flag {
  width: 48px;
  height: 32px;
  /* proporção retangular (3:2, comum em bandeiras) */
  border-radius: 6px;
  /* cantos levemente arredondados */
  border: 2px solid transparent;
  background: transparent;
  padding: 0;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
  position: relative;

  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

/* Imagem dentro do botão */
.flag-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* preenche sem distorcer */
  display: block;
  border-radius: 4px;
  /* levemente menor que o botão pra não "vazar" */
}

/* Hover */
.flag:hover {
  transform: scale(1.08);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Active (bandeira selecionada) */
.flag.is-active {
  border-color: #C62828;
  /* vermelho da marca */
  box-shadow:
    0 0 0 3px rgba(198, 40, 40, 0.15),
    0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(1.03);
}

/* Active + hover */
.flag.is-active:hover {
  transform: scale(1.1);
}

/* Focus (acessibilidade) */
.flag:focus {
  outline: 3px solid rgba(198, 40, 40, 0.4);
  outline-offset: 3px;
}

.flag:focus:not(:focus-visible) {
  outline: none;
}

/* Animação de "pulso" ao trocar idioma */
@keyframes flag-pulse {

  0%,
  100% {
    transform: scale(1.03);
  }

  50% {
    transform: scale(1.08);
  }
}

.flag.is-active {
  animation: flag-pulse 0.5s ease-out;
}




/* ====================================
   BOTÃO FLUTUANTE WHATSAPP
   ==================================== */

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;
  border-radius: 50%;

  background: #25D366;
  /* verde WhatsApp oficial */
  box-shadow:
    0 4px 12px rgba(37, 211, 102, 0.4),
    0 2px 6px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease;

  cursor: pointer;
  text-decoration: none;

  /* começa invisível (o JS vai mostrar com fade-in) */
  opacity: 0;
  transform: scale(0.8) translateY(20px);
}

/* Estado visível (classe adicionada pelo JS) */
.wa-float.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Hover */
.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 8px 20px rgba(37, 211, 102, 0.5),
    0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Active (clique) */
.wa-float:active {
  transform: scale(0.96);
}

/* Ícone */
.wa-float-icon {
  width: 38px;
  height: 38px;
  display: block;
  position: relative;
  z-index: 2;
  filter: brightness(0) invert(1);
  /* deixa branco se a imagem for colorida */
  object-fit: contain;
  filter: none;
}

/* Pulso animado */
.wa-float-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.6);
  z-index: 1;

  animation: wa-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Remove pulso no hover (fica só o efeito de escala) */
.wa-float:hover .wa-float-pulse {
  animation: none;
  opacity: 0;
}

/* Acessibilidade: foco por teclado */
.wa-float:focus {
  outline: 3px solid rgba(37, 211, 102, 0.6);
  outline-offset: 4px;
}

.wa-float:focus:not(:focus-visible) {
  outline: none;
}



.welcome-note {
  margin: 12px 0 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(198, 40, 40, 0.08);
  color: #2f2f2f;
  font-weight: 600;
  line-height: 1.35;
}


.vip {
  padding: 32px 0;
}

.vip-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
  align-items: start;
}

.vip-pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  background: rgba(197, 22, 29, .10);
  color: #c5161d;
  margin: 0 0 10px;
}

.vip-form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-label {
  font-size: 13px;
  font-weight: 600;
}

.check {
  display: flex;
  gap: 10px;
  align-items: center;
}

.top-notice {
  background: rgba(197, 22, 29, .10);
  border-bottom: 1px solid rgba(197, 22, 29, .18);
}

.top-notice__text {
  margin: 0;
  padding: 10px 0;
  color: #7c0f14;
  font-weight: 700;
  text-align: center;
}



.allergens-modal-body {
  margin: 12px 0 16px;
  max-height: 55vh;
  overflow: auto;
  padding-right: 6px;
}

.allergens-modal-body p {
  margin: 0 0 10px;
  line-height: 1.5;
}


/* Força o modal/popup (todas as páginas) */
.welcome-overlay {
  position: fixed;
  inset: 0;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, .55);
  z-index: 9999;
}

.welcome-overlay.is-visible {
  display: grid;
}

.welcome-modal {
  width: min(820px, 92vw);
  max-height: 90vh;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  padding: 18px;
  position: relative;
}

.welcome-close {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}


/* Popup Alergênicos (somente essa página) */
.allergens-overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(0, 0, 0, .55);
  z-index: 9999;
}

.allergens-overlay.is-visible {
  display: flex;
}

.allergens-modal {
  width: min(720px, 92vw);
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, .10);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .28);
  padding: 22px;
  position: relative;
}

.allergens-modal h2 {
  margin: 0 0 8px;
  line-height: 1.1;
}

.allergens-modal .welcome-text {
  margin: 0 0 14px;
}

.allergens-modal .welcome-close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: rgba(0, 0, 0, .06);
  border-radius: 10px;
  padding: 8px 10px;
  cursor: pointer;
}

.allergens-modal .welcome-close:hover {
  background: rgba(0, 0, 0, .10);
}

.allergens-modal-body {
  margin: 0 0 16px;
  max-height: 48vh;
  overflow: auto;
  padding-right: 6px;
}

.allergens-modal-body p {
  margin: 0 0 10px;
  line-height: 1.5;
}

/* Overlay só desse modal */
.allergens-overlay {
  backdrop-filter: blur(2px);
}

/* Card do modal */
.allergens-modal {
  position: relative;
  overflow: hidden;
  padding: 26px 26px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fff4ee 100%);
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 22px;
}

/* Faixa/topo com cor (dá vida instantânea) */
.allergens-modal::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 10px;
  background: linear-gradient(90deg, #d71920 0%, #ff7a3d 60%, #ffb703 100%);
}

/* Botão fechar bonito (sem “cara de default”) */
.allergens-modal .welcome-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: rgba(0, 0, 0, .06);
  border-radius: 12px;
  padding: 8px 10px;
  font-weight: 700;
  cursor: pointer;
}

.allergens-modal .welcome-close:hover {
  background: rgba(0, 0, 0, .10);
}

/* Tipografia e espaçamento */
.allergens-modal h2 {
  margin: 10px 0 8px;
  letter-spacing: .4px;
}

.allergens-modal .welcome-text {
  margin: 0 0 14px;
  opacity: .85;
}

/* Corpo com “separador” (fica menos bloco branco) */
.allergens-modal-body {
  margin: 0 0 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, .08);

  max-height: 48vh;
  overflow: auto;
  padding-right: 10px;
}

.allergens-modal-body p {
  margin: 0 0 12px;
  line-height: 1.55;
}

/* CTA: deixa mais “com cara de modal” */
.allergens-modal .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
}


/* =========================
   ORDER MODAL — CART
   (scopado no .modal-order)
   ========================= */

.modal-order .cart-block {
  margin: 14px 0 16px;
  padding: 12px 0 2px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.modal-order .cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.modal-order .cart-title {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

/* Lista de itens */
.modal-order .cart-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 12px;
}

/* Card do item */
.modal-order .cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 14px;
}

.modal-order .cart-item-main {
  min-width: 0;
}

.modal-order .cart-item-name {
  margin: 0;
  font-weight: 800;
  line-height: 1.15;
}

.modal-order .cart-item-meta {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: .80;
}

/* Ações (qtd + remover) */
.modal-order .cart-item-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.modal-order .cart-qty {
  width: 86px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  padding: 0 10px;
  font-weight: 700;
}

/* Remove (botão X) */
.modal-order .cart-remove {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, .12);
  background: #fff;
  cursor: pointer;
  line-height: 1;
}

.modal-order .cart-remove:hover {
  background: rgba(0, 0, 0, .04);
}

/* Resumo / total */
.modal-order .cart-summary {
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, .08);
}

.modal-order .cart-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}

.modal-order .cart-total-label {
  font-weight: 800;
}

.modal-order .cart-total-value {
  font-size: 18px;
}

/* Picker (Adicionar item) */
.modal-order .cart-picker {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .70);
}

.modal-order .cart-picker-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Deixa o botão "Adicionar item" com cara de ação secundária (sem mexer no btn global) */
.modal-order #cart-add.btn {
  padding: 10px 14px;
  border-radius: 999px;
}

/* Se você manteve o bloco antigo Sabor/Quantidade no HTML, pode esconder assim:
     (ativa só se esses IDs ainda existirem) */
.modal-order #order-flavor,
.modal-order #order-qty {
  /* descomente se você AINDA tiver esses campos no DOM e não quiser mostrar */
  /* display: none; */
}


/* =========================
   Share dock (small)
   Desktop: bottom-left
   Mobile: bottom-right
   ========================= */

.share-dock {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 9999;

  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 16px;

  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(0, 0, 0, .10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow:
    0 10px 26px rgba(0, 0, 0, .14),
    0 2px 6px rgba(0, 0, 0, .10);
}

.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .10);
  background: rgba(255, 255, 255, .90);
  cursor: pointer;

  display: grid;
  place-items: center;

  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}

.share-btn:hover {
  background: #fff;
  box-shadow: 0 10px 18px rgba(0, 0, 0, .12);
}

.share-btn:active {
  transform: translateY(1px);
}

.share-btn--primary {
  background: #0b66ff;
}

.share-ico {
  width: 18px;
  height: 18px;
  display: block;
}

/* Toast */
.share-toast {
  position: absolute;
  left: 0;
  bottom: calc(100% + 8px);
  padding: 8px 10px;
  border-radius: 12px;

  background: rgba(20, 20, 20, .92);
  color: #fff;
  font-size: 12px;
  line-height: 1.2;

  transform: translateY(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .14s ease, transform .14s ease;
  white-space: nowrap;
}

.share-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile: joga pro canto inferior direito */
@media (max-width: 720px) {
  .share-dock {
    left: auto;
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}



/* =========================
   Meio-a-Meio: Modal + Controles
   ========================= */

.half-flavors-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.half-price-preview {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.20);
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 16px;
}

.half-price-preview strong {
  color: #10b981;
  font-size: 20px;
  font-weight: 600;
}

/* Botão meio-a-meio nos controles (desktop: ao lado; mobile: abaixo) */
.controls-top {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-compact {
  white-space: nowrap;
}



/* =========================
   Ofertas da Semana
   ========================= */

.weekly-deals {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.02) 0%, rgba(251, 146, 60, 0.02) 100%);
  position: relative;
}

/* Badge com ícone de chama em CSS puro */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 24px;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25);
}

/* Ícone de chama vetorizado em CSS */
.badge-icon {
  position: relative;
  width: 14px;
  height: 18px;
  display: block;
}

.badge-icon::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 14px;
  background: #fff;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.8));
}

.badge-icon::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 8px;
  background: #f97316;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.deal-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.deal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(239, 68, 68, 0.1);
}

/* Card em destaque com borda animada */
.deal-card--featured {
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, #ef4444, #f97316) border-box;
}

.deal-card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(239, 68, 68, 0.2);
}

/* Badge do card */
.deal-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  padding: 6px 14px;
  background: #ef4444;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
  backdrop-filter: blur(4px);
}

.deal-badge--hot {
  background: linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(239, 68, 68, 0.4);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 6px 24px rgba(239, 68, 68, 0.6);
    transform: scale(1.03);
  }
}

.deal-media {
  position: relative;
  width: 100%;
  height: 240px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.deal-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.03) 100%);
  pointer-events: none;
}

.deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.deal-card:hover .deal-media img {
  transform: scale(1.08);
}

.deal-body {
  padding: 24px;
}

.deal-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1f2937;
  line-height: 1.3;
}

.deal-prices {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.deal-price-old {
  font-size: 15px;
  color: #9ca3af;
  text-decoration: line-through;
  font-weight: 500;
}

.deal-price-new {
  font-size: 28px;
  font-weight: 700;
  color: #ef4444;
  letter-spacing: -0.5px;
}

.deal-discount {
  padding: 4px 10px;
  background: #fee2e2;
  color: #dc2626;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.3px;
}

.deal-desc {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: #6b7280;
}

.deal-valid {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 6px;
}

.deal-valid::before {
  content: '';
  width: 4px;
  height: 4px;
  background: #ef4444;
  border-radius: 50%;
  display: block;
}

.deal-card .btn {
  width: 100%;
  text-align: center;
  font-weight: 600;
}


/* Mantém “Ver no cardápio” com cara de link/botão atual */
.feature-link {
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  text-align: left;
}


/* CARD "EXCLUSIVO DA SEMANA" (cardápio) */
.menu-hero .weekly-feature-card {
  width: min(520px, 100%);
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.menu-hero .weekly-feature-card:focus-visible {
  outline: 3px solid rgba(34, 197, 94, .35);
  outline-offset: 6px;
  border-radius: 28px;
}

.menu-hero .weekly-feature-media {
  position: relative;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: #f3f1ea;
}

.menu-hero .weekly-feature-media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.menu-hero .weekly-feature-stamp {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) rotate(-10deg);
  background: #f5c542;
  color: #1a1a1a;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, .18);
  white-space: nowrap;
}

.menu-hero .weekly-feature-info {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  background: #fff;
  border-radius: 0 0 28px 28px;
  padding: 18px 20px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.menu-hero .weekly-feature-kicker {
  margin: 0 0 6px;
  font-size: 13px;
  letter-spacing: .16em;
  font-weight: 800;
  color: rgba(0, 0, 0, .65);
  text-transform: uppercase;
}

.menu-hero .weekly-feature-title {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.05;
  color: #111;
}

.menu-hero .weekly-feature-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.menu-hero .weekly-feature-price {
  font-size: 26px;
  font-weight: 900;
  color: #b91c1c;
}

.menu-hero .weekly-feature-cta {
  font-size: 18px;
  color: rgba(0, 0, 0, .75);
}

@media (max-width: 980px) {
  .menu-hero .weekly-feature-media img {
    height: 210px;
  }

  .menu-hero .weekly-feature-title {
    font-size: 22px;
  }
}


.about-art {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.about-art-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-art-stamp {
  position: absolute;
  left: 40px;
  bottom: 38px;
  /* resto das regras que você já usa */
}


/* Nossa história – subtítulos e lista */

.story-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin: 24px 0 8px;
  color: #1b1b1b;
}

.story-text .muted {
  margin-bottom: 10px;
}

.story-list {
  margin: 8px 0 16px;
  padding-left: 20px;
  color: #444;
  font-size: 15px;
}

.story-list li {
  margin-bottom: 4px;
}

/* frase final em destaque */
.story-text .strong {
  font-weight: 700;
}

.review-stars {
  margin-top: 6px;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
  color: #f5c542;
  /* amarelo google-like */
  text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
}

.review-stars::before {
  content: "★★★★★";
}

/* acessibilidade */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ===== ADICIONAIS ===== */
.extras-block {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-block: var(--space-4);
  background: color-mix(in oklab, var(--color-primary) 4%, var(--color-surface));
}

.extras-header {
  margin-bottom: var(--space-3);
}

.extras-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}

.extras-subtitle {
  font-size: var(--text-xs);
  margin-top: var(--space-1);
  color: var(--color-text-muted);
}

.extras-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.extra-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: border-color var(--transition-interactive), background var(--transition-interactive);
  line-height: 1.4;
}

.extra-item:hover {
  border-color: var(--color-primary-highlight);
}

.extra-item:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary-highlight);
}

.extra-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  accent-color: var(--color-primary);
  cursor: pointer;
  margin-top: 2px;
}

.extra-label {
  flex: 1;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.extra-price {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .extras-block {
    padding: var(--space-3);
  }

  .extra-item {
    padding: var(--space-2);
  }

  .extra-label,
  .extra-price {
    font-size: var(--text-xs);
  }
}


/* ── Adicionais especiais ─────────────────────────────────── */
.extras-block {
  margin-top: 1.5rem;
  border-top: 1px solid #e5e1d8;
  padding-top: 1.25rem;
}

.extras-header {
  margin-bottom: 0.75rem;
}

.extras-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.2rem;
}

.extras-subtitle {
  font-size: 0.8rem;
  color: #888;
  margin: 0;
}

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

.extra-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1.5px solid #e5e1d8;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}

.extra-item:hover {
  border-color: #2e7d32;
  background: #f6faf6;
}

/* Quando o checkbox está marcado — destaca o card */
.extra-item:has(input:checked) {
  border-color: #2e7d32;
  background: #f0f7f0;
}

/* Esconde o checkbox nativo e cria um customizado */
.extra-item input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #ccc;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 0.18s, background 0.18s;
}

.extra-item input[type="checkbox"]:checked {
  background: #2e7d32;
  border-color: #2e7d32;
}

.extra-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.extra-label {
  flex: 1;
  font-size: 0.875rem;
  color: #2a2a2a;
  line-height: 1.4;
}

.extra-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2e7d32;
  white-space: nowrap;
}