/*
 * Termoklima Refrigeração — Shared Stylesheet
 * Para usar o logo real: salve a imagem em assets/logo.png
 */

/* =========== TOKENS =========== */
:root {
  --navy:        #0C2340;
  --navy-2:      #163255;
  --navy-3:      #1E4275;
  --navy-line:   #0A1F38;
  --orange:      #E97014;
  --orange-2:    #C25C0C;
  --orange-soft: #FFF1E5;
  --logo-blue:   #1A5DA0;
  --paper:       #F7F7F4;
  --paper-2:     #EFEFEA;
  --rule:        #E2E2DC;
  --rule-soft:   #ECECE6;
  --ink:         #0E1218;
  --ink-2:       #2A3340;
  --muted:       #6B7280;
  --muted-2:     #9AA3B2;
  --white:       #FFFFFF;
  --green:       #16A34A;
  --watermark:   rgba(12,35,64,.04);
}

/* =========== RESET =========== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; }
h1, h2, h3, h4, h5 {
  font-family: 'Archivo', sans-serif;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* =========== TOPBAR =========== */
.topbar {
  background: var(--navy-line);
  color: rgba(255,255,255,.72);
  font-size: 12.5px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .15s; }
.topbar a:hover { color: var(--white); }
.topbar svg { width: 13px; height: 13px; fill: var(--orange); flex-shrink: 0; }
.topbar .sep { color: rgba(255,255,255,.2); }
.topbar-wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: var(--white) !important;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  padding: 5px 12px 5px 8px;
  border-radius: 20px;
  text-decoration: none;
  transition: background .2s;
  letter-spacing: .02em;
}
.topbar-wpp-btn:hover { background: #1ebe5a; color: var(--white) !important; }
.topbar-wpp-btn svg { width: 20px !important; height: 20px !important; fill: var(--white) !important; flex-shrink: 0; }

/* =========== HEADER =========== */
.header { background: var(--white); border-bottom: 1px solid var(--rule); position: sticky; top: 0; z-index: 50; }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 16px 0;
}

