/* ============================================================
   Q!RISOTO & MACARRANGO — Landing Page B2B
   Paleta Q!RISOTO: preto + dourado | MACARRANGO: vermelho, amarelo e preto
   ============================================================ */

/* ---------- Fontes ---------- */
@font-face {
  font-family: 'Berlingske Serif';
  src: url('../assets/fonts/BerlingskeSerif-Regular.woff2') format('woff2');
  font-weight: 400; font-display: swap;
}
@font-face {
  font-family: 'Berlingske Serif';
  src: url('../assets/fonts/BerlingskeSerif-Bold.woff2') format('woff2');
  font-weight: 700; font-display: swap;
}
@font-face {
  font-family: 'Berlingske Serif';
  src: url('../assets/fonts/BerlingskeSerif-Blk.woff2') format('woff2');
  font-weight: 900; font-display: swap;
}
@font-face {
  font-family: 'Italianno';
  src: url('../assets/fonts/Italianno-Regular.ttf') format('truetype');
  font-weight: 400; font-display: swap;
}

/* ---------- Variáveis ---------- */
:root {
  --black: #0a0806;
  --coal: #14100b;
  --panel: #1c160e;
  --line: #2c2415;
  --gold: #c9a24b;
  --gold-2: #e8cd8a;
  --gold-grad: linear-gradient(135deg, #b28a35 0%, #e8cd8a 45%, #c9a24b 100%);
  --cream: #f4ead1;
  --muted: #b9ac8e;
  --red: #c42430;
  --m-red: #a91f24;
  --m-red-dark: #7e1519;
  --m-yellow: #f6b31b;
  --m-dark: #241c10;
  --m-cream: #f6efdd;
  --serif: 'Berlingske Serif', Georgia, serif;
  --sans: 'Poppins', -apple-system, Segoe UI, sans-serif;
  --script: 'Italianno', cursive;
  --radius: 24px;
  --shadow: 0 18px 45px rgba(0, 0, 0, .45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3 { font-family: var(--serif); font-weight: 900; line-height: 1.12; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); color: var(--cream); }
h2 .emphasis, h2 .gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.center { text-align: center; }
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-sub { color: var(--muted); max-width: 760px; margin-top: 14px; font-size: 1.02rem; }
.section-sub.center { margin-inline: auto; }

.script-accent {
  font-family: var(--script);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-2);
  line-height: 1;
}
.script-accent.center { text-align: center; }

/* ---------- Botões ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }
.btn-gold {
  background: var(--gold-grad);
  color: #211703;
  box-shadow: 0 10px 26px rgba(201, 162, 75, .35);
}
.btn-gold:hover { box-shadow: 0 14px 32px rgba(201, 162, 75, .5); }
.btn-outline { border-color: var(--gold); color: var(--gold-2); background: transparent; }
.btn-outline:hover { background: rgba(201, 162, 75, .12); }
.btn-mac { background: var(--m-yellow); color: #3a2402; box-shadow: 0 10px 26px rgba(0, 0, 0, .3); }
.btn-mac-outline { border-color: var(--m-cream); color: var(--m-cream); }
.btn-mac-outline:hover { background: rgba(255, 255, 255, .12); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  background: rgba(10, 8, 6, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 10px 30px rgba(0, 0, 0, .55); }
.navbar-inner { display: flex; align-items: center; gap: 26px; height: 74px; }
.nav-logo img { height: 52px; width: auto; }
.nav-menu { display: flex; gap: 24px; margin-left: auto; }
.nav-item {
  font-size: .86rem; font-weight: 600; letter-spacing: .05em;
  color: var(--cream); opacity: .85; padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, opacity .2s, border-color .2s;
}
.nav-item:hover, .nav-item.active { opacity: 1; color: var(--gold-2); border-color: var(--gold); }
.nav-cta { white-space: nowrap; padding: 11px 22px; font-size: .82rem; }

.hamburger {
  display: none; background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px; margin-left: auto;
}
.hamburger span {
  display: block; height: 2.5px; background: var(--gold-2);
  border-radius: 2px; margin: 5px 0; transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 74px 0 auto 0; z-index: 55;
  background: rgba(12, 9, 6, .98);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 4px;
  padding: 18px 6vw 26px;
  transform: translateY(-115%);
  transition: transform .35s ease;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a:not(.btn) {
  padding: 13px 4px; font-weight: 600; letter-spacing: .04em;
  border-bottom: 1px solid var(--line); color: var(--cream);
}
.mobile-menu .btn { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: 130px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('../assets/img/hero-caixinha.jpg') center 60% / cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(201, 162, 75, .18), transparent 55%),
    linear-gradient(180deg, rgba(10, 8, 6, .88) 0%, rgba(10, 8, 6, .78) 45%, var(--black) 100%);
}
.hero-content { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-logo { width: min(320px, 64vw); height: auto; margin-bottom: 26px; filter: drop-shadow(0 12px 40px rgba(0, 0, 0, .8)); }
.hero h1 { font-size: clamp(2rem, 5.2vw, 3.4rem); max-width: 900px; }
.hero h1 .gold { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { color: var(--muted); max-width: 640px; margin-top: 18px; font-size: 1.05rem; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 32px; }
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  margin-top: 34px; padding: 10px 22px;
  border: 1px solid var(--line); border-radius: 50px;
  background: rgba(20, 16, 11, .75);
  font-size: .92rem; color: var(--muted);
}
.hero-badge strong { color: var(--gold-2); font-size: 1.05rem; }
.stars { color: var(--gold); letter-spacing: 3px; }
.stars.big { font-size: 1.6rem; }

/* ---------- Cardápio Q!RISOTO ---------- */
.sec-qrisoto { background: var(--black); }
.menu-filter {
  display: flex; gap: 12px; margin: 34px 0 30px;
  overflow-x: auto; padding-bottom: 8px;
  scrollbar-width: none;
}
.menu-filter::-webkit-scrollbar { display: none; }
.filter-btn {
  flex: 0 0 auto;
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 600; font-size: .9rem;
  color: var(--cream);
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 12px 22px; border-radius: 14px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.filter-btn:hover { border-color: var(--gold); }
.filter-btn.active {
  background: var(--gold-grad);
  color: #211703; border-color: transparent;
  font-weight: 700;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card-menu {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
  animation: cardIn .5s ease backwards;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(14px); } }
.card-menu:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); }
.card-menu img { width: 100%; aspect-ratio: 36 / 25; object-fit: cover; }
.card-menu .menu-name {
  padding: 14px 12px 16px; text-align: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.02rem;
  color: var(--cream);
}
/* selo "DIY CHEF EM CASA" — fita dourada como no rótulo da embalagem */
.diy-badge {
  position: absolute; top: 0; right: 12px;
  width: 58px;
  padding: 8px 4px 14px;
  background: var(--gold-grad);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 9px), 0 100%);
  display: flex; flex-direction: column; align-items: center; gap: 1px;
  text-align: center;
  color: #211703;
  box-shadow: 0 6px 14px rgba(0, 0, 0, .35);
  z-index: 2;
}
.diy-badge svg { display: block; filter: drop-shadow(0 1px 1px rgba(0,0,0,.35)); }
.diy-badge b { font-weight: 800; font-size: .86rem; line-height: 1; letter-spacing: .02em; }
.diy-badge small { font-weight: 700; font-size: .5rem; line-height: 1.25; letter-spacing: .04em; }

