/* ===================================================================
   PASTÉIS DO GAÚCHO — Landing page
   Paleta baseada na identidade visual (cardápio)
   =================================================================== */

:root {
  --black:      #100d0b;
  --black-2:    #1a1512;
  --card:       #191411;
  --card-2:     #211a15;
  --orange:     #f47a20;
  --orange-2:   #ff9130;
  --gold:       #f4b83e;
  --gold-2:     #f7cf72;
  --red:        #e23a26;
  --cream:      #f6efe4;
  --cream-dim:  #cbbfae;
  --line:       rgba(244, 122, 32, .35);

  --radius:     18px;
  --radius-sm:  12px;
  --shadow:     0 20px 45px -20px rgba(0, 0, 0, .8);
  --maxw:       1160px;

  --font-head:  'Anton', 'Arial Narrow', sans-serif;
  --font-body:  'Poppins', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.hl { color: var(--orange); }

.kicker {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--gold);
  background: rgba(244, 184, 62, .1);
  border: 1px solid rgba(244, 184, 62, .35);
  padding: .4rem .9rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--orange-2), var(--orange));
  color: #2a1403;
  box-shadow: 0 10px 24px -10px rgba(244, 122, 32, .8);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(244, 122, 32, .9); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange-2); transform: translateY(-2px); }
.btn-sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.15rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(16, 13, 11, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244, 122, 32, .18);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .7rem 0;
}
.brand-logo { height: 54px; width: auto; }
.nav {
  display: flex;
  gap: 1.8rem;
  margin-left: auto;
}
.nav a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: .98rem;
  transition: color .15s;
}
.nav a:hover { color: var(--orange); }
.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  margin-left: auto;
}
.nav-toggle span {
  width: 26px; height: 3px; border-radius: 3px;
  background: var(--orange);
  transition: .25s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: .3rem;
  padding: 0 1.25rem 1rem;
}
.nav-mobile a { color: var(--cream); text-decoration: none; font-weight: 600; padding: .6rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-mobile .btn { margin-top: .6rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(244, 122, 32, .18), transparent 60%),
    radial-gradient(700px 400px at 0% 100%, rgba(226, 58, 38, .12), transparent 55%),
    var(--black);
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: auto -10% -40% 40%;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 184, 62, .16), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3.5rem);
}
.badge {
  display: inline-block;
  font-weight: 700;
  font-size: .85rem;
  color: var(--gold-2);
  background: rgba(244, 184, 62, .12);
  border: 1px solid rgba(244, 184, 62, .4);
  padding: .45rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: .98;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 4px 0 rgba(0,0,0,.35);
}
.hero-sub {
  margin: 1.4rem 0 2rem;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: var(--cream-dim);
  max-width: 34rem;
}
.hero-sub strong { color: var(--gold-2); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.6rem;
  margin-top: 2.2rem;
}
.hero-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  color: var(--cream);
}
.hero-features span { font-size: 1.15rem; }
.hero-art { position: relative; }
.hero-art::before {
  content: "";
  position: absolute;
  inset: 8% 8% 8% 8%;
  background: radial-gradient(circle, var(--orange), transparent 62%);
  opacity: .35;
  filter: blur(10px);
  border-radius: 50%;
  z-index: 0;
}
.hero-art img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 24px 30px rgba(0,0,0,.55));
  animation: float 5s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Marquee ---------- */
.marquee {
  background: linear-gradient(90deg, var(--orange), var(--gold));
  color: #2a1403;
  padding: .7rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-block: 3px solid var(--black-2);
}
.marquee-track {
  display: inline-flex;
  gap: 2rem;
  animation: scroll 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-head);
  font-size: 1.1rem;
  letter-spacing: .06em;
}
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Section head ---------- */
.section-head { text-align: center; max-width: 42rem; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.section-head h2,
.about-copy h2,
.cta-inner h2 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  letter-spacing: .01em;
}
.section-head p { color: var(--cream-dim); margin-top: .8rem; }

