/* ============================================================
   BOTUPAPEL — Folha de Estilos Principal
   Cores: Azul #1a4fa0 | Laranja #f05a1a | Fundo #f8f7f4
   ============================================================
   BLOCOS:
   1. Globals         — reset, tipografia, variáveis, utilitários, botões
   2. Compartilhados  — topbar, header, footer, WhatsApp, product-card, etc.
   3. Home            — hero, why-choose, categories, B2B, entregas, FAQ
   4. Catálogo        — catalog layout e sidebar
   5. Produto         — product detail
   6. Orçamento       — budget / orcamento
   7. Sobre           — about page
   8. Responsivo      — media queries
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');


/* ════════════════════════════════════════════════════════════
   1. GLOBALS
   ════════════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'DM Serif Display', serif; line-height: 1.2; }

/* ── Variables ── */
:root {
  --blue:      #1a4fa0;
  --blue-dk:   #0f3070;
  --navy:      #002250;
  --orange:    #f05a1a;
  --bg:        #f8f7f4;
  --white:     #ffffff;
  --gray-lt:   #f0eeeb;
  --gray:      #888;
  --text:      #222;
  --border:    #e8e4df;
  --radius-sm: 6px;
  --radius:    8px;
  --radius-lg: 12px;
  --shadow:    0 2px 12px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.18);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.22);
  --transition: 0.2s ease;
}

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-blue   { color: var(--blue); }
.text-orange { color: var(--orange); }
.bg-blue     { background: var(--blue); }
.bg-orange   { background: var(--orange); }
.mt-auto     { margin-top: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 12px 24px; border-radius: var(--radius);
  font-weight: 600; font-size: .9rem; letter-spacing: .02em;
  transition: filter var(--transition), transform var(--transition);
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 3px 14px rgba(240,90,26,.45); print-color-adjust: exact; -webkit-print-color-adjust: exact; }
.btn-secondary { border: 2px solid var(--blue-dk); color: var(--blue-dk); }
.btn-secondary:hover { background: var(--blue-dk); color: #fff; }
.btn-white { background: #fff; color: var(--blue); }
.btn-sm { padding: 8px 16px; font-size: .82rem; }

/* ════════════════════════════════════════════════════════════
   2. COMPONENTES COMPARTILHADOS
   ════════════════════════════════════════════════════════════ */

/* ── Top Bar ── */
.top-bar {
  background: #111; color: #ccc; font-size: .8rem;
  text-align: center; padding: 7px 24px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--orange); font-weight: 600; }
.top-bar .separator { opacity: .4; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0,0,0,.06);
  transition: box-shadow 0.3s ease;
}
.site-header.header-scrolled { box-shadow: 0 2px 18px rgba(0,0,0,.14); }
.site-header.header-scrolled .header-inner { padding-top: 2px; padding-bottom: 2px; }
.site-header.header-scrolled .header-logo img { height: 61px; }
.header-inner {
  display: flex; align-items: center; gap: 20px;
  max-width: 1200px; margin: 0 auto; padding: 8px 24px;
  transition: padding 0.3s ease;
}
.header-logo img { height: clamp(50px, 7vw, 73px); width: auto; transition: height 0.3s ease; }

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm); font-size: .9rem; font-weight: 500;
  color: var(--text); transition: background var(--transition), color var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover, .nav-link.active { background: var(--blue); color: #fff; }
.nav-link .arrow { font-size: .65em; transition: transform var(--transition); }

/* Dropdown */
.nav-item { position: relative; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item.dropdown-open .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-item:hover .arrow { transform: rotate(180deg); }
.nav-item.dropdown-open .arrow { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 280px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 200;
  padding: 0; max-height: 440px; overflow-y: auto;
}
.dropdown-item {
  display: block; padding: 8px 16px; font-size: .875rem;
  color: var(--text); transition: background var(--transition);
  white-space: nowrap;
}
.dropdown-item:hover { background: var(--gray-lt); color: var(--blue); }
.dropdown-divider { height: 1px; background: #eee; margin: 4px 0; }
.dropdown-group-title {
  padding: 6px 18px 2px; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--gray);
}
/* Accordion */
.dropdown-category { border-bottom: 1px solid #f0eeeb; }
.dropdown-category:last-child { border-bottom: none; }
.dropdown-category-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  width: 100%; padding: 10px 16px; font-size: .875rem; font-weight: 600;
  color: var(--text); background: none; text-align: left;
  transition: background var(--transition), color var(--transition);
}
.dropdown-category-toggle:hover { background: var(--gray-lt); color: var(--blue); }
.dropdown-category.submenu-open .dropdown-category-toggle { background: #e8f0fb; color: var(--blue); }
.dropdown-cat-name { flex: 1; }
.dropdown-cat-arrow { font-size: .8em; flex-shrink: 0; transition: transform .2s ease; display: inline-block; }
.dropdown-category.submenu-open .dropdown-cat-arrow { transform: rotate(90deg); }
.dropdown-submenu-list { display: none; padding: 2px 0 8px; }
.dropdown-category.submenu-open .dropdown-submenu-list { display: block; }
.dropdown-submenu-list .dropdown-item { padding: 7px 16px 7px 28px; font-size: .845rem; white-space: normal; }
.dropdown-item-all { color: var(--orange); font-weight: 600; }
.dropdown-item-all:hover { color: var(--orange); background: #fff5ef; }

/* Search */
.header-search { position: relative; flex: 1; max-width: 340px; }
.header-search input {
  width: 100%; padding: 9px 40px 9px 14px; border: 1.5px solid #ddd;
  border-radius: var(--radius-sm); font-size: .875rem; background: var(--bg);
  transition: border-color var(--transition);
}
.header-search input:focus { outline: none; border-color: var(--blue); background: #fff; }
.header-search .search-icon {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  color: var(--gray); pointer-events: none;
}
.search-results {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: #fff; border: 1px solid #ddd; border-radius: var(--radius);
  box-shadow: var(--shadow); max-height: 340px; overflow-y: auto;
  z-index: 300; display: none;
}
.search-results.open { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; cursor: pointer;
  transition: background var(--transition); font-size: .875rem;
  border-bottom: 1px solid #f0eeeb;
}
.search-result-item:hover { background: var(--bg); }
.search-result-item:last-child { border-bottom: none; }
.search-result-sku { color: var(--gray); font-size: .78rem; }

/* Cart Button */
.cart-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 9px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: .875rem;
  white-space: nowrap;
  transition: filter var(--transition);
}
.cart-btn:hover { filter: brightness(1.1); }
.cart-count {
  background: #fff; color: var(--orange);
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; min-width: 20px;
}


/* Mobile menu */
.menu-toggle { display: none; padding: 8px; border-radius: var(--radius-sm); }
.menu-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); margin: 5px 0;
  transition: all var(--transition);
}

/* ── Footer ── */
.site-footer { background: #111; color: #aaa; padding: 52px 0 0; margin-top: 80px; }
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 40px; align-items: center;
}
.footer-brand img {
  height: 70px; display: block; margin-bottom: 16px;
}
.footer-tagline { font-size: .875rem; color: #777; line-height: 1.7; margin-bottom: 20px; max-width: 380px; }
.footer-contact { font-size: .875rem; margin-bottom: 20px; }
.footer-contact p { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.footer-contact a { color: #aaa; transition: color var(--transition); }
.footer-contact a:hover { color: var(--orange); }
.footer-social { display: flex; flex-direction: column; gap: 10px; justify-self: end; align-self: center; margin-top: 0; }
.footer-social-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 8px;
  font-size: .82rem; font-weight: 700;
  transition: filter .15s, transform .15s;
}
.footer-social-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }
.footer-social-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-social-wa {
  background: #25d366; color: #fff;
}
.footer-social-wa svg { fill: #fff; }
.footer-social-ig {
  background: linear-gradient(135deg, #f09433, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888);
  color: #fff;
}
.footer-social-ig svg { stroke: #fff; fill: none; stroke-width: 2; }
.footer-col { justify-self: center; text-align: center; }
.footer-col h4 {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .1em; color: #fff;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .875rem; color: #888; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid #1e1e1e; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: #444; flex-wrap: wrap; gap: 8px;
}

/* ── Mini Cart Button (aparece ao rolar, desktop e mobile) ── */
.cart-mini-btn {
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: calc(100% + 6px); right: 14px;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 18px rgba(240,90,26,.45), 0 1px 4px rgba(0,0,0,.12);
  outline: 2px solid rgba(255,255,255,.22);
  outline-offset: -2px;
  opacity: 0; transform: translateY(-10px) scale(.88); pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s cubic-bezier(.34,1.56,.64,1);
  z-index: 998;
  cursor: pointer; border: none;
}
.cart-mini-btn:active { transform: scale(.94) !important; }
.cart-mini-count {
  position: absolute; top: -6px; right: -6px;
  min-width: 20px; height: 20px; padding: 0 5px;
  border-radius: 10px;
  background: var(--blue); color: #fff;
  font-size: .65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  box-sizing: border-box;
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
}
.site-header.header-scrolled .cart-mini-btn {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}

.cart-mini-icon { display: block; height: 24px; width: auto; }

/* ── Painel Rápido de Orçamento ── */
@media (min-width: 769px) { body.orc-panel-open { overflow: hidden; } }
.orc-backdrop {
  display: none; position: fixed; inset: 0;
  background: rgba(15,40,80,.45); z-index: 1090;
  opacity: 0; transition: opacity .25s ease;
}
.orc-backdrop.open { display: block; opacity: 1; }
.orc-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 380px; max-width: 100%;
  background: #fff;
  box-shadow: -4px 0 32px rgba(0,0,0,.14);
  z-index: 1100;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  border-left: 1px solid #e8edf4;
}
.orc-panel.open { transform: translateX(0); }
.orc-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid #e8edf4;
  background: var(--blue); color: #fff;
  flex-shrink: 0;
}
.orc-panel-header-info { display: flex; flex-direction: column; gap: 2px; }
.orc-panel-title { font-weight: 700; font-size: 1rem; letter-spacing: .01em; }
.orc-panel-count {
  font-size: .78rem; font-weight: 500;
  background: rgba(255,255,255,.18);
  padding: 2px 8px; border-radius: 10px; display: block;
}
.orc-panel-close {
  background: rgba(255,255,255,.15); border: none; border-radius: 8px;
  color: #fff; font-size: 1rem;
  width: 34px; height: 34px; flex-shrink: 0;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.orc-panel-close:hover { background: rgba(255,255,255,.28); }
.orc-panel-body {
  flex: 1; overflow-y: auto; padding: 12px 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.orc-panel-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px;
  padding: 40px 20px; text-align: center; color: #999; flex: 1;
}
.orc-panel-empty svg { width: 52px; height: 52px; opacity: .35; }
.orc-panel-empty p { font-size: .875rem; line-height: 1.5; max-width: 220px; }
.orc-panel-item {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 8px; align-items: center;
  padding: 12px 14px;
  background: #f8f9fc; border: 1px solid #e8edf4; border-radius: 10px;
}
.orc-panel-item-name {
  font-weight: 600; font-size: .875rem; color: var(--blue);
  line-height: 1.3; margin: 0 0 2px;
}
.orc-panel-qty {
  display: flex; align-items: center;
  border: 1px solid #d0d8e8; border-radius: 8px; overflow: hidden;
}
.orc-panel-qty-btn {
  background: #f0f3f8; border: none;
  width: 28px; height: 28px; font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-weight: 700; transition: background .12s;
}
.orc-panel-qty-btn:hover { background: #dde6f5; }
.orc-panel-qty-val {
  width: 32px; text-align: center;
  font-weight: 600; font-size: .875rem; color: var(--blue);
  border: none; background: #fff; padding: 0;
  -moz-appearance: textfield;
}
.orc-panel-qty-val::-webkit-inner-spin-button,
.orc-panel-qty-val::-webkit-outer-spin-button { -webkit-appearance: none; }
.orc-panel-remove {
  background: none; border: none; color: #bbb; font-size: 1rem;
  cursor: pointer; padding: 4px; border-radius: 6px;
  transition: color .15s, background .15s; line-height: 1;
}
.orc-panel-remove:hover { color: #cc4444; background: #fff0f0; }
.orc-panel-footer {
  padding: 14px 16px; border-top: 1px solid #e8edf4;
  display: flex; flex-direction: column; gap: 10px;
  flex-shrink: 0; background: #fff;
}
.orc-btn-primary {
  display: flex; align-items: center; justify-content: center;
  background: var(--orange); color: #fff;
  font-weight: 700; font-size: .95rem;
  padding: 13px 20px; border-radius: 10px;
  text-decoration: none; text-align: center; transition: filter .15s;
}
.orc-btn-primary:hover { filter: brightness(1.08); }
.orc-btn-secondary {
  display: flex; align-items: center; justify-content: center;
  background: none; color: var(--blue);
  font-weight: 600; font-size: .875rem;
  padding: 10px; border: 1.5px solid #d0d8e8; border-radius: 10px;
  cursor: pointer; text-align: center;
  transition: background .15s, border-color .15s; text-decoration: none;
}
.orc-btn-secondary:hover { background: #f0f4fb; border-color: var(--blue); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulse-green 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  animation: none;
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.3); }
  50%       { box-shadow: 0 4px 24px rgba(37,211,102,.6); }
}

/* ════════════════════════════════════════════════════════════
   3. HOME (index.html)
   ════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.hero-left {
  padding: 80px 60px 80px 0; display: flex;
  flex-direction: column; justify-content: center; gap: 28px;
}
.hero-left .container { padding-left: 0; }
.hero-eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--orange);
}
.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--blue); line-height: 1.08;
}
.hero-title span { color: var(--orange); }
.hero-sub { font-size: 1.05rem; color: #555; max-width: 420px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; gap: 20px;
  padding-top: 16px; border-top: 1px solid var(--border); margin-top: 4px;
}
.hero-stat {
  display: flex; align-items: center; gap: 10px;
}
.hero-stat strong {
  font-size: 1.6rem; font-weight: 800;
  color: var(--blue); line-height: 1; font-family: 'DM Serif Display', serif;
}
.hero-stat span {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
  color: #666; font-weight: 600; line-height: 1.3;
}
.hero-stat-divider {
  width: 1px; height: 36px; background: #ddd; flex-shrink: 0;
}
.hero-right {
  background: #0b2c5c;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; min-height: 400px;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.hero-right::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #0b2c5c 60%, #071830 100%);
}
/* Hero visual grid */
.hero-visual {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px; width: 100%;
}
.hero-vis-header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.hero-vis-tag {
  display: block; font-size: .64rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--orange); margin-bottom: 4px;
}
.hero-vis-headline {
  font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: #fff; line-height: 1.35;
}
.hero-vis-all-btn {
  display: inline-flex; align-items: center; white-space: nowrap; flex-shrink: 0;
  padding: 7px 16px; border-radius: 20px;
  background: var(--orange); color: #fff; border: none;
  font-size: .78rem; font-weight: 700;
  transition: filter var(--transition);
}
.hero-vis-all-btn:hover { filter: brightness(1.1); }
.hero-vis-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  width: 100%;
}
.hero-vis-footer {
  display: flex; align-items: center; gap: 8px; padding: 10px 14px;
  border-radius: 8px; background: rgba(0,0,0,.35);
  font-size: .75rem; color: rgba(255,255,255,.9);
}
.hero-vis-card {
  background: rgba(255,255,255,.20); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.45);
  padding: 16px 12px; text-align: center;
  transition: background var(--transition);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  text-decoration: none;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.hero-vis-card:hover { background: rgba(255,255,255,.32); }
.hero-vis-dot {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-vis-dot svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; }
.hero-vis-label {
  font-size: .72rem; font-weight: 600;
  color: #fff; line-height: 1.3;
}
.hero-vis-cta {
  background: rgba(240,90,26,.2); border-color: rgba(240,90,26,.4);
  justify-content: center; gap: 4px;
}
.hero-vis-cta:hover { background: rgba(240,90,26,.32); }
.hero-vis-cta-num {
  font-size: 1.3rem; font-weight: 800;
  color: #fff; font-family: 'Inter', sans-serif; line-height: 1;
}
.hero-vis-cta-sub {
  font-size: .68rem; font-weight: 700; color: rgba(255,255,255,.75);
  text-transform: uppercase; letter-spacing: .08em;
}

/* ── Brands ── */
.brands-bar {
  background: #fff; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
  padding: 20px 0; overflow: hidden;
}
.brands-label {
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--gray); white-space: nowrap;
  margin-right: 40px;
}
.brands-track-wrap { overflow: hidden; }
.brands-track {
  display: flex; align-items: center; gap: 0;
  animation: scroll-brands 18s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
.brand-item {
  padding: 8px 36px; font-weight: 700; font-size: .95rem;
  color: #777; white-space: nowrap;
  border-right: 1px solid #eee; transition: color var(--transition);
}
.brand-item:hover { color: var(--blue); }
@keyframes scroll-brands {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Section Titles ── */
.section { padding: 80px 0; }
.section-tag {
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .12em; color: var(--orange); margin-bottom: 10px;
}
.section-title { font-size: clamp(1.7rem, 2.8vw, 2.6rem); color: var(--blue); margin-bottom: 16px; }
.section-sub { color: #666; font-size: 1rem; max-width: 540px; }
.section-header { margin-bottom: 48px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Why Choose Cards ── */
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card {
  background: #fff; border-radius: var(--radius); padding: 32px 24px;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); border-top-color: var(--orange); }
.why-icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e8f0fc, #d4e2f7);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg { width: 26px; height: 26px; color: var(--blue); }
.why-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--blue); }
.why-card p { font-size: .875rem; color: #666; }

/* ── Categories Carousel ── */
.categories-carousel { position: relative; }
.cat-track-wrap { overflow: hidden; }
.cat-track {
  display: flex; gap: 20px; transition: transform 0.4s ease;
}
.cat-card {
  flex: 0 0 210px; background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid transparent;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.12); border-top-color: var(--orange); }
.cat-thumb {
  height: 130px; background: linear-gradient(145deg, #dce8f8, #c6d8f2);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.cat-monogram {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 18px rgba(0,0,0,.28);
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.cat-info { padding: 14px; }
.cat-info h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .875rem; color: var(--text); margin-bottom: 4px; }
.cat-desc { display: block; font-size: .75rem; color: #4a4a4a; line-height: 1.4; margin-bottom: 6px; }
.cat-count { display: block; font-size: .72rem; color: #666; margin-bottom: 10px; }
.cat-btn { width: 100%; justify-content: center; }
.cat-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: #fff; border: 1px solid #ddd; border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); z-index: 10; transition: background var(--transition); }
.cat-arrow:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.cat-arrow.prev { left: -20px; }
.cat-arrow.next { right: -20px; }

/* ── B2B Section ── */
.b2b-section {
  background: #0d2d5e;
  display: grid; grid-template-columns: 1fr 1fr;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.b2b-left {
  padding: 72px 56px; display: flex; flex-direction: column; justify-content: center; gap: 24px;
  background: linear-gradient(135deg, #0d2d5e, #1a4fa0);
}
.b2b-left h2 { font-size: clamp(2rem, 3vw, 3rem); color: #fff; }
.b2b-left p { color: rgba(255,255,255,.88); font-size: 1rem; max-width: 380px; }
.b2b-right {
  padding: 72px 56px; background: #0a2248; display: flex;
  flex-direction: column; justify-content: center; gap: 28px;
}
.b2b-diff { display: flex; gap: 16px; align-items: flex-start; }
.b2b-diff-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.24);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.b2b-diff-icon svg { width: 21px; height: 21px; stroke: var(--orange); fill: none; stroke-width: 2; }
.b2b-diff h4 { font-family: 'Inter', sans-serif; font-weight: 700; color: #fff; margin-bottom: 4px; }
.b2b-diff p { font-size: .875rem; color: rgba(255,255,255,.78); }

/* ── Segments ── */
.segments-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; text-align: center;
}
.segment-card {
  background: #fff; border-radius: var(--radius); padding: 24px 16px;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.segment-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.segment-icon {
  width: 52px; height: 52px; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #e8f0fc, #d4e2f7);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.segment-icon svg { width: 24px; height: 24px; color: var(--blue); stroke: var(--blue); fill: none; stroke-width: 2; }
.segment-card h3 { font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 600; color: var(--blue); }

/* ── How It Works ── */
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-bottom: 48px;
}
.how-step { text-align: center; padding: 32px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 700; margin: 0 auto 20px;
  font-family: 'DM Serif Display', serif;
}
.how-step h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.how-step p { font-size: .875rem; color: #666; }
.how-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.how-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); border-left: 4px solid var(--blue);
}
.how-card-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 6px; }
.how-card h3 { font-family: 'Inter', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.how-card p { font-size: .875rem; color: #666; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1.5px solid #dde3ec; border-radius: var(--radius-lg); overflow: hidden; }
.faq-item:hover { border-color: #b8c8e0; }
.faq-question {
  width: 100%; text-align: left; padding: 0 14px;
  display: flex; align-items: center; gap: 12px;
  background: #fff; cursor: pointer; transition: background .15s ease;
}
.faq-question:hover { background: #fafbfe; }
.faq-question.open { background: #f4f7fd; }
.faq-q-icon-img { flex-shrink: 0; width: 64px; height: 64px; object-fit: contain; display: block; }
.faq-q-text {
  flex: 1; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--navy); line-height: 1.3;
}
.faq-q-num {
  color: var(--orange); margin-right: 2px;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.faq-q-toggle {
  flex-shrink: 0; width: 34px; height: 34px; background: var(--navy); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.faq-q-toggle svg { width: 16px; height: 16px; transition: transform .25s ease; }
.faq-question.open .faq-q-toggle { background: var(--orange); }
.faq-question.open .faq-q-toggle svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 14px 0 90px;
}
.faq-answer.open { max-height: 300px; padding: 0 14px 16px 90px; }
.faq-answer p { font-size: .9rem; color: #556; line-height: 1.75; }

/* ── Duvida Section ── */
.duvida-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px;
}
.duvida-card {
  background: #fff; border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow); text-align: center;
}
.duvida-card .icon { font-size: 2.4rem; margin-bottom: 14px; }
.duvida-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.duvida-card p { font-size: .875rem; color: #666; }

/* ── Product Card ── */
.product-card {
  background: #fff; border-radius: var(--radius);
  border: 2px solid rgba(122, 170, 212, 0.5);
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.13); border: 2px solid #4a7fc8; }
.product-card:hover .product-thumb { background: #fff; }
.product-card:hover .qty-stepper { border: 2px solid #4a7fc8; }
.product-thumb {
  height: 200px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #aaa; flex-direction: column; gap: 8px; font-size: .8rem;
  border-bottom: 2px solid rgba(122, 170, 212, 0.5);
  overflow: hidden;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 8px; transition: transform .3s ease; }
.product-card:hover .product-thumb img { transform: scale(1.07); }
.product-no-img {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; height: 100%;
}
.product-no-img svg { width: 68px; height: 68px; }
.product-no-img span {
  font-size: .68rem; font-weight: 700; letter-spacing: .09em;
  text-transform: uppercase; color: #8aa4c8;
}
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-cat { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--orange); }
.product-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .9rem; color: var(--text); line-height: 1.4; }
.product-sku { font-size: .75rem; color: var(--gray); }
.product-desc { font-size: .825rem; color: #666; line-height: 1.5; flex: 1; }
.product-footer { padding: 12px 16px; border-top: 1px solid #f0eeeb; }
.add-btn {
  flex: 1; padding: 0 14px; height: 42px; border-radius: var(--radius-sm);
  background: var(--orange); color: #fff; font-weight: 700; font-size: .875rem;
  transition: filter var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  white-space: nowrap;
}
.add-btn:hover { filter: brightness(1.1); }
.add-btn.added { background: #2a9d4a; }

/* ── Qty Stepper (+/−) ── */
.qty-stepper {
  display: flex; align-items: stretch; flex-shrink: 0;
  border: 1px solid #ddd; border-radius: var(--radius-sm);
  overflow: hidden; background: #fff; height: 42px;
}
.qty-stepper-val {
  min-width: 34px;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--text);
}
.qty-stepper-btns {
  display: flex; flex-direction: column;
  border-left: none;
}
.qty-step-btn {
  flex: 1; width: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: #666;
  transition: background var(--transition), color var(--transition);
  line-height: 1;
}
.qty-step-btn:first-child { border-bottom: none; }
.qty-step-btn:hover { background: var(--gray-lt); color: var(--blue); }

/* keep number input style for produto.html */
.qty-input {
  width: 52px; flex-shrink: 0;
  padding: 9px 6px;
  border: 1.5px solid #ddd; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; text-align: center; color: var(--text);
}
.qty-input:focus { outline: none; border-color: var(--blue); }

/* ════════════════════════════════════════════════════════════
   4. CATÁLOGO (catalogo.html)
   ════════════════════════════════════════════════════════════ */

/* ── Catalog Layout ── */
.catalog-layout { display: flex; gap: 32px; align-items: flex-start; }
.catalog-sidebar {
  width: 240px; flex-shrink: 0; position: sticky; top: 90px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 20px; max-height: calc(100vh - 110px); overflow-y: auto;
}
.catalog-sidebar::-webkit-scrollbar { width: 4px; }
.catalog-sidebar::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }
.sidebar-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--blue); }
.sidebar-cat { margin-bottom: 4px; }
.sidebar-cat-btn {
  width: 100%; text-align: left; padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: .875rem; font-weight: 600; color: var(--text);
  transition: background var(--transition), color var(--transition);
  display: flex; justify-content: space-between; align-items: center;
}
.sidebar-cat-btn:hover, .sidebar-cat-btn.active { background: var(--blue); color: #fff; }
.sidebar-cat-btn .count { font-size: .72rem; opacity: .7; font-weight: 400; }
.sidebar-sub { display: none; padding-left: 8px; margin-top: 2px; }
.sidebar-sub.open { display: block; }
.sidebar-sub-btn {
  width: 100%; text-align: left; padding: 6px 12px; border-radius: var(--radius-sm);
  font-size: .825rem; color: #555; transition: background var(--transition), color var(--transition);
  display: flex; justify-content: space-between; align-items: center;
}
.sidebar-sub-btn:hover, .sidebar-sub-btn.active { background: var(--gray-lt); color: var(--blue); }
.sidebar-clear { width: 100%; margin-top: 12px; padding: 8px; border-radius: var(--radius-sm); border: 1.5px solid #ddd; font-size: .825rem; color: var(--gray); transition: all var(--transition); }
.sidebar-clear:hover { border-color: var(--orange); color: var(--orange); }
.catalog-main { flex: 1; min-width: 0; }
.catalog-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 24px; gap: 16px; flex-wrap: wrap;
}
.catalog-toolbar .search-box {
  flex: 1; max-width: 360px; position: relative;
}
.catalog-toolbar .search-box input {
  width: 100%; padding: 10px 40px 10px 14px;
  border: 1.5px solid #ddd; border-radius: var(--radius-sm);
  font-size: .875rem;
}
.catalog-toolbar .search-box input:focus { outline: none; border-color: var(--blue); }
.catalog-info { font-size: .875rem; color: var(--gray); }

/* ── Drawer filter button (hidden on desktop) ── */
.cat-drawer-btn { display: none; }

/* ── Drawer backdrop ── */
.cat-drawer-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.42);
  z-index: 599;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.cat-drawer-backdrop.visible { opacity: 1; pointer-events: auto; }
.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px;
}

/* ── Skeleton Loading ── */
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e4e4e4 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: 4px;
}
.product-card-skeleton {
  background: #fff; border-radius: var(--radius); border: 1.5px solid #eee;
  overflow: hidden; display: flex; flex-direction: column;
}
.product-card-skeleton .sk-thumb { height: 200px; }
.product-card-skeleton .sk-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.product-card-skeleton .sk-line { height: 11px; }
.product-card-skeleton .sk-foot { padding: 10px 16px; border-top: 1px solid #f0f0f0; }
.product-card-skeleton .sk-btn  { height: 38px; border-radius: 6px; }

/* Pagination */
.pagination {
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.page-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem; border: 1.5px solid #ddd; color: var(--text);
  transition: all var(--transition); font-weight: 500;
}
.page-btn:hover, .page-btn.active { background: var(--blue); color: #fff; border-color: var(--blue); }
.page-btn.disabled { opacity: .4; pointer-events: none; }

/* ════════════════════════════════════════════════════════════
   5. PRODUTO (produto.html)
   ════════════════════════════════════════════════════════════ */

/* ── Product Detail ── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 64px; padding: 56px 0; }
.product-detail-left { grid-column: 1; grid-row: 1; }
.product-detail-info { grid-column: 2; grid-row: 1 / 3; display: flex; flex-direction: column; gap: 20px; }
.product-rich-desc { grid-column: 1; grid-row: 2; }
.product-image-wrap {
  background: #fff; border-radius: var(--radius-lg); border: 1px solid #eee;
  height: 420px; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px; color: #aaa;
}
.product-image-wrap svg { width: 80px; height: 80px; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; border-radius: var(--radius-lg); }
.product-detail-cat { display: flex; gap: 8px; }
.product-detail-cat span {
  background: var(--gray-lt); border-radius: 4px;
  padding: 4px 10px; font-size: .78rem; font-weight: 600; color: var(--gray);
}
.product-detail-cat span.main { background: #e8f0fc; color: var(--blue); }
.product-detail-name { font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--text); }
.product-detail-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.meta-item { background: var(--bg); border-radius: var(--radius-sm); padding: 12px; }
.meta-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); margin-bottom: 2px; }
.meta-value { font-size: .9rem; font-weight: 600; color: var(--text); }
.product-detail-desc { font-size: .925rem; color: #555; line-height: 1.8; }
.add-large {
  padding: 16px 32px; background: var(--orange); color: #fff;
  border-radius: var(--radius); font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; gap: 10px;
  transition: filter var(--transition), transform var(--transition);
}
.add-large:hover { filter: brightness(1.08); transform: translateY(-2px); }
.add-large.added { background: #2a9d4a; }
.related-section { padding: 56px 0; border-top: 1px solid var(--border); }
.related-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ════════════════════════════════════════════════════════════
   6. ORÇAMENTO (orcamento.html)
   ════════════════════════════════════════════════════════════ */

/* ── Budget / Orçamento ── */
.orcamento-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; padding: 48px 0; align-items: flex-start; }
.orcamento-items { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.orcamento-header { padding: 20px 24px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; }
.orcamento-header h2 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; color: var(--text); }
.orcamento-item { display: flex; gap: 16px; padding: 20px 24px; border-bottom: 1px solid #f0eeeb; align-items: center; }
.orcamento-item:last-child { border-bottom: none; }
.orcamento-item-thumb { width: 64px; height: 64px; background: var(--bg); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.orcamento-item-info { flex: 1; min-width: 0; }
.orcamento-item-name { font-weight: 700; font-size: .9rem; margin-bottom: 2px; }
.orcamento-item-sku { font-size: .78rem; color: var(--gray); }
.item-obs-input {
  width: 100%; margin-top: 6px;
  font-size: .8rem; color: #555;
  border: 1px solid #e0e0e0; border-radius: 4px;
  padding: 5px 8px; background: #fafafa;
  transition: border-color .15s;
}
.item-obs-input:focus { outline: none; border-color: var(--blue); background: #fff; }
.item-obs-input::placeholder { color: #bbb; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 28px; height: 28px; border-radius: 4px; border: 1.5px solid #ddd; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; transition: all var(--transition); }
.qty-btn:hover { border-color: var(--blue); color: var(--blue); }
.qty-input { width: 48px; text-align: center; border: 1.5px solid #ddd; border-radius: 4px; padding: 4px; font-size: .9rem; }
.remove-btn { color: #cc4444; padding: 6px; border-radius: 4px; transition: background var(--transition); font-size: 1.2rem; }
.remove-btn:hover { background: #fff0f0; }
.orcamento-empty { padding: 56px 24px; text-align: center; }
.orcamento-empty svg { width: 64px; height: 64px; color: #ddd; margin: 0 auto 16px; }
.orcamento-empty p { color: var(--gray); font-size: .925rem; }
.orcamento-form { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; position: sticky; top: 90px; }
.form-title { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid #eee; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: #444; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 10px 14px; border: 1.5px solid #ddd; border-radius: var(--radius-sm); transition: border-color var(--transition); background: #fff; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 90px; }
.whatsapp-btn {
  width: 100%; padding: 16px; border-radius: var(--radius);
  background: #25d366; color: #fff; font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: filter var(--transition), transform var(--transition);
  margin-top: 8px;
}
.whatsapp-btn:hover { filter: brightness(1.05); transform: translateY(-2px); }
.minimo-notice { font-size: .8rem; color: var(--gray); text-align: center; margin-top: 10px; }

/* ════════════════════════════════════════════════════════════
   7. SOBRE (sobre.html)
   ════════════════════════════════════════════════════════════ */

/* ── About Page ── */
.about-hero { background: var(--blue); padding: 80px 0; text-align: center; color: #fff; }
.about-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
.about-hero p { font-size: 1.1rem; opacity: .8; max-width: 580px; margin: 0 auto; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 72px 0; align-items: center; }
.about-story-img { background: linear-gradient(135deg, #e8f0fc, var(--blue)); border-radius: var(--radius-lg); height: 360px; display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.about-story-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--blue); margin-bottom: 20px; }
.about-story-text p { font-size: .95rem; color: #555; line-height: 1.8; margin-bottom: 16px; }
.about-highlight { background: var(--orange); color: #fff; border-radius: 8px; padding: 3px 10px; font-weight: 700; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 32px; }
.stat-box { background: var(--bg); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--orange); }
.stat-label { font-size: .825rem; color: #666; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.value-card .icon { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.value-card p { font-size: .875rem; color: #666; }
.area-section { background: var(--blue); color: #fff; padding: 64px 0; }
.area-section h2 { text-align: center; margin-bottom: 40px; font-size: clamp(1.8rem, 2.8vw, 2.6rem); }
.area-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.area-point { background: rgba(255,255,255,.1); border-radius: var(--radius); padding: 20px; text-align: center; }
.area-point .icon { font-size: 2rem; margin-bottom: 10px; }
.area-point h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: .9rem; }

/* ── About History (Rebuilt) ── */
.about-hero-v2 { background: var(--blue); padding: 72px 0; color: #fff; }
.about-hero-v2-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: stretch; }
.about-hero-tag { font-size: .75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; display: block; margin-bottom: 14px; }
.about-hero-v2-text h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 18px; line-height: 1.15; }
.about-hero-v2-text > p { font-size: 1rem; color: rgba(255,255,255,.8); line-height: 1.75; max-width: 460px; }
.about-hero-v2-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.photo-placeholder { background: rgba(255,255,255,.1); border: 2px dashed rgba(255,255,255,.25); border-radius: var(--radius-lg); height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: rgba(255,255,255,.5); font-size: .875rem; text-align: center; padding: 24px; }
.photo-placeholder--light { background: var(--gray-lt); border: 2px dashed var(--border); color: #aaa; }
.photo-placeholder-icon { font-size: 2.5rem; line-height: 1; }
.about-stats-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 36px 0; }
.about-stats-bar-inner { display: flex; align-items: stretch; justify-content: center; }
.about-stat { flex: 1; text-align: center; padding: 0 32px; }
.about-stat + .about-stat { border-left: 1px solid var(--border); }
.about-stat-num { font-family: 'DM Serif Display', serif; font-size: 2.4rem; color: var(--orange); line-height: 1; margin-bottom: 6px; }
.about-stat-label { font-size: .875rem; color: #666; }
.about-story-v2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; padding-top: 48px; }
.about-story-v2-media .photo-placeholder--light { height: 400px; }
.story-block { font-size: .975rem; color: #555; line-height: 1.85; margin-bottom: 20px; }
.story-block:last-child { margin-bottom: 0; }
.story-block strong { color: var(--blue); font-weight: 600; }
.timeline { position: relative; padding-left: 28px; max-width: 720px; margin: 48px auto 0; }
.timeline::before { content: ''; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(to bottom, var(--blue) 0%, var(--orange) 100%); border-radius: 2px; }
.timeline-item { position: relative; margin-bottom: 36px; padding-left: 24px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-marker { position: absolute; left: -35px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--blue); box-sizing: border-box; }
.timeline-marker--now { background: var(--orange); border-color: var(--orange); }
.timeline-epoch { display: block; font-size: .75rem; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.timeline-item h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.timeline-item p { font-size: .9rem; color: #666; line-height: 1.75; }
.section-intro { font-size: .975rem; color: #666; line-height: 1.75; max-width: 680px; text-align: center; margin: 0 auto 40px; }
.evolution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.evolution-card { background: #fff; border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); }
.evolution-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.evolution-card-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.evolution-card h3 { font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.evolution-card p { font-size: .875rem; color: #666; line-height: 1.65; }
.differentials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.differential-card { background: #fff; border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow); border-top: 3px solid var(--orange); text-align: center; }
.differential-num { font-family: 'DM Serif Display', serif; font-size: 2rem; color: var(--orange); margin-bottom: 12px; display: block; }
.differential-card h3 { font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.differential-card p { font-size: .875rem; color: #666; line-height: 1.65; }
.segment-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.segment-tag { background: #fff; border: 1.5px solid var(--border); border-radius: 40px; padding: 10px 20px; font-size: .9rem; font-weight: 500; color: var(--text); display: inline-flex; align-items: center; gap: 8px; }
.digital-steps { display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 48px; }
.digital-step { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-lg); padding: 20px 16px; text-align: center; min-width: 120px; }
.digital-step-num { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); color: #fff; font-weight: 700; font-size: .9rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.digital-step p { font-size: .82rem; color: rgba(255,255,255,.85); line-height: 1.4; margin: 0; }
.digital-step-arrow { color: rgba(255,255,255,.35); font-size: 1.2rem; flex-shrink: 0; }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.location-info h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--blue); margin: 12px 0 16px; }
.location-info > p { font-size: .975rem; color: #555; line-height: 1.75; margin-bottom: 24px; }
.location-address { background: var(--bg); border-radius: var(--radius); padding: 20px 24px; }
.location-address p { font-size: .9rem; color: #555; line-height: 1.7; }
.location-media .photo-placeholder--light { height: 360px; }

/* ── Page Banner ── */
.page-banner { background: var(--blue); padding: 48px 0; color: #fff; }
.page-banner h1 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 8px; }
.page-banner p { opacity: .75; font-size: .95rem; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .82rem; opacity: .7; margin-top: 12px; }
.breadcrumb a { color: #fff; }
.breadcrumb .sep { opacity: .5; }

/* ── Notifications ── */
.toast {
  position: fixed; bottom: 90px; right: 24px; z-index: 1100;
  background: #1a1a1a; color: #fff; padding: 12px 20px;
  border-radius: var(--radius); font-size: .875rem; font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  animation: slide-in 0.3s ease, fade-out 0.3s ease 2.2s forwards;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
}
.toast.success { border-left: 4px solid #2a9d4a; }
@keyframes slide-in { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes fade-out { from { opacity: 1; } to { opacity: 0; transform: translateY(10px); } }


/* ── Hero V3 Full-Bleed (Home) ── */
.hero-v3 { background: #fff; position: relative; overflow: hidden; }
.hero-v3-wrap {
  position: relative; z-index: 1;
  width: 100%; max-width: none; padding: 0;
  display: grid; grid-template-columns: 2fr 3fr; min-height: 550px;
}
.hero-v3-left {
  padding: 37px 40px 37px clamp(24px, calc((100vw - 1200px) / 2 + 24px), 160px);
  display: flex; flex-direction: column; justify-content: center; gap: 16px;
}
.hero-v3-right {
  overflow: hidden; position: relative;
}
.hero-product-panel {
  position: absolute; inset: 0;
}
.hero-product-panel picture {
  display: block; width: 100%; height: 100%;
}
.hero-product-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}


/* ── Monte seu orçamento (Home) ── */
.monte-orc {
  padding: 72px 0;
  min-height: 420px;
  background: url('assets/fundo-monte-orcamento.webp') right center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.monte-orc-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  position: relative; z-index: 1;
}
.monte-orc-tag {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase;
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  color: var(--orange); margin-bottom: 12px;
}
.monte-orc-tag::before {
  content: '';
  display: inline-block;
  width: 22px; height: 3px;
  background: var(--orange); border-radius: 2px;
}
.monte-orc-title {
  font-size: 2.2rem; font-weight: 800;
  color: var(--blue); line-height: 1.18;
  margin-bottom: 32px;
}
.monte-orc-highlight { color: var(--orange); }
.monte-orc-steps {
  display: flex; flex-direction: column; gap: 20px;
  margin-bottom: 32px;
}
.monte-orc-step {
  display: flex; align-items: center; gap: 16px;
}
.monte-orc-step-icon-wrap {
  position: relative;
  width: 68px; height: 68px;
  flex-shrink: 0;
}
.monte-orc-step-icon {
  height: 68px; width: auto;
  display: block;
}
.monte-orc-step-badge {
  position: absolute;
  top: -5px; right: -7px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--orange); color: #fff;
  font-size: .65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(240,90,26,.4);
}
.monte-orc-step-body h3 {
  font-size: .95rem; font-weight: 700;
  color: var(--blue); margin: 0 0 3px;
}
.monte-orc-step-body p {
  font-size: .84rem; color: #556;
  margin: 0; line-height: 1.5;
}
.monte-orc-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.monte-orc-content {
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  padding: 36px 40px;
  backdrop-filter: blur(2px);
}

/* Mockup */
.monte-orc-mockup { display: flex; justify-content: center; }
.mockup-panel {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(15,40,80,.14), 0 2px 8px rgba(0,0,0,.06);
  width: 100%; max-width: 380px;
  overflow: hidden;
}
.mockup-header {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 18px;
  background: var(--blue); color: #fff;
}
.mockup-header-icon { width: 18px; height: 18px; flex-shrink: 0; }
.mockup-title { font-weight: 700; font-size: .92rem; flex: 1; }
.mockup-count {
  font-size: .72rem;
  background: rgba(255,255,255,.2);
  padding: 2px 9px; border-radius: 10px; white-space: nowrap;
}
.mockup-items {
  padding: 12px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.mockup-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px;
  background: #f8f9fc;
  border-radius: 10px;
  border: 1px solid #e8edf4;
}
.mockup-thumb {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mockup-thumb svg { width: 18px; height: 18px; }
.mockup-thumb--kraft { background: #fde8c8; color: #b86a10; }
.mockup-thumb--det   { background: #c8dcf8; color: #1a5ab8; }
.mockup-thumb--luva  { background: #c8f0e0; color: #1a7a4a; }
.mockup-item-info { display: flex; flex-direction: column; gap: 1px; flex: 1; min-width: 0; }
.mockup-item-name {
  font-size: .78rem; font-weight: 600; color: var(--blue);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mockup-item-sku { font-size: .67rem; color: #aaa; }
.mockup-item-qty {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: .68rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-sizing: border-box;
}
.mockup-footer { padding: 12px 16px; border-top: 1px solid #e8edf4; }
.mockup-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: #25d366; color: #fff;
  font-weight: 700; font-size: .84rem;
  padding: 10px; border-radius: 10px;
}


/* ── Why Choose (Home) ── */
.why-choose {
  padding: 80px 0;
  background: var(--navy);
  position: relative; overflow: hidden;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
/* Dot pattern — alinhado com canto superior direito do painel */
.why-choose::before {
  content: '';
  position: absolute; top: 100px; right: 120px;
  width: 130px; height: 130px;
  background-image: radial-gradient(circle, rgba(240,90,26,.55) 1.5px, transparent 1.5px);
  background-size: 13px 13px;
  z-index: 2; pointer-events: none;
}
/* Arco laranja — canto superior direito do painel */
.why-choose::after {
  content: '';
  position: absolute; top: 40px; right: 56px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 12px solid rgba(240,90,26,.45);
  z-index: 2; pointer-events: none;
}
/* Painel branco interno */
.why-choose-panel {
  background: url('assets/fundo-escolher.webp') center center / cover no-repeat;
  border-radius: 32px;
  padding: 64px 64px 80px;
  position: relative; z-index: 1; overflow: hidden;
}
.why-choose-panel::before,
.why-choose-panel::after { content: none; }
.why-choose-header, .why-choose-grid { position: relative; z-index: 1; }
.why-choose-header { text-align: center; margin-bottom: 52px; }
.why-choose-title {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 3vw, 2.8rem);
  color: #1a1a2e; line-height: 1.15; margin-bottom: 0;
}
.why-choose-title .tc-botu { color: var(--navy); }
.why-choose-title mark { background: none; color: var(--orange); font-style: normal; }
.why-choose-divider {
  width: 48px; height: 4px; background: var(--orange);
  border-radius: 2px; margin: 20px auto 0;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.why-choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-choose-card {
  background: #fff; border: 1.5px solid #e4eaf5; border-radius: 22px;
  padding: 40px 22px 36px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 4px 20px rgba(0,34,80,.07);
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.why-choose-card:hover {
  border-color: #b8cbe8; transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,34,80,.12);
}
.why-choose-icon {
  display: flex; align-items: center; justify-content: center;
  width: 120px; height: 120px;
  margin-bottom: 22px; flex-shrink: 0;
}
.why-choose-icon-img { width: 96px; height: 96px; object-fit: contain; display: block; }
.why-choose-icon-img--entrega { width: 110px; height: 110px; }
.why-choose-card h3 {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1rem;
  color: var(--navy); margin-bottom: 0; line-height: 1.3;
}
.why-choose-card-bar {
  width: 28px; height: 3px; background: var(--orange);
  border-radius: 2px; margin: 12px 0 16px; flex-shrink: 0;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.why-choose-card p { font-size: .875rem; color: #555; line-height: 1.65; text-align: center; }

/* ── Categories Macro-blocks (Home) ── */
.cats-macro { padding: 80px 0; background: #f8f7f4; }
.cats-macro-split {
  display: grid; grid-template-columns: 1fr 1.7fr; gap: 72px; align-items: start;
}
.cats-macro-intro { position: sticky; top: 90px; }
.cats-macro-title {
  font-size: clamp(1.9rem, 2.8vw, 2.5rem); color: var(--blue);
  line-height: 1.12; margin-bottom: 16px; margin-top: 8px;
}
.cats-macro-sub { font-size: .95rem; color: #555; line-height: 1.7; margin-bottom: 28px; }
.cats-macro-right {
  display: flex; flex-direction: column;
  gap: 1px; background: #e4e0db; border: 1px solid #e4e0db; border-radius: var(--radius-lg); overflow: hidden;
}
.cats-macro-group { background: #fff; padding: 24px 28px; }
.cats-macro-group-head {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1.5px solid var(--border);
}
.cats-macro-group-accent { width: 20px; height: 4px; border-radius: 2px; flex-shrink: 0; }
.cats-macro-group-label {
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .13em; color: var(--blue);
}
.cats-macro-items-row {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0;
}
.cats-macro-item {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid #f0eeeb;
  text-decoration: none; font-family: 'Inter', sans-serif;
  font-size: .875rem; font-weight: 600; color: #333;
  transition: padding-left .12s, color .12s;
}
.cats-macro-item:hover { padding-left: 6px; color: var(--blue); }
.cats-macro-items-row .cats-macro-item:nth-last-child(-n+2) { border-bottom: none; }
.cats-macro-item:last-child { border-bottom: none; }
.cats-macro-item-icon {
  width: 44px; height: 44px; object-fit: contain; flex-shrink: 0;
}
.cats-macro-item-label {
  display: flex; align-items: center; gap: 3px; flex: 1;
}
.cats-macro-item-arr {
  color: #ccc; font-size: .75rem; flex-shrink: 0;
  transition: color .12s, transform .12s;
}
.cats-macro-item:hover .cats-macro-item-arr { color: var(--orange); transform: translateX(2px); }

/* ── B2B V3 / Canal para Empresas (Home) ── */
.b2b-v3 {
  padding: 80px 0; background: var(--navy);
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.b2b-panel {
  background: #fff; border-radius: 36px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,34,80,.22), 0 8px 24px rgba(0,34,80,.1);
}
.b2b-panel-top { display: grid; grid-template-columns: 1fr 1.15fr 230px; }

/* Left column */
.b2b-col-left {
  padding: 0 44px 48px 52px; margin-top: -4px;
  display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start;
  border-right: 1px solid #eef2f8;
}
.b2b-badge {
  display: inline-block; background: var(--orange); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 32px;
  align-self: flex-start; transform: scale(1.3); transform-origin: left center;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.b2b-selo-img { height: 132px; width: auto; object-fit: contain; display: block; margin-bottom: 20px; }
.b2b-title { display: flex; flex-direction: column; gap: 0; margin-bottom: 14px; }
.b2b-title-pre {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(2.6rem, 3.4vw, 3.8rem);
  color: var(--navy); line-height: 1.0; letter-spacing: -.025em;
}
.b2b-title-main {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: clamp(2.6rem, 3.4vw, 3.8rem);
  color: var(--orange); line-height: 1.0; letter-spacing: -.025em;
}
.b2b-title-bar {
  width: 48px; height: 4px; background: var(--orange);
  border-radius: 2px; margin-bottom: 20px;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.b2b-desc { font-size: .88rem; color: #556; line-height: 1.8; }

/* Center column — features */
.b2b-col-feats {
  padding: 36px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  border-right: 1px solid #eef2f8;
}
.b2b-feat {
  display: flex; align-items: center; gap: 20px;
  padding: 12px 0; border-bottom: 1px dashed #dde6f7;
}
.b2b-feat:first-child { padding-top: 0; }
.b2b-feat:last-child { border-bottom: none; padding-bottom: 0; }

/* Icon structure — PNGs */
.b2b-feature-icon-wrap {
  flex-shrink: 0; align-self: center;
  width: 128px; height: 128px;
  display: flex; align-items: center; justify-content: center;
}
.b2b-feature-icon-img {
  width: 120px; height: 120px;
  object-fit: contain; display: block;
}
.b2b-feat-text h4 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--navy); margin-bottom: 6px; line-height: 1.25;
  letter-spacing: -.01em;
}
.b2b-feat-text p { font-size: .83rem; color: #667; line-height: 1.7; margin: 0; }

/* Right column — illustration */
.b2b-col-illus {
  position: relative; overflow: hidden;
  background: #f0f5fc;
}
.b2b-illus-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center bottom;
  display: block;
}

/* Segments bar */
.b2b-segs-bar {
  display: flex; border-top: 1px solid #eef2f8;
  box-shadow: 0 -2px 16px rgba(0,34,80,.04);
}
.b2b-segs-left {
  background: var(--navy); padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0; min-width: 220px;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.b2b-segs-people {
  width: 43px; height: 43px; flex-shrink: 0;
  object-fit: contain; display: block;
}
.b2b-segs-label { display: flex; flex-direction: column; gap: 2px; }
.b2b-segs-label span { color: rgba(255,255,255,.65); font-size: .7rem; font-weight: 600; }
.b2b-segs-label strong {
  color: #fff; font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .08em;
}
.b2b-segs-right {
  display: flex; flex: 1; align-items: stretch;
  overflow-x: auto; scrollbar-width: none;
}
.b2b-segs-right::-webkit-scrollbar { display: none; }

.b2b-seg {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 18px; flex: 1; min-width: 90px;
  border-right: 1px solid #eef2f8;
  transition: background .15s ease;
}
.b2b-seg:last-child { border-right: none; }
.b2b-seg:hover { background: #f5f9fe; }
.b2b-segment-icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.b2b-segment-icon-img {
  width: 52px; height: 52px;
  object-fit: contain; display: block;
}
.b2b-seg span {
  font-size: .82rem; font-weight: 600; color: var(--navy); white-space: nowrap;
}

/* ── Entregas (Home) — sec-entregas v2 ── */
.sec-entregas {
  padding: 80px 0; background: var(--navy);
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.entr-panel {
  background: #fff; border-radius: 32px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,34,80,.22), 0 8px 24px rgba(0,34,80,.1);
  padding: 22px 56px 52px;
}
/* Top: head + visual */
.entr-top {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px;
  align-items: center; margin-bottom: 32px;
}
.entr-head { display: flex; flex-direction: column; align-items: flex-start; position: relative; z-index: 2; }
.entr-selo { height: 132px; width: auto; object-fit: contain; display: block; margin-bottom: 20px; }
.entr-title {
  font-family: 'Inter', sans-serif; font-weight: 800;
  line-height: 1.0; letter-spacing: -.03em; margin-bottom: 16px;
}
.entr-title-line1 {
  display: block; font-size: clamp(2.8rem, 4.4vw, 5rem); color: var(--navy); white-space: nowrap;
}
.entr-title-line2 {
  display: block; font-size: clamp(2.8rem, 4.4vw, 5rem); color: var(--orange);
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.entr-title-bar {
  width: 56px; height: 4px; background: var(--orange); border-radius: 2px; margin-bottom: 20px;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.entr-desc { font-size: .93rem; color: #556; line-height: 1.75; max-width: 400px; }
/* Illustration */
.entr-visual { position: relative; overflow: visible; }
.entr-main-img { width: 100%; height: auto; display: block; transform: scale(1.5) translateX(-45px) translateY(25px); transform-origin: center center; }
.entr-deco-ponto {
  position: absolute; top: 8%; left: 30%;
  width: 52px; height: 52px; object-fit: contain; pointer-events: none;
}
/* Step flow */
.entr-flow { display: flex; align-items: stretch; margin-bottom: 20px; }
.entr-step-card {
  flex: 1; display: flex; align-items: center; gap: 6px;
  background: #fff; border-radius: 16px; padding: 8px 4px;
  border: 1px solid #c8cdd6; box-shadow: 0 6px 24px rgba(0,34,80,.14), 0 2px 8px rgba(0,0,0,.06);
}
.entr-step-icon-wrap {
  flex-shrink: 0; width: 138px; height: 138px;
  display: flex; align-items: center; justify-content: center;
}
.entr-step-img { width: 127px; height: 127px; object-fit: contain; display: block; }
/* Ajustes individuais — compensam margens transparentes diferentes nos PNGs */
.entr-step-img--produtos    { width: 134px; height: 134px; }
.entr-step-img--confirmacao { width: 124px; height: 124px; }
.entr-step-img--recebimento { width: 138px; height: 138px; }
.entr-step-body { flex: 1; }
.entr-step-body h4 {
  font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: .95rem; color: var(--navy); margin-bottom: 8px; line-height: 1.3;
  white-space: nowrap;
}
.entr-step-body p { font-size: .83rem; color: #667; line-height: 1.6; margin: 0; }
.entr-step-connector {
  flex-shrink: 0; width: 20px;
  display: flex; align-items: center; justify-content: center; align-self: center;
}
.entr-step-connector svg { width: 22px; height: 22px; }
/* Info bar */
.entr-info-bar {
  display: flex; align-items: center;
  background: #fff; border-radius: 16px; border: 1px solid #c8cdd6;
  box-shadow: 0 2px 12px rgba(0,0,0,.07); overflow: hidden;
}
.entr-info-item {
  flex: 1; display: flex; align-items: center; gap: 20px; padding: 28px 24px;
}
.entr-info-img { flex-shrink: 0; width: 132px; height: 132px; object-fit: contain; display: block; }
.entr-info-body { flex: 1; }
.entr-info-body strong {
  display: block; font-family: 'Inter', sans-serif; font-weight: 700;
  font-size: .95rem; color: var(--navy); margin-bottom: 6px; line-height: 1.2;
}
.entr-info-body p { font-size: .83rem; color: #667; line-height: 1.55; margin: 0; }
.entr-highlight {
  color: var(--orange); font-weight: 700;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.entr-info-divider {
  flex-shrink: 0; width: 3px; height: 72px; background: var(--orange); border-radius: 2px;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}

/* ── FAQ V2 Two-Column (Home) ── */
.faq-v2 { padding: 80px 0; background: #f8f7f4; }
.faq-v2-inner { display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; }
/* Left column header */
.faq-badge-img { height: 120px; width: auto; object-fit: contain; display: block; margin-bottom: 20px; }
.faq-title { font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1.0; letter-spacing: -.03em; margin-bottom: 14px; }
.faq-title-line1 { display: block; font-size: clamp(2.9rem, 4.1vw, 4.5rem); color: var(--navy); }
.faq-title-line2 { display: block; font-size: clamp(2.9rem, 4.1vw, 4.5rem); color: var(--orange); print-color-adjust: exact; -webkit-print-color-adjust: exact; }
.faq-subtitle { font-size: .93rem; color: var(--orange); font-weight: 600; line-height: 1.65; margin-bottom: 32px; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
/* Right card */
.faq-contact-card {
  background: var(--navy); border-radius: 24px; padding: 12px 28px 28px;
  position: sticky; top: 90px;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.faq-card-hero { width: 100%; max-width: 330px; height: auto; display: block; margin: 0 auto 0; object-fit: contain; }
.faq-contact-title {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: #fff; text-align: center; margin: -14px 0 10px; line-height: 1.2;
}
.faq-contact-text { font-size: .875rem; color: rgba(255,255,255,.7); text-align: center; line-height: 1.65; margin-bottom: 22px; }
.faq-contact-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: fit-content; height: 56px; overflow: hidden; margin: 0 auto 24px;
  padding: 0 16px 0 0; border-radius: 40px;
  background: #25d366; color: #fff; font-weight: 700; font-size: .93rem;
  transition: filter .15s, transform .15s;
  print-color-adjust: exact; -webkit-print-color-adjust: exact;
}
.faq-contact-btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.faq-contact-btn-icon { width: 72px; height: 72px; object-fit: contain; flex-shrink: 0; display: block; }
/* Benefits row */
.faq-benefits {
  display: flex; align-items: center; gap: 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15);
}
.faq-benefit {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 0 8px;
}
.faq-benefit-img { width: 68px; height: 68px; object-fit: contain; display: block; }
.faq-benefit-img--tempo    { width: 88px; height: 88px; }
.faq-benefit-img--orcamento { width: 73px; height: 73px; }
.faq-benefit-img--suporte  { width: 85px; height: 85px; }
.faq-benefit span { font-size: .83rem; color: rgba(255,255,255,.75); line-height: 1.4; }
.faq-benefit-divider {
  flex-shrink: 0; width: 1px; height: 56px; background: rgba(255,255,255,.2); align-self: center;
}

/* ════════════════════════════════════════════════════════════
   8. RESPONSIVO
   ════════════════════════════════════════════════════════════ */

/* ── Responsive ── */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .segments-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-sidebar { width: 210px; }
  .area-points { grid-template-columns: repeat(2, 1fr); }
  .header-inner { gap: 14px; padding: 8px 20px; }
  .header-search { max-width: 240px; }
  /* why-choose tablet */
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  /* cats-macro split */
  .cats-macro-split { grid-template-columns: 1fr; gap: 40px; }
  .cats-macro-intro { position: static; }
  /* b2b redesign tablet — oculta ilustração, 2 colunas */
  .b2b-panel-top { grid-template-columns: 1fr 1fr; }
  .b2b-col-illus { display: none; }
  .b2b-segs-left { min-width: 200px; }
  .b2b-seg { min-width: 80px; padding: 12px 10px; }
  /* entregas tablet */
  .entr-top { grid-template-columns: 1fr; gap: 32px; }
  .entr-visual { display: none; }
  .entr-desc { max-width: none; }
}

@media (max-width: 768px) {
  .top-bar .separator { display: none; }
  .top-bar span:not(:first-child) { display: none; }
  /* Header mobile: row1 = logo | busca | hamburger / row2 = botão orçamento (direita) */
  .header-inner { flex-wrap: wrap; column-gap: 8px; row-gap: 4px; padding: 8px 16px; align-items: center; }
  /* Quebrador de linha invisível entre row1 e row2 */
  .header-inner::after { content: ''; flex: 0 0 100%; order: 4; height: 0; }
  .header-logo { flex: 0 0 auto; order: 1; }
  .header-logo img { height: 60px; max-width: none; }
  .header-search { order: 2; flex: 1 1 0; min-width: 0; max-width: none; display: block; padding: 0; }
  .menu-toggle { display: flex; flex-direction: column; order: 3; flex-shrink: 0; }
  .cart-btn { order: 5; flex: 0 0 auto; margin-left: auto; padding: 7px 14px; font-size: .88rem; gap: 8px; max-height: 44px; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease; }
  .main-nav { display: none; flex-direction: column; width: 100%; background: var(--white); order: 5; position: absolute; top: 100%; left: 0; right: 0; z-index: 999; padding: 12px; box-shadow: var(--shadow-lg); }
  .main-nav.open { display: flex; }
  .dropdown { display: none; position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; border-radius: 0; padding: 0; background: var(--bg); margin-top: 4px; max-height: none; overflow-y: visible; }
  .nav-item.dropdown-open .dropdown { display: block; }
  /* Scroll shrink mais agressivo no mobile */
  .site-header.header-scrolled .header-logo img { height: 38px; }
  .site-header.header-scrolled .header-inner { padding-top: 2px; padding-bottom: 2px; gap: 6px; }
  .site-header.header-scrolled .cart-btn { max-height: 0; padding-top: 0; padding-bottom: 0; opacity: 0; }
  /* header permanece sticky no mobile — não sobrescrever position */

  /* Mini cart button — aparece abaixo do header quando cart-btn some */
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 48px 24px; }
  .hero-right { min-height: 280px; }
  .hero-visual { padding: 16px; gap: 10px; }
  .hero-vis-header { gap: 8px; }
  .hero-vis-headline { font-size: .85rem; }
  .hero-vis-footer { font-size: .7rem; padding: 8px 10px; }
  .hero-stats { gap: 8px; margin-top: 12px; }
  .hero-stat { padding: 8px 12px; }
  .hero-stat strong { font-size: 1.15rem; }
  .hero-vis-grid { gap: 10px; }
  .hero-vis-card { padding: 12px 8px; gap: 5px; }
  .hero-vis-dot { width: 28px; height: 28px; border-radius: 7px; }
  .hero-vis-dot svg { width: 14px; height: 14px; }
  .hero-vis-label { font-size: .64rem; }

  .why-grid { grid-template-columns: 1fr; }
  .segments-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .how-cards { grid-template-columns: 1fr; }
  .b2b-section { grid-template-columns: 1fr; }
  .b2b-left, .b2b-right { padding: 40px 24px; }
  .duvida-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  /* catálogo mobile — drawer de filtros */
  .catalog-toolbar { flex-wrap: nowrap; }
  .catalog-toolbar .search-box { max-width: none; }
  .cat-drawer-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 16px;
    background: var(--blue); color: #fff;
    border-radius: var(--radius-sm);
    font-size: .875rem; font-weight: 600;
    white-space: nowrap; flex-shrink: 0;
  }
  .cat-drawer-btn svg { width: 16px; height: 16px; fill: #fff; }
  .catalog-sidebar {
    position: fixed;
    left: 0; top: 0;
    width: 285px; height: 100%;
    max-height: 100%;
    transform: translateX(-100%);
    transition: transform .28s cubic-bezier(.4,0,.2,1);
    z-index: 600;
    border-radius: 0;
    box-shadow: 4px 0 28px rgba(0,0,0,.18);
    overflow-y: auto;
  }
  .catalog-sidebar.drawer-open { transform: translateX(0); }
  .cat-drawer-backdrop { display: block; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .product-detail { grid-template-columns: 1fr; grid-template-rows: auto; }
  .product-detail-left, .product-detail-info, .product-rich-desc { grid-column: 1; grid-row: auto; }
  .orcamento-layout { grid-template-columns: 1fr; gap: 24px; padding: 24px 0; }
  .orcamento-form { position: static; padding: 20px 16px; }
  .orcamento-item { padding: 14px 16px; gap: 12px; }
  .orcamento-item-thumb { width: 48px; height: 48px; }
  .qty-btn { width: 40px; height: 40px; border-radius: 6px; font-size: 1.1rem; }
  .qty-input { width: 44px; height: 40px; font-size: 1rem; }
  .remove-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; padding: 0; }
  .form-group input, .form-group select, .form-group textarea { font-size: 16px; }

  .about-story { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
  .area-points { grid-template-columns: repeat(2, 1fr); }
  /* about-history mobile */
  .about-hero-v2-inner { grid-template-columns: 1fr; }
  .about-hero-v2-media { display: none; }
  .about-stats-bar-inner { flex-direction: column; align-items: center; }
  .about-stat { padding: 20px 0; width: 100%; }
  .about-stat + .about-stat { border-left: none; border-top: 1px solid var(--border); }
  .about-story-v2 { grid-template-columns: 1fr; }
  .about-story-v2-media { display: none; }
  .evolution-grid { grid-template-columns: 1fr 1fr; }
  .differentials-grid { grid-template-columns: 1fr 1fr; }
  .digital-step-arrow { display: none; }
  .digital-step { min-width: calc(50% - 8px); }
  .location-grid { grid-template-columns: 1fr; }
  .location-media { display: none; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }

  /* hero-v3 mobile */
  .hero-v3-wrap { grid-template-columns: 1fr; min-height: auto; }
  .hero-v3-left { padding: 24px 20px 16px; gap: 12px; }
  .hero-v3-right { height: 220px; }
  .hero-stats { padding-top: 8px; gap: 16px; }
  .hero-stat strong { font-size: 1.35rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; width: 100%; }

  /* monte-orc mobile */
  .monte-orc { padding: 40px 0; }
  .monte-orc-inner { grid-template-columns: 1fr; gap: 32px; }
  .monte-orc-title { font-size: 1.6rem; }
  .monte-orc-step-icon-wrap { width: 56px; height: 56px; }
  .monte-orc-step-icon { height: 56px; }
  .monte-orc-actions { flex-direction: column; }
  .monte-orc-actions .btn { text-align: center; width: 100%; }
  .mockup-panel { max-width: 100%; }

  /* why-choose mobile */
  .why-choose { padding: 40px 0; }
  .why-choose::before { width: 56px; height: 56px; top: 16px; right: 8px; background-size: 10px 10px; }
  .why-choose::after  { width: 72px; height: 72px; top: 8px; right: -18px; border-width: 7px; }
  .why-choose-panel { padding: 32px 14px 40px; }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .why-choose-card { padding: 22px 10px 20px; border-radius: 16px; }
  .why-choose-icon { margin-bottom: 8px; }
  .why-choose-card-bar { margin: 6px 0 8px; }
  .why-choose-card p { font-size: .92rem; line-height: 1.5; }
  .why-choose-title { font-size: clamp(1.7rem, 5vw, 2.2rem); }

  /* cats-macro mobile */
  .cats-macro { padding: 56px 0; }
  .cats-macro-split { grid-template-columns: 1fr; gap: 32px; }
  .cats-macro-intro { position: static; }
  .cats-macro-items-row { grid-template-columns: 1fr; }

  /* b2b redesign mobile — 1 coluna */
  .b2b-v3 { padding: 40px 0; }
  .b2b-panel { border-radius: 24px; }
  .b2b-panel-top { grid-template-columns: 1fr; }
  .b2b-col-left { padding: 40px 28px 32px; border-right: none; border-bottom: 1px solid #eef2f8; }
  .b2b-col-feats { padding: 28px 24px; border-right: none; }
  .b2b-segs-bar { flex-direction: column; }
  .b2b-segs-left { min-width: auto; padding: 16px 20px; }
  .b2b-segs-right { flex-wrap: wrap; overflow-x: visible; }
  .b2b-seg { flex: 0 0 33.33%; min-width: unset; padding: 14px 8px; }
  .b2b-seg:nth-child(3) { border-right: none; }
  .b2b-seg:last-child { border-right: 1px solid #eef2f8; }

  /* entregas mobile */
  .sec-entregas { padding: 48px 0; }
  .entr-panel { padding: 32px 20px; border-radius: 24px; }
  .entr-top { grid-template-columns: 1fr; gap: 0; }
  .entr-visual { display: none; }
  .entr-flow { flex-direction: column; gap: 12px; }
  .entr-step-connector { align-self: center; transform: rotate(90deg); }
  .entr-info-bar { flex-direction: column; }
  .entr-info-divider { width: 80%; height: 3px; align-self: center; margin: 0; }

  /* faq-v2 mobile */
  .faq-v2 { padding: 56px 0; }
  .faq-v2-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-contact-card { position: static; }
  .faq-benefits { gap: 0; }
  .faq-q-text { font-size: .92rem; }

  /* footer mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-thumb { height: 130px; }
  .product-info { padding: 10px 10px; gap: 4px; }
  .product-name { font-size: .82rem; }
  .product-cat { font-size: .66rem; }
  .product-desc { display: none; }
  .product-footer { padding: 8px 8px; }
  .qty-stepper { height: 34px; }
  .add-btn { height: 34px; font-size: .76rem; padding: 0 6px; }
  .hero-actions { flex-direction: column; }
  .about-stats { grid-template-columns: 1fr; }
  .evolution-grid { grid-template-columns: 1fr; }
  .differentials-grid { grid-template-columns: 1fr; }
  .digital-step { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-social { flex-direction: column; }
  .footer-social-btn { justify-content: center; }
  .cart-btn { padding: 8px 10px; gap: 5px; font-size: .78rem; }
  .header-logo img { height: 58px; max-width: none; }
  .why-choose-panel { padding: 24px 10px 28px; }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .why-choose-card { padding: 18px 8px 16px; }
  .why-choose-icon { width: 52px; height: 52px; margin-bottom: 6px; }
  .why-choose-icon svg { width: 24px; height: 24px; }
  .why-choose-card-bar { margin: 4px 0 6px; }
  .why-choose-card p { font-size: .9rem; }
  .cats-macro-items-row { grid-template-columns: 1fr; }
  .cats-macro-split { gap: 28px; }
  .entr-step-card { flex-direction: column; text-align: center; align-items: center; }
  .entr-step-icon-wrap { align-self: center; }
  .entr-info-item { flex-direction: column; text-align: center; align-items: center; }
  .hero-stats { display: none; }
  .hero-eyebrow { display: none; }
  .hero-v3-left { padding: 20px 16px 14px; }
  .hero-v3-right { height: 180px; }
  .monte-orc-mockup { display: none; }
  .faq-answer { padding-left: 14px; }
  .faq-answer.open { padding-left: 14px; }
  /* painel de orçamento: bottom-sheet no mobile */
  .orc-panel {
    top: auto; right: 0; left: 0;
    width: 100%; max-width: 100%; height: 88vh; max-height: 88vh;
    border-left: none; border-radius: 18px 18px 0 0;
    box-shadow: 0 -4px 32px rgba(0,0,0,.16);
    transform: translateY(100%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
  }
  .orc-panel.open { transform: translateY(0); }
  .orc-panel-header { position: relative; padding-top: 22px; }
  .orc-panel-header::before {
    content: ''; display: block;
    width: 38px; height: 4px;
    background: rgba(255,255,255,.4); border-radius: 2px;
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  }
}
