:root {
  --carvao: #0B0705;
  --carvao-2: #14100C;
  --madeira: #4A2C17;
  --brasa: #FF6B00;
  --fogo: #FF3D00;
  --dourado: #FFB627;
  --creme: #FFF6E8;
  --creme-2: #D9CDBF;
  --whats: #25D366;
  --whats-hover: #1EBE5A;
  --sombra: 0 10px 30px rgba(0, 0, 0, .55);
  --raio: 16px;
  --header: 76px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header) + 18px); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--creme);
  background-color: var(--carvao);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  isolation: isolate;
}
body::before,
body::after { content: ''; position: fixed; inset: 0; pointer-events: none; }
body::before {
  z-index: -2;
  background-image:
    linear-gradient(180deg, rgba(11,7,5,.92), rgba(11,7,5,.86)),
    url('../img/fundo-lenha.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  opacity: 1;
  filter: saturate(.8) contrast(1.1);
}
body::after {
  z-index: -1;
  background:
    radial-gradient(60% 40% at 50% 100%, rgba(255,61,0,.20), transparent 72%),
    radial-gradient(48% 30% at 70% 4%, rgba(255,107,0,.13), transparent 74%);
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--creme-2); }
h1, h2, h3 { margin: 0; color: var(--creme); }
h1, h2 {
  font-family: 'Anton', 'Arial Black', sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .5px;
  line-height: 1.05;
  text-wrap: balance;
}
h1 { max-width: 13ch; font-size: clamp(2.1rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3.3rem); }
h3 { font-size: 1.1rem; line-height: 1.3; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 2px solid var(--dourado); outline-offset: 4px; border-radius: 5px; }
section[id] { scroll-margin-top: calc(var(--header) + 18px); }
.container { width: min(100% - 32px, 1140px); margin-inline: auto; }
.svg-simbolos { position: absolute; width: 0; height: 0; overflow: hidden; }
.pular { position: fixed; top: 8px; left: 8px; z-index: 100; padding: 10px 16px; background: var(--dourado); color: var(--carvao); transform: translateY(-150%); font-weight: 800; }
.pular:focus { transform: none; }
.ico { width: 1.25em; height: 1.25em; flex: 0 0 auto; }