/* ---------- Menu ---------- */
.menu { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: start;
}
.menu-stack { display: grid; gap: 1.4rem; }
.menu-card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow);
}
.menu-card h3 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.6rem;
  color: var(--orange);
  letter-spacing: .02em;
  margin-bottom: .3rem;
}
.menu-note {
  font-size: .82rem;
  color: var(--cream-dim);
  margin-bottom: 1rem;
}
.menu-list { list-style: none; }
.menu-list.two-col { columns: 2; column-gap: 1.2rem; }
.menu-list.two-col li {
  padding: .28rem 0;
  font-size: .93rem;
  color: var(--cream);
  break-inside: avoid;
}
.menu-list.priced li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.09);
  font-size: .96rem;
}
.menu-list.priced li:last-child { border-bottom: 0; }
.menu-list.priced li span { flex: 1; }
.menu-list.priced li b { color: var(--gold-2); font-weight: 700; white-space: nowrap; }

.combo-list { list-style: none; margin-top: 1.3rem; display: grid; gap: .6rem; }
.combo-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  background: rgba(244, 122, 32, .08);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: .7rem .95rem;
  font-weight: 600;
}
.combo-list .price {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: .2rem .65rem;
  border-radius: 8px;
  font-size: .9rem;
}
.combo-super {
  background: linear-gradient(90deg, rgba(244,122,32,.25), rgba(226,58,38,.22));
  border-color: var(--orange);
}
.combo-super em { color: var(--gold-2); font-style: normal; }

.menu-foot {
  text-align: center;
  margin-top: 2rem;
  color: var(--cream-dim);
  font-size: .96rem;
}
.menu-foot strong { color: var(--cream); }

/* ---------- About ---------- */
.about {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  background:
    radial-gradient(700px 400px at 100% 0%, rgba(244, 184, 62, .1), transparent 60%),
    var(--black-2);
  border-block: 1px solid rgba(244,122,32,.15);
}
.about-inner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.about-art { position: relative; text-align: center; }
.about-art::before {
  content: "";
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, var(--orange), transparent 60%);
  opacity: .3;
  filter: blur(14px);
  border-radius: 50%;
}
.about-art img { position: relative; }
.about-copy p { color: var(--cream-dim); margin: 1.1rem 0; }
.about-copy .btn { margin-top: .6rem; }

/* ---------- Find ---------- */
.find { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.find-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.find-card {
  background: linear-gradient(180deg, var(--card-2), var(--card));
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.find-card:hover { transform: translateY(-5px); border-color: var(--orange); }
.find-ico {
  font-size: 2.6rem;
  margin-bottom: .6rem;
}
.find-card h3 {
  font-family: var(--font-head);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: .5rem;
}
.find-card p { color: var(--cream-dim); font-size: .95rem; margin-bottom: 1.4rem; min-height: 3em; }

/* ---------- CTA final ---------- */
.cta-final {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: linear-gradient(120deg, var(--orange), var(--red));
  text-align: center;
  color: #2a1403;
}
.cta-inner h2 { color: #2a1403; text-shadow: 0 3px 0 rgba(0,0,0,.12); }
.cta-inner .hl { color: #fff; }
.cta-inner p { font-weight: 600; margin: .8rem 0 1.8rem; font-size: 1.1rem; }
.cta-final .btn-primary {
  background: #2a1403;
  color: var(--gold-2);
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.6);
}
.cta-final .btn-primary:hover { background: #000; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); border-top: 1px solid rgba(244,122,32,.2); padding-top: 3rem; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand img { height: 84px; width: auto; margin-bottom: 1rem; }
.footer-slogan { color: var(--gold-2); font-weight: 600; max-width: 20rem; }
.footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.footer-cols h4 {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange);
  margin-bottom: .9rem;
}
.footer-cols a {
  display: block;
  color: var(--cream-dim);
  text-decoration: none;
  padding: .3rem 0;
  transition: color .15s;
}
.footer-cols a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .82rem;
  color: var(--cream-dim);
}

/* ---------- WhatsApp float ---------- */
.whats-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px -8px rgba(37,211,102,.7);
  transition: transform .2s;
}
.whats-float:hover { transform: scale(1.08); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 1rem; }
  .nav-mobile.open { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; max-width: 380px; margin: 0 auto; }
  .hero-sub { margin-inline: auto; }
  .hero-actions, .hero-features { justify-content: center; }

  .menu-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .find-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .find-card p { min-height: auto; }

  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-art { max-width: 320px; margin: 0 auto; }
  .about-copy .kicker { margin-inline: auto; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-slogan { margin-inline: auto; }
  .footer-cols { max-width: 360px; margin-inline: auto; }
}

@media (max-width: 480px) {
  .menu-list.two-col { columns: 1; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}