/* =========== LOGO =========== */
.logo { display: flex; align-items: center; gap: 0; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 48px; width: auto; display: block; }
.logo-brand-fallback {
  flex-direction: column;
  line-height: 1;
}
.logo-brand-row {
  display: flex;
  align-items: center;
}
.logo-term {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 25px;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.logo-flake {
  color: var(--logo-blue);
  display: flex;
  align-items: center;
  margin: 0 2px;
}
.logo-flake svg { width: 20px; height: 20px; }
.logo-klima {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 25px;
  color: var(--orange);
  letter-spacing: -0.03em;
}
.logo-refrig {
  font-family: 'Archivo', sans-serif;
  font-size: 8.5px;
  letter-spacing: 3.5px;
  color: var(--logo-blue);
  font-weight: 700;
  margin-top: 5px;
  text-transform: uppercase;
}

/* footer logo dark bg */
.logo-dark .logo-refrig { color: rgba(255,255,255,.5); }
.logo-dark .logo-flake { color: rgba(255,255,255,.8); }

/* =========== SEARCH =========== */
.search { position: relative; width: 100%; }
.search input {
  width: 100%;
  height: 46px;
  padding: 0 54px 0 18px;
  border: 2px solid var(--rule);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  transition: all .15s;
}
.search input::placeholder { color: var(--muted-2); }
.search input:focus { outline: none; border-color: var(--navy); background: var(--white); }
.search button {
  position: absolute;
  right: 5px; top: 5px; bottom: 5px;
  width: 42px;
  background: var(--navy);
  color: var(--white);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.search button:hover { background: var(--orange); }
.search button svg { width: 16px; height: 16px; fill: currentColor; }

/* =========== CLIENT AREA =========== */
.client-area {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 2px solid var(--rule);
  border-radius: 4px;
  transition: all .15s;
  white-space: nowrap;
}
.client-area:hover { border-color: var(--navy); background: var(--paper); }
.client-area .ic {
  width: 32px; height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.client-area .ic svg { width: 16px; height: 16px; fill: currentColor; }
.client-area .lbl { font-size: 11px; color: var(--muted); line-height: 1.3; font-weight: 500; }
.client-area .lbl strong { display: block; font-family: 'Archivo', sans-serif; font-size: 13px; color: var(--navy); font-weight: 800; letter-spacing: -0.01em; }

/* =========== MAIN NAV =========== */
.nav-wrap { background: var(--navy); border-bottom: 3px solid var(--orange); }
.nav { display: flex; align-items: stretch; justify-content: center; position: relative; }
.nav a {
  color: var(--white);
  padding: 14px 22px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background .15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.nav a:first-child { border-left: 1px solid rgba(255,255,255,.08); }
.nav a:hover { background: var(--navy-2); }
.nav a.active { background: var(--orange); }
.nav .right { position: absolute; right: 0; top: 0; bottom: 0; display: flex; }
.nav .right a { background: rgba(255,255,255,.05); border-left: 1px solid rgba(255,255,255,.08); border-right: none; }
.nav .right a:hover { background: var(--orange); }

/* =========== SECTION BASE =========== */
section { padding: 88px 0; }
.section-bg { background: var(--paper); }
.section-dark { background: var(--navy); color: var(--white); }

.sec-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  margin-bottom: 52px;
  padding-bottom: 22px;
  border-bottom: 2px solid var(--rule);
}
.section-dark .sec-head { border-color: rgba(255,255,255,.12); }
.sec-head-left { display: flex; flex-direction: column; gap: 10px; max-width: 680px; }
.sec-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 2px;
}
.sec-head h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.section-dark .sec-head h2 { color: var(--white); }
.sec-head h2 .em { color: var(--orange); }
.sec-head p { font-size: 15.5px; color: var(--muted); margin: 10px 0 0; max-width: 560px; }
.section-dark .sec-head p { color: rgba(255,255,255,.6); }
.sec-head-right { display: flex; gap: 12px; }

.sec-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--navy);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 2px solid var(--navy);
  transition: all .15s;
  white-space: nowrap;
}
.section-dark .sec-link { color: var(--white); border-color: rgba(255,255,255,.4); }
.sec-link:hover { color: var(--orange); border-color: var(--orange); }
.sec-link svg { width: 14px; height: 14px; fill: currentColor; }

/* =========== BUTTONS =========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 28px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .18s;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn svg { width: 17px; height: 17px; fill: currentColor; }
.btn-orange { background: var(--orange); color: var(--white); border-color: var(--orange); }
.btn-orange:hover { background: var(--orange-2); border-color: var(--orange-2); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-ghost { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-ghost:hover { background: var(--paper-2); }

/* =========== PRODUCT CARD =========== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.product {
  background: var(--white);
  cursor: pointer;
  position: relative;
  transition: box-shadow .2s;
}
.product:hover { box-shadow: inset 0 0 0 2px var(--navy); z-index: 1; }
.product-img {
  aspect-ratio: 1 / 1;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-img::before {
  content: 'TERMOKLIMA';
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--watermark);
  transform: rotate(-25deg);
  letter-spacing: 4px;
  z-index: 1;
}
.product-img svg {
  width: 56%;
  height: 56%;
  color: var(--navy);
  opacity: 0.8;
  z-index: 2;
  position: relative;
}
.product-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 9px;
  padding: 3px 8px;
  letter-spacing: 1.5px;
  border-radius: 2px;
  z-index: 3;
  text-transform: uppercase;
}
.product-tag.orange { background: var(--orange); }
.product-tag.dark { background: var(--ink); }
.product-info { padding: 14px 16px 16px; }
.product-info .cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.product-info .ref {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 4px;
}
.product-info .nm {
  font-family: 'Archivo', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
  min-height: 36px;
}
.product-info .actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.btn-detail {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  background: var(--paper-2);
  color: var(--navy);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .15s;
}
.btn-detail:hover { background: var(--navy); color: var(--white); }
.btn-wa {
  width: 34px; height: 34px;
  background: #25D366;
  color: var(--white);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .15s;
  flex-shrink: 0;
}
.btn-wa:hover { opacity: .85; }
.btn-wa svg { width: 16px; height: 16px; fill: currentColor; }

/* =========== LINHAS GRID =========== */
.lines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.line-card {
  border: 1.5px solid var(--rule);
  border-radius: 10px;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  background: var(--white);
}
.line-card:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 28px rgba(233,112,20,.13);
  transform: translateY(-3px);
}
.line-card-img {
  height: 195px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: var(--paper);
}
.line-card-img svg { width: 82%; height: 82%; position: relative; z-index: 2; }
.line-card-body {
  padding: 20px 22px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--rule);
}
.line-card .nm {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.line-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 7px; letter-spacing: -0.02em; font-weight: 800; }
.line-card p { font-size: 13px; color: var(--muted); margin: 0 0 16px; line-height: 1.55; flex: 1; }
.line-card .arrow {
  width: 36px; height: 36px;
  background: var(--paper);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: all .2s;
}
.line-card:hover .arrow { background: var(--orange); color: var(--white); }
.line-card .arrow svg { width: 15px; height: 15px; fill: currentColor; }

