/* ============================================================
   Açougue Completo — Landing B2B (supermercadista)
   Sistema visual: limpo, moderno, muito branco, fotos grandes.
   Temas trocáveis via [data-theme] (branco / editorial / escuro)
   Acento + tipografia trocáveis via variáveis (Tweaks).
   ============================================================ */

:root {
  /* tipografia (display trocável via --display) */
  --display: "Archivo", system-ui, sans-serif;
  --body: "Figtree", system-ui, sans-serif;

  /* marca Frigol / Açougue Completo */
  --brand-navy: #232954;
  --brand-red: #c21932;

  /* acento (trocável via Tweaks) */
  --accent: #c21932;
  --accent-press: #9e1428;
  --accent-ink: #ffffff;

  /* estrutura (tema branco — default) */
  --page: #fbfbfd;
  --surface: #ffffff;
  --surface-2: #f2f3f8;
  --ink: #1b2046;
  --muted: #5f6480;
  --line: rgba(27, 32, 70, 0.10);
  --line-strong: rgba(27, 32, 70, 0.16);
  --band: #232954;
  --band-ink: #f4f6fc;
  --band-muted: #a7accb;
  --shadow: 0 1px 2px rgba(27,32,70,.05), 0 18px 40px -24px rgba(27,32,70,.28);
  --shadow-sm: 0 1px 2px rgba(27,32,70,.05), 0 8px 20px -16px rgba(27,32,70,.32);

  --maxw: 1200px;
  --radius: 18px;
  --radius-sm: 12px;
  --gut: clamp(20px, 5vw, 80px);
}

/* ---- TEMA: EDITORIAL (branco com blocos vermelhos grandes) ---- */
[data-theme="editorial"] {
  --page: #ffffff;
  --surface: #ffffff;
  --surface-2: #faf3f4;
  --band: var(--accent);
  --band-ink: #ffffff;
  --band-muted: rgba(255,255,255,.80);
}

/* ---- TEMA: PREMIUM ESCURO ---- */
[data-theme="escuro"] {
  --page: #11132b;
  --surface: #1a1d3c;
  --surface-2: #20244a;
  --ink: #eef0f8;
  --muted: #a3a8c8;
  --line: rgba(255,255,255,0.10);
  --line-strong: rgba(255,255,255,0.18);
  --band: #0b0d20;
  --band-ink: #eef0f8;
  --band-muted: #a3a8c8;
  --shadow: 0 1px 2px rgba(0,0,0,.4), 0 24px 50px -28px rgba(0,0,0,.8);
  --shadow-sm: 0 1px 2px rgba(0,0,0,.4), 0 12px 28px -20px rgba(0,0,0,.7);
}

/* ============================================================ base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .35s ease, color .35s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.04; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(50px, 6.5vw, 100px); }

.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.eyebrow.on-dark { color: var(--band-ink); }
.eyebrow.on-dark::before { background: var(--accent); }

.lead { font-size: clamp(16px, 1.45vw, 18.5px); color: var(--muted); max-width: 56ch; }

/* ============================================================ buttons */
.btn {
  --b: var(--accent);
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-weight: 700; font-size: 15px; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .2s ease, box-shadow .2s ease, color .2s; 
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 24px -12px var(--accent); }
.btn-primary:hover { background: var(--accent-press); box-shadow: 0 14px 30px -12px var(--accent); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); }
.btn-arrow svg { width: 16px; height: 16px; transition: transform .2s ease; }
.btn:hover .btn-arrow svg { transform: translateX(3px); }

