:root {
  --yellow: #f0d020;
  --yellow-light: #faec8a;
  --yellow-pale: #fbf7df;
  --ink: #202828;
  --ink-2: #2b3333;
  --ink-3: #485050;
  --muted: #69706b;
  --paper: #fffdf5;
  --surface: #f5f2e3;
  --white: #fff;
  --green: #25d366;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow-sm: 0 10px 30px rgba(32, 40, 40, .07);
  --shadow-md: 0 22px 60px rgba(32, 40, 40, .11);
  --shadow-lg: 0 36px 90px rgba(12, 18, 18, .2);
  --ease: cubic-bezier(.2, .75, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--yellow); color: var(--ink); }
.container { width: min(1220px, calc(100% - 48px)); margin-inline: auto; }

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 3px;
  pointer-events: none;
  background: var(--ink) 0 0 / var(--scroll-progress, 0%) 100% no-repeat;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 80;
  height: 82px;
  background: rgba(240, 208, 32, .94);
  box-shadow: 0 12px 35px rgba(32, 40, 40, .08);
  backdrop-filter: blur(18px) saturate(1.2);
  transition: height .3s var(--ease), box-shadow .3s ease, background .3s ease;
}
.header.scrolled {
  background: rgba(240, 208, 32, .88);
  box-shadow: 0 16px 45px rgba(32, 40, 40, .14);
}
.nav-wrap { height: 100%; display: flex; align-items: center; gap: 24px; position: relative; }
.brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 154px;
  height: auto;
}
.nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.nav a {
  position: relative;
  padding-block: 31px 28px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .35px;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-mobile-actions { display: none; }
.header-actions { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  place-items: center;
  border: 0;
  border-radius: 14px;
  background: rgba(32, 40, 40, .08);
  cursor: pointer;
}
.menu-toggle svg { fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

/* Buttons */
.btn {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 0 21px;
  border: 0;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, .28), transparent 70%);
  transform: translateX(-110%);
  transition: transform .65s var(--ease);
}
.btn:hover { transform: translateY(-3px); }
.btn:hover::after { transform: translateX(110%); }
.btn:active { transform: translateY(-1px) scale(.98); }
.btn:focus-visible, .menu-toggle:focus-visible, .catalog-filter:focus-visible, .modal-close:focus-visible {
  outline: 3px solid rgba(240, 208, 32, .5);
  outline-offset: 3px;
}
.btn-icon { width: 18px; height: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.btn-primary { background: var(--ink); color: var(--yellow); box-shadow: 0 12px 28px rgba(32, 40, 40, .2); }
.btn-primary:hover { box-shadow: 0 18px 36px rgba(32, 40, 40, .28); }
.btn-outline { background: rgba(32, 40, 40, .08); color: var(--ink); box-shadow: inset 0 0 0 1px rgba(32, 40, 40, .14); }
.btn-outline:hover { background: rgba(32, 40, 40, .13); }
.btn.compact { min-height: 44px; padding-inline: 14px; font-size: 9px; border-radius: 12px; }
.header-budget-cta { animation: header-cta-pulse 2.1s ease-in-out infinite; }
@keyframes header-cta-pulse {
  0%, 100% { box-shadow: 0 12px 28px rgba(32, 40, 40, .2), 0 0 0 0 rgba(32, 40, 40, .18); }
  50% { box-shadow: 0 16px 34px rgba(32, 40, 40, .3), 0 0 0 7px rgba(32, 40, 40, 0); }
}
.full { width: 100%; }

/* Hero */
.hero { position: relative; width: 100%; min-height: min(760px, calc(100svh - 82px)); overflow: hidden; background: var(--ink); }
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url('assets/hero-produtos.webp') 58% center / cover no-repeat;
  transform: scale(1.10);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 48%, rgba(240, 208, 32, .09), transparent 30%),
    linear-gradient(90deg, rgba(17, 23, 23, .98) 0%, rgba(23, 30, 30, .9) 43%, rgba(23, 30, 30, .34) 72%, rgba(23, 30, 30, .08) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(20, 26, 26, .34));
}
.hero-content { position: relative; min-height: inherit; display: flex; align-items: center; padding-block: 82px 100px; }
.hero-copy { max-width: 760px; color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.eyebrow::before { content: ''; width: 28px; height: 2px; border-radius: 99px; background: currentColor; }
.eyebrow.dark { color: var(--ink); }
.hero h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  font-size: clamp(48px, 5.8vw, 76px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -4px;
}
.hero h1 span { color: var(--yellow); }
.hero p { max-width: 610px; margin: 0; color: #d6dad6; font-size: 16px; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero .btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 0 16px 38px rgba(240, 208, 32, .18); }
.hero .btn-outline.light { color: #fff; background: rgba(255, 255, 255, .08); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .2); backdrop-filter: blur(12px); }
.hero .btn-outline.light:hover { background: rgba(255, 255, 255, .14); }
.hero-proofs { display: flex; flex-wrap: wrap; gap: 12px 26px; margin: 28px 0 0; padding: 0; list-style: none; color: #eef0ec; font-size: 11px; font-weight: 700; }
.hero-proofs li { position: relative; padding-left: 20px; }
.hero-proofs li::before { content: '✓'; position: absolute; left: 0; color: var(--yellow); font-weight: 900; }

/* Faixa de diferenciais no estilo anterior */
.trustbar { position: relative; z-index: 4; background: linear-gradient(180deg, #f5d92d, #f0d020); color: #202828; box-shadow: 0 16px 40px rgba(94, 80, 7, .12); }
.trust-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; padding-block: 25px; }
.trust-item { position: relative; min-width: 0; min-height: 64px; display: flex; align-items: center; gap: 13px; padding: 0 17px; border-radius: 0; background: transparent; transition: transform .25s var(--ease); }
.trust-item:not(:last-child)::after { content: ''; position: absolute; top: 8px; right: 0; bottom: 8px; width: 1px; background: linear-gradient(transparent, rgba(32, 40, 40, .22), transparent); }
.trust-item:hover { transform: translateY(-3px); background: transparent; }
.trust-icon { width: 48px; height: 48px; flex: 0 0 48px; padding: 10px; border-radius: 15px; background: #202828; color: #f0d020; box-shadow: 0 9px 22px rgba(32, 40, 40, .16); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.trust-item b { display: block; color: #202828; font-size: 10px; font-weight: 800; line-height: 1.3; letter-spacing: -.1px; text-transform: uppercase; }
.trust-item small { display: block; margin-top: 5px; color: rgba(32, 40, 40, .76); font-size: 8.5px; font-weight: 600; line-height: 1.4; }
@media (max-width: 1260px) and (min-width: 901px) { .trust-item:nth-child(3n)::after { display: none; } }
@media (max-width: 900px) and (min-width: 701px) { .trust-item:not(:last-child)::after { display: block; } .trust-item:nth-child(even)::after { display: none; } }
@media (max-width: 700px) { .trust-item { padding: 12px 14px; border-radius: 16px; background: rgba(32, 40, 40, .055); } .trust-item:not(:last-child)::after { display: none; } }

/* Shared sections */
.section { padding-block: 108px; }
.section-light { background: var(--surface); }
.section-dark { position: relative; overflow: hidden; background: var(--ink); color: #fff; }
.section-dark::before { content: ''; position: absolute; width: 500px; height: 500px; right: -180px; top: -300px; border-radius: 50%; background: rgba(240, 208, 32, .08); filter: blur(1px); }
.section-head { max-width: 760px; margin: 0 auto 50px; text-align: center; }
.section-head .eyebrow { margin-bottom: 10px; }
.section-head h2, .stores-head h2 {
  margin: 0;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -2.5px;
  text-transform: uppercase;
}
.section-head h2 span, .stores-head h2 span { color: var(--yellow); }
.section-head p { max-width: 630px; margin: 18px auto 0; color: var(--muted); font-size: 14px; line-height: 1.75; }
.compact-head { margin-bottom: 36px; }

/* Products */
#produtos { background: linear-gradient(180deg, #f4f1e1 0%, #faf8ee 100%); }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.card { position: relative; overflow: hidden; border-radius: 26px; background: var(--paper); box-shadow: var(--shadow-sm); }
.product-card { display: flex; flex-direction: column; min-height: 100%; transition: transform .38s var(--ease), box-shadow .38s ease; }
.product-card:hover { transform: translateY(-9px); box-shadow: var(--shadow-md); }
.product-card > img { width: 100%; height: 220px; object-fit: cover; transition: transform .7s var(--ease), filter .4s ease; }
.product-card:hover > img { transform: scale(1.055); filter: saturate(1.06); }
.product-card .card-body { position: relative; z-index: 1; display: flex; flex: 1; flex-direction: column; padding: 25px 26px 27px; background: var(--paper); }
.tag { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: 1.4px; text-transform: uppercase; }
.product-card h3 { margin: 7px 0 10px; font-size: 22px; font-weight: 800; line-height: 1.08; letter-spacing: -1px; text-transform: uppercase; }
.product-card p { margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.65; }
.text-link { display: inline-flex; align-items: center; align-self: flex-start; margin-top: auto; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .45px; text-transform: uppercase; }
.text-link::after { content: ''; display: block; width: 0; height: 2px; margin-left: 8px; border-radius: 9px; background: var(--yellow); transition: width .3s var(--ease); }
.text-link:hover::after { width: 28px; }
.featured { box-shadow: 0 22px 55px rgba(240, 208, 32, .15), var(--shadow-sm); }
.badge { position: absolute; top: 16px; right: 16px; z-index: 3; padding: 8px 12px; border-radius: 999px; background: var(--yellow); color: var(--ink); box-shadow: 0 10px 24px rgba(32, 40, 40, .18); font-size: 8px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }

/* Catalog */
.catalog { position: relative; isolation: isolate; margin-top: 100px; overflow: hidden; padding: 28px; scroll-margin-top: 100px; border-radius: 34px; background: linear-gradient(145deg, #111818, var(--ink) 55%, #161e1e); color: var(--white); box-shadow: inset 0 0 0 1px rgba(255,255,255,.18), inset 0 0 0 14px rgba(0,0,0,.12), 0 32px 80px rgba(20, 27, 27, .24); }
.catalog::before { content: ''; position: absolute; z-index: -1; top: 14px; right: 14px; width: 58%; height: 335px; border-radius: 24px; background: linear-gradient(90deg, #151d1d 0%, rgba(21,29,29,.72) 45%, rgba(21,29,29,.24)), linear-gradient(0deg, rgba(12,18,18,.35), rgba(12,18,18,.15)), url('assets/produto-vergalhao.webp') right center / cover no-repeat; opacity: .58; -webkit-mask-image: linear-gradient(90deg, transparent, #000 28%); mask-image: linear-gradient(90deg, transparent, #000 28%); }
.catalog > * { position: relative; z-index: 1; }
.catalog-head { display: grid; grid-template-columns: 1.13fr .87fr; gap: 64px; align-items: center; min-height: 270px; padding: 20px 20px 30px; }
.catalog-title { max-width: 640px; }
.catalog-kicker { display: flex; align-items: center; gap: 14px; }
.catalog-kicker-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: rgba(240,208,32,.08); color: var(--yellow); box-shadow: inset 0 0 0 1px rgba(240,208,32,.7); }
.catalog-kicker-icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.catalog-kicker .eyebrow { color: var(--white); font-size: 10px; letter-spacing: 1.2px; }
.catalog-kicker .eyebrow::before { display: none; }
.catalog-head h3 { max-width: 650px; margin: 22px 0 0; color: var(--white); font-size: clamp(34px, 4vw, 51px); font-weight: 700; line-height: 1.02; letter-spacing: -2.5px; text-transform: none; text-wrap: balance; }
.catalog-head h3 span { display: block; color: var(--yellow); }
.catalog-lead { max-width: 500px; margin: 18px 0 0; color: rgba(255,255,255,.7); font-size: 12px; line-height: 1.65; }
.catalog-intro { padding: 25px 27px 22px; border-radius: 19px; background: rgba(29, 37, 37, .8); box-shadow: inset 0 0 0 1px rgba(240, 208, 32, .38), 0 20px 50px rgba(0,0,0,.18); backdrop-filter: blur(12px); }
.catalog-intro-title { display: grid; grid-template-columns: 48px 1fr; gap: 16px; align-items: center; padding-bottom: 20px; box-shadow: inset 0 -1px rgba(255,255,255,.07); }
.catalog-intro-title > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: rgba(240,208,32,.1); color: var(--yellow); box-shadow: inset 0 0 0 1px rgba(240,208,32,.45); }
.catalog-intro-title svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.catalog-intro-title strong { font-size: 13px; }
.catalog-intro-title p { margin: 6px 0 0; color: rgba(255,255,255,.62); font-size: 10px; line-height: 1.5; }
.catalog-benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding-top: 20px; }
.catalog-benefits > span { min-width: 0; display: grid; justify-items: center; gap: 8px; color: var(--yellow); text-align: center; }
.catalog-benefits svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.catalog-benefits small { color: rgba(255,255,255,.68); font-size: 7px; line-height: 1.3; }
.catalog-filters { position: relative; display: grid; grid-template-columns: .8fr repeat(4, 1fr); gap: 14px; width: 100%; margin: 0 0 24px; padding: 0 20px; background: transparent; }
.catalog-filters::before { content: ''; position: absolute; z-index: -1; top: 50%; right: 0; left: 0; height: 1px; background: rgba(240,208,32,.7); }
.catalog-filter { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 6px 14px; border: 0; border-radius: 999px; background: rgba(22,29,29,.94); color: rgba(255,255,255,.86); box-shadow: inset 0 0 0 1px rgba(255,255,255,.28); font-size: 9px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; cursor: pointer; transition: transform .25s var(--ease), background .25s ease, color .25s ease, box-shadow .25s ease; }
.catalog-filter small { min-width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); font-size: 8px; }
.catalog-filter:hover { transform: translateY(-2px); background: var(--ink-2); box-shadow: inset 0 0 0 1px rgba(240,208,32,.55); }
.catalog-filter.active { background: var(--yellow); color: var(--ink); box-shadow: 0 10px 25px rgba(240,208,32,.18); }
.catalog-filter.active small { background: rgba(32,40,40,.1); color: var(--ink); }
.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; padding-inline: 14px; }
.catalog-item { position: relative; display: grid; grid-template-columns: 56px 1fr 22px; grid-template-rows: auto auto auto; column-gap: 14px; min-height: 108px; overflow: hidden; padding: 17px; border-radius: 15px; background: var(--paper); color: var(--ink); box-shadow: 0 8px 24px rgba(0,0,0,.1); transition: transform .3s var(--ease), box-shadow .3s ease; }
.catalog-item:hover { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(0,0,0,.2); }
.catalog-item::before { width: 56px; height: 56px; grid-column: 1; grid-row: 1 / 4; display: grid; place-items: center; align-self: center; border-radius: 14px; background: linear-gradient(145deg, #fff9dc, #f7e9a7); color: #75620a; font-size: 24px; font-weight: 500; }
.catalog-item[data-category='fundacao']::before { content: '▦'; }
.catalog-item[data-category='estrutura']::before { content: '◇'; }
.catalog-item[data-category='cobertura']::before { content: '⌂'; }
.catalog-item[data-category='complementos']::before { content: '+'; }
.catalog-item:nth-child(2)::before { content: '╱'; }
.catalog-item:nth-child(3)::before { content: '△'; }
.catalog-item:nth-child(4)::before { content: '◯'; }
.catalog-item:nth-child(5)::before { content: '□'; }
.catalog-item:nth-child(6)::before { content: '▭'; }
.catalog-item:nth-child(7)::before { content: '∟'; }
.catalog-item:nth-child(8)::before { content: '∪'; }
.catalog-item:nth-child(11)::before { content: '⌃'; }
.catalog-item:nth-child(12)::before { content: '≋'; }
.catalog-item:nth-child(13)::before { content: '▱'; }
.catalog-item:nth-child(14)::before { content: '✣'; }
.catalog-item:nth-child(15)::before { content: '⌁'; }
.catalog-item:nth-child(16)::before { content: '⊕'; }
.catalog-item::after { content: '→'; grid-column: 3; grid-row: 1 / 4; align-self: center; color: var(--ink); font-size: 18px; transition: transform .25s ease; }
.catalog-item:hover::after { transform: translateX(4px); }
.catalog-item span { grid-column: 2; grid-row: 1; align-self: end; color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.catalog-item h4 { grid-column: 2; grid-row: 2; align-self: start; margin: 2px 0 0; font-size: 14px; line-height: 1.25; }
.catalog-item p { grid-column: 2; grid-row: 3; margin: 5px 0 0; color: var(--muted); font-size: 9px; line-height: 1.45; }
.catalog-item[hidden] { display: none; }
.catalog-cta { display: grid; grid-template-columns: 58px 1fr auto; align-items: center; gap: 20px; margin: 24px 14px 0; padding: 17px 22px; border-radius: 17px; background: rgba(21,28,28,.76); color: #fff; box-shadow: inset 0 0 0 1px rgba(240,208,32,.65); }
.catalog-cta-icon { width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%; background: rgba(240,208,32,.1); color: var(--yellow); box-shadow: inset 0 0 0 1px rgba(240,208,32,.42); }
.catalog-cta-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.catalog-cta strong { font-size: 13px; }
.catalog-cta p { margin: 4px 0 0; color: rgba(255,255,255,.62); font-size: 9px; line-height: 1.45; }
.catalog-cta .btn-primary { min-width: 230px; background: var(--yellow); color: var(--ink); box-shadow: none; }

/* Benefits */
#beneficios { padding-block: 88px; }
#beneficios .section-head h2 span { color: var(--yellow); }
.benefit-grid { position: relative; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.benefit { min-width: 0; padding: 24px 21px; border-radius: 21px; background: rgba(255, 255, 255, .055); transition: transform .32s var(--ease), background .32s ease; }
.benefit:hover { transform: translateY(-7px); background: rgba(255, 255, 255, .085); }
.benefit-icon { width: 48px; height: 48px; padding: 10px; border-radius: 15px; background: var(--yellow); color: var(--ink); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.benefit h3 { margin: 20px 0 8px; font-size: 12px; line-height: 1.4; text-transform: uppercase; }
.benefit p { margin: 0; color: #aab0ac; font-size: 10px; line-height: 1.6; }

/* Company */
.company-section { padding-block: 92px; background: var(--yellow-pale); scroll-margin-top: 90px; }
.company-block { display: grid; grid-template-columns: 150px minmax(280px, .9fr) 1.15fr; gap: 42px; align-items: center; padding: 45px; border-radius: 34px; background: var(--paper); box-shadow: var(--shadow-md); }
.company-signature { width: 132px; height: 132px; display: grid; place-content: center; border-radius: 36px; background: var(--yellow); text-align: center; transform: rotate(-3deg); box-shadow: 0 18px 40px rgba(131, 112, 9, .18); transition: transform .35s var(--ease); }
.company-signature:hover { transform: rotate(0) scale(1.04); }
.company-signature span { color: var(--ink); font-size: 64px; font-weight: 800; font-style: italic; line-height: .75; }
.company-signature small { margin-top: 12px; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: 2px; }
.company-copy h2 { margin: 12px 0 16px; font-size: clamp(28px, 3vw, 40px); line-height: 1.05; letter-spacing: -1.8px; text-transform: uppercase; }
.company-copy h2 span { color: #8b7812; }
.company-copy p { margin: 0 0 20px; color: var(--muted); font-size: 12px; line-height: 1.75; }
.company-pillars { display: grid; gap: 10px; }
.company-pillars article { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; padding: 14px; border-radius: 17px; background: #f7f5e8; transition: transform .3s var(--ease), background .3s ease; }
.company-pillars article:hover { transform: translateX(7px); background: var(--yellow-pale); }
.company-pillars strong { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--yellow); font-size: 10px; }
.company-pillars h3 { margin: 0 0 4px; font-size: 11px; text-transform: uppercase; }
.company-pillars p { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.5; }

/* Applications */
#aplicacoes { background: #f8f6e9; }
.application-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.application-card { position: relative; min-height: 300px; overflow: hidden; border-radius: 24px; background: var(--ink); box-shadow: var(--shadow-sm); transition: transform .38s var(--ease), box-shadow .38s ease; }
.application-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.application-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .7s var(--ease), opacity .4s ease; }
.application-card:hover img { transform: scale(1.07); opacity: .95; }
.application-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 32%, rgba(20, 27, 27, .94) 100%); }
.application-card div { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; padding: 24px 20px; color: #fff; }
.application-card h3 { margin: 0 0 7px; font-size: 13px; text-transform: uppercase; }
.application-card p { margin: 0; color: #cbd0cc; font-size: 10px; line-height: 1.5; }

/* Local SEO and frequently asked questions */
.seo-local-section { padding: 96px 0; background: var(--paper); scroll-margin-top: 90px; }
.seo-local-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(44px, 7vw, 100px); align-items: start; }
.seo-local-intro { position: sticky; top: 116px; }
.seo-local-intro h2 { max-width: 500px; margin: 12px 0 20px; font-size: clamp(34px, 4vw, 52px); line-height: 1.02; letter-spacing: -2.2px; text-transform: uppercase; }
.seo-local-intro p { max-width: 530px; margin: 0 0 24px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { overflow: hidden; border: 1px solid rgba(32, 40, 40, .1); border-radius: 18px; background: #f8f6e9; transition: border-color .25s ease, box-shadow .25s ease; }
.faq-list details[open] { border-color: rgba(166, 141, 8, .4); box-shadow: var(--shadow-sm); }
.faq-list summary { position: relative; padding: 22px 58px 22px 24px; font-size: 13px; font-weight: 800; line-height: 1.45; list-style: none; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; position: absolute; top: 50%; right: 23px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: var(--yellow); font-size: 20px; font-weight: 500; transform: translateY(-50%); transition: transform .25s var(--ease); }
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details p { margin: 0; padding: 0 24px 22px; color: var(--muted); font-size: 12px; line-height: 1.75; }

/* CTA */
.cta-section { padding: 0 0 100px; background: #f8f6e9; }
.cta-box { position: relative; display: grid; grid-template-columns: 72px 1.1fr 1.35fr 1.25fr auto; gap: 28px; align-items: center; overflow: hidden; padding: 36px 38px; border-radius: 30px; background: var(--ink); color: #fff; box-shadow: var(--shadow-lg); }
.cta-box::after { content: ''; position: absolute; width: 290px; height: 290px; right: -170px; top: -190px; border-radius: 50%; background: var(--yellow); opacity: .12; box-shadow: 0 0 0 50px rgba(240, 208, 32, .06); }
.cta-box > * { position: relative; z-index: 1; }
.cta-icon { width: 66px; height: 66px; display: grid; place-items: center; border-radius: 20px; background: var(--yellow); color: var(--ink); }
.cta-icon svg { width: 29px; height: 29px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cta-copy span { color: var(--yellow); font-size: 9px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.cta-copy h2 { margin: 4px 0 0; font-size: 26px; line-height: 1.04; text-transform: uppercase; }
.cta-text { color: #bdc3bf; font-size: 11px; line-height: 1.65; }
.contact-list { display: grid; gap: 9px; }
.contact-list a { display: grid; grid-template-columns: 22px 1fr; gap: 8px; align-items: start; color: #e5e8e5; font-size: 9px; line-height: 1.45; }
.contact-list svg { width: 18px; height: 18px; padding: 3px; border-radius: 6px; background: rgba(240, 208, 32, .12); color: var(--yellow); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.cta-buttons .btn-dark { background: var(--yellow); color: var(--ink); box-shadow: 0 12px 30px rgba(240, 208, 32, .15); }

/* Stores */
.stores-section { padding-block: 100px; background: var(--ink); color: #fff; scroll-margin-top: 90px; }
.stores-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: 38px; }
.stores-head .eyebrow { margin-bottom: 10px; }
.stores-head p { max-width: 420px; margin: 0; color: #aeb5b0; font-size: 12px; line-height: 1.7; }
.stores-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.store-card { display: flex; min-width: 0; min-height: 415px; flex-direction: column; overflow: hidden; border-radius: 23px; background: #303838; box-shadow: 0 15px 40px rgba(0, 0, 0, .16); transition: transform .35s var(--ease), background .35s ease, box-shadow .35s ease; }
.store-card:hover { transform: translateY(-8px); background: #384040; box-shadow: 0 24px 55px rgba(0, 0, 0, .26); }
.store-photo { position: relative; width: 100%; height: 190px; overflow: hidden; background: #161c1c; }
.store-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 65%, rgba(24, 31, 31, .3)); }
.store-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.store-card:hover .store-photo img { transform: scale(1.06); }
.store-content { display: flex; flex: 1; flex-direction: column; gap: 7px; padding: 21px 20px 0; }
.store-content > span { color: var(--yellow); font-size: 8px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; }
.store-content h3 { margin: 0; font-size: 14px; line-height: 1.3; text-transform: uppercase; }
.store-content address { color: #bac0bc; font-size: 9.5px; font-style: normal; line-height: 1.65; }
.store-content small { margin-top: 4px; color: #8e9691; font-size: 8.5px; line-height: 1.45; }
.store-route { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; margin: 18px 20px 21px; color: var(--yellow); font-size: 9px; font-weight: 800; letter-spacing: .4px; text-transform: uppercase; }
.store-route::after { content: '↗'; font-size: 14px; transition: transform .25s var(--ease); }
.store-route:hover::after { transform: translate(3px, -3px); }

/* Footer */
.footer { padding: 60px 0 24px; background: var(--yellow); color: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.55fr repeat(3, 1fr); gap: 55px; }
.footer-brand { margin-bottom: 24px; }
.footer-brand img { width: 250px; }
.footer p { max-width: 330px; margin: 0; color: var(--ink); font-size: 11px; line-height: 1.7; }
.footer h4 { margin: 0 0 7px; font-size: 10px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid a, .footer-grid span { color: var(--ink); font-size: 10px; line-height: 1.5; transition: color .2s ease, transform .2s ease; }
.footer-grid a:hover { color: var(--ink); transform: translateX(3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 45px; padding-top: 20px; box-shadow: inset 0 1px rgba(32, 40, 40, .15); }
.footer-bottom span { font-size: 9px; color: var(--ink); }

/* Modal and forms */
.modal { display: none; position: fixed; inset: 0; z-index: 110; align-items: center; justify-content: center; padding: 22px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(15, 20, 20, .74); backdrop-filter: blur(10px); }
.modal-card { position: relative; width: min(480px, 100%); max-height: calc(100dvh - 44px); overflow-y: auto; padding: 38px; border-radius: 28px; background: var(--paper); box-shadow: 0 38px 100px rgba(0, 0, 0, .28); }
.order-modal-card { width: min(700px, 100%); padding: 38px 42px 32px; background: linear-gradient(145deg, #fffdf7, #f8f5e8); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 13px; background: rgba(32, 40, 40, .06); font-size: 24px; cursor: pointer; transition: color .2s ease, background .2s ease, transform .2s var(--ease); }
.modal-close:hover { background: var(--ink); color: var(--yellow); transform: rotate(5deg); }
.modal-card h2 { margin: 10px 0 10px; padding-right: 30px; font-size: 32px; line-height: 1.05; letter-spacing: -1.4px; }
.modal-card > p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }
.order-modal-intro { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 17px; padding-right: 45px; }
.order-modal-intro h2 { margin: 7px 0 5px; padding: 0; font-size: clamp(30px, 5vw, 38px); }
.order-modal-intro p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.order-modal-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 17px; background: var(--ink); color: var(--yellow); box-shadow: 0 15px 30px rgba(32, 40, 40, .16); }
.order-modal-icon svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.modal form { display: grid; gap: 15px; margin: 24px 0 8px; }
.modal .order-form { grid-template-columns: minmax(0, 1fr) 210px; align-items: end; margin-top: 27px; }
.modal label { color: var(--ink-3); font-size: 10px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; }
.modal input, .modal select { width: 100%; margin-top: 8px; padding: 15px 16px; border: 0; border-radius: 13px; outline: 0; background: #f1efe3; color: var(--ink); box-shadow: inset 0 0 0 1px transparent; transition: background .2s ease, box-shadow .2s ease; }
.modal input:focus, .modal select:focus { background: #fff; box-shadow: inset 0 0 0 2px var(--yellow), 0 0 0 4px rgba(240, 208, 32, .14); }
.order-input-wrap { position: relative; display: block; margin-top: 8px; }
.order-input-wrap svg { position: absolute; z-index: 1; top: 50%; left: 16px; width: 20px; height: 20px; transform: translateY(-50%); fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.modal .order-input-wrap input { min-height: 52px; margin: 0; padding-left: 48px; background: rgba(32, 40, 40, .055); font-size: 14px; font-weight: 700; letter-spacing: .3px; }
.order-form .btn { min-height: 52px; justify-content: center; }
.form-note { display: block; margin-top: 14px; color: #888d87; font-size: 9px; line-height: 1.55; }
.forgot { color: var(--ink); font-size: 10px; font-weight: 800; }
#pedidoForm button:disabled { cursor: wait; opacity: .7; transform: none; }
.order-result { margin-top: 20px; border-radius: 22px; font-size: 11px; line-height: 1.5; animation: result-in .4s var(--ease) both; }
.order-result.error { padding: 17px 18px; background: #fff0ed; color: #8b2720; box-shadow: 0 12px 30px rgba(139, 39, 32, .08); }
.order-result.error strong, .order-result.error span { display: block; }
.order-result.error span { margin-top: 3px; color: #76504d; }
.order-result.success { padding: 20px; background: rgba(255, 255, 255, .78); color: var(--ink); box-shadow: 0 18px 45px rgba(32, 40, 40, .09); }
.order-result-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; }
.order-number { display: flex; align-items: baseline; gap: 7px; }
.order-number > span { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; }
.order-number > strong { font-size: 17px; letter-spacing: -.4px; }
.order-deadline { justify-self: end; display: flex; align-items: center; gap: 9px; padding: 7px 11px; border-radius: 12px; background: rgba(32, 40, 40, .045); }
.order-deadline > svg { width: 17px; height: 17px; flex: 0 0 auto; fill: none; stroke: var(--muted); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.order-deadline > span { display: grid; gap: 1px; }
.order-deadline small { color: var(--muted); font-size: 7px; font-weight: 800; letter-spacing: .35px; line-height: 1.2; text-transform: uppercase; }
.order-deadline strong { font-size: 11px; line-height: 1.2; }
.order-result-head b { width: max-content; max-width: none; display: inline-flex; align-items: center; justify-content: center; justify-self: end; padding: 7px 12px; border-radius: 999px; background: var(--yellow); color: var(--ink); font-size: 8px; line-height: 1.3; text-align: center; text-transform: uppercase; white-space: nowrap; box-shadow: 0 7px 18px rgba(240, 208, 32, .28); }
.order-progress { margin-top: 19px; padding: 17px 13px 15px; border-radius: 17px; background: rgba(32, 40, 40, .035); }
.timeline-heading { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 13px; }
.timeline-heading > span { color: var(--ink); font-size: 9px; font-weight: 800; letter-spacing: .65px; text-transform: uppercase; }
.timeline-heading small { color: var(--muted); font-size: 8px; font-weight: 700; }
.timeline-shell { position: relative; }
.timeline-track { position: absolute; top: 20px; right: 8.33%; left: 8.33%; height: 3px; overflow: hidden; border-radius: 99px; background: #dcded7; }
.timeline-track span { position: relative; display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--ink), var(--yellow)); animation: timeline-progress-x var(--timeline-duration) var(--ease) forwards; }
.timeline-track span::after { content: ''; position: absolute; top: 50%; right: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); box-shadow: 0 0 0 5px rgba(240, 208, 32, .15), 0 0 14px rgba(240, 208, 32, .8); transform: translateY(-50%); }
.order-progress.unknown .timeline-track span::after { display: none; }
.order-timeline { position: relative; display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); margin: 0; padding: 0; list-style: none; }
.timeline-step { display: grid; justify-items: center; gap: 8px; min-width: 0; text-align: center; }
.timeline-node { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 14px; background: #e7e8e1; color: #979d97; box-shadow: 0 0 0 5px rgba(255, 255, 255, .82); transition: transform .3s var(--ease), color .3s ease, background .3s ease; }
.timeline-node svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.timeline-step.completed .timeline-node { background: var(--ink); color: var(--yellow); }
.timeline-step.current .timeline-node { background: var(--yellow); color: var(--ink); transform: translateY(-2px) scale(1.08); box-shadow: 0 0 0 5px rgba(240, 208, 32, .2), 0 10px 22px rgba(32, 40, 40, .16); }
.timeline-step.completed, .timeline-step.current { animation: timeline-step-arrive .42s var(--ease) both; animation-delay: var(--step-delay); }
.timeline-step.current .timeline-node { position: relative; }
.timeline-step.current .timeline-node::after { content: ''; position: absolute; inset: -6px; border-radius: 18px; box-shadow: 0 0 0 0 rgba(240, 208, 32, .42); animation: timeline-current-pulse 1.7s ease-out infinite; animation-delay: calc(var(--step-delay) + 300ms); }
.timeline-label { max-width: 76px; color: #8a908b; font-size: 7.5px; font-weight: 700; line-height: 1.25; text-transform: uppercase; }
.timeline-step.completed .timeline-label { color: var(--ink-3); }
.timeline-step.current .timeline-label { color: var(--ink); font-weight: 800; }
@keyframes result-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes timeline-progress-x { from { width: 0; } to { width: var(--timeline-progress); } }
@keyframes timeline-progress-y { from { height: 0; } to { height: var(--timeline-progress); } }
@keyframes timeline-step-arrive { from { opacity: .28; transform: translateY(7px) scale(.9); } to { opacity: 1; transform: none; } }
@keyframes timeline-current-pulse { 0% { box-shadow: 0 0 0 0 rgba(240, 208, 32, .42); } 70%, 100% { box-shadow: 0 0 0 12px rgba(240, 208, 32, 0); } }

/* WhatsApp */
.whatsapp-float { position: fixed; right: 24px; bottom: 24px; z-index: 75; display: grid; grid-template-columns: 46px auto; align-items: center; gap: 11px; min-height: 60px; padding: 7px 16px 7px 7px; border-radius: 17px; background: rgba(32, 40, 40, .96); color: #fff; box-shadow: 0 18px 45px rgba(0, 0, 0, .3); backdrop-filter: blur(14px); transition: transform .3s var(--ease), box-shadow .3s ease; }
.whatsapp-float:hover { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(0, 0, 0, .38); }
.whatsapp-float svg { width: 46px; height: 46px; padding: 9px; border-radius: 12px; background: var(--green); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.whatsapp-copy { display: flex; flex-direction: column; gap: 2px; white-space: nowrap; }
.whatsapp-copy small { color: #aeb6b0; font-size: 7px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.whatsapp-copy strong { font-size: 10px; font-weight: 800; }
.whatsapp-float::before { content: ''; position: absolute; top: 5px; left: 44px; width: 9px; height: 9px; border: 2px solid var(--ink); border-radius: 50%; background: #58e887; }

/* Motion */
.hero-copy > * { opacity: 0; transform: translateY(22px); }
.page-loaded .hero-copy > * { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s var(--ease); }
.page-loaded .hero-copy > :nth-child(2) { transition-delay: .08s; }
.page-loaded .hero-copy > :nth-child(3) { transition-delay: .16s; }
.page-loaded .hero-copy > :nth-child(4) { transition-delay: .24s; }
.page-loaded .hero-copy > :nth-child(5) { transition-delay: .32s; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease var(--reveal-delay, 0ms), transform .65s var(--ease) var(--reveal-delay, 0ms); }
.reveal.revealed { opacity: 1; transform: none; }
.catalog-item.filter-in { animation: filter-in .4s var(--ease) both; }
.modal.open .modal-backdrop { animation: fade-in .22s ease both; }
.modal.open .modal-card { animation: modal-in .36s var(--ease) both; }
@keyframes filter-in { from { opacity: 0; transform: translateY(10px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-in { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }

/* Responsive */
@media (max-width: 1260px) {
  .nav { display: none; }
  .menu-toggle { display: grid; order: 3; }
  .header-actions { margin-left: auto; order: 2; }
  .header-actions .btn-outline { display: none; }
  .nav.open { position: absolute; top: calc(100% + 12px); right: 0; width: min(370px, calc(100vw - 32px)); max-height: calc(100dvh - 110px); display: flex; flex-direction: column; align-items: stretch; gap: 4px; overflow-y: auto; margin: 0; padding: 12px; border-radius: 20px; background: rgba(240, 208, 32, .98); box-shadow: 0 28px 75px rgba(32, 40, 40, .25); backdrop-filter: blur(18px); }
  .nav.open a { min-height: 47px; display: flex; align-items: center; padding: 0 14px; border-radius: 12px; font-size: 12px; }
  .nav.open a::after { display: none; }
  .nav.open a:hover, .nav.open a.active { background: rgba(32, 40, 40, .09); }
  .nav-mobile-actions { display: grid; gap: 7px; margin-top: 6px; padding-top: 10px; box-shadow: inset 0 1px rgba(32, 40, 40, .14); }
  .nav-mobile-actions button, .nav-mobile-actions a { min-height: 46px; display: flex; align-items: center; gap: 10px; padding: 0 14px; border: 0; border-radius: 12px; background: rgba(32, 40, 40, .08); color: var(--ink); font-size: 10px; font-weight: 800; text-align: left; text-transform: uppercase; cursor: pointer; }
  .nav-mobile-actions a:last-child { justify-content: space-between; background: var(--ink); color: var(--yellow); }
  .nav-mobile-actions svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-grid { grid-template-columns: repeat(3, 1fr); }
  .application-grid { grid-template-columns: repeat(3, 1fr); }
  .stores-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-box { grid-template-columns: 66px 1fr 1fr; }
  .cta-text { grid-column: 2 / 4; }
  .contact-list { grid-column: 2; }
  .cta-buttons { grid-column: 3; }
}

@media (max-width: 900px) {
  .section { padding-block: 82px; }
  .hero { min-height: 680px; }
  .hero h1 { font-size: clamp(46px, 8vw, 64px); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog { padding: 22px; }
  .catalog::before { width: 100%; height: 520px; }
  .catalog-head { grid-template-columns: 1fr; gap: 26px; padding: 22px 12px 30px; }
  .catalog-intro { max-width: none; }
  .catalog-filters { grid-template-columns: repeat(3, 1fr); padding-inline: 0; }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .company-block { grid-template-columns: 120px 1fr; padding: 36px; }
  .company-signature { width: 110px; height: 110px; }
  .company-signature span { font-size: 53px; }
  .company-pillars { grid-column: 1 / 3; grid-template-columns: repeat(3, 1fr); }
  .application-grid { grid-template-columns: repeat(2, 1fr); }
  .seo-local-grid { grid-template-columns: 1fr; gap: 38px; }
  .seo-local-intro { position: static; }
  .stores-grid { grid-template-columns: repeat(2, 1fr); }
  .store-photo { height: 220px; }
  .footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 700px) {
  html { scroll-padding-top: 80px; }
  .container { width: min(100% - 30px, 1220px); }
  .header { height: 70px; }
  .brand img { width: 138px; }
  .footer-brand img { width: 220px; }
  .header-actions { display: none; }
  .menu-toggle { margin-left: auto; }
  .hero { min-height: 650px; }
  .hero-image { background-position: 62% center; }
  .hero-overlay { background: linear-gradient(90deg, rgba(17, 23, 23, .98), rgba(23, 30, 30, .78)); }
  .hero-content { padding-block: 70px 80px; }
  .hero h1 { font-size: clamp(39px, 11vw, 54px); letter-spacing: -2.7px; }
  .hero p { font-size: 14px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-proofs { display: grid; gap: 10px; }
  .trust-grid { grid-template-columns: 1fr; }
  .section { padding-block: 68px; }
  .section-head { margin-bottom: 36px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card > img { height: min(62vw, 300px); }
  .catalog { margin-top: 72px; padding: 14px; border-radius: 26px; }
  .catalog-head { padding: 18px 4px 26px; }
  .catalog-head h3 { font-size: 31px; }
  .catalog-lead { font-size: 11px; }
  .catalog-intro { padding: 20px; border-radius: 18px; }
  .catalog-benefits { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
  .catalog-filters { grid-template-columns: 1fr 1fr; width: 100%; margin: 0 0 20px; padding: 0; }
  .catalog-filters::before { display: none; }
  .catalog-filter { justify-content: space-between; }
  .catalog-filter:first-child { grid-column: 1 / 3; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-grid { padding-inline: 0; }
  .catalog-cta { grid-template-columns: 52px 1fr; align-items: center; margin-inline: 0; padding: 17px; }
  .catalog-cta .btn { grid-column: 1 / 3; width: 100%; min-width: 0; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { display: grid; grid-template-columns: 52px 1fr; column-gap: 16px; align-items: center; padding: 19px; }
  .benefit h3 { margin: 0 0 5px; }
  .benefit p { grid-column: 2; }
  .company-section { padding-block: 65px; }
  .company-block { grid-template-columns: 1fr; gap: 26px; padding: 28px 23px; border-radius: 27px; }
  .company-signature { width: 90px; height: 90px; }
  .company-signature span { font-size: 43px; }
  .company-pillars { grid-column: auto; grid-template-columns: 1fr; }
  .application-grid { grid-template-columns: 1fr; }
  .application-card { min-height: 300px; }
  .seo-local-section { padding: 68px 0; }
  .seo-local-intro h2 { font-size: 34px; letter-spacing: -1.6px; }
  .faq-list summary { padding: 19px 54px 19px 19px; }
  .faq-list details p { padding: 0 19px 19px; }
  .cta-section { padding-bottom: 68px; }
  .cta-box { grid-template-columns: 1fr; gap: 21px; padding: 28px 24px; }
  .cta-text, .contact-list, .cta-buttons { grid-column: auto; }
  .cta-buttons .btn { width: 100%; }
  .stores-section { padding-block: 72px; }
  .stores-head { align-items: flex-start; flex-direction: column; margin-bottom: 28px; }
  .stores-grid { grid-template-columns: 1fr; }
  .store-card { min-height: 0; }
  .store-photo { height: min(68vw, 320px); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-grid > div:last-child { grid-column: auto; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 24px, 1220px); }
  .hero h1 { font-size: 38px; }
  .section-head h2, .stores-head h2 { font-size: 32px; letter-spacing: -1.7px; }
  .catalog-filters { grid-template-columns: 1fr; }
  .catalog-filter:first-child { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .modal { padding: 12px; }
  .modal-card { max-height: calc(100dvh - 24px); padding: 30px 21px; border-radius: 22px; }
  .order-modal-card { padding: 26px 18px 22px; }
  .order-modal-intro { grid-template-columns: 44px 1fr; gap: 12px; padding-right: 34px; }
  .order-modal-icon { width: 44px; height: 44px; border-radius: 14px; }
  .order-modal-icon svg { width: 21px; height: 21px; }
  .order-modal-intro h2 { margin-top: 5px; font-size: 27px; }
  .order-modal-intro p { font-size: 10px; }
  .modal .order-form { grid-template-columns: 1fr; margin-top: 22px; }
  .order-result.success { padding: 16px; }
  .order-result-head { grid-template-columns: 1fr auto; align-items: center; gap: 10px; }
  .order-number { grid-column: 1; grid-row: 1; }
  .order-result-head b { grid-column: 2; grid-row: 1; text-align: center; }
  .order-deadline { grid-column: 1 / 3; grid-row: 2; justify-self: stretch; }
  .order-progress { padding: 15px; }
  .timeline-shell { padding-block: 2px; }
  .timeline-track { top: 21px; right: auto; bottom: 21px; left: 20px; width: 3px; height: auto; }
  .timeline-track span { width: 100%; height: 0; animation-name: timeline-progress-y; }
  .timeline-track span::after { top: auto; right: 50%; bottom: -3px; transform: translateX(50%); }
  .order-timeline { grid-template-columns: 1fr; gap: 12px; }
  .timeline-step { grid-template-columns: 42px 1fr; align-items: center; justify-items: start; gap: 13px; text-align: left; }
  .timeline-label { max-width: none; font-size: 8px; }
  .whatsapp-float { right: max(13px, env(safe-area-inset-right)); bottom: max(13px, env(safe-area-inset-bottom)); width: 58px; height: 58px; min-height: 58px; grid-template-columns: 1fr; padding: 6px; border-radius: 17px; }
  .whatsapp-copy { display: none; }
  .whatsapp-float svg { width: 46px; height: 46px; }
  .whatsapp-float::before { top: 4px; right: 4px; left: auto; }
}

@media (max-height: 620px) and (orientation: landscape) and (max-width: 900px) {
  .hero { min-height: 580px; }
  .hero-content { padding-block: 55px; }
  .nav.open { max-height: calc(100dvh - 86px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-copy > *, .reveal { opacity: 1; transform: none; }
}

/* Primeira dobra: header + hero + diferenciais = uma tela */
@media (min-width: 1001px) and (min-height: 700px) {
  .hero { height: calc(100svh - 196px); min-height: 0; max-height: none; }
  .hero-content { height: 100%; min-height: 0; padding-block: 48px; }
  .trust-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .trust-item:nth-child(3n)::after { display: block; }
  .trust-item:last-child::after { display: none; }
}