/* =========== OWN BRANDS =========== */
.own-brands { background: var(--white); color: var(--navy); padding: 88px 0; }
.own-brands .sec-head h2 { padding-left: 4px; }
.own-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(0,0,0,.10); border: 1px solid rgba(0,0,0,.10); }
.own-card { background: var(--white); padding: 44px 40px; border: 1px solid rgba(0,0,0,.08); }
.own-card .ind {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(0,0,0,.45);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.own-card h3 {
  font-size: 52px;
  color: var(--navy);
  margin-bottom: 4px;
  letter-spacing: -0.04em;
  line-height: 1;
}
.own-card .tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 22px;
}
.own-card p { font-size: 14px; color: rgba(0,0,0,.55); line-height: 1.65; margin-bottom: 22px; }
.own-card .specs { list-style: none; margin: 0 0 28px; padding: 0; }
.own-card .specs li {
  font-size: 13px;
  color: rgba(0,0,0,.5);
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  padding-left: 16px;
  position: relative;
}
.own-card .specs li::before { content: '—'; position: absolute; left: 0; color: var(--orange); }
.own-link {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: opacity .15s;
}
.own-link:hover { opacity: .8; }
.own-link svg { width: 14px; height: 14px; fill: currentColor; }

/* =========== BRANDS GRID =========== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--rule);
}
.brand-cell {
  background: var(--white);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 6px;
  transition: background .15s;
}
.brand-cell:hover { background: var(--paper); }
.brand-cell .nm {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.brand-cell .org {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted-2);
  font-weight: 500;
  letter-spacing: 1px;
}

/* =========== B2B STRIP =========== */
.b2b-strip {
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule);
  padding: 10px 0;
  font-size: 12.5px;
  color: var(--ink-2);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.b2b-strip .container { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; align-items: center; }
.b2b-strip span { display: inline-flex; align-items: center; gap: 8px; }
.b2b-strip span svg { width: 13px; height: 13px; fill: var(--orange); }
.b2b-strip .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted-2); }