.brasas { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.brasas span { position: absolute; bottom: -12px; width: 3px; height: 3px; border-radius: 50%; color: var(--brasa); background: currentColor; box-shadow: 0 0 6px currentColor; animation: subir-brasa 10s linear infinite; opacity: 0; }
.brasas span:nth-child(2n) { color: var(--dourado); width: 2px; height: 2px; }
.brasas span:nth-child(3n) { width: 4px; height: 4px; }
.brasas span:nth-child(1) { left: 4%; animation-duration: 13s; animation-delay: -5s; }
.brasas span:nth-child(2) { left: 10%; animation-duration: 9s; animation-delay: -2s; }
.brasas span:nth-child(3) { left: 16%; animation-duration: 15s; animation-delay: -11s; }
.brasas span:nth-child(4) { left: 22%; animation-duration: 11s; animation-delay: -7s; }
.brasas span:nth-child(5) { left: 29%; animation-duration: 8s; animation-delay: -4s; }
.brasas span:nth-child(6) { left: 35%; animation-duration: 16s; animation-delay: -13s; }
.brasas span:nth-child(7) { left: 41%; animation-duration: 12s; animation-delay: -9s; }
.brasas span:nth-child(8) { left: 47%; animation-duration: 9s; animation-delay: -6s; }
.brasas span:nth-child(9) { left: 53%; animation-duration: 14s; animation-delay: -3s; }
.brasas span:nth-child(10) { left: 58%; animation-duration: 10s; animation-delay: -8s; }
.brasas span:nth-child(11) { left: 63%; animation-duration: 15s; animation-delay: -1s; }
.brasas span:nth-child(12) { left: 69%; animation-duration: 7s; animation-delay: -4s; }
.brasas span:nth-child(13) { left: 74%; animation-duration: 13s; animation-delay: -10s; }
.brasas span:nth-child(14) { left: 80%; animation-duration: 11s; animation-delay: -5s; }
.brasas span:nth-child(15) { left: 86%; animation-duration: 16s; animation-delay: -12s; }
.brasas span:nth-child(16) { left: 91%; animation-duration: 9s; animation-delay: -7s; }
.brasas span:nth-child(17) { left: 96%; animation-duration: 14s; animation-delay: -9s; }
.brasas span:nth-child(18) { left: 50%; animation-duration: 8s; animation-delay: -1s; }
@keyframes subir-brasa { 0% { transform: translate3d(0, 20px, 0); opacity: 0; } 15% { opacity: .9; } 70% { opacity: .55; } 100% { transform: translate3d(36px, -105vh, 0); opacity: 0; } }

.cabecalho { position: fixed; inset: 0 0 auto; z-index: 50; height: var(--header); background: rgba(11,7,5,.92); border-bottom: 1px solid rgba(255,107,0,.22); backdrop-filter: blur(14px); }
.cabecalho__conteudo { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.marca { min-width: 0; display: flex; align-items: center; gap: 10px; }
.marca img { width: 58px; height: 58px; object-fit: contain; }
.marca__texto { display: grid; line-height: 1.15; }
.marca__texto strong { font-size: .98rem; }
.marca__texto small { margin-top: 5px; color: var(--dourado); font-size: .72rem; }
.cabecalho__acoes { display: flex; align-items: center; gap: 14px; }
.cabecalho__fone, .link-fone { min-height: 48px; display: inline-flex; align-items: center; gap: 8px; color: var(--creme); font-weight: 800; }
.cabecalho__fone:hover { color: var(--brasa); }
.texto-mobile { display: none; }

.botao { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 12px 18px; border: 1px solid transparent; border-radius: 12px; font: 800 .82rem/1.15 'Inter', system-ui, sans-serif; letter-spacing: .25px; text-align: center; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.botao:hover { transform: translateY(-2px); }
.botao--whats { color: #071b0d; background: var(--whats); box-shadow: 0 8px 24px rgba(37,211,102,.28); }
.botao--whats .ico { color: #fff; }
.botao--whats:hover { background: var(--whats-hover); box-shadow: 0 10px 28px rgba(37,211,102,.4); }
.botao--grande { min-height: 58px; padding: 16px 24px; font-size: .92rem; }
.botao--enorme { min-height: 66px; padding: 18px 30px; font-size: 1rem; }
.botao--fone { color: var(--creme); border-color: var(--brasa); background: rgba(20,16,12,.72); }
.botao--fone:hover, .botao--contorno:hover { background: var(--brasa); color: var(--carvao); }
.botao--contorno { color: var(--creme); border-color: var(--brasa); background: transparent; }
.botao--fone-cheio { color: #fff; background: var(--brasa); }
@keyframes tocar { 0%,55%,100% { transform: rotate(0deg); } 57%,63%,69% { transform: rotate(-16deg); } 60%,66%,72% { transform: rotate(16deg); } }
.ico-fone { animation: tocar 3s ease-in-out infinite; transform-origin: 50% 60%; }
@keyframes anelPulso { 0% { box-shadow: 0 0 0 0 rgba(255,107,0,.55); } 70% { box-shadow: 0 0 0 14px rgba(255,107,0,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0); } }

.hero { position: relative; z-index: 1; isolation: isolate; overflow: hidden; min-height: 660px; padding: calc(var(--header) + 42px) 0 58px; display: grid; align-items: center; background: #0b0705; }
.hero::before { content: ''; position: absolute; z-index: -2; inset: 0; background: url('../img/fundo-lenha.jpg') center 63% / cover no-repeat; filter: saturate(1.08) contrast(1.05); transform: scale(1.02); }
.hero::after { content: ''; position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(8,4,2,.58) 0%, rgba(8,4,2,.7) 48%, rgba(8,4,2,.86) 100%); box-shadow: inset 0 -1px rgba(255,107,0,.72); }
.hero__grid { min-height: 520px; display: grid; place-items: center; }
.hero__texto { width: min(100%, 940px); padding: 22px 0; text-align: center; text-shadow: 0 2px 16px rgba(0,0,0,.95); }
.hero h1 { max-width: 15ch; margin-inline: auto; }
.eyebrow, .titulo-secao > span { margin-bottom: 13px; color: var(--dourado); font-size: .74rem; font-weight: 800; letter-spacing: 1.4px; }
.hero__sub { max-width: 720px; margin: 20px auto 24px; font-size: clamp(1rem, 2vw, 1.12rem); }
.hero__acoes { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero__acoes > div { display: grid; gap: 4px; text-align: center; }
.hero__acoes small { color: var(--creme-2); font-size: .7rem; }
.reforco { margin: 18px 0 0; color: var(--creme); font-weight: 600; }
.selos { width: min(100%, 850px); margin: 24px auto 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; list-style: none; }
.selos li { min-height: 44px; padding: 9px 10px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,107,0,.2); border-radius: 10px; background: rgba(20,16,12,.78); color: var(--creme); font-size: .75rem; font-weight: 600; backdrop-filter: blur(2px); }
.selos li > *:first-child { color: var(--dourado); }

.status-forno { position: relative; z-index: 2; padding: 12px 0; color: var(--creme); background: linear-gradient(90deg, #6e2008, #9d3108, #6e2008); border-block: 1px solid rgba(255,182,39,.3); font-size: .84rem; font-weight: 800; text-align: center; }
.secao { position: relative; z-index: 1; padding: 84px 0; }
.secao::after { content: ''; position: absolute; left: 15%; right: 15%; bottom: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,107,0,.75), transparent); box-shadow: 0 0 12px rgba(255,107,0,.4); }
.secao--escura { background: rgba(20,16,12,.78); backdrop-filter: blur(3px); }
.titulo-secao { max-width: 800px; margin: 0 auto 40px; text-align: center; }
.titulo-secao h2 + p { margin: 14px auto 0; max-width: 700px; }
.titulo-secao--esquerda { margin-inline: 0; text-align: left; }
.passos { display: grid; gap: 16px; }
.passos article { position: relative; overflow: hidden; min-height: 220px; padding: 30px 24px; border: 1px solid rgba(255,107,0,.22); border-radius: var(--raio); background: rgba(20,16,12,.88); box-shadow: var(--sombra); }
.passos b { position: absolute; right: 14px; top: -20px; color: rgba(255,107,0,.18); font: 8rem/1 'Anton', sans-serif; text-shadow: 0 0 24px rgba(255,107,0,.3); }
.passos h3 { position: relative; margin: 54px 0 10px; font-size: 1.22rem; }
.passos p { position: relative; margin: 0; }

.cardapio-grid { display: grid; gap: 20px; }
.pizza-card { overflow: hidden; display: flex; flex-direction: column; padding: 8px; gap: 8px; border: 1px solid rgba(255,107,0,.22); border-radius: var(--raio); background: var(--carvao-2); box-shadow: var(--sombra); transition: transform .25s ease, border-color .25s ease; }
.pizza-card:hover { transform: translateY(-5px); border-color: rgba(255,182,39,.55); }
.pizza-card > img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; }
.pizza-card .botao { width: 100%; }
.centro { text-align: center; }
.cardapio-grid + .centro { margin-top: 30px; }

.lenha-grid { display: grid; gap: 34px; align-items: center; }
.foto-forno { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border: 1px solid rgba(255,107,0,.35); border-radius: var(--raio); box-shadow: var(--sombra); }
.foto-forno::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11,7,5,.55)); }
.foto-forno img { width: 100%; height: 100%; object-fit: cover; }
.diferenciais { display: grid; gap: 12px; }
.diferenciais article { padding: 17px 18px; border-left: 3px solid var(--brasa); border-radius: 0 12px 12px 0; background: rgba(20,16,12,.86); }
.diferenciais h3 { margin-bottom: 6px; color: var(--dourado); }
.diferenciais p { margin: 0; font-size: .88rem; }

.depoimentos { display: grid; gap: 16px; }
.depoimentos article { padding: 24px; border: 1px solid rgba(255,107,0,.22); border-radius: var(--raio); background: rgba(11,7,5,.65); box-shadow: var(--sombra); }
.depoimentos p { min-height: 56px; margin: 12px 0; font-style: italic; }
.depoimentos strong { font-size: .84rem; }
.estrelas { color: var(--dourado); letter-spacing: 3px; }
.depoimentos .depoimento-real { overflow: hidden; padding: 0; background: #fff; }
.depoimento-real img { display: block; width: 100%; height: auto; }
.entrega-box { padding: 36px clamp(16px,4vw,52px); border: 1px solid rgba(255,107,0,.28); border-radius: var(--raio); background: rgba(20,16,12,.88); box-shadow: var(--sombra); backdrop-filter: blur(3px); }
.bairros { margin-bottom: 25px; display: flex; flex-wrap: wrap; justify-content: center; gap: 9px; }
.bairros span { padding: 9px 13px; border: 1px solid var(--madeira); border-radius: 999px; background: rgba(11,7,5,.78); color: var(--creme); font-size: .78rem; font-weight: 600; }
.entrega-box .botao { margin-top: 8px; }
.pagamentos { margin: 0 auto 28px; display: grid; gap: 14px; max-width: 780px; }
.pagamentos article { min-height: 120px; display: grid; place-items: center; align-content: center; gap: 7px; border: 1px solid rgba(255,107,0,.22); border-radius: 14px; background: rgba(11,7,5,.68); }
.pagamentos b { color: var(--dourado); font-size: 1.6rem; }
.pagamentos span { font-weight: 800; }
.telefone-destaque { max-width: 820px; margin: auto; padding: 22px; border: 1px solid var(--brasa); border-radius: 14px; background: rgba(255,107,0,.08); text-align: center; box-shadow: 0 0 24px rgba(255,107,0,.12); }
.telefone-destaque a { display: inline-flex; align-items: center; gap: 5px; color: var(--dourado); font-weight: 800; white-space: nowrap; }

.faq-wrap { max-width: 840px; }
.faq-wrap details { margin-bottom: 10px; border: 1px solid rgba(255,107,0,.22); border-radius: 12px; background: rgba(20,16,12,.9); }
.faq-wrap summary { min-height: 58px; padding: 16px 52px 16px 18px; display: flex; align-items: center; position: relative; cursor: pointer; color: var(--creme); font-weight: 800; list-style: none; }
.faq-wrap summary::-webkit-details-marker { display: none; }
.faq-wrap summary::after { content: '+'; position: absolute; right: 18px; color: var(--brasa); font-size: 1.6rem; }
.faq-wrap details[open] summary::after { content: '−'; }
.faq-wrap details p { padding: 0 18px 18px; margin: 0; }

.cta-final { position: relative; z-index: 1; overflow: hidden; padding: 94px 0; text-align: center; background: radial-gradient(70% 120% at 50% 110%, rgba(255,61,0,.55), rgba(255,107,0,.14) 48%, rgba(11,7,5,.94) 76%); }
.cta-final::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,7,5,.6), transparent, rgba(11,7,5,.6)); }
.cta-final .container { position: relative; }
.cta-final__chama { width: 48px; height: 48px; margin-bottom: 10px; color: var(--dourado); filter: drop-shadow(0 0 14px rgba(255,107,0,.8)); }
.cta-final h2 { max-width: 780px; margin: auto; }
.cta-final p { max-width: 650px; margin: 16px auto 26px; }
.cta-final small { margin-top: 13px; display: block; color: var(--creme-2); }
.cta-final small a { color: var(--dourado); font-weight: 800; }