/* ============================================================ header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--page) 82%, transparent);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 50px; width: auto; display: block; }
@media (max-width: 480px) { .brand-logo { height: 42px; } }
.brand .logo-mark {
  width: 40px; height: 40px; border-radius: 10px; background: var(--accent);
  color: var(--accent-ink); display: grid; place-items: center;
  font-family: var(--display); font-weight: 800; font-size: 20px; flex-shrink: 0;
}
.brand .logo-txt { display: flex; flex-direction: column; line-height: 1; }
.brand .logo-txt b { font-family: var(--display); font-weight: 800; font-size: 16px; letter-spacing: -0.01em; }
.brand .logo-txt span { font-size: 11px; color: var(--muted); letter-spacing: .04em; margin-top: 3px; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 14.5px; font-weight: 500; color: var(--muted); transition: color .2s; white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }
@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-cta .btn-ghost { display: none; }
}

/* ============================================================ hero */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 72px); }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { font-size: clamp(40px, 6.2vw, 78px); }
.hero h1 .hl { color: var(--accent); }
.hero .lead { margin-top: 22px; font-size: clamp(18px, 1.8vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.hero-trust .t-num { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--ink); }
.hero-trust .t-txt { font-size: 14px; color: var(--muted); max-width: 30ch; line-height: 1.35; }
.hero-trust .divider { width: 1px; height: 38px; background: var(--line-strong); }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}
.hero-media image-slot { width: 100%; height: 100%; }
.hero-badge {
  position: absolute; left: -22px; bottom: 28px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); padding: 16px 20px; display: flex; gap: 14px; align-items: center;
  max-width: 280px;
}
.hero-badge .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 4px; }
.hero-badge b { font-family: var(--display); font-weight: 700; font-size: 14px; display: block; }
.hero-badge span { font-size: 12.5px; color: var(--muted); line-height: 1.35; }
@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media .frame { aspect-ratio: 16 / 11; }
  .hero-badge { left: 12px; }
}

/* logos strip */
.logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos .wrap { padding-block: 30px; display: flex; align-items: center; gap: clamp(20px,4vw,56px); flex-wrap: wrap; justify-content: center; }
.logos .label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.logo-pill { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--ink); opacity: .42; letter-spacing: -0.01em; transition: opacity .2s; }
.logo-pill:hover { opacity: .85; }

/* ============================================================ section heading */
.sec-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(30px, 4.2vw, 52px); margin-top: 18px; }
.sec-head p { margin-top: 18px; }
.sec-head.center .lead { margin-inline: auto; }

/* ============================================================ pilares */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px 34px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pillar .num {
  font-family: var(--display); font-weight: 800; font-size: 14px;
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent);
}
.pillar .pillar-ico {
  width: 68px; height: 68px; border-radius: 18px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 11%, transparent); color: var(--accent);
}
.pillar .pillar-ico svg { width: 36px; height: 36px; }
.pillar h3 { font-size: 21px; margin-top: 22px; letter-spacing: -0.01em; }
.pillar p { font-size: 15px; color: var(--muted); margin-top: 10px; }
@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

/* ============================================================ benefits (tabs) */
.benefits { background: var(--surface-2); }
.benef-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: stretch; }
.tablist { display: flex; flex-direction: column; gap: 8px; }
.tab {
  text-align: left; background: transparent; border: 1px solid transparent; cursor: pointer;
  padding: 20px 22px; border-radius: 14px; font-family: inherit; color: var(--ink);
  display: flex; gap: 16px; align-items: flex-start; transition: background .2s, border-color .2s;
}
.tab:hover { background: color-mix(in srgb, var(--ink) 4%, transparent); }
.tab[aria-selected="true"] { background: var(--surface); border-color: var(--line); box-shadow: var(--shadow-sm); }
.tab .t-ico {
  font-family: var(--display); font-weight: 800; font-size: 14px; color: var(--accent);
  width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex-shrink: 0;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}
.tab b { font-family: var(--display); font-weight: 700; font-size: 17px; display: block; }
.tab span { font-size: 13.5px; color: var(--muted); display: block; margin-top: 3px; }
.tab[aria-selected="true"] span { color: var(--muted); }

.tabpanels { position: relative; }
.tabpanel {
  display: none; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden; height: 100%;
  grid-template-rows: auto 1fr; flex-direction: column;
}
.tabpanel[data-active] { display: flex; animation: fade .4s ease; }
.tabpanel .panel-media { aspect-ratio: 16/9; }
.tabpanel .panel-media image-slot { width: 100%; height: 100%; }
.tabpanel .panel-body { padding: 30px 32px 34px; }
.tabpanel .panel-body h3 { font-size: 26px; }
.tabpanel .panel-body p { margin-top: 14px; color: var(--muted); }
.tabpanel .metric { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.tabpanel .metric .m b { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--accent); display: block; line-height: 1; }
.tabpanel .metric .m span { font-size: 13px; color: var(--muted); }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (max-width: 860px) {
  .benef-grid { grid-template-columns: 1fr; }
  .tablist { flex-direction: row; overflow-x: auto; gap: 8px; padding-bottom: 4px; }
  .tab { min-width: 220px; }
  .tab span { display: none; }
}

