/* ===========================================================
   Di Generosa — Pizzas Artesanais para Eventos
   Tokens em DESIGN.md. Preto/creme editorial + tricolor de acento.
   =========================================================== */

:root {
  --ink: #141210;
  --ink-soft: #2A2723;
  --cream: #F7F2E9;
  --cream-deep: #EFE7D8;
  --surface: #FFFFFF;
  --body: #4A453E;
  --it-green: #1E7A46;
  --it-green-pure: #009246;
  --it-red: #C8331F;
  --it-red-hover: #A72817;
  --it-red-pure: #CE2B37;
  --wa-green: #128C3E;
  --wa-green-hover: #0E6E30;
  --gold: #C9A24B;          /* acento nobre — vem do "Eventos." da logo */
  --gold-deep: #97742C;     /* versão AA para texto sobre creme */
  --line: #E3DACB;

  --pill: 999px;
  --r-card: 16px;
  --r-media: 20px;

  --sec-y: 104px;
  --sec-y-m: 68px;
  --container: 1160px;

  --f-display: "Fraunces", Georgia, "Times New Roman", serif;
  --f-body: "Work Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --f-script: "Dancing Script", cursive;
}

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

/* O scroll suave é feito por JS (inércia/lerp). O nativo fica só como fallback
   quando o JS não roda ou quando o usuário pede menos movimento. */
html { scroll-behavior: smooth; }
html.has-smooth { scroll-behavior: auto; }

/* Trilho virtual: o body é transladado por JS e o <html> segura a altura real */
html.has-smooth body {
  position: fixed; top: 0; left: 0; width: 100%;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--f-display); color: var(--ink); font-weight: 600; line-height: 1.12; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.75rem); letter-spacing: -.01em; }
h3 { font-size: 1.3rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

.section { padding-block: var(--sec-y); }
@media (max-width: 720px) { .section { padding-block: var(--sec-y-m); } }
.section--dark { background: var(--ink); }
.section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark p { color: #C9C2B6; }
.section--cream-deep { background: var(--cream-deep); }

.eyebrow {
  font-size: 13px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--it-red); margin-bottom: 14px;
}
.section--dark .eyebrow { color: var(--it-red-pure); }

.lead { font-size: 1.12rem; max-width: 60ch; }
.center { text-align: center; margin-inline: auto; }

/* ---- Fita tricolor divisor ---- */
.tricolor { display: flex; height: 6px; width: 72px; border-radius: 3px; overflow: hidden; }
.tricolor.center { margin-inline: auto; }
.tricolor span { flex: 1; }
.tricolor span:nth-child(1) { background: var(--it-green-pure); }
.tricolor span:nth-child(2) { background: var(--cream); }
.tricolor span:nth-child(3) { background: var(--it-red-pure); }

/* ---- Botões ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-weight: 600; font-size: 1rem;
  border-radius: var(--pill); padding: 16px 30px; cursor: pointer;
  border: 1.5px solid transparent; transition: background .2s, color .2s, transform .1s;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--it-red); color: #fff; }
.btn--primary:hover { background: var(--it-red-hover); }
.btn--wa { background: var(--wa-green); color: #fff; }
.btn--wa:hover { background: var(--wa-green-hover); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
/* O hero tem fundo escuro mas não carrega a classe .section--dark, então
   precisa entrar aqui também. Sem isso o botão fantasma nasce com texto
   e borda em --ink sobre fundo --ink: invisível até o hover. */
.section--dark .btn--ghost,
.hero .btn--ghost { color: var(--cream); border-color: var(--cream); }
.section--dark .btn--ghost:hover,
.hero .btn--ghost:hover { background: var(--cream); color: var(--ink); }
.btn svg { width: 20px; height: 20px; }

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(20,18,16,.72); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0);
  transition:
    transform .7s var(--ease-cine),
    background .5s ease,
    border-color .5s ease;
}
.site-header.is-stuck {
  background: rgba(20,18,16,.94);
  border-bottom-color: rgba(255,255,255,.09);
}
.site-header.is-hidden { transform: translate3d(0, -100%, 0); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 46px; height: 46px; }
.brand-name { font-family: var(--f-script); font-size: 1.5rem; color: var(--cream); line-height: 1; }
.brand-tag { display: block; font-family: var(--f-body); font-size: 9px; letter-spacing: .22em; color: #9c958a; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: #D8D2C7; font-size: .95rem; font-weight: 500; }
.nav a:hover { color: var(--cream); }
.nav .btn { padding: 10px 20px; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0;
  transition: transform .4s var(--ease-cine), opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.1);
    max-height: 0; overflow-y: auto; transition: max-height .3s ease;
    /* teto pela altura da tela, não por um número fixo: em celular baixo
       (ou paisagem) 420px passavam da viewport e o botão de orçamento sumia */
    -webkit-overflow-scrolling: touch;
  }
  .nav.open { max-height: calc(100vh - 74px); }
  .nav a { padding: 15px 24px; border-top: 1px solid rgba(255,255,255,.06); }
  .nav .btn { margin: 14px 24px; justify-content: center; }
}