/* =========== CTA SECTION =========== */
.cta-section {
  background: var(--navy);
  color: var(--white);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,.02) 24px 25px);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-inner h2 { font-size: clamp(30px, 3.8vw, 50px); letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.cta-inner h2 .em { color: var(--orange); }
.cta-inner > div > p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.65; margin: 0 0 30px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.cta-feat {
  padding: 22px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 3px;
  background: rgba(255,255,255,.03);
}
.cta-feat .ic {
  width: 38px; height: 38px;
  background: var(--orange);
  color: var(--white);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.cta-feat .ic svg { width: 19px; height: 19px; fill: currentColor; }
.cta-feat h4 { font-size: 15px; color: var(--white); margin-bottom: 5px; letter-spacing: -0.01em; }
.cta-feat p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }

/* =========== NEWSLETTER =========== */
.newsletter { background: var(--orange); color: var(--white); padding: 48px 0; }
.newsletter-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.newsletter h3 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.newsletter p { margin: 0; color: rgba(255,255,255,.85); font-size: 14px; }
.newsletter-form {
  display: flex;
  background: var(--white);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.newsletter-form input {
  flex: 1;
  height: 54px;
  padding: 0 20px;
  border: none;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--white);
}
.newsletter-form input:focus { outline: none; }
.newsletter-form input::placeholder { color: var(--muted-2); }
.newsletter-form button {
  height: 54px;
  padding: 0 28px;
  background: var(--navy);
  color: var(--white);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .15s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--navy-2); }
.newsletter-form button svg { width: 16px; height: 16px; fill: currentColor; }

/* =========== FOOTER =========== */
.footer-pre {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 60px 0 48px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 52px; }
.footer-pre h5 {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-pre .about { font-size: 13.5px; line-height: 1.7; margin: 16px 0 22px; color: rgba(255,255,255,.55); }
.footer-pre ul li { margin-bottom: 9px; font-size: 13.5px; }
.footer-pre ul a:hover { color: var(--orange); }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  color: var(--white);
  border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.footer-social a:hover { background: var(--orange); }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }
.footer-bar {
  background: #06121F;
  color: rgba(255,255,255,.4);
  padding: 20px 0;
  font-size: 12px;
}
.footer-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bar a { color: rgba(255,255,255,.6); transition: color .15s; }
.footer-bar a:hover { color: var(--orange); }

/* =========== PAGE HERO (sub-pages) =========== */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, transparent 0 24px, rgba(255,255,255,.02) 24px 25px);
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: rgba(255,255,255,.45);
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,.45); transition: color .15s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.breadcrumb .cur { color: var(--orange); }
.page-hero h1 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 14px;
}
.page-hero h1 .em { color: var(--orange); }
.page-hero .lead { font-size: 16px; color: rgba(255,255,255,.65); max-width: 600px; line-height: 1.65; }

/* =========== BRANCHES =========== */
.branches-controls {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--rule);
  overflow-x: auto;
}
.branch-ctrl {
  padding: 12px 18px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all .15s;
  cursor: pointer;
  background: none;
}
.branch-ctrl:hover { color: var(--navy); }
.branch-ctrl.active { color: var(--navy); border-bottom-color: var(--orange); }
.branch-ctrl .ct {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  color: var(--muted-2);
  margin-left: 5px;
}
.branch-ctrl.active .ct { color: var(--orange); }