/* ============================================================ how it works (accordion) */
.steps { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: start; }
.steps-media { position: sticky; top: 100px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/4; }
.steps-media image-slot { width: 100%; height: 100%; }
.accordion { display: flex; flex-direction: column; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item:first-child { border-top: 1px solid var(--line); }
.acc-head {
  width: 100%; background: transparent; border: 0; cursor: pointer; font-family: inherit; color: var(--ink);
  display: flex; align-items: center; gap: 20px; padding: 26px 6px; text-align: left;
}
.acc-head .step-n {
  font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--accent);
  width: 40px; flex-shrink: 0;
}
.acc-head h3 { font-size: clamp(19px, 2.2vw, 24px); flex: 1; transition: color .2s; }
.acc-head .chev { width: 22px; height: 22px; flex-shrink: 0; color: var(--muted); transition: transform .3s ease; }
.acc-item[data-open] .acc-head .chev { transform: rotate(45deg); color: var(--accent); }
.acc-body { overflow: hidden; height: 0; transition: height .35s ease; }
.acc-body .inner { padding: 0 6px 28px 60px; }
.acc-body p { color: var(--muted); max-width: 52ch; }
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; }
  .steps-media { position: relative; top: 0; aspect-ratio: 16/10; order: -1; }
}

/* ============================================================ numbers band */
.band { background: var(--band); color: var(--band-ink); }
.band .eyebrow { color: var(--band-ink); }
.band .eyebrow::before { background: var(--accent); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
.stats.duo { grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 6vw, 72px); max-width: 920px; }
.stats.duo .v { font-size: clamp(48px, 7vw, 84px); }
.stats.duo .k { font-size: 16px; max-width: 28ch; }
.stat { border-left: 2px solid color-mix(in srgb, var(--band-ink) 22%, transparent); padding-left: 22px; }
.stat .v { font-family: var(--display); font-weight: 800; font-size: clamp(40px, 5vw, 62px); line-height: 1; letter-spacing: -0.03em; }
.stat .v .suf { color: var(--accent); }
.stat .k { font-size: 14.5px; color: var(--band-muted); margin-top: 12px; max-width: 22ch; }
.band h2 { font-size: clamp(28px, 4vw, 46px); max-width: 18ch; }
.band .note { font-size: 12.5px; color: var(--band-muted); margin-top: 44px; opacity: .8; }
@media (max-width: 820px) { .stats { grid-template-columns: 1fr 1fr; gap: 36px 20px; } }

/* ============================================================ form / lead */
.lead-sec { background: var(--surface-2); }
.lead-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.lead-copy h2 { font-size: clamp(30px, 4vw, 50px); }
.lead-copy .lead { margin-top: 20px; }
.lead-list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.lead-list li { list-style: none; display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; }
.lead-list .check { width: 22px; height: 22px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.lead-list .check svg { width: 13px; height: 13px; }
.lead-contact { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); display: flex; gap: 28px; flex-wrap: wrap; }
.lead-contact .lc b { font-family: var(--display); font-size: 15px; display: block; }
.lead-contact .lc span { font-size: 13px; color: var(--muted); }

.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(26px, 3vw, 40px); }
.form-card h3 { font-size: 22px; }
.form-card .fc-sub { font-size: 14px; color: var(--muted); margin-top: 8px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 26px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--muted); letter-spacing: .02em; }
.field label .req { color: var(--accent); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 11px;
  padding: 13px 14px; outline: none; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--accent); background: var(--surface);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}