/* ===========================================================
   Hero
   =========================================================== */
.hero { background: var(--ink); color: var(--cream); overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-top: clamp(120px, 11vw, 168px); padding-bottom: clamp(56px, 8vw, 104px); }
.hero h1 { font-family: var(--f-display); color: var(--cream); font-weight: 600;
  font-size: clamp(2.5rem, 5.6vw, 4.25rem); line-height: 1.02; letter-spacing: -.015em; }
.hero h1 em { font-family: var(--f-script); font-style: normal; color: var(--it-red-pure); font-weight: 700; }
.hero p { color: #CFC8BC; font-size: 1.15rem; max-width: 46ch; margin-top: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
/* Lista vertical: os três selos são argumentos de venda, então ficam um
   embaixo do outro e alinhados pela marca, em vez de embolar numa linha
   que quebra em lugares aleatórios conforme a largura. */
.hero-badges { display: grid; justify-items: start; gap: 13px; margin-top: 34px; }
.hero-badge {
  display: grid; grid-template-columns: auto 1fr; align-items: center;
  column-gap: 12px; font-size: .95rem; color: #B7B0A4;
}
/* Confere desenhado em CSS, mesma linguagem dos itens de pacote.
   Dourado é o acento nobre da marca e aguenta o fundo escuro. */
.hero-badge::before {
  content: ""; width: 13px; height: 7px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg) translate(1px, -2px);
}
.hero-badge strong { color: var(--cream); font-weight: 600; }
.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--r-media); overflow: hidden; aspect-ratio: 4/5;
  border: 6px solid #fff; box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-stamp {
  position: absolute; bottom: -22px; left: -22px; width: 120px; height: 120px;
  background: var(--cream); border-radius: 14px; padding: 8px;
  box-shadow: 0 12px 30px rgba(0,0,0,.4); transform: rotate(-6deg);
}
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  /* No mobile a foto vem DEPOIS do texto: título e botão de WhatsApp precisam
     caber na primeira tela. Com a foto em cima, o CTA nascia abaixo da dobra. */
  .hero-media { max-width: 420px; margin-inline: auto; }
  .hero-stamp { width: 92px; height: 92px; left: -12px; bottom: -14px; }
}
@media (max-width: 560px) {
  .hero .container { padding-top: 108px; gap: 32px; }
  .hero p { font-size: 1.05rem; margin-top: 18px; }
  /* dois CTAs empilhados e largos: alvo de toque grande e sem quebra feia */
  .hero-cta { gap: 10px; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  /* já são grid de uma coluna; no mobile só apertamos o respiro */
  .hero-badges { gap: 11px; margin-top: 26px; }
  .hero-badge { font-size: .92rem; column-gap: 10px; }
}

/* ===========================================================
   Como funciona
   =========================================================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.step { text-align: left; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--ink); color: var(--cream); font-family: var(--f-display);
  font-weight: 600; font-size: 1.15rem; margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { font-size: .98rem; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr 1fr; gap: 28px 20px; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ===========================================================
   Cardápio de sabores
   =========================================================== */
.flavors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 40px; margin-top: 44px; }
.flavor {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px 0; border-bottom: 1px dashed var(--line);
}
.flavor-name { font-family: var(--f-display); font-size: 1.22rem; color: var(--ink); font-weight: 600; white-space: nowrap; }
.flavor-dots { flex: 1; border-bottom: 1px dotted #cfc6b4; transform: translateY(-4px); }
.flavor-desc { font-size: .92rem; color: var(--body); text-align: right; max-width: 22ch; }
.flavors-note { margin-top: 28px; font-size: .95rem; color: var(--body); }
@media (max-width: 720px) { .flavors { grid-template-columns: 1fr; gap: 0 0; } .flavor-desc { display: none; } }

/* ===========================================================
   Pacotes / preços
   =========================================================== */
.packages { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; align-items: stretch; }
.pkg {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 36px 32px; display: flex; flex-direction: column;
}
.pkg--feature { border-color: var(--ink); position: relative; }
.pkg--feature::before {
  content: "Mais pedido"; position: absolute; top: -13px; left: 32px;
  background: var(--it-red); color: #fff; font-size: 12px; font-weight: 600;
  letter-spacing: .05em; padding: 5px 14px; border-radius: var(--pill);
}
.pkg h3 { font-size: 1.4rem; margin-bottom: 6px; }
.pkg .pkg-sub { font-size: .95rem; color: var(--body); margin-bottom: 22px; }
.pkg .price { font-family: var(--f-display); font-size: 2.6rem; color: var(--ink); font-weight: 600; line-height: 1; }
.pkg .price small { font-size: .95rem; font-family: var(--f-body); color: var(--body); font-weight: 400; }
.pkg ul { list-style: none; margin: 24px 0 28px; display: grid; gap: 12px; }
.pkg li { position: relative; padding-left: 28px; font-size: .98rem; }
.pkg li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 9px;
  border-left: 2.5px solid var(--it-green); border-bottom: 2.5px solid var(--it-green);
  transform: rotate(-45deg);
}
.pkg .btn { margin-top: auto; justify-content: center; }
@media (max-width: 720px) { .packages { grid-template-columns: 1fr; } }