.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
}
.branch {
  background: var(--white);
  padding: 26px;
  transition: background .15s;
}
.branch:hover { background: var(--paper); }
.branch .uf-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.branch .uf {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 2px;
}
.branch .badge {
  font-family: 'Archivo', sans-serif;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.branch .badge.matriz { background: var(--orange); color: var(--white); }
.branch .badge.soon { background: var(--green); color: var(--white); }
.branch h4 { font-size: 20px; color: var(--navy); margin-bottom: 2px; letter-spacing: -0.02em; }
.branch .city { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.branch .info { font-size: 13px; color: var(--ink-2); line-height: 1.5; margin-bottom: 10px; padding-left: 20px; position: relative; }
.branch .info svg { position: absolute; left: 0; top: 3px; width: 13px; height: 13px; fill: var(--orange); }
.branch .info a { transition: color .15s; }
.branch .info a:hover { color: var(--navy); }
.branch.soon-card { background: linear-gradient(135deg, #f0fdf4, var(--white)); border-left: 3px solid var(--green); }

/* =========== WHATSAPP FAB =========== */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 54px; height: 54px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.3);
  z-index: 99;
  transition: transform .15s;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 26px; height: 26px; fill: currentColor; }

/* =========== MOBILE TOGGLE =========== */
.mobile-tog { display: none; }

/* =========== PRODUCT TABS =========== */
.product-tabs {
  display: flex;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--rule);
  overflow-x: auto;
}
.product-tab {
  padding: 14px 20px;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all .15s;
  cursor: pointer;
  background: none;
  border-top: none; border-left: none; border-right: none;
}
.product-tab:hover { color: var(--navy); }
.product-tab.active { color: var(--navy); border-bottom-color: var(--orange); }
.product-tab .count {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 10px;
  color: var(--muted-2);
  margin-left: 5px;
}
.product-tab.active .count { color: var(--orange); }

/* =========== RESPONSIVE =========== */
@media (max-width: 1100px) {
  .header-inner { grid-template-columns: auto 1fr auto auto; gap: 18px; }
  .own-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .lines-grid { grid-template-columns: repeat(2, 1fr); }
  .line-card { border-right: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 760px) {
  .header-inner { grid-template-columns: auto 1fr auto; gap: 12px; }
  .search { display: none; }
  .client-area .lbl { display: none; }
  .client-area { padding: 8px 10px; }
  .nav { display: none; }
  .nav-wrap.open .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: 75vw; max-width: 300px;
    height: 100vh;
    z-index: 201;
    overflow-y: auto;
    padding: 60px 0 24px;
    box-shadow: -8px 0 32px rgba(0,0,0,.35);
    animation: nav-slide-in .25s ease;
  }
  @keyframes nav-slide-in {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
  }
  .nav-wrap.open .nav a { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 16px 24px; }
  .nav .right { position: static !important; }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 200;
    cursor: pointer;
  }
  .nav-overlay.open { display: block; }
  .nav-close-btn {
    position: absolute;
    top: 12px; right: 12px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.12);
    border: none;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-close-btn:hover { background: rgba(255,255,255,.2); }
  .mobile-tog { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; color: var(--navy); background: none; }
  .mobile-tog svg { width: 22px; height: 22px; fill: currentColor; }
  section { padding: 60px 0; }
  .lines-grid { grid-template-columns: 1fr; }
  .line-card { border-right: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-grid { grid-template-columns: 1fr; }
  .cta-features { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sec-head { grid-template-columns: 1fr; gap: 16px; }
  .sec-head-right { display: none; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; justify-content: center; }
  .topbar-left { display: none; }
  .topbar-right { gap: 10px; font-size: 11.5px; }
  .b2b-strip .dot { display: none; }
  .b2b-strip .container { gap: 14px; font-size: 11.5px; }
  .product-img { max-height: 180px; }
  .cta-inner h2 { font-size: 26px; }
  .own-card { padding: 28px 24px; }
  .own-card h3 { font-size: 38px; }
}

/* =========== BRAND LOGOS =========== */
.brand-logo-img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 8px;
}
.partner-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-top: 8px;
}
.partner-logos img {
  height: 99px;
  width: auto;
  object-fit: contain;
  opacity: .85;
  transition: opacity .15s;
}
.partner-logos img:hover { opacity: 1; }

/* =========== SEARCH AUTOCOMPLETE =========== */
.search { position: relative; }
.search-suggest {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  z-index: 9999;
  max-height: 360px;
  overflow-y: auto;
}
.ss-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: background .12s;
}
.ss-item:last-child { border-bottom: none; }
.ss-item:hover, .ss-item.active { background: #f4f7fb; }
.ss-img {
  width: 48px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
  background: #f0f2f5;
}
.ss-no-img { background: #eef0f3; }
.ss-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.ss-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ss-sku {
  font-size: 11px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
}

/* =========== UTILITIES =========== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