/* base dourada nas fotos dos pratos Q!RISOTO — pill com todas as bordas arredondadas */
.sec-qrisoto .card-menu .menu-name {
  background: var(--gold-grad);
  color: #211703;
  margin: 10px 10px 12px;
  border-radius: 14px;
  padding: 11px 10px 13px;
}

/* ---------- Caixinhas (delivery / take away) ---------- */
.caixinha-strip { margin-top: 64px; }
.caixinha-gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px; margin-top: 26px;
}
.caixinha-gallery figure {
  margin: 0; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 75, .25);
  transition: transform .25s, border-color .25s;
  container-type: inline-size;
}
.caixinha-gallery figure:hover { transform: translateY(-5px); border-color: var(--gold-2); }
.caixinha-gallery img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.caixinha-prime img { object-position: center 42%; }
/* mesmo estilo do título gravado nas outras artes (DUPLA DE VALOR etc.):
   Berlingske bold, dimensionado proporcionalmente à largura do card */
.caixinha-prime figcaption {
  position: absolute; inset: auto 0 0;
  padding: 26px 14px 16px;
  color: #fff; font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.4rem, 2.35vw, 2.1rem); line-height: 1;
  font-size: 7.6cqw;
  letter-spacing: .01em; text-align: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, .85);
  background: linear-gradient(transparent, rgba(0, 0, 0, .42));
}
.caixinha-note {
  text-align: center; color: var(--muted);
  max-width: 620px; margin: 22px auto 0; font-size: .95rem;
}
.section-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center; margin-top: 44px;
}