/* ===========================================================
   Cobertura
   =========================================================== */
.coverage .container { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cities { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.city {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--pill); padding: 11px 20px; font-weight: 500; color: var(--ink);
}
.city svg { width: 16px; height: 16px; color: var(--it-red); }
.coverage-note { margin-top: 26px; font-size: .95rem; }
.map-embed { border-radius: var(--r-media); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.25); }
@media (max-width: 860px) { .coverage .container { grid-template-columns: 1fr; gap: 36px; } }

/* ===========================================================
   Galeria
   =========================================================== */
/* Esteira infinita em perspectiva. A faixa é uma fila só, com o conjunto de
   fotos duplicado no HTML; a animação anda metade da fila e reinicia, então o
   corte é invisível. O -50% desconta meio gap porque o gap extra entre os dois
   conjuntos entra na conta da largura total. */
.gallery-slider {
  --g-gap: 18px;
  position: relative;
  margin-top: 48px;
  overflow: hidden;
  /* perspectiva só para o pop de profundidade no hover; a fila fica reta */
  perspective: 1200px;
  padding-block: 14px;
  /* as pontas somem no fundo em vez de bater numa borda dura */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.gallery-track {
  display: flex;
  gap: var(--g-gap);
  width: max-content;
  transform-style: preserve-3d;
  animation: gallery-marquee 46s linear infinite;
}
/* o JS marca is-paused quando a galeria sai da tela ou a aba fica em segundo plano */
.gallery-slider.is-paused .gallery-track { animation-play-state: paused; }
@keyframes gallery-marquee {
  from { translate: 0; }
  to   { translate: calc(-50% - (var(--g-gap) / 2)); }
}

.gallery-item {
  flex: 0 0 auto;
  width: 300px; aspect-ratio: 1;
  border-radius: var(--r-media);
  overflow: hidden;
  background: var(--ink-soft);
  box-shadow: 0 18px 40px -24px rgba(20, 18, 16, .55);
  transition: transform .7s cubic-bezier(.16,1,.3,1),
              opacity .5s ease, filter .5s ease;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Mouse na esteira: ela para e as outras fotos recuam para a de baixo do cursor.
   Só para ponteiro de verdade. No touch o :hover "gruda" depois do toque e as
   fotos ficariam apagadas em .5 até o dedo tocar em outro lugar. */
@media (hover: hover) and (pointer: fine) {
  .gallery-slider:hover .gallery-track { animation-play-state: paused; }
  .gallery-slider:hover .gallery-item { opacity: .5; filter: saturate(.8); }
  .gallery-slider .gallery-item:hover {
    opacity: 1; filter: none;
    transform: translateZ(70px) scale(1.03);
    box-shadow: 0 30px 60px -26px rgba(20, 18, 16, .7);
  }
}

@media (max-width: 900px) { .gallery-item { width: 240px; } }
@media (max-width: 620px) {
  .gallery-slider { padding-block: 10px; --g-gap: 12px; }
  .gallery-track { animation-duration: 34s; }
  .gallery-item { width: 190px; }
}

/* Sem movimento automático: vira uma faixa plana que o usuário arrasta. */
@media (prefers-reduced-motion: reduce) {
  .gallery-slider { overflow-x: auto; perspective: none; }
  .gallery-track { animation: none; }
}

/* ===========================================================
   Assinatura (bloco "de onde vem o nome")
   Dancing Script fica reservado à logo, então a assinatura usa a
   serif do display para soar pessoal sem imitar a marca.
   =========================================================== */
.signature {
  margin-top: 20px;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: .02em;
}

/* ===========================================================
   Depoimentos
   =========================================================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.review {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-card); padding: 30px 28px;
  display: flex; flex-direction: column;
}
/* Sem estrelas: são comentários de Instagram, que não têm nota. Inventar
   "5 de 5" seria fabricar uma avaliação que o cliente nunca deu. */
.review-ig { width: 20px; height: 20px; color: var(--gold-deep); margin-bottom: 16px; }
.review p { font-size: 1rem; color: var(--ink-soft); font-style: italic; }
.review .who { margin-top: auto; padding-top: 18px; font-weight: 600; color: var(--ink); font-style: normal; font-size: .95rem; }
.review .who span { display: block; font-weight: 400; color: var(--body); font-size: .85rem; }
.link-ig { color: var(--it-red); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.link-ig:hover { color: var(--it-red-hover); }
@media (max-width: 980px) { .reviews { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .reviews { grid-template-columns: 1fr; } }

/* ===========================================================
   FAQ
   =========================================================== */
.faq { max-width: 780px; margin: 44px auto 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--f-display); font-size: 1.15rem; font-weight: 600; color: var(--ink);
  padding: 22px 44px 22px 0; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-family: var(--f-body); font-size: 1.6rem; color: var(--it-red); transition: transform .25s;
}
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 0 22px; color: var(--body); }

/* ===========================================================
   Orçamento (formulário)
   =========================================================== */
.quote .container { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; }
.quote-intro h2 { color: var(--cream); }
.quote-intro p { color: #C9C2B6; margin-top: 18px; }
.quote-contacts { margin-top: 32px; display: grid; gap: 14px; }
.quote-contacts a { display: flex; align-items: center; gap: 12px; color: var(--cream); font-weight: 500; }
.quote-contacts svg { width: 20px; height: 20px; color: var(--it-red-pure); flex: none; }
.form {
  background: var(--surface); border-radius: var(--r-card); padding: 36px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.form .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--ink); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  font-family: var(--f-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--cream);
  transition: border-color .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--it-red); }
.field textarea { resize: vertical; min-height: 90px; }
.form .btn { justify-content: center; }
.form-hint { font-size: .82rem; color: var(--body); }
@media (max-width: 860px) { .quote .container { grid-template-columns: 1fr; gap: 36px; } }
@media (max-width: 560px) { .form { grid-template-columns: 1fr; padding: 26px; } }

/* ===========================================================
   Footer
   =========================================================== */
.site-footer { background: #0D0C0A; color: #A8A197; padding-block: 56px 32px; }
.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer .brand-name { font-size: 1.7rem; }
.footer-about { margin-top: 16px; font-size: .95rem; max-width: 34ch; }
.footer-col h4 { color: var(--cream); font-family: var(--f-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; padding: 5px 0; color: #A8A197; font-size: .95rem; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .82rem; }
@media (max-width: 720px) { .site-footer .container { grid-template-columns: 1fr; gap: 32px; } }

/* ---- Botão WhatsApp flutuante ---- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa-green); color: #fff; font-weight: 600;
  padding: 14px 20px; border-radius: var(--pill);
  box-shadow: 0 8px 24px rgba(0,0,0,.28); transition: background .2s, transform .2s;
}
.wa-float:hover { background: var(--wa-green-hover); transform: translateY(-2px); }
.wa-float svg { width: 24px; height: 24px; }
.wa-float .wa-label { font-size: .95rem; }
@media (max-width: 560px) {
  .wa-float .wa-label { display: none; }
  /* 54px de alvo e folga para a barra de gestos do iPhone */
  .wa-float {
    padding: 15px;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

/* ===========================================================
   Diferenciais da massa (longa fermentação / pelati)
   =========================================================== */
.craft .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.craft-media { border-radius: var(--r-media); overflow: hidden; aspect-ratio: 5/4; border: 5px solid var(--gold); }
.craft-media img { width: 100%; height: 100%; object-fit: cover; }
.craft-points { display: grid; gap: 26px; margin-top: 32px; }
.craft-point { display: flex; gap: 18px; }
.craft-point .ico {
  flex: none; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(201,162,75,.14); display: grid; place-items: center; color: var(--gold-deep);
}
.section--dark .craft-point .ico { background: rgba(201,162,75,.16); color: var(--gold); }
.craft-point .ico svg { width: 23px; height: 23px; }
.craft-point h3 { font-size: 1.15rem; margin-bottom: 5px; }
.craft-point p { font-size: .98rem; }
@media (max-width: 860px) { .craft .container { grid-template-columns: 1fr; gap: 40px; } }

/* ===========================================================
   Cardápio por categoria
   =========================================================== */
.menu-pick {
  display: inline-flex; align-items: center; gap: 10px; margin-top: 20px;
  background: rgba(201,162,75,.13); border: 1px solid rgba(201,162,75,.4);
  color: var(--gold-deep); border-radius: var(--pill); padding: 10px 22px;
  font-weight: 600; font-size: .95rem;
}
.section--dark .menu-pick { color: var(--gold); }
.menu-cat { margin-top: 52px; }
.menu-cat-head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px; }
.menu-cat-head h3 {
  font-family: var(--f-display); font-size: 1.5rem; color: var(--gold);
  font-weight: 600; white-space: nowrap;
}
.menu-cat-head .rule { flex: 1; height: 1px; background: rgba(201,162,75,.3); }
.menu-cat-head .count { font-size: .82rem; color: #9c958a; letter-spacing: .1em; }
.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 44px; }
.menu-item { padding: 14px 0; border-bottom: 1px dotted rgba(201,162,75,.22); }
.menu-item .nm {
  font-family: var(--f-body); font-size: 1rem; font-weight: 600;
  color: var(--cream); letter-spacing: .04em; text-transform: uppercase;
}
.menu-item .ds { font-size: .89rem; color: #A69E92; margin-top: 3px; }
@media (max-width: 720px) { .menu-list { grid-template-columns: 1fr; } }

/* ===========================================================
   Timeline do evento
   =========================================================== */
.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; position: relative; }
.tl-step { padding: 0 22px; position: relative; text-align: center; }
.tl-step::before {
  content: ""; position: absolute; top: 21px; left: 0; right: 0; height: 2px;
  background: repeating-linear-gradient(90deg, var(--line) 0 7px, transparent 7px 14px);
  z-index: 0;
}
.tl-step:first-child::before { left: 50%; }
.tl-step:last-child::before { right: 50%; }
.tl-dot {
  position: relative; z-index: 1; width: 44px; height: 44px; margin: 0 auto 18px;
  border-radius: 50%; background: var(--ink); color: var(--gold);
  display: grid; place-items: center; font-weight: 600; font-size: .82rem;
  border: 3px solid var(--cream);
}
.tl-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.tl-step p { font-size: .94rem; }
.tl-total { margin-top: 36px; text-align: center; font-size: .98rem; color: var(--body); }
.tl-total strong { color: var(--ink); }
@media (max-width: 720px) {
  .timeline { grid-template-columns: 1fr; gap: 30px; }
  .tl-step::before { display: none; }
}

/* ===========================================================
   Incluso / não incluso
   =========================================================== */
.incl { display: grid; grid-template-columns: 1.25fr .95fr; gap: 24px; margin-top: 48px; align-items: start; }
.incl-card { border-radius: var(--r-card); padding: 34px 32px; }
.incl-card--yes { background: var(--surface); border: 1px solid var(--line); }
.incl-card--no { background: var(--cream-deep); border: 1px dashed #cdbfa5; }
.incl-card h3 { display: flex; align-items: center; gap: 11px; margin-bottom: 20px; font-size: 1.22rem; }
.incl-card h3 svg { width: 22px; height: 22px; }
.incl-card--yes h3 svg { color: var(--it-green); }
.incl-card--no h3 svg { color: var(--body); }
.incl-card ul { list-style: none; display: grid; gap: 11px; }
.incl-card--yes ul { grid-template-columns: 1fr 1fr; }
.incl-card li { position: relative; padding-left: 26px; font-size: .97rem; }
.incl-card--yes li::before {
  content: ""; position: absolute; left: 2px; top: 7px; width: 14px; height: 8px;
  border-left: 2.5px solid var(--it-green); border-bottom: 2.5px solid var(--it-green);
  transform: rotate(-45deg);
}
.incl-card--no li::before {
  content: ""; position: absolute; left: 3px; top: 11px; width: 12px; height: 2px; background: #b0a48c;
}
.incl-note {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(0,0,0,.08);
  font-size: .9rem; color: var(--body);
}
.incl-note strong { color: var(--ink); }
@media (max-width: 860px) { .incl { grid-template-columns: 1fr; } .incl-card--yes ul { grid-template-columns: 1fr; } }

/* ===========================================================
   Movimento — revelação cinematográfica
   Curva de saída longa (expo-out): entra rápido e assenta devagar.
   =========================================================== */
:root { --ease-cine: cubic-bezier(.16, 1, .3, 1); }

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 1.15s var(--ease-cine),
    transform 1.15s var(--ease-cine);
  transition-delay: var(--d, 0ms);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.in.done { will-change: auto; }

/* Títulos e blocos de texto sobem um pouco menos, com curva mais suave */
.reveal--soft { transform: translate3d(0, 22px, 0); }

/* Imagens revelam com um leve zoom-out, dá sensação de câmera assentando */
.reveal-media { overflow: hidden; }
.reveal-media img {
  transform: scale(1.08);
  opacity: 0;
  transition:
    transform 1.5s var(--ease-cine),
    opacity 1.1s var(--ease-cine);
  transition-delay: var(--d, 0ms);
}
.reveal-media.in img { transform: scale(1); opacity: 1; }

/* Parallax: o JS escreve --py; a imagem se desloca sutilmente no eixo Y */
[data-parallax] img { will-change: transform; }
[data-parallax].in img { transform: translate3d(0, var(--py, 0px), 0) scale(1.06); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-media img { opacity: 1 !important; transform: none !important; }
  [data-parallax].in img { transform: none !important; }
}

/* ===========================================================
   Ajustes de mobile
   Fica no fim de propósito: são correções que precisam ganhar
   das regras de cada seção acima.
   =========================================================== */

/* Nada pode criar barra de rolagem lateral. */
body { overflow-x: hidden; }

/* Trava o fundo enquanto o menu está aberto, senão o dedo rola a página
   por trás do menu e ele fica flutuando sobre a seção errada. */
body.nav-locked { overflow: hidden; }

@media (max-width: 720px) {
  /* respiro lateral menor: em 360px, 24px de cada lado comem a linha de texto */
  .container { padding-inline: 20px; }

  /* Alvos de toque. A recomendação de acessibilidade é ~44px de altura;
     os links de rodapé estavam em ~34px, encostados um no outro. */
  .footer-col a { padding: 11px 0; }
  .quote-contacts a { padding-block: 6px; }

  /* o botão flutuante de WhatsApp cobria a última linha do rodapé */
  .site-footer { padding-bottom: calc(48px + env(safe-area-inset-bottom, 0px)); }

  /* títulos longos de categoria não podem estourar a largura */
  .menu-cat-head { flex-wrap: wrap; gap: 8px 14px; }
  .menu-cat-head h3 { white-space: normal; }
  .menu-cat-head .rule { min-width: 40px; }

  /* cards com padding de desktop ficam apertados em tela estreita */
  .pkg { padding: 30px 22px; }
  .incl-card { padding: 28px 22px; }
  .review { padding: 26px 22px; }
}

@media (max-width: 420px) {
  h2 { font-size: 1.72rem; }
  .hero h1 { font-size: 2.15rem; }
  .pkg .price { font-size: 2.15rem; }
  /* "Mais pedido" saía meio corpo para fora do card estreito */
  .pkg--feature::before { left: 22px; }
}