.field.error input, .field.error select { border-color: var(--accent); }
.field .err-msg { font-size: 12px; color: var(--accent); display: none; }
.field.error .err-msg { display: block; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 24px; padding-block: 17px; }
.form-foot { font-size: 12px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { text-align: center; padding: 30px 10px; display: none; }
.form-success.show { display: block; animation: fade .4s ease; }
.form-success .ok { width: 60px; height: 60px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .ok svg { width: 28px; height: 28px; }
.form-success h3 { font-size: 24px; }
.form-success p { color: var(--muted); margin-top: 12px; }
@media (max-width: 880px) { .lead-grid { grid-template-columns: 1fr; } .form-grid { grid-template-columns: 1fr; } }

/* ---- contact card (substitui o formulário) ---- */
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(26px, 3vw, 40px); }
.contact-card h3 { font-size: 24px; }
.contact-card .fc-sub { font-size: 14px; color: var(--muted); margin-top: 8px; }
.contact-rows { margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.contact-row {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface-2);
  transition: border-color .2s, background .2s, transform .15s;
}
.contact-row:hover { border-color: var(--accent); background: var(--surface); transform: translateY(-2px); }
.contact-row .cr-ico {
  width: 46px; height: 46px; border-radius: 12px; flex-shrink: 0; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent);
}
.contact-row .cr-ico svg { width: 22px; height: 22px; }
.contact-row .cr-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.contact-row .cr-label { font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-row .cr-txt b { font-family: var(--display); font-weight: 700; font-size: clamp(17px, 2vw, 21px); letter-spacing: -0.01em; color: var(--ink); overflow-wrap: anywhere; }
.contact-row .cr-arrow { color: var(--muted); flex-shrink: 0; transition: transform .2s, color .2s; }
.contact-row .cr-arrow svg { width: 18px; height: 18px; }
.contact-row:hover .cr-arrow { color: var(--accent); transform: translateX(3px); }
.contact-cta { width: 100%; justify-content: center; margin-top: 22px; padding-block: 16px; }

/* ============================================================ stores */
.stores .finder { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: clamp(24px, 3vw, 36px); margin-top: 8px; }
.finder-top { display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.finder .field { max-width: 320px; flex: 1; }
.finder-count { font-size: 14px; color: var(--muted); }
.finder-count b { color: var(--ink); font-family: var(--display); }
.store-list { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.store {
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; background: var(--surface-2);
  display: flex; gap: 12px; align-items: flex-start; animation: fade .3s ease;
  transition: border-color .2s, background .2s, transform .15s;
}
.store:hover { border-color: var(--accent); background: var(--surface); transform: translateY(-2px); }
.store .pin { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--accent); }
.store-info { min-width: 0; flex: 1; }
.store b { font-size: 14.5px; font-family: var(--display); font-weight: 700; line-height: 1.2; display: block; }
.store span { font-size: 12px; color: var(--muted); display: block; margin-top: 4px; line-height: 1.35; }
.store .store-map {
  flex-shrink: 0; align-self: center; font-family: var(--display); font-weight: 700; font-size: 11px;
  color: var(--accent); margin: 0; opacity: 0; transition: opacity .2s; white-space: nowrap;
}
.store:hover .store-map { opacity: 1; }
@media (max-width: 900px) { .store-list { grid-template-columns: 1fr 1fr; } .store .store-map { display: none; } }
@media (max-width: 560px) { .store-list { grid-template-columns: 1fr; } }

/* ============================================================ footer */
.site-footer { background: var(--band); color: var(--band-ink); padding-block: clamp(50px, 6vw, 80px) 36px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.foot-brand .brand .logo-txt b, .foot-brand .brand .logo-txt span { color: var(--band-ink); }
.foot-brand p { color: var(--band-muted); font-size: 14.5px; margin-top: 18px; max-width: 36ch; }
.foot-col h4 { font-family: var(--display); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--band-muted); margin-bottom: 16px; }
.foot-col a, .foot-col p { color: var(--band-ink); font-size: 14.5px; display: block; opacity: .85; margin-bottom: 10px; transition: opacity .2s; }
.foot-col a:hover { opacity: 1; }
.foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid color-mix(in srgb, var(--band-ink) 16%, transparent); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--band-muted); }
.foot-social { display: flex; gap: 18px; }
.foot-left { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.foot-credit { display: inline-flex; align-items: center; gap: 10px; opacity: .7; transition: opacity .2s; }
.foot-credit:hover { opacity: 1; }
.foot-credit span { font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--band-muted); }
.foot-credit img { height: 28px; width: auto; display: block; }
@media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; } .foot-brand { grid-column: 1/-1; } }

/* ============================================================ reveal anim */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* image-slot placeholder look */
image-slot { background: var(--surface-2); }

