/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --steel: #1a1f2e;
  --steel-mid: #252b3b;
  --steel-light: #2e3548;
  --chrome: #c8d4e0;
  --chrome-bright: #e8f0f7;
  --accent: #e8960a;
  --accent-dark: #c47d08;
  --inox: #8ba3b8;
  --white: #f5f8fb;
  --text-muted: #7a8fa0;

  --font-family: 'Barlow', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--steel);
  color: var(--chrome-bright);
  overflow-x: hidden;
}

/* ============================================================
   LOGO
   ============================================================ */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 13px;
  cursor: pointer;
  text-decoration: none;
}

.logo-wrap-link {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.logo-emblem {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  transition: transform .3s;
}

.logo-wrap:hover .logo-emblem,
.logo-wrap-link:hover .logo-emblem {
  transform: rotate(90deg);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 3px;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
}

.logo-name span {
  color: var(--accent);
}

.logo-rule {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), rgba(232, 150, 10, 0.15));
  margin: 3px 0;
}

.logo-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 0.42rem;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--inox);
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(26, 31, 46, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 212, 224, 0.08);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--inox);
  text-decoration: none;
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--steel) !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
}

/* ============================================================
   HERO (HOME)
   ============================================================ */
.hero {
  min-height: 100lvh;
  display: flex;
  align-items: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(26, 31, 46, 0.97) 40%, rgba(26, 31, 46, 0.7) 100%), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=80') center/cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(200, 212, 224, 0.015) 2px, rgba(200, 212, 224, 0.015) 4px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}

h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 1.5rem;
}

h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--inox);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: var(--steel);
  padding: 16px 32px;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s;
  cursor: pointer;
  border: none;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--chrome-bright);
  padding: 16px 32px;
  border-radius: 3px;
  border: 1px solid rgba(200, 212, 224, 0.3);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(232, 150, 10, 0.08);
}

.hero-stats {
  position: absolute;
  right: 5%;
  bottom: 10%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat {
  text-align: right;
  border-right: 2px solid var(--accent);
  padding-right: 1.5rem;
}

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   SECTIONS & HEADINGS
   ============================================================ */
section {
  padding: 100px 5%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}

h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ============================================================
   SOBRE (HOME)
   ============================================================ */
.sobre {
  background: var(--steel-mid);
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.sobre-img {
  position: relative;
}

.sobre-img img {
  width: 100%;
  border-radius: 4px;
  filter: brightness(0.85) saturate(0.8);
  position: relative;
  z-index: 1;
}

.sobre-img::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  z-index: 0;
}

.sobre-text p {
  color: var(--inox);
  line-height: 1.8;
  margin-bottom: 1.2rem;
  font-weight: 300;
  font-size: 1.05rem;
}

.sobre-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(200, 212, 224, 0.04);
  border: 1px solid rgba(200, 212, 224, 0.08);
  border-radius: 3px;
}

.feature-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(232, 150, 10, 0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.feature-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ============================================================
   SETORES (HOME)
   ============================================================ */
.setores {
  background: var(--steel);
}

.setores-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.setores-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(200, 212, 224, 0.08);
  border: 1px solid rgba(200, 212, 224, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.setor-card {
  background: var(--steel-mid);
  transition: background .3s;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.setor-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .3s;
}

.setor-card:hover {
  background: var(--steel-light);
}

.setor-card:hover::after {
  width: 100%;
}

.setor-img-wrap {
  overflow: hidden;
  height: 130px;
}

.setor-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.9);
  transition: filter .3s, transform .4s;
}

.setor-card:hover .setor-img {
  filter: brightness(0.9) saturate(1.15);
  transform: scale(1.06);
}

.setor-body {
  padding: 1.2rem 1.4rem 1.6rem;
}

.setor-icon {
  margin-bottom: .5rem;
  display: inline-block;
  width: 32px;
  height: 32px;
}

.setor-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.setor-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .4rem;
}

.setor-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PRODUTOS DESTAQUE (HOME)
   ============================================================ */
.produtos {
  background: var(--steel-mid);
}

.produtos-grid-dest {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.produto-card {
  background: var(--steel-mid);
  border: 1px solid rgba(200, 212, 224, 0.07);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}

.produto-card:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 150, 10, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

/* Home page card internals */
.produto-img {
  height: 200px;
  background: #f0f0f0;
  overflow: hidden;
}

.produto-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 16px;
  transition: transform .4s;
}

.produto-card:hover .produto-img img {
  transform: scale(1.05);
}

.produto-info {
  padding: 1.5rem;
}

.produto-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.produto-info h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

.produto-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap .2s;
}

.produto-link:hover {
  gap: 10px;
}

/* ============================================================
   DIFERENCIAIS (HOME)
   ============================================================ */
.diferenciais {
  background: var(--steel);
  position: relative;
  overflow: hidden;
}

.diferenciais::before {
  content: 'INOX';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18rem;
  font-weight: 800;
  color: rgba(200, 212, 224, 0.02);
  pointer-events: none;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.dif-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dif-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(200, 212, 224, 0.03);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}

.dif-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(232, 150, 10, 0.2);
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}

