:root {
  --blue: #004A96;
  --blue-700: #1d4ed8;
  --green: #74b934;
  --text: #1c1b1b;
  --muted: #666;
  --bg: #fdf8f8;
  --gray: #e9e9e9;
  --news: #eeebe9;
  --footer: #c2c6d3;
  --max: 1280px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Work Sans", "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: "Hanken Grotesk", "Inter", sans-serif; font-weight: 700; margin: 0 0 .6em; }
p { margin: 0 0 1em; }
main { flex: 1; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 2px #0000000d;
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 64px;
  padding: 0 24px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img { height: 48px; width: auto; object-fit: contain; }
.nav-desktop { display: flex; align-items: center; gap: 32px; margin-right: 40px; }
.nav-desktop a { font-size: 14px; color: #4b5563; }
.nav-desktop a:hover { color: #111; }
.nav-desktop a.is-active { color: var(--blue); font-weight: 700; border-bottom: 2px solid var(--blue); padding-bottom: 2px; }
.langs { display: flex; gap: 8px; padding-left: 24px; margin-left: 8px; border-left: 1px solid #e5e7eb; }
.lang {
  width: 32px; height: 28px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.lang.is-on { background: #eff6ff; border-color: #3b82f6; box-shadow: 0 0 0 2px #3b82f633; }
.menu-btn { display: none; background: none; border: 0; cursor: pointer; }

.hero { position: relative; min-height: 420px; overflow: hidden; background: #111; }
.hero-video, .hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-video { z-index: 1; }
.hero-fallback { z-index: 0; }
.hero-card {
  position: relative; z-index: 2;
  max-width: 576px;
  margin: 80px 0 80px 5%;
  background: var(--green);
  color: #fff;
  padding: 32px 40px;
  border-radius: 8px;
}
.hero-card h1 { font-size: clamp(22px, 3vw, 32px); line-height: 1.25; margin: 0; font-weight: 700; }

.busca { background: var(--gray); padding: 48px 0 56px; }
.busca h2 { font-size: 28px; color: #333; }
.busca-sub { color: #666; margin-bottom: 20px; }
.search-box {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #93c5fd;
  border-radius: 6px; height: 42px; padding: 0 14px; max-width: 720px;
}
.search-box input { border: 0; outline: 0; flex: 1; font: inherit; color: #1f2937; background: transparent; }
.search-box .material-symbols-outlined { color: #2563eb; font-size: 22px; }
.quick-title { margin-top: 22px; color: #666; font-size: 14px; }
.quick-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.quick-links a { color: #444; font-size: 14px; }
.quick-links a:hover { color: var(--blue); text-decoration: underline; }

.segmentos { background: #fff; padding: 20px 0 36px; }
.segmentos h2, .novidades h2 { font-size: 22px; color: #333; margin-bottom: 16px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.seg-card, .news-card {
  position: relative; overflow: hidden; display: block; height: 165px; background: #ddd;
}
.seg-card img, .news-card img { width: 100%; height: 100%; object-fit: cover; }
.seg-label, .news-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 48px; display: flex; align-items: center; justify-content: center;
  background: #ffffffd1; backdrop-filter: blur(1px); padding: 0 8px;
  transition: background .2s;
}
.seg-label span, .news-label span { font-size: 14px; color: #333; }
.seg-card:hover .seg-label { background: var(--blue); }
.seg-card:hover .seg-label span { color: #fff; }
.news-card:hover .news-label span { color: var(--blue); }

.novidades { background: var(--news); padding: 28px 0 44px; }
.newsletter { background: #fff; padding: 36px 0 40px; }
.newsletter h2 { font-size: 22px; }
.news-form { display: flex; flex-wrap: wrap; gap: 10px; max-width: 480px; }
.news-form .form-msg { width: 100%; }
.news-form input {
  flex: 1; height: 42px; border: 1px solid #d1d5db; border-radius: 4px; padding: 0 12px; font: inherit;
}
.news-form button, .btn-primary {
  background: var(--blue); color: #fff; border: 0; border-radius: 4px;
  padding: 10px 18px; font: 600 14px "Work Sans", sans-serif; cursor: pointer;
}
.btn-primary:hover { background: #003870; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; border: 1px solid #fff; padding: 10px 16px; border-radius: 4px;
}
.btn-ghost.dark { color: var(--blue); border-color: var(--blue); }

.site-footer { background: var(--footer); padding: 28px 0; border-top: 1px solid #b8bcc9; }
.footer-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; gap: 40px;
}
.footer-col p { margin: 0 0 4px; font-size: 14px; color: #424751; }
.f-strong { color: #1c1b1b !important; font-weight: 700; }
.f-mail { color: var(--blue); font-weight: 700; }
.f-copy { color: #888; margin-top: 8px !important; }
.footer-col-right { text-align: right; }

.chat-fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  display: flex; align-items: center; gap: 8px;
  background: var(--blue); color: #fff; border: 0; border-radius: 999px;
  padding: 10px 16px; cursor: pointer; box-shadow: 0 8px 24px #004a9666;
  font: 600 13px "Work Sans", sans-serif;
}
.modal {
  position: fixed; inset: 0; z-index: 80;
  background: #0006; display: flex; align-items: center; justify-content: center; padding: 16px;
}
.modal[hidden] { display: none; }
.modal-card {
  background: #fff; width: min(480px, 100%); border-radius: 12px; padding: 24px; position: relative;
}
.modal-close { position: absolute; right: 12px; top: 8px; border: 0; background: none; font-size: 28px; cursor: pointer; }
.modal-lead { color: var(--muted); font-size: 14px; }
.contact-form { display: grid; gap: 10px; }
.contact-form label { display: grid; gap: 4px; font-size: 13px; font-weight: 600; }
.contact-form input, .contact-form textarea {
  font: inherit; font-weight: 400; border: 1px solid #d1d5db; border-radius: 6px; padding: 8px 10px;
}
.modal-alt { font-size: 13px; color: var(--muted); margin-top: 12px; }
.form-msg { font-size: 14px; color: #166534; }
.form-msg.is-error { color: #b91c1c; }

.catalog-page { padding: 28px 0 48px; }
.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: start; }
.filters { background: #fff; border: 1px solid #eee; border-radius: 10px; padding: 16px; }
.filters h3 { font-size: 13px; margin: 16px 0 8px; color: var(--blue); }
.filter-search { display: flex; align-items: center; gap: 6px; border: 1px solid #ddd; border-radius: 6px; padding: 6px 8px; }
.filter-search input { border: 0; outline: 0; width: 100%; font: inherit; }
.radio { display: flex; gap: 8px; align-items: center; font-size: 13px; margin: 6px 0; cursor: pointer; }
.filter-submit { width: 100%; margin-top: 16px; }
.result-count { font-size: 13px; color: var(--muted); margin-bottom: 16px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; }
.product-card { background: #fff; border: 1px solid #eee; border-radius: 0; padding: 0 0 16px; display: flex; flex-direction: column; }
.product-img { height: 160px; background: #f3f4f6; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: contain; }
.product-card h3 { font-size: 15px; margin: 8px 16px 6px; }
.product-card p { font-size: 13px; color: #4b5563; margin: 0 16px 12px; flex: 1; }
.tag {
  display: inline-block; margin: 10px 16px 0; font-size: 11px; color: #374151;
  background: #f3f4f6; padding: 2px 8px; border-radius: 4px; width: fit-content;
}
.doc-btn {
  margin: 0 16px; text-align: center; background: #376092; color: #fff;
  font-size: 12px; font-weight: 700; padding: 8px; border-radius: 4px;
}
.empty { text-align: center; padding: 60px 16px; color: #6b7280; }
.empty .material-symbols-outlined { font-size: 48px; }

.product-page { padding: 32px 0 56px; }
.back { display: inline-block; margin-bottom: 20px; color: var(--blue); font-size: 14px; }
.product-detail h1 { font-size: 28px; }
.product-hero { display: grid; grid-template-columns: 1fr 1.2fr; gap: 32px; background: #fff; padding: 24px; border-radius: 12px; }
.product-hero-img { background: #f3f4f6; display: flex; align-items: center; justify-content: center; min-height: 280px; }
.lead { font-size: 17px; color: #374151; }
.specs { display: grid; gap: 8px; margin: 20px 0; }
.specs div { display: grid; grid-template-columns: 160px 1fr; gap: 8px; background: #f3f4f6; padding: 8px 12px; font-size: 14px; }
.specs dt { color: #374151; font-weight: 600; }
.specs dd { margin: 0; color: #111827; }

.about-hero { position: relative; min-height: 520px; color: #fff; overflow: hidden; }
.about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.45); }
.about-hero-content { position: relative; padding: 72px 24px 80px; }
.badge { font-size: 12px; letter-spacing: .08em; font-weight: 700; margin-bottom: 12px; }
.about-hero h1 { font-size: clamp(28px, 4vw, 44px); max-width: 720px; }
.about-hero p { max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 28px; }
.hero-actions .btn-primary { display: inline-flex; align-items: center; gap: 6px; }
.spec-box { background: #ffffff14; border: 1px solid #ffffff33; padding: 16px 20px; max-width: 420px; backdrop-filter: blur(6px); }
.spec-box h4 { display: flex; align-items: center; gap: 6px; font-size: 14px; }
.spec-box ul { margin: 0; padding-left: 18px; font-size: 14px; }
.badge-blue { color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .08em; }
.about-who { background: #fff; padding: 56px 0; }
.about-who-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.about-who h2, .about-brands h2, .about-sectors h2, .about-why h2 { font-size: 30px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.stats strong { display: block; font-size: 22px; color: var(--blue); }
.stats span { font-size: 13px; color: #4b5563; }
.who-img img { width: 100%; height: 280px; object-fit: cover; border-radius: 8px; }
.who-cap { font-size: 14px; color: #4b5563; margin-top: 10px; }
.about-brands { background: #f8fafc; padding: 56px 0; }
.about-brands .lead, .about-sectors .lead, .about-why .lead { max-width: 720px; color: #4b5563; }
.brand-grid, .sector-grid, .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.brand-grid article, .sector-grid article, .why-grid article { background: #fff; padding: 20px; border-radius: 10px; border: 1px solid #eef2f7; }
.brand-meta { font-size: 12px; color: var(--blue); font-weight: 700; }
.brand-grid a { color: var(--blue); font-size: 14px; font-weight: 600; }
.sector-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.sector-grid .material-symbols-outlined { color: var(--blue); font-size: 32px; }
.about-sectors { background: #fff; padding: 56px 0; }
.about-why { background: #0f172a; color: #fff; padding: 56px 0; }
.about-why .lead { color: #cbd5e1; }
.why-grid article { background: #1e293b; border: 0; }
.why-grid span { font-size: 12px; color: #93c5fd; font-weight: 700; }
.about-commit { background: #004A96; color: #fff; padding: 48px 0; }
.about-commit h2 { font-size: 28px; }
.about-cta { background: #f8fafc; padding: 48px 0 64px; text-align: center; }
.about-cta .hero-actions { justify-content: center; }

.wix-page { background: #fff; }
.wix-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 28%;
  background: #111;
  overflow: hidden;
}
.wix-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.wix-about { padding: 48px 24px 72px; }
.wix-about-grid { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 48px; align-items: start; }
.wix-about-copy h1 { color: var(--blue); font-size: 32px; }
.wix-about-copy h2 { color: var(--blue); font-size: 16px; letter-spacing: .04em; margin: 28px 0 12px; }
.wix-about-copy p { color: #333; line-height: 1.7; max-width: 620px; }
.wix-about-side { display: flex; gap: 16px; align-items: flex-start; }
.wix-bar { width: 18px; height: auto; flex-shrink: 0; }
.wix-stats { list-style: none; margin: 0; padding: 0; }
.wix-stats li { font-weight: 600; color: #333; margin-bottom: 18px; }
.wix-downloads { margin-top: 40px; }
.wix-downloads h3 { color: var(--blue); font-size: 20px; }
.wix-downloads ul { list-style: none; margin: 0; padding: 0; }
.wix-downloads a { color: var(--blue); text-decoration: underline; display: inline-block; padding: 4px 0; }

.contact-page { background: #fff; }

.contact-hero {
  position: relative;
  padding: 72px 24px;
  background:
    linear-gradient(120deg, rgba(0, 74, 150, .92), rgba(0, 74, 150, .65)),
    url("https://static.wixstatic.com/media/e6a741_331a1ffce9944bb7b63fdd7bcea3096f~mv2.png") no-repeat center / cover;
  color: #fff;
  text-align: center;
}
.contact-eyebrow {
  display: inline-block;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 600;
  opacity: .85;
  margin-bottom: 12px;
}
.contact-hero h1 { font-size: 34px; margin: 0 0 12px; color: #fff; }
.contact-hero p { max-width: 640px; margin: 0 auto; color: #e8f0fb; font-size: 17px; }

.contact-section { padding: 40px 24px 80px; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: -56px 0 48px;
}
.contact-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform .18s ease, box-shadow .18s ease;
}
a.contact-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(15, 23, 42, .14); }
.contact-card-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: #e8f0fb;
  color: var(--blue);
  font-size: 22px;
  margin-bottom: 8px;
}
.contact-card-label { font-size: .78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-card-value { font-size: 17px; font-weight: 700; color: var(--text); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 40px;
  align-items: start;
}
.contact-form-card {
  background: #fff;
  border: 1px solid #eef0f4;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
  padding: 32px;
}
.contact-form-card h2 { font-size: 24px; color: var(--blue); }
.contact-intro { color: #555; max-width: 560px; }

.wix-form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wix-form label { display: grid; gap: 6px; font-size: 13px; font-weight: 600; color: #333; }
.wix-form input, .wix-form textarea {
  font: inherit; font-weight: 400; color: var(--text);
  background: #f7f8fb;
  border: 1px solid #e3e6ee;
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.wix-form input:focus, .wix-form textarea:focus {
  outline: none; border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 74, 150, .12);
}
.wix-form .btn-primary { justify-self: start; margin-top: 4px; }

.reps h2 { color: var(--blue); font-size: 20px; margin-bottom: 20px; }
.rep-group {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px;
  margin-bottom: 20px;
  background: #f7f8fb;
  border: 1px solid #eef0f4;
  border-radius: 16px;
}
.rep-flag {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}
.rep-group h3 { font-size: 15px; margin: 0 0 8px; color: var(--text); }
.rep-group p { font-size: 14px; color: #555; line-height: 1.6; margin: 0 0 10px; }
.rep-group a { color: var(--blue); font-weight: 600; }
.rep-group a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-desktop.is-open {
    display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
    background: #fff; padding: 16px; gap: 14px; border-bottom: 1px solid #eee; margin: 0;
  }
  .menu-btn { display: block; }
  .card-grid, .catalog-layout, .product-hero, .about-who-grid, .brand-grid, .why-grid, .stats,
  .wix-about-grid {
    grid-template-columns: 1fr;
  }
  .hero-card { margin: 48px 16px; }
  .footer-inner { flex-direction: column; }
  .footer-col-right { text-align: left; }
  .chat-fab span:first-child { display: none; }
  .contact-cards { grid-template-columns: 1fr; margin-top: -40px; }
  .contact-grid, .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
}