/* ---------- MACARRANGO ---------- */
.sec-macarrango {
  background:
    radial-gradient(ellipse at 85% 0%, rgba(246, 179, 27, .16), transparent 50%),
    linear-gradient(170deg, var(--m-red) 0%, var(--m-red-dark) 70%, #4d0d10 100%);
}
.sec-macarrango h2 { color: #fff; }
.emphasis-mac { color: var(--m-yellow); }
.mac-header { display: flex; gap: 28px; align-items: center; margin-bottom: 38px; }
.mac-logo { border-radius: 50%; flex: 0 0 auto; box-shadow: 0 12px 34px rgba(0, 0, 0, .4); }
.mac-tagline {
  font-weight: 800; color: var(--m-yellow);
  letter-spacing: .03em; text-transform: uppercase;
  margin-top: 6px; font-size: 1.02rem;
}
.sec-macarrango .section-sub { color: #f3d9c2; }
.mac-badge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px; padding: 10px 20px;
  border-radius: 50px;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(246, 179, 27, .5);
  font-size: .9rem; color: #f3d9c2;
}
.mac-badge strong { color: var(--m-yellow); }
.mac-badge .stars { color: var(--m-yellow); }
.mac-grid .card-menu { background: var(--m-cream); border-color: transparent; }
.mac-grid .card-menu:hover { border-color: var(--m-yellow); }
.mac-grid .card-menu .menu-name { color: var(--m-red-dark); }
.card-menu .thumb { position: relative; }
.mac-slogan {
  position: absolute; left: 0; right: 0; bottom: 12px;
  background: var(--m-yellow);
  color: #3a2402;
  font-weight: 800; font-size: .72rem; letter-spacing: .04em;
  text-align: center; text-transform: uppercase;
  padding: 6px 8px;
  transform: rotate(-2deg) scale(1.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

/* ---------- Empório DIY ---------- */
.sec-emporio { background: var(--coal); }
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.split-media { position: relative; }
.split-media img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
/* rótulos dos kits têm fundo transparente — sem moldura de card */
#kitRotator {
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .45));
}
.tag-gold {
  position: absolute; top: 18px; left: 18px;
  background: var(--gold-grad); color: #211703;
  font-weight: 800; font-size: .78rem; letter-spacing: .12em;
  padding: 8px 16px; border-radius: 50px;
}
.split-text h2 { margin: 6px 0 18px; }
.split-text p { color: var(--muted); }
.split-text .btn { margin-top: 26px; }
.emporio-cta {
  margin-top: 28px;
  background: linear-gradient(160deg, rgba(201, 162, 75, .12), rgba(201, 162, 75, .03));
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 24px 26px;
}
.emporio-cta-title {
  font-family: var(--serif); font-weight: 900;
  font-size: 1.2rem; color: var(--gold-2) !important;
  margin-bottom: 8px;
}
.emporio-cta p { font-size: .93rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.cta-row .btn { margin-top: 0; font-size: .82rem; padding: 13px 22px; }
.recipes-title {
  margin-top: 22px; font-weight: 700; color: var(--gold-2);
  font-size: .95rem; letter-spacing: .03em;
}
.recipe-chips {
  list-style: none; display: flex; flex-wrap: wrap;
  gap: 8px; margin-top: 12px;
}
.recipe-chips li {
  border: 1px solid var(--gold);
  color: var(--gold-2);
  border-radius: 50px;
  padding: 7px 15px;
  font-size: .83rem; font-weight: 500;
  background: rgba(201, 162, 75, .08);
}
.check-list { list-style: none; margin-top: 20px; }
.check-list li {
  padding-left: 34px; position: relative;
  margin-bottom: 12px; color: var(--cream); font-size: .98rem;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(201, 162, 75, .18);
  color: var(--gold-2); font-weight: 700; font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Revenda DIY ---------- */
.sec-revenda {
  background:
    radial-gradient(ellipse at 15% 15%, rgba(201, 162, 75, .10), transparent 45%),
    var(--black);
}
.revenda-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin: 44px auto 0; max-width: 940px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden;
}
.revenda-stats > div {
  background: var(--coal);
  padding: 22px 14px; text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.stat-num {
  font-family: var(--serif); font-weight: 900; font-size: 1.55rem;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-label { color: var(--muted); font-size: .8rem; }
.benefit-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 24px;
}
.benefit-card {
  background: linear-gradient(170deg, var(--panel), rgba(28, 22, 14, .55));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .25s, border-color .25s;
}
.benefit-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.benefit-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(201, 162, 75, .12);
  border: 1px solid rgba(201, 162, 75, .35);
  color: var(--gold-2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--gold-2); }
.benefit-card p { color: var(--muted); font-size: .92rem; }
.revenda-note {
  max-width: 820px; margin: 40px auto 0;
  text-align: center; color: var(--muted);
}

/* ---------- Seja nosso parceiro ---------- */
.sec-parceiro {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201, 162, 75, .12), transparent 55%),
    var(--coal);
}
.brands-duo {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 22px; align-items: stretch;
  max-width: 940px; margin: 48px auto 0;
}
.brand-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px 28px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.brand-card img { height: 110px; width: auto; object-fit: contain; }
.brand-card h3 { color: var(--gold-2); letter-spacing: .04em; }
.brand-card.brand-m h3 { color: var(--m-yellow); }
.brand-card p { color: var(--muted); font-size: .94rem; }
.duo-plus {
  align-self: center;
  font-family: var(--serif); font-weight: 900;
  font-size: 3rem; color: var(--gold);
}
.duo-caption { text-align: center; margin-top: 26px; color: var(--gold-2); font-size: 1.06rem; }
.invest-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 70px; color: var(--cream); }
.invest-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 34px;
}
.invest-card {
  background: linear-gradient(160deg, rgba(201, 162, 75, .10), rgba(201, 162, 75, .02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
}
.invest-num {
  display: block;
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 10px;
}
.invest-card p { color: var(--muted); font-size: .9rem; }
.invest-extra { max-width: 830px; margin: 42px auto 0; text-align: center; color: var(--muted); }
.disclaimer { text-align: center; color: #7d7257; font-size: .8rem; margin-top: 18px; }

/* ---------- Formulário B2B ---------- */
.sec-form {
  background:
    linear-gradient(rgba(10, 8, 6, .93), rgba(10, 8, 6, .96)),
    url('../assets/img/hero-macarrango.jpg') center / cover fixed no-repeat;
}
.form-wrap {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.form-intro h2 { margin: 8px 0 16px; }
.form-intro p { color: var(--muted); }
.b2b-form {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: var(--shadow);
}
.b2b-form h3 {
  font-size: 1.55rem; margin-bottom: 26px;
  background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.field { margin-bottom: 18px; border: 0; }
.field label, .field legend {
  display: block; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; color: var(--gold-2);
  margin-bottom: 7px;
}
.field input[type="text"], .field input[type="tel"], .field input[type="email"] {
  width: 100%;
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--cream);
  font-family: var(--sans); font-size: .98rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 162, 75, .18); }
.field input::placeholder { color: #6d6350; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pill-group { display: flex; flex-wrap: wrap; gap: 9px; }
.pill-group label { cursor: pointer; }
.pill-group input { position: absolute; opacity: 0; pointer-events: none; }
.pill-group span {
  display: inline-block;
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 50px;
  background: var(--coal);
  font-size: .84rem; font-weight: 500; color: var(--cream);
  transition: background .2s, color .2s, border-color .2s;
}
.pill-group input:checked + span {
  background: var(--gold-grad); color: #211703;
  border-color: transparent; font-weight: 700;
}
.pill-group input:focus-visible + span { outline: 2px solid var(--gold-2); outline-offset: 2px; }
.error-msg { display: none; color: #e4707a; font-size: .78rem; margin-top: 6px; }
.field.invalid .error-msg { display: block; }
.field.invalid input { border-color: #a33; }
.btn-submit { width: 100%; margin-top: 10px; border: 0; }
.btn-submit[disabled] { opacity: .6; cursor: wait; transform: none; }
.form-privacy { font-size: .76rem; color: #7d7257; text-align: center; margin-top: 14px; }
.form-success {
  background: var(--panel);
  border: 1px solid var(--gold);
  border-radius: 22px;
  padding: 60px 40px;
  text-align: center;
}
.success-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-grad); color: #211703;
  font-size: 2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.form-success h3 { font-size: 1.6rem; color: var(--gold-2); margin-bottom: 12px; }
.form-success p { color: var(--muted); max-width: 460px; margin: 0 auto; }

/* ---------- Prova social (avaliações verificadas no iFood) ---------- */
.sec-social { background: #f2ecdd; }
.social-kicker {
  font-size: .8rem; font-weight: 700; letter-spacing: .22em;
  color: #8a6d2f; text-align: center;
}
.social-title {
  color: #221a10; text-align: center;
  max-width: 720px; margin: 14px auto 0;
}
.social-grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 26px; align-items: center;
  max-width: 940px; margin: 46px auto 0;
}
.ifood-card {
  background: #e0333c;
  border-radius: 22px;
  padding: clamp(28px, 4vw, 44px);
  color: #fff;
  display: flex; flex-direction: column; align-items: flex-start; gap: 14px;
  box-shadow: 0 20px 45px rgba(160, 30, 40, .28);
}
.ifood-brand {
  font-weight: 800; font-style: italic; font-size: 1.05rem;
  letter-spacing: -.02em;
}
.ifood-card h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
.ifood-card p { font-size: .95rem; opacity: .92; flex: 1; }
.ifood-btn {
  display: inline-block;
  border: 2px solid #fff; border-radius: 50px;
  padding: 12px 24px;
  font-weight: 700; font-size: .85rem; letter-spacing: .04em;
  transition: background .2s, color .2s;
}
.ifood-btn:hover { background: #fff; color: #e0333c; }
.super-seal {
  margin: 0; border-radius: 22px; overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}
.super-seal img { width: 100%; height: auto; }
.social-sub {
  text-align: center; margin-top: 56px;
  font-family: var(--serif); font-weight: 900; font-size: 1.5rem;
  color: #221a10;
}
.social-sub .stars { color: #c9a24b; font-size: 1.1rem; vertical-align: 3px; margin-right: 8px; }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 28px;
}
.testimonial {
  position: relative;
  border-radius: 18px;
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 12px 28px rgba(80, 60, 20, .14);
}
.testimonial .stars { font-size: .9rem; letter-spacing: 3px; }
.testimonial p { font-size: .93rem; font-style: italic; flex: 1; padding-right: 40px; }
.t-author { display: flex; align-items: center; gap: 11px; font-size: .84rem; }
.t-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  flex: 0 0 auto;
}
.t-source { font-size: .74rem; }
.t-brand {
  position: absolute; top: 14px; right: 14px;
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.t-brand img { width: 100%; height: 100%; object-fit: contain; }
.t-brand-q { background: #17100a; padding: 6px; box-shadow: 0 4px 10px rgba(0, 0, 0, .25); }

/* cards Q!RISOTO — padrão dourado da marca */
.t-q { background: linear-gradient(150deg, #ecd694 0%, #c9a24b 85%); border: 1px solid #ab8434; }
.t-q .stars { color: #5d4410; }
.t-q p { color: #2c2007; }
.t-q .t-author { color: #4a3810; }
.t-q .t-author strong { color: #2c2007; }
.t-q .t-avatar { background: #17100a; color: var(--gold-2); }
.t-q .t-source { color: #6b5420; }

/* cards MACARRANGO — padrão vermelho da marca */
.t-m { background: linear-gradient(150deg, #b8272d 0%, #8e181d 90%); border: 1px solid #7e1519; }
.t-m .stars { color: var(--m-yellow); }
.t-m p { color: #fdf3e4; }
.t-m .t-author { color: #f3d9c2; }
.t-m .t-author strong { color: #fff; }
.t-m .t-avatar { background: var(--m-yellow); color: #3a2402; }
.t-m .t-source { color: #e5b9a3; }

/* ---------- Footer ---------- */
.footer {
  background: #070503;
  border-top: 1px solid var(--line);
  padding: 60px 0 34px;
  text-align: center;
}
.footer-brands { display: flex; gap: 34px; justify-content: center; align-items: center; margin-bottom: 30px; }
.footer-brands img { height: 84px; width: auto; object-fit: contain; }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 28px; justify-content: center; margin-bottom: 28px; }
.footer-links a { color: var(--muted); font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--gold-2); }
.footer-social { display: flex; gap: 26px; justify-content: center; margin-bottom: 30px; }
.footer-social a {
  display: flex; align-items: center; gap: 8px;
  color: var(--gold-2); font-size: .88rem;
  transition: color .2s;
}
.footer-social a:hover { color: var(--gold); }
.footer-emails { display: flex; gap: 12px; justify-content: center; align-items: center; margin-bottom: 28px; }
.footer-emails a { color: var(--muted); font-size: .86rem; transition: color .2s; }
.footer-emails a:hover { color: var(--gold-2); }
.footer-emails span { color: #6d6350; }
.footer-bottom p { color: var(--muted); font-size: .88rem; }
.footer-bottom .small { color: #6d6350; font-size: .76rem; margin-top: 8px; }

.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .45);
  transition: transform .2s;
}
.whats-float:hover { transform: scale(1.08); }

/* ---------- Animações de scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .card-menu { opacity: 1; transform: none; transition: none; animation: none; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid, .invest-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: none; }
  .nav-cta { margin-left: auto; }
  .hamburger { display: block; margin-left: 0; }
}

@media (max-width: 720px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .caixinha-gallery { grid-template-columns: 1fr; }
  .revenda-stats { grid-template-columns: repeat(2, 1fr); }
  .mac-slogan { font-size: .6rem; bottom: 8px; }
  .card-menu .menu-name { font-size: .88rem; padding: 11px 8px 13px; }
  .split { grid-template-columns: 1fr; }
  .form-wrap { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .brands-duo { grid-template-columns: 1fr; }
  .duo-plus { justify-self: center; }
  .mac-header { flex-direction: column; text-align: center; align-items: center; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .hero-ctas .btn { width: 100%; }
  .nav-cta { display: none; }
  .section-actions .btn { width: 100%; }
}

@media (max-width: 420px) {
  .benefit-grid, .invest-grid { grid-template-columns: 1fr; }
  .footer-social { flex-direction: column; align-items: center; gap: 14px; }
}