.dif-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}

.dif-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.dif-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.dif-box {
  background: var(--steel-mid);
  border: 1px solid rgba(200, 212, 224, 0.08);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.dif-box:first-child {
  grid-column: span 2;
}

.dif-box-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.dif-box-label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .3rem;
}

/* ============================================================
   CTA SECTION & FOOTER (shared)
   ============================================================ */
.cta-section {
  background: var(--accent);
  padding: 80px 5%;
  text-align: center;
}

.cta-section h2 {
  color: var(--steel);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(26, 31, 46, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--steel);
  color: var(--white);
  padding: 18px 40px;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.btn-whatsapp:hover {
  background: var(--steel-mid);
  transform: translateY(-3px);
}

footer {
  background: #111620;
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 1rem;
}

footer h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-contact a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(200, 212, 224, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON (shared)
   ============================================================ */
.wpp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: transform .3s;
  animation: pulse 2.5s infinite;
}

.wpp-float:hover {
  transform: scale(1.1);
}

.wpp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4)
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7)
  }
}

/* ============================================================
   PAGE HERO (products.html)
   ============================================================ */
.page-hero {
  padding: 140px 5% 60px;
  background: linear-gradient(135deg, var(--steel) 60%, var(--steel-mid));
  border-bottom: 1px solid rgba(200, 212, 224, 0.06);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: 'PRODUTOS';
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14rem;
  font-weight: 800;
  color: rgba(200, 212, 224, 0.025);
  pointer-events: none;
  line-height: 1;
}

.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  margin-bottom: .8rem;
}

.page-hero p {
  color: var(--inox);
  font-size: 1.05rem;
  font-weight: 300;
  max-width: 500px;
}

/* ============================================================
   Breadcrumbs
   ============================================================ */
.breadcrumbs {
  margin: 0 auto;
  padding-top: 60px;
  padding-bottom: 24px;
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs a {
  text-decoration: none;
  color: #e8960a;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs.product {
  max-width: 1100px;
  padding: 60px 5% 0;
}

/* ============================================================
   FILTER BAR (products.html)
   ============================================================ */
.filtros-wrap {
  background: var(--steel-mid);
  border-bottom: 1px solid rgba(200, 212, 224, 0.06);
  padding: 0 5%;
  position: sticky;
  top: 72px;
  z-index: 50;
}

.filtros {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  flex-wrap: wrap;
}

.filtros::-webkit-scrollbar {
  display: none;
}

.filtro-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 1.1rem 1.4rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}

.filtro-btn:hover {
  color: var(--chrome-bright);
}

.filtro-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* ============================================================
   PRODUCTS GRID (products.html)
   ============================================================ */
.produtos-section {
  padding: 0 5% 100px;
}

.categoria-block {
  margin-bottom: 4rem;
}

.categoria-block.hidden {
  display: none;
}

.cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(200, 212, 224, 0.08);
}

.cat-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0;
}

.cat-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  background: rgba(232, 150, 10, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.produtos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}

/* Products page card internals */
.card-img {
  height: 180px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 12px;
  transition: transform .4s;
}

.produto-card:hover .card-img img {
  transform: scale(1.06);
}

.card-img .no-img {
  font-size: 2.5rem;
}

.card-body {
  padding: 1.1rem;
}

.card-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .4rem;
}

.card-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: .8rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--inox);
  transition: color .2s, gap .2s;
}

.produto-card:hover .card-link {
  color: var(--accent);
  gap: 9px;
}

#div-max-products {
  text-align:center;
  margin-top:2.5rem;
}

/* ============================================================
   PRODUCT DETAIL (product.html)
   ============================================================ */
.produto-overlay {
  padding-top: 80px;
  background: var(--steel);
}

.prod-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 5% 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.prod-gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.prod-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  padding: 20px;
}

.prod-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .6rem;
}

.prod-thumb {
  aspect-ratio: 1;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
}

.prod-thumb.active {
  border-color: var(--accent);
}

.prod-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.prod-info {
  padding-top: 1rem;
}

.prod-cat {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .8rem;
}

.prod-info h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.prod-divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin-bottom: 1.4rem;
  border-radius: 2px;
}

.prod-desc {
  font-size: .98rem;
  font-weight: 300;
  color: var(--inox);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}

.prod-specs {
  background: rgba(200, 212, 224, 0.04);
  border: 1px solid rgba(200, 212, 224, 0.08);
  border-radius: 4px;
  padding: 1.4rem;
  margin-bottom: 1.8rem;
}