.rodape { position: relative; z-index: 1; padding: 58px 0 24px; background: #080503; border-top: 1px solid rgba(255,107,0,.22); }
.rodape__grid { display: grid; gap: 32px; }
.rodape__grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.rodape img { width: 86px; height: 86px; object-fit: contain; }
.rodape h2 { font: 1.05rem/1.2 'Inter', sans-serif; }
.rodape p, .rodape address { margin: 0; color: var(--creme-2); font-size: .84rem; font-style: normal; }
.rodape a { min-height: 40px; display: flex; align-items: center; color: var(--creme-2); font-size: .84rem; }
.rodape a:hover { color: var(--brasa); }
.rodape__fim { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); color: var(--creme-2); font-size: .75rem; text-align: center; }

.ctas-fixos { position: fixed; z-index: 60; }
.ctas-fixos--desktop { right: 20px; bottom: 20px; display: none; flex-direction: column; align-items: center; gap: 12px; }
.cta-circulo { position: relative; display: grid; place-items: center; border-radius: 50%; color: #fff; }
.cta-circulo svg { width: 27px; height: 27px; }
.cta-circulo > span { position: absolute; right: calc(100% + 12px); width: max-content; padding: 7px 10px; border-radius: 7px; background: var(--carvao-2); color: var(--creme); font-size: .72rem; opacity: 0; pointer-events: none; transform: translateX(8px); transition: .2s ease; }
.cta-circulo:hover > span { opacity: 1; transform: none; }
.cta-circulo--whats { width: 60px; height: 60px; background: var(--whats); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.cta-circulo--fone { width: 48px; height: 48px; background: var(--brasa); animation: anelPulso 3s infinite; }
.cta-circulo--fone svg { width: 22px; height: 22px; }
.ctas-fixos--mobile { inset: auto 0 0; display: flex; gap: 8px; min-height: 66px; padding: 8px 10px calc(8px + env(safe-area-inset-bottom)); background: rgba(11,7,5,.96); border-top: 1px solid var(--brasa); backdrop-filter: blur(10px); }
.ctas-fixos--mobile .botao--whats { flex: 62; }
.ctas-fixos--mobile .botao--fone-cheio { flex: 38; }
.js .ctas-fixos { opacity: 0; pointer-events: none; transform: translateY(18px); transition: opacity .25s ease, transform .25s ease; }
.js .ctas-fixos.visivel { opacity: 1; pointer-events: auto; transform: none; }

@media (min-width: 600px) {
  .passos, .pagamentos { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .cardapio-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .rodape__grid { grid-template-columns: 1.1fr 1.4fr 1fr; }
}
@media (min-width: 1000px) {
  .depoimentos { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 768px) {
  .ctas-fixos--mobile { display: none; }
  .ctas-fixos--desktop { display: flex; }
  .cardapio-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .lenha-grid { grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr); }
  .lenha-grid .foto-forno { position: sticky; top: calc(var(--header) + 24px); }
}
@media (min-width: 900px) {
  .selos { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
@media (min-width: 1024px) { body::before { background-attachment: fixed; } }
@media (max-width: 767px) {
  body { padding-bottom: 84px; }
  :root { --header: 66px; }
  .container { width: min(100% - 24px, 1140px); }
  .marca img { width: 52px; height: 52px; }
  .marca__texto, .cabecalho__fone, .texto-desktop { display: none; }
  .texto-mobile { display: inline; }
  .cabecalho__whats { padding-inline: 16px; }
  .hero { min-height: 700px; padding: calc(var(--header) + 26px) 0 42px; }
  .hero::before { background-position: 56% center; }
  .hero__grid { min-height: 0; }
  .hero__texto { padding: 0; }
  h1 { margin-inline: auto; max-width: 12ch; }
  .hero__acoes { justify-content: center; }
  .hero__acoes > div, .hero__acoes .botao { width: 100%; }
  .hero__acoes > .botao { width: auto; }
  .reforco { font-size: .86rem; }
  .secao { padding: 66px 0; }
  .titulo-secao { margin-bottom: 30px; }
  .cardapio-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
  .pizza-card > img { height: auto; aspect-ratio: 1; border-radius: 10px; }
  .pizza-card .botao { padding-inline: 10px; }
  .botao--enorme { width: 100%; }
  .entrega-box { width: min(100% - 16px, 1140px); }
}
@media (max-width: 430px) {
  .eyebrow { font-size: .66rem; }
  .hero__sub { font-size: .94rem; }
  .selos { gap: 7px; }
  .selos li { padding-inline: 7px; font-size: .68rem; }
  .pizza-card .botao { font-size: .68rem; }
  .ctas-fixos--mobile .botao { padding-inline: 9px; font-size: .69rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
  .brasas { display: none; }
  .ico-fone, .cta-circulo--fone { animation: none !important; }
}