/* ============================================================ ENTRY SPLASH */
.entry {
  position: fixed; inset: 0; z-index: 300;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--page); overflow: hidden;
  transition: opacity .6s ease;
}
.entry.hide { opacity: 0; pointer-events: none; }
.entry-mockup { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.entry-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(255,255,255,.58), rgba(255,255,255,.50) 45%, rgba(255,255,255,.66));
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.entry-half {
  position: relative; overflow: hidden; cursor: pointer; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  padding: clamp(40px, 8vh, 96px) clamp(28px, 5vw, 84px) clamp(56px, 12vh, 120px);
  border: 0; background: transparent; font-family: inherit; text-align: center;
}
.entry-half::before { content: ""; position: absolute; inset: 0; z-index: -1; background: transparent; transition: background .3s ease; }
.entry-half[data-go="varejista"]:hover::before { background: color-mix(in srgb, var(--accent) 14%, transparent); }
.entry-half[data-go="consumidor"]:hover::before { background: color-mix(in srgb, #1f2a6e 16%, transparent); }
.entry-content { position: relative; z-index: 2; }
.entry-content h2 { font-size: clamp(34px, 5vw, 60px); color: var(--ink); line-height: 1.0; text-shadow: 0 2px 12px rgba(255,255,255,.6); }
.entry-btn {
  margin-top: 26px; display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display); font-weight: 700; font-size: 16px;
  padding: 16px 34px; border-radius: 999px; border: 0;
  color: var(--accent-ink); background: var(--accent); box-shadow: 0 12px 30px -12px rgba(0,0,0,.5);
  transition: background .25s, transform .15s, box-shadow .25s;
}
.entry-half[data-go="consumidor"] .entry-btn { background: #1f2a6e; }
.entry-half:hover .entry-btn { transform: translateY(-2px); }
.entry-btn svg { width: 17px; height: 17px; transition: transform .25s ease; }
.entry-half:hover .entry-btn svg { transform: translateX(4px); }
.entry-center {
  position: absolute; top: clamp(54px, 16vh, 200px); left: 50%; transform: translateX(-50%);
  z-index: 4; text-align: center; pointer-events: none; width: max-content; max-width: 92vw;
}
.entry-center img { height: clamp(120px, 21vh, 230px); width: auto; margin: 0 auto; filter: drop-shadow(0 10px 30px rgba(255,255,255,.7)); }
.entry-center .tag { margin-top: 20px; font-family: var(--display); font-weight: 700; font-size: clamp(18px, 2.4vw, 26px); color: var(--ink); letter-spacing: .01em; text-shadow: 0 2px 12px rgba(255,255,255,.7); }
.entry-divider { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: rgba(31,42,110,.25); z-index: 4; transform: translateX(-.5px); }
@media (max-width: 760px) {
  .entry { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .entry-divider { left: 0; right: 0; top: 50%; bottom: auto; width: auto; height: 1px; }
  .entry-center { top: clamp(20px, 5vh, 40px); transform: translateX(-50%); }
  .entry-center img { height: clamp(84px, 12vh, 120px); }
  .entry-center .tag { display: none; }
  .entry-half { padding-block: 0; }
  .entry-half[data-go="varejista"] { padding-bottom: 5vh; padding-top: 18vh; justify-content: flex-end; }
  .entry-half[data-go="consumidor"] { padding-top: 5vh; justify-content: flex-start; }
}

/* ============================================================ TRACKS + audience switch */
#app[hidden] { display: none; }
.track { display: none; }
.track[data-active] { display: block; animation: fade .5s ease; }
.nav-links .nav-group { display: none; align-items: center; gap: 30px; }
body[data-active-track="varejista"] .nav-group.for-varejista { display: flex; }
body[data-active-track="consumidor"] .nav-group.for-consumidor { display: flex; }
.cta-varejista, .cta-consumidor { display: none; }
body[data-active-track="varejista"] .cta-varejista { display: inline-flex; }
body[data-active-track="consumidor"] .cta-consumidor { display: inline-flex; }
.aud-switch {
  display: inline-flex; align-items: center; gap: 9px; cursor: pointer;
  font-family: var(--display); font-weight: 600; font-size: 13px; color: var(--muted);
  background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px;
  transition: border-color .2s, color .2s;
}
.aud-switch:hover { border-color: var(--ink); color: var(--ink); }
.aud-switch b { color: var(--ink); font-weight: 700; }
.aud-switch svg { width: 14px; height: 14px; }
@media (max-width: 920px) { .aud-switch b, .aud-switch .aud-pre { display: none; } }

/* ============================================================ reasons (consumer) */
.reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.reasons.quad { grid-template-columns: repeat(4, 1fr); }
.reasons.quad .reason .r-ico { width: 64px; height: 64px; border-radius: 17px; }
.reasons.quad .reason .r-ico svg { width: 32px; height: 32px; }
.reason {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px 34px; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.reason:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.reason .r-ico {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: color-mix(in srgb, var(--accent) 12%, transparent); color: var(--accent);
}
.reason .r-ico svg { width: 23px; height: 23px; }
.reason h3 { font-size: 19px; margin-top: 22px; letter-spacing: -0.01em; }
.reason p { font-size: 14.5px; color: var(--muted); margin-top: 10px; }
@media (max-width: 900px) { .reasons { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .reasons { grid-template-columns: 1fr; } }
@media (max-width: 1000px) { .reasons.quad { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .reasons.quad { grid-template-columns: 1fr; } }

/* ============================================================ cuts carousel */
.cuts-wrap { position: relative; }
.cuts {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(200px, 22vw, 248px);
  gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 22px;
  scrollbar-width: thin;
}
.cut { scroll-snap-align: start; }
.cut .cut-media {
  aspect-ratio: 4/5; border-radius: var(--radius-sm); overflow: hidden;
  box-shadow: var(--shadow-sm); background: var(--surface-2);
}
.cut .cut-media image-slot { width: 100%; height: 100%; }
.cut b { font-family: var(--display); font-weight: 700; font-size: 16px; display: block; margin-top: 14px; }
.cut span { font-size: 13px; color: var(--muted); }
.cuts-nav { display: flex; gap: 8px; margin-top: 4px; }
.cuts-nav button {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--ink); cursor: pointer; display: grid; place-items: center;
  transition: background .2s, border-color .2s, transform .15s;
}
.cuts-nav button:hover { border-color: var(--ink); }
.cuts-nav button:active { transform: scale(.94); }
.cuts-nav button svg { width: 18px; height: 18px; }
.cuts-link { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--accent); margin-top: 6px; }
.cuts-link svg { width: 15px; height: 15px; }
.cuts-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cuts-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 44px; }
.cut-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  overflow: hidden; padding-bottom: 16px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cut-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.cut-photo { aspect-ratio: 4/5; background: #ffffff; }
.cut-photo image-slot { width: 100%; height: 100%; }
.cut-card b { font-family: var(--display); font-weight: 700; font-size: 15.5px; display: block; margin-top: 14px; letter-spacing: -0.01em; }
.cut-card span { font-size: 12px; color: var(--muted); }
@media (max-width: 1040px) { .cuts-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .cuts-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================ sai da fila */
.saifila { background: var(--surface-2); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5/4; }
.split-media image-slot { width: 100%; height: 100%; }
.split-body h2 { font-size: clamp(28px, 3.6vw, 44px); margin-top: 16px; }
.split-body .lead { margin-top: 16px; }
.tagline-pill { display: inline-flex; align-items: center; gap: 8px; font-family: var(--display); font-weight: 700; font-size: 13px; color: var(--accent); background: color-mix(in srgb, var(--accent) 10%, transparent); padding: 7px 14px; border-radius: 999px; }
.saifila-logo {
  display: block; height: clamp(96px, 12vw, 150px); width: auto; margin-bottom: 20px;
}
[data-theme="escuro"] .saifila-logo { filter: brightness(0) invert(1); }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split.reverse .split-media { order: 0; } }

/* ============================================================ porque list (varejista) */
.porque-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px,5vw,64px); align-items: center; }
.porque-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.porque-list li { list-style: none; display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; font-weight: 500; }
.porque-list .check { width: 24px; height: 24px; border-radius: 50%; background: color-mix(in srgb, var(--accent) 14%, transparent); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.porque-list .check svg { width: 13px; height: 13px; }
.porque-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/4; }
.porque-media image-slot { width: 100%; height: 100%; }
@media (max-width: 860px) { .porque-grid { grid-template-columns: 1fr; } .porque-list { grid-template-columns: 1fr; } .porque-media { aspect-ratio: 16/10; } }