.prod-specs h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.prod-specs ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.prod-specs li {
  font-size: 0.86rem;
  color: var(--chrome);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.prod-specs li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.btn-orcamento {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: white;
  padding: 17px 32px;
  border-radius: 3px;
  width: 100%;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background .2s, transform .2s;
}

.btn-orcamento:hover {
  background: #1da851;
  transform: translateY(-2px);
}

.btn-orcamento svg {
  width: 20px;
  height: 20px;
  fill: white;
}

/* ============================================================
   ANIMATIONS (shared)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: .1s;
}

.delay-2 {
  animation-delay: .25s;
}

.delay-3 {
  animation-delay: .4s;
}

.delay-4 {
  animation-delay: .55s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   LGPD
   ============================================================ */

.privacy-policy {
  background: var(--steel-mid);
}

.privacy-policy .content {
  margin: 0 auto;
  padding: 40px 16px;

  width: 100%;
  max-width: 720px;
}

.privacy-policy header {
  margin-bottom: 40px;
}

.privacy-policy header h1 {
  font-size: 60px;
  margin-bottom: 20px;
}

.privacy-policy header p {
  color: var(--chrome);
}

.privacy-policy .content {
  line-height: 1.625;
  color: var(--inox);
}

.privacy-policy .privacy-texts>* {
  margin-block-end: 24px;
}

.privacy-policy .privacy-texts ul {
  list-style-position: inside;
}

.privacy-policy .privacy-texts ul li {
  margin-block-end: 12px;
}

.privacy-policy .privacy-texts strong {
  color: white;
}

.lgpd_bar-area {
  /* variáveis para customizar dependendo do site */
  --background-color: white;
  --border-color: rgba(0, 0, 0, .2);

  --font-family: var(--font-family);
  --text-color: rgba(33, 33, 33, 0.75);
  --link-color: var(--steel);

  --button-accept-background-color: var(--accent);
  --button-accept-text-color: var(--steel);
  /* fim das variáveis */

  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
  position: fixed;
  bottom: 16px;

  margin: 0 auto;
  padding: 0 16px;

  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transform: translateY(60px);
  transition:
    transform .35s cubic-bezier(0.075, 0.82, 0.165, 1),
    opacity .35s,
    visibility .35s;

  @media print {
    display: none;
  }
}

.lgpd_bar-area.visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.lgpd_bar-area>* {
  box-sizing: border-box;
}

.lgpd_bar-container {
  width: 100%;
  max-width: 960px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 16px; */

  padding: 16px;
  background-color: var(--background-color);

  border: 2px solid var(--border-color);
  border-radius: 3px;
}

.lgpd_bar-text {
  font-size: 15px;
  line-height: 140%;
  font-weight: normal;
  font-family: var(--font-family);
  color: var(--text-color);
}

.lgpd_bar-text a {
  color: var(--link-color);
}

.lgpd_bar-text a:hover {
  text-decoration: underline;
}

.lgpd_bar-button_accept {
  height: 32px;
  padding: 0 16px;
  margin-left: 16px;

  background-color: var(--button-accept-background-color);

  color: var(--button-accept-text-color);
  font-size: 14px;
  font-family: var(--font-family);

  border: none;
  border-radius: 3px;

  cursor: pointer;
}

@media only screen and (max-width: 768px) {
  .lgpd_bar-container {
    flex-direction: column;
  }

  .lgpd_bar-text {
    text-align: center;
  }

  .lgpd_bar-button_accept {
    margin-left: 0;
    margin-top: 16px;
  }
}

/* ============================================================
   404
   ============================================================ */

#trend-not_found {
  --title: var(--accent);
  --text: var(--chrome);
  --link: var(--accent);

  margin: 0 auto;
  text-align: center;
  padding: 1rem;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 512px;
}

#trend-not_found .trend-not_found_content h1 {
  color: var(--title);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: .5rem;
}

#trend-not_found .trend-not_found_content p {
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: .5rem;
}

#trend-not_found .trend-not_found_content a {
  color: var(--link);
  font-size: 1.2rem;
  line-height: 1.4;
  text-decoration: none;
}

#trend-not_found .trend-not_found_content a:hover {
  text-decoration: underline;
}

/* ============================================================
   Responsive
   ============================================================ */

.mobile-nav-links {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: var(--steel);

  display: grid;
  grid-template-rows: 72px auto;
  visibility: hidden;
  opacity: 0;

  transition: opacity .3s;
}

.mobile-nav-links.open {
  visibility: visible;
  opacity: 1;
}

.mobile-nav-links > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
}

.mobile-nav-button {
  width: 40px;
  height: 40px;
  background-color: var(--steel-light);
  border: none;
  border-radius: 4px;
  color: var(--white);
  display: none;
}

.mobile-nav-button svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-links ul {
  padding: 40px;
}

.mobile-nav-links ul li {
  list-style: none;
  margin-bottom: 16px;
}

.mobile-nav-links ul li a {
  display: block;
  text-align: center;
  font-size: 24px;
  padding: 8px;
  color: var(--white);
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-nav-button {
    display: block;
  }

  .hero {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-stats {
    position: relative;
    inset: 0;
    margin-top: 48px;

    flex-direction: row;
    gap: 12px;
  }

  .hero-stats .stat {
    padding-right: 0;
    border: none;
    text-align: center;
  }

  .hero-stats .stat .stat-num {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .page-hero::before {
    display: none;
  }

  .sobre-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 32px;
  }

  .setores-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .produtos-grid-dest {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .produtos-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .filtros-wrap {
    padding: 0 0 0 16px;
  }

  .filtros-wrap a:last-child {
    margin-right: 16px;
  }

  .filtros {
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }

  .prod-body {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .diferenciais-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }
}