/* ================================================================
   NAPRO — Redesign CSS  |  Novo/css/napro-redesign.css
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@500;600;700&display=swap');

/* ----------------------------------------------------------------
   TOKENS
---------------------------------------------------------------- */
:root {
  --nr-blue:   #1558d6;
  --nr-blue2:  #0f44b0;
  --nr-font:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nr-radius: 8px;
}

/* Reset Bootstrap 3's 14px base — todos os textos herdam 16px */
html { font-size: 16px; }
body { font-size: 16px; line-height: 1.6; }

/* ----------------------------------------------------------------
   HEADER BRANCO
---------------------------------------------------------------- */
.nr-hn {
  background: #ffffff !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 1px 6px rgba(0,0,0,.07) !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 9999 !important;
  font-family: var(--nr-font) !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

.nr-hn-wrap {
  display: flex !important;
  align-items: center !important;
  height: 68px !important;
  max-width: 1280px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  gap: 20px !important;
  float: none !important;
}

/* Logo */
.nr-hn-logo-link { flex-shrink: 0; text-decoration: none !important; }
.nr-hn-logo      { height: 36px; width: auto; display: block; }

/* ---- Nav horizontal ---- */
.nr-hn-nav {
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 !important;
  float: none !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  position: static !important;
}

.nr-hn-nav > li {
  position: relative !important;
  float: none !important;
  display: block !important;
  border: none !important;
  background: none !important;
}

.nr-hn-nav > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 11px;
  color: #374151 !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
  background: none !important;
  line-height: 1.4;
}

.nr-hn-nav > li > a:hover,
.nr-hn-nav > li.current > a {
  color: var(--nr-blue) !important;
  border-bottom-color: var(--nr-blue);
}

/* ---- Dropdown ---- */
.nr-hn-has-drop:hover .nr-hn-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nr-hn-drop {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 0;
  list-style: none !important;
  margin: 0 !important;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity .2s, transform .2s;
  z-index: 200;
}

.nr-hn-drop-wide {
  min-width: 380px;
  columns: 2;
  column-gap: 0;
  column-rule: 1px solid #f0f0f0;
}
.nr-hn-drop-wide li { break-inside: avoid; }

.nr-hn-drop li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  color: #374151 !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 500;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nr-hn-drop li a:hover {
  color: var(--nr-blue) !important;
  background: #f0f6ff;
}

/* Rodapé do mega-dropdown — "Ver todos os produtos" */
.nr-drop-footer {
  column-span: all !important;
  border-top: 1px solid #e5e7eb;
  margin-top: 4px;
  padding-top: 4px;
}
.nr-drop-footer a {
  color: var(--nr-blue) !important;
  font-weight: 600 !important;
  font-size: 12px !important;
  text-align: center;
  justify-content: center;
  letter-spacing: 0.03em;
}
.nr-drop-footer a:hover {
  background: #eef4ff !important;
  color: var(--nr-blue2) !important;
}

/* ---- Seletor de idioma ---- */
.nr-hn-lang {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 2px !important;
  flex-shrink: 0 !important;
  border-right: 1px solid #e5e7eb;
  padding-right: 14px;
  margin-right: 4px;
  float: none !important;
}
.nr-hn-lang-item {
  display: inline-flex !important;
  align-items: center !important;
  float: none !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #9ca3af !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 3px 6px !important;
  border-radius: 3px !important;
  line-height: 1 !important;
  background: none !important;
  border: none !important;
  transition: color .2s, background .2s;
  white-space: nowrap !important;
}
.nr-hn-lang-item:hover,
.nr-hn-lang-item.active {
  color: var(--nr-blue) !important;
  background: #f0f6ff !important;
}

/* ---- Botões CTA ---- */
.nr-hn-ctas {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-shrink: 0;
}

.nr-hn-whats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid #22c55e;
  border-radius: 6px;
  color: #16a34a !important;
  text-decoration: none !important;
  transition: background .2s, color .2s;
}
.nr-hn-whats .fa {
  font-size: 18px;
  flex-shrink: 0;
}
.nr-hn-whats-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nr-hn-whats-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
}
.nr-hn-whats-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #6b7280 !important;
  /* força cinza mesmo herdando o verde do <a> pai */
}
.nr-hn-whats:hover { background: #22c55e; }
.nr-hn-whats:hover .nr-hn-whats-label { color: #ffffff !important; }
.nr-hn-whats:hover .nr-hn-whats-num   { color: rgba(255,255,255,0.8) !important; }

.nr-hn-orc {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  background: var(--nr-blue);
  border: 1px solid var(--nr-blue);
  border-radius: 6px;
  color: #ffffff !important;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  transition: background .2s;
}
.nr-hn-orc:hover { background: var(--nr-blue2); border-color: var(--nr-blue2); }

/* ---- Hambúrguer ---- */
.nr-hn-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 17px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: auto;
  flex-shrink: 0;
}
.nr-hn-toggle span {
  display: block;
  height: 2px;
  background: #374151;
  border-radius: 2px;
}

/* ---- Gaveta mobile ---- */
.nr-hn-mob {
  display: none !important;
  position: fixed !important;
  top: 68px !important; left: 0 !important; right: 0 !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.1) !important;
  z-index: 9998 !important;
  padding: 8px 0 20px !important;
  max-height: calc(100vh - 68px) !important;
  overflow-y: auto !important;
}
.nr-hn-mob.open { display: block !important; }

/* Lista principal */
.nr-mob-list { list-style: none !important; margin: 0 !important; padding: 0 !important; }
.nr-mob-list > li { border-bottom: 1px solid #f3f4f6 !important; float: none !important; display: block !important; }

/* Links diretos (Home) */
.nr-mob-list > li > a {
  display: block !important;
  padding: 14px 24px !important;
  color: #111827 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  background: none !important;
  float: none !important;
}
.nr-mob-list > li > a:hover { color: var(--nr-blue) !important; background: #f8f9ff !important; }

/* Cabeçalho dos grupos */
.nr-mob-parent {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 14px 24px !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #111827 !important;
  cursor: pointer !important;
  user-select: none !important;
}
.nr-mob-parent:hover { background: #f8f9ff !important; color: var(--nr-blue) !important; }
.nr-mob-arrow { font-size: 11px !important; color: #9ca3af !important; transition: transform .25s !important; }
.nr-mob-has-sub.open .nr-mob-arrow { transform: rotate(180deg) !important; }

/* Submenu accordion */
.nr-mob-sub {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height .3s ease !important;
  background: #f8fafc !important;
}
.nr-mob-has-sub.open .nr-mob-sub { max-height: 1200px !important; }
.nr-mob-sub li { border-top: 1px solid #e5e7eb !important; float: none !important; display: block !important; }
.nr-mob-sub li a {
  display: block !important;
  padding: 11px 24px 11px 36px !important;
  font-size: 14px !important;
  color: #374151 !important;
  text-decoration: none !important;
  background: none !important;
  float: none !important;
}
.nr-mob-sub li a:hover { color: var(--nr-blue) !important; background: #eef2ff !important; }

/* Botão CTA no fim da gaveta */
.nr-mob-cta-item { padding: 16px 20px !important; border-bottom: none !important; }
.nr-mob-cta-btn {
  display: block !important;
  text-align: center !important;
  padding: 13px !important;
  background: var(--nr-blue) !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  text-decoration: none !important;
}
.nr-mob-cta-btn:hover { background: var(--nr-blue2) !important; color: #fff !important; }

/* ---- Cookie consent ---- */
#cookieConsent {
  display: none;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important; right: 0 !important;
  background: #1f2937 !important;
  color: #d1d5db !important;
  padding: 16px 24px !important;
  text-align: center !important;
  z-index: 99999 !important;
  font-family: var(--nr-font) !important;
  font-size: 13px !important;
  line-height: 1.6 !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 12px !important;
}
#cookieConsent a { color: #93c5fd !important; }
.nr-cookie-btns {
  display: flex !important;
  gap: 10px !important;
  justify-content: center !important;
}
#acceptCookies {
  background: var(--nr-blue) !important;
  color: #fff !important;
  border: 1px solid var(--nr-blue) !important;
  padding: 7px 20px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  transition: background .15s, border-color .15s !important;
}
#acceptCookies:hover { background: var(--nr-blue2) !important; border-color: var(--nr-blue2) !important; }
#rejectCookies {
  background: transparent !important;
  color: #cbd5e1 !important;
  border: 1px solid #475569 !important;
  padding: 7px 20px !important;
  border-radius: 5px !important;
  cursor: pointer !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  transition: border-color .15s, color .15s !important;
}
#rejectCookies:hover { border-color: #94a3b8 !important; color: #fff !important; }

/* ----------------------------------------------------------------
   SEÇÃO SOLUÇÕES / PRODUTOS
---------------------------------------------------------------- */
.nr-sol {
  background: #ffffff;
  padding: 32px 0 52px;
}
.nr-sol-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.nr-sol-header {
  text-align: center;
  margin-bottom: 40px;
}
.nr-sol-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--nr-blue);
  margin-bottom: 12px;
}
.nr-sol-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  color: #111827;
  margin: 0;
  line-height: 1.2;
}

/* ---- Card — texto sobre a foto ---- */
.nr-sol-card {
  border-radius: 12px;
  overflow: hidden;
  margin: 0 8px;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.nr-sol-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}
.nr-sol-card > a {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
  background: none !important;
  padding: 0 !important;
  border: none !important;
  position: relative;
}

/* Imagem ocupa todo o card */
.nr-sol-card-img {
  width: 100%;
  height: 340px;
  overflow: hidden;
  display: block;
}
.nr-sol-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s;
}
.nr-sol-card:hover .nr-sol-card-img img { transform: scale(1.06); }

/* Texto posicionado sobre a foto */
.nr-sol-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 18px 20px;
  background: linear-gradient(to top,
    rgba(5, 10, 24, 0.92) 0%,
    rgba(5, 10, 24, 0.55) 60%,
    transparent 100%);
}
.nr-sol-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(21,88,214,.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.nr-sol-card-icon .fa {
  font-size: 16px;
  color: #93c5fd;
}
.nr-sol-card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff !important;
  margin: 0 0 6px;
  line-height: 1.3;
}
.nr-sol-card-desc {
  font-size: 12px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
  margin: 0;
}

/* ---- CTA ---- */
.nr-sol-cta {
  text-align: center;
  margin-top: 40px;
}
.nr-sol-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 22px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 6px !important;
  color: #374151 !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  background: transparent !important;
  transition: background .2s, border-color .2s, color .2s;
}
.nr-sol-btn:hover {
  background: #f3f4f6 !important;
  border-color: #9ca3af !important;
  color: #111827 !important;
}

/* ---- Owl nav arrows ---- */
.nr-sol .owl-nav { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); pointer-events: none; }
.nr-sol .owl-prev,
.nr-sol .owl-next {
  position: absolute;
  pointer-events: all;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff !important;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background .2s, box-shadow .2s;
  border: none !important;
}
.nr-sol .owl-prev { left: -16px; }
.nr-sol .owl-next { right: -16px; }
.nr-sol .owl-prev .fa,
.nr-sol .owl-next .fa { font-size: 14px; color: #374151; }
.nr-sol .owl-prev:hover,
.nr-sol .owl-next:hover { background: var(--nr-blue) !important; box-shadow: 0 4px 16px rgba(21,88,214,.35); }
.nr-sol .owl-prev:hover .fa,
.nr-sol .owl-next:hover .fa { color: #ffffff; }
.nr-sol .owl-stage-outer { position: relative; }
.nr-sol { position: relative; overflow: visible; }
.nr-sol-inner { overflow: hidden; }

/* ---- Owl dots (fundo branco) ---- */
.nr-sol .owl-dots {
  text-align: center;
  margin-top: 28px;
}
.nr-sol .owl-dot { display: inline-block; margin: 0 4px; }
.nr-sol .owl-dot span {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  transition: background .2s;
}
.nr-sol .owl-dot.active span,
.nr-sol .owl-dot:hover span { background: var(--nr-blue); }

@media (max-width: 991px) { .nr-sol-card-img { height: 280px; } }
@media (max-width: 600px) {
  .nr-sol { padding: 24px 0 36px; }
  .nr-sol-card-img { height: 240px; }
}

/* ----------------------------------------------------------------
   BARRA DE NÚMEROS
---------------------------------------------------------------- */
.nr-stats {
  background: #0b1120 !important;
  padding: 40px 0;
}
.nr-stats-inner {
  max-width: 1280px;
  margin: 0 auto !important;
  padding: 0 24px;
  display: flex !important;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
  float: none !important;
}
.nr-stats-item {
  display: flex !important;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 180px;
  float: none !important;
}
.nr-stats-item + .nr-stats-item {
  border-left: 1px solid rgba(255,255,255,.18);
  padding-left: 40px;
}
.nr-stats-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: rgba(21,88,214,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nr-stats-icon .fa {
  font-size: 36px;
  color: #60a5fa;
}
.nr-stats-text {}
.nr-stats-num {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.nr-stats-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #60a5fa;
  margin: 4px 0 3px;
}
.nr-stats-desc {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
  margin: 0;
}

@media (max-width: 768px) {
  .nr-stats-inner { justify-content: flex-start; }
  .nr-stats-item + .nr-stats-item { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; margin-top: 4px; }
  .nr-stats-inner { flex-direction: column; gap: 20px; }
}

/* ----------------------------------------------------------------
   SOBRE A NAPRO
---------------------------------------------------------------- */
.nr-sobre {
  background: #ffffff;
  padding: 40px 0 48px;
}
.nr-sobre-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
  gap: 64px;
}
.nr-sobre-img {
  flex: 0 0 42%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,.12);
}
.nr-sobre-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nr-sobre-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nr-sobre-label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nr-blue);
  margin-bottom: 10px;
}
.nr-sobre-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin: 0 0 14px;
}
.nr-sobre-text {
  font-size: 13px;
  color: #4b5563;
  line-height: 1.65;
  margin: 0 0 6px;
}
.nr-sobre-pilares {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin: 18px 0 20px;
}
.nr-sobre-pilar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.nr-sobre-pilar-icon {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nr-sobre-pilar-icon .fa { font-size: 15px; color: var(--nr-blue); }
.nr-sobre-pilar-text {}
.nr-sobre-pilar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111827;
  display: block;
  margin-bottom: 2px;
}
.nr-sobre-pilar-desc {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.nr-sobre-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 20px !important;
  background: var(--nr-blue) !important;
  border: 2px solid var(--nr-blue) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.07em !important;
  text-transform: uppercase !important;
  transition: background .2s, border-color .2s;
}
.nr-sobre-btn:hover { background: var(--nr-blue2) !important; border-color: var(--nr-blue2) !important; color: #fff !important; }

@media (max-width: 900px) {
  .nr-sobre-inner { flex-direction: column; gap: 36px; }
  .nr-sobre-img { flex: none; width: 100%; max-height: 320px; }
}

/* ----------------------------------------------------------------
   CLIENTES
---------------------------------------------------------------- */
.nr-clientes {
  background: #f9fafb;
  padding: 28px 0;
  border-top: 1px solid #e5e7eb;
}
.nr-clientes-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.nr-clientes-label {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 28px;
}
.nr-clientes .owl-item img {
  filter: grayscale(100%);
  opacity: 0.5;
  transition: filter .3s, opacity .3s;
  max-height: 44px;
  width: auto !important;
  margin: 0 auto;
  object-fit: contain;
}
.nr-clientes .owl-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* ----------------------------------------------------------------
   CTA BANNER
---------------------------------------------------------------- */
.nr-cta {
  background: linear-gradient(135deg, #0b1a3e 0%, #1558d6 100%) !important;
  padding: 52px 0;
}
.nr-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.nr-cta-text { flex: 1; min-width: 260px; }
.nr-cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 8px;
  line-height: 1.2;
}
.nr-cta-desc {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin: 0;
  line-height: 1.6;
}
.nr-cta-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.nr-cta-btn-primary {
  display: inline-flex !important;
  align-items: center;
  padding: 13px 26px !important;
  background: #ffffff !important;
  border: 2px solid #ffffff !important;
  border-radius: 6px !important;
  color: var(--nr-blue) !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  transition: background .2s, color .2s;
}
.nr-cta-btn-primary:hover { background: #e8f0fe !important; color: var(--nr-blue2) !important; }

.nr-cta-btn-secondary {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 13px 26px !important;
  background: transparent !important;
  border: 2px solid rgba(255,255,255,.45) !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
}
.nr-cta-btn-secondary .fa { font-size: 16px; }
.nr-cta-btn-secondary:hover { background: rgba(255,255,255,.12) !important; border-color: rgba(255,255,255,.8) !important; color: #fff !important; }

/* ----------------------------------------------------------------
   FOOTER
---------------------------------------------------------------- */
.nr-footer {
  background: #080d1a !important;
  padding-top: 56px;
  font-family: var(--nr-font);
}
.nr-footer-inner {
  max-width: 1280px;
  margin: 0 auto !important;
  padding: 0 24px 48px;
  display: flex !important;
  gap: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,.08);
  float: none !important;
}
.nr-footer-bottom {
  background: #040710 !important;
  padding: 16px 0;
}
.nr-footer-col { flex: 1; min-width: 140px; }
.nr-footer-col--brand { flex: 0 0 220px; }

.nr-footer-logo { height: 36px; width: auto; display: block; margin-bottom: 16px; }

.nr-footer-desc {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin: 0 0 20px;
}
.nr-footer-social { display: flex; gap: 10px; }
.nr-footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 7px;
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.6) !important;
  font-size: 14px;
  text-decoration: none !important;
  transition: background .2s, color .2s;
}
.nr-footer-social a:hover { background: var(--nr-blue) !important; color: #ffffff !important; }

.nr-footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 16px;
}
.nr-footer-links {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nr-footer-links li { margin-bottom: 8px; }
.nr-footer-links li a {
  font-size: 13px !important;
  color: rgba(255,255,255,.45) !important;
  text-decoration: none !important;
  background: none !important;
  padding: 0 !important;
  display: inline !important;
  transition: color .2s;
}
.nr-footer-links li a:hover { color: #ffffff !important; }
.nr-footer-links li a strong { font-weight: 600; color: rgba(255,255,255,.65) !important; }

.nr-footer-contact {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.nr-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.nr-footer-contact li .fa {
  font-size: 14px;
  color: #60a5fa;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}
.nr-footer-contact li a {
  color: rgba(255,255,255,.45) !important;
  text-decoration: none !important;
  transition: color .2s;
}
.nr-footer-contact li a:hover { color: #ffffff !important; }
.nr-footer-contact li span { line-height: 1.5; }

/* Barra inferior */
.nr-footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.nr-footer-bottom-inner a {
  color: rgba(255,255,255,.3) !important;
  text-decoration: none !important;
  transition: color .2s;
}
.nr-footer-bottom-inner a:hover { color: rgba(255,255,255,.7) !important; }

@media (max-width: 768px) {
  .nr-cta-inner { flex-direction: column; align-items: flex-start; }
  .nr-footer-col--brand { flex: 0 0 100%; }
}

/* ----------------------------------------------------------------
   BANNER FIXO
---------------------------------------------------------------- */
/* ----------------------------------------------------------------
   BANNER HERO
---------------------------------------------------------------- */
.nr-banner-fixo {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.nr-banner-fixo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Overlay de texto — lado esquerdo */
.nr-banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 48px;
  width: 52%;
  background: linear-gradient(
    to right,
    rgba(4, 8, 18, 0.88) 0%,
    rgba(4, 8, 18, 0.75) 60%,
    transparent 100%
  );
  line-height: 1;
}

.nr-banner-tag {
  display: block;
  color: #f59e0b;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.nr-banner-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 14px;
}

.nr-banner-accent {
  color: #3b82f6;
}

.nr-banner-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 400px;
}

/* Botões */
.nr-banner-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.nr-banner-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--nr-blue);
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 5px;
  border: 2px solid var(--nr-blue);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.nr-banner-btn-primary:hover {
  background: var(--nr-blue2);
  border-color: var(--nr-blue2);
  color: #fff !important;
}

.nr-banner-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  background: transparent;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition: background .2s, border-color .2s;
  white-space: nowrap;
}
.nr-banner-btn-secondary .fa { font-size: 16px; }
.nr-banner-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff !important;
}

/* Responsivo */
@media (max-width: 991px) {
  .nr-banner-fixo img    { height: 340px; }
  .nr-banner-overlay     { width: 70%; padding: 0 32px; }
}

@media (max-width: 600px) {
  .nr-banner-fixo img    { height: 260px; }
  .nr-banner-overlay     { width: 100%; padding: 0 20px;
                           background: linear-gradient(to top, rgba(4,8,18,.85) 0%, rgba(4,8,18,.5) 100%); }
  .nr-banner-title       { font-size: 18px; }
  .nr-banner-desc        { display: none; }
  .nr-banner-btn-primary,
  .nr-banner-btn-secondary { padding: 8px 14px; font-size: 10px; }
}

/* ---- Responsivo ---- */

/* Tela media: comprime um pouco o nav e os botões */
@media (max-width: 1200px) {
  .nr-hn-nav > li > a { padding: 8px 8px; font-size: 12px; }
  .nr-hn-orc          { padding: 0 12px; font-size: 11px; }
  .nr-hn-whats        { padding: 6px 12px; }
  .nr-hn-whats-label  { font-size: 10.5px; }
  .nr-hn-whats-num    { font-size: 10.5px; }
}

/* Abaixo de 1020px: esconde CTAs e idioma mas mantém nav */
@media (max-width: 1020px) {
  .nr-hn-ctas  { display: none !important; }
  .nr-hn-lang  { display: none !important; }
  .nr-hn-nav > li > a { padding: 8px 7px; font-size: 11px; }
}

/* Abaixo de 860px: esconde nav também, mostra hamburger */
@media (max-width: 860px) {
  .nr-hn-nav    { display: none !important; }
  .nr-hn-toggle { display: flex !important; }
}

/* ================================================================
   MOBILE — breakpoints consolidados
   ================================================================ */

/* ---- Tablet (até 768px) ---- */
@media (max-width: 768px) {

  /* Banner */
  .nr-banner-fixo img  { height: 380px; }
  .nr-banner-overlay   { width: 85%; padding: 0 24px; justify-content: flex-end; padding-bottom: 32px; }
  .nr-banner-title     { font-size: clamp(18px, 5vw, 26px); }
  .nr-banner-desc      { font-size: 12px; }

  /* Soluções */
  .nr-sol { padding: 32px 0 28px; overflow: visible; }
  .nr-sol-inner { padding: 0 4px; overflow: visible; }
  .nr-sol-header { margin-bottom: 24px; padding: 0 20px; }
  .nr-sol-cta { margin-top: 24px; padding: 0 20px; }
  .nr-sol-card { margin: 0 6px; }
  .nr-sol-card-img { height: 380px !important; aspect-ratio: unset !important; }
  .nr-sol-card-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; background: none; }

  /* Setas dentro do card no mobile */
  .nr-sol .owl-prev { left: 10px !important; }
  .nr-sol .owl-next { right: 10px !important; }
  .nr-sol .owl-prev,
  .nr-sol .owl-next {
    background: rgba(255,255,255,.88) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.3) !important;
  }

  /* Stats */
  .nr-stats { padding: 28px 0; }
  .nr-stats-inner {
    flex-direction: column !important;
    gap: 0 !important;
  }
  .nr-stats-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    flex: none !important;
    padding: 16px 0 !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
    gap: 16px !important;
  }
  .nr-stats-item:last-child { border-bottom: none !important; }
  .nr-stats-icon { width: 48px !important; height: 48px !important; flex-shrink: 0 !important; }
  .nr-stats-icon .fa { font-size: 22px !important; }
  .nr-stats-num { font-size: 22px; }

  /* Sobre */
  .nr-sobre { padding: 32px 0 36px; }
  .nr-sobre-inner { flex-direction: column; gap: 24px; }
  .nr-sobre-img { flex: none; width: 100%; max-height: 320px; }
  .nr-sobre-img img { object-position: center top; }
  .nr-sobre-content { display: block; }
  .nr-sobre-title { font-size: clamp(20px, 5vw, 26px); margin-bottom: 10px; }
  .nr-sobre-pilares { grid-template-columns: 1fr; gap: 8px; margin: 16px 0 18px; }
  .nr-sobre-pilar { align-items: center; }
  .nr-sobre-pilar-icon { flex-shrink: 0; }
  .nr-sobre-pilar-desc { display: block; font-size: 13px; }

  /* Clientes */
  .nr-clientes { padding: 20px 0; }
  .nr-clientes-label { margin-bottom: 16px; }

  /* CTA banner */
  .nr-cta { padding: 36px 0; }
  .nr-cta-inner { flex-direction: column !important; gap: 24px; }
  .nr-cta-title { font-size: clamp(18px, 5vw, 24px); }
  .nr-cta-btns { flex-direction: column !important; width: 100%; }
  .nr-cta-btn-primary,
  .nr-cta-btn-secondary { width: 100% !important; justify-content: center !important; box-sizing: border-box; }

  /* Footer */
  .nr-footer { padding-top: 36px; }
  .nr-footer-inner {
    flex-direction: column !important;
    gap: 28px !important;
    padding-bottom: 32px;
  }
  .nr-footer-col--brand { flex: none !important; width: 100% !important; }
  .nr-footer-col { min-width: unset !important; width: 100% !important; }
  .nr-footer-bottom-inner { flex-direction: column !important; text-align: center; gap: 8px; }
}

/* ---- Mobile grande (até 600px) ---- */
@media (max-width: 600px) {

  /* Banner */
  .nr-banner-fixo img  { height: 380px; }
  .nr-banner-overlay   {
    width: 100%; padding: 0 16px 28px;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(4,8,18,.92) 0%, rgba(4,8,18,.4) 100%);
  }
  .nr-banner-title     { font-size: 20px; }
  .nr-banner-tag       { font-size: 9px; margin-bottom: 8px; }
  .nr-banner-desc      { display: block; font-size: 11px; line-height: 1.5; margin-bottom: 14px; }
  .nr-banner-ctas      { gap: 10px; }
  .nr-banner-btn-primary,
  .nr-banner-btn-secondary { padding: 9px 14px; font-size: 10px; }

  /* Soluções */
  .nr-sol-title { font-size: 20px; }
  .nr-sol-card-img { height: 360px !important; aspect-ratio: unset !important; }
  .nr-sol-card-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; background: none; }

  /* Stats — mantém coluna única com ícone+texto em linha */
  .nr-stats-inner { flex-direction: column !important; gap: 0 !important; }
  .nr-stats-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: 100% !important;
    flex: none !important;
    gap: 14px !important;
    padding: 14px 0 !important;
    border-left: none !important;
    border-bottom: 1px solid rgba(255,255,255,.1) !important;
  }
  .nr-stats-item:last-child { border-bottom: none !important; }
  .nr-stats-icon { width: 44px !important; height: 44px !important; flex-shrink: 0 !important; }
  .nr-stats-icon .fa { font-size: 20px !important; }
  .nr-stats-num  { font-size: 20px; }
  .nr-stats-label { font-size: 9px; }

  /* Header mobile */
  .nr-hn-wrap { padding: 0 16px !important; height: 60px !important; }
  .nr-hn-logo  { height: 30px; }
  .nr-hn-mob   { top: 60px !important; }

  /* Sobre */
  .nr-sobre-img { max-height: 260px; }
  .nr-sobre-img img { object-position: center top; }
  .nr-sobre-pilares { grid-template-columns: 1fr; }

  /* Footer em 2 colunas */
  .nr-footer-inner { flex-direction: row; flex-wrap: wrap; gap: 24px 32px; }
  .nr-footer-col--brand { width: 100%; flex: none; }
  .nr-footer-col { flex: 1; min-width: 130px; }
}

/* ---- Mobile pequeno (até 375px) ---- */
@media (max-width: 375px) {
  .nr-banner-title { font-size: 17px; }
  .nr-footer-inner { flex-direction: column !important; }
  .nr-footer-col   { width: 100% !important; }
  .nr-sobre-pilares { grid-template-columns: 1fr; }
}

/* ---- Paisagem em celular ---- */
@media (max-height: 500px) and (orientation: landscape) {
  /* Stats: grade 2×2 */
  .nr-stats-inner {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 0 !important;
  }
  .nr-stats-item {
    width: 50% !important;
    flex: none !important;
    border-bottom: 1px solid rgba(255,255,255,.08) !important;
    border-left: none !important;
    padding: 18px 24px !important;
  }
  .nr-stats-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.08) !important; }
  .nr-stats-item:nth-child(3),
  .nr-stats-item:nth-child(4)    { border-bottom: none !important; }

  /* Banner em paisagem */
  .nr-banner-fixo img { height: 360px; }
  .nr-banner-desc     { display: block; font-size: 11px; margin-bottom: 12px; }

  /* Sobre: imagem sem corte em paisagem */
  .nr-sobre-img { height: auto !important; max-height: none !important; }
  .nr-sobre-img img { object-fit: contain !important; width: 100% !important; height: auto !important; }

  /* Footer em paisagem: brand à esquerda (2 linhas) + 2×2 à direita */
  .nr-footer { padding-top: 20px !important; }
  .nr-footer-inner {
    display: grid !important;
    grid-template-columns: 2fr 1.3fr 1.3fr !important;
    grid-template-rows: auto auto !important;
    gap: 16px 32px !important;
    flex-direction: unset !important;
    flex-wrap: unset !important;
    padding-bottom: 16px !important;
  }
  .nr-footer-col--brand {
    grid-column: 1 !important;
    grid-row: 1 / 3 !important;
    width: auto !important;
    max-width: none !important;
    flex: none !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
  }
  .nr-footer-col--brand .nr-footer-desc { font-size: 12px !important; margin: 8px 0 10px !important; }
  .nr-footer-col--brand .nr-footer-social { margin-top: 0 !important; }
  .nr-footer-col {
    flex: unset !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
  }
  .nr-footer-col-title { font-size: 11px !important; margin-bottom: 8px !important; }
  .nr-footer-links li,
  .nr-footer-contact li { margin-bottom: 3px !important; font-size: 12px !important; }
  .nr-footer-bottom-inner { flex-direction: row !important; text-align: left !important; }
}

/* ================================================================
   PÁGINAS DE PRODUTO
   ================================================================ */

/* Oculta o CTA genérico do footer nas páginas de produto */
.nr-prod-page .nr-cta { display: none !important; }

/* ---- Hero ---- */
.nr-prod-hero {
  background: linear-gradient(135deg, #040812 0%, #0b1a3e 60%, #1558d6 100%);
  padding: 56px 0 60px;
  position: relative;
  overflow: hidden;
}
.nr-prod-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(21,88,214,.18) 0%, transparent 70%);
  pointer-events: none;
}
.nr-prod-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.nr-prod-breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  font-family: var(--nr-font);
}
.nr-prod-breadcrumb a {
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .2s;
}
.nr-prod-breadcrumb a:hover { color: #fff; }
.nr-prod-breadcrumb span { margin: 0 6px; }

.nr-prod-category {
  display: inline-block;
  background: rgba(21,88,214,.35);
  border: 1px solid rgba(21,88,214,.6);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  font-family: var(--nr-font);
}
.nr-prod-title {
  font-family: 'Montserrat', var(--nr-font);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
}
.nr-prod-title span { color: #60a5fa; }
.nr-prod-subtitle {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,.75);
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 32px;
  font-family: var(--nr-font);
}
.nr-prod-hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.nr-prod-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nr-blue);
  color: #fff !important;
  font-family: var(--nr-font);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background .2s, transform .15s;
}
.nr-prod-btn-primary:hover { background: var(--nr-blue2); transform: translateY(-1px); }
.nr-prod-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff !important;
  font-family: var(--nr-font);
  font-weight: 600;
  font-size: 13px;
  padding: 13px 24px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background .2s;
}
.nr-prod-btn-secondary:hover { background: rgba(255,255,255,.15); }
.nr-prod-btn-secondary .fa { font-size: 16px; color: #25d366; }

.nr-prod-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.4);
  color: rgba(255,255,255,.85) !important;
  font-family: var(--nr-font);
  font-weight: 500;
  font-size: 13px;
  padding: 13px 22px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background .2s, border-color .2s, color .2s;
}
.nr-prod-btn-download:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: #fff !important;
}
.nr-prod-btn-download .fa { font-size: 14px; opacity: .8; }

/* ---- Visão geral ---- */
.nr-prod-overview {
  padding: 72px 0;
  background: #fff;
}
.nr-prod-overview-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 64px;
  align-items: center;
}
.nr-prod-img-wrap {
  flex: 0 0 45%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nr-prod-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
.nr-prod-img-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: #9ca3af;
}
.nr-prod-img-ph .fa { font-size: 64px; color: #d1d5db; }
.nr-prod-img-ph span { font-size: 14px; font-family: var(--nr-font); }
.nr-prod-overview-content { flex: 1; }
.nr-prod-overview-content h2 {
  font-family: 'Montserrat', var(--nr-font);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #0b1120;
  line-height: 1.25;
  margin: 0 0 16px;
}
.nr-prod-overview-content > p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 24px;
  font-family: var(--nr-font);
}
.nr-prod-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.nr-prod-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-size: 14px;
  color: #374151;
  font-family: var(--nr-font);
  line-height: 1.5;
}
.nr-prod-highlights li .fa {
  color: var(--nr-blue);
  font-size: 15px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
  margin-top: 2px;
}
.nr-prod-ctas-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ---- Especificações ---- */
.nr-prod-specs {
  padding: 72px 0;
  background: #f8fafc;
}
.nr-prod-specs-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.nr-prod-section-title {
  font-family: 'Montserrat', var(--nr-font);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: #0b1120;
  margin: 0 0 40px;
  text-align: center;
}
.nr-prod-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--nr-blue);
  margin: 12px auto 0;
  border-radius: 2px;
}
.nr-prod-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1px;
  background: #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.nr-prod-spec-item {
  background: #fff;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nr-prod-spec-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6b7280;
  font-family: var(--nr-font);
}
.nr-prod-spec-value {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  font-family: var(--nr-font);
}

/* ---- Aplicações ---- */
.nr-prod-apps {
  padding: 72px 0;
  background: #fff;
}
.nr-prod-apps-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.nr-prod-apps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.nr-prod-app-card {
  flex: 0 0 220px;
  max-width: 240px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.nr-prod-app-card:hover {
  box-shadow: 0 8px 32px rgba(21,88,214,.1);
  transform: translateY(-4px);
}
.nr-prod-app-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--nr-blue), var(--nr-blue2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.nr-prod-app-icon .fa { font-size: 22px; color: #fff; }
.nr-prod-app-card h4 {
  font-family: 'Montserrat', var(--nr-font);
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}
.nr-prod-app-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0;
  font-family: var(--nr-font);
}

/* ---- Seção detalhe (imagem invertida) ---- */
.nr-prod-detail {
  padding: 72px 0;
  background: #f8fafc;
}
.nr-prod-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 64px;
  align-items: center;
  flex-direction: row-reverse;
}
.nr-prod-detail-img {
  flex: 0 0 42%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
}
.nr-prod-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nr-prod-detail-content { flex: 1; }
.nr-prod-detail-content h2 {
  font-family: 'Montserrat', var(--nr-font);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: #0b1120;
  margin: 0 0 16px;
}
.nr-prod-detail-content p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 20px;
  font-family: var(--nr-font);
}
.nr-prod-highlights li .fa-plus-circle { color: #6b7280; }
.nr-prod-highlights li .fa-desktop,
.nr-prod-highlights li .fa-windows,
.nr-prod-highlights li .fa-television,
.nr-prod-highlights li .fa-usb { color: #9ca3af; }

.nr-prod-detail-cols {
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 48px !important;
}
.nr-prod-detail-col { flex: 1; }
.nr-prod-detail-col h2 {
  font-family: 'Montserrat', var(--nr-font);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  color: #0b1120;
  margin: 0 0 12px;
}
.nr-prod-detail-col > p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.75;
  margin-bottom: 16px;
  font-family: var(--nr-font);
}
.nr-prod-col-subtitle {
  font-family: 'Montserrat', var(--nr-font);
  font-size: 14px;
  font-weight: 700;
  color: #374151;
  margin: 20px 0 10px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

/* Aplicações centralizadas */
.nr-prod-apps-centered {
  justify-content: center !important;
}
.nr-prod-apps-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.nr-prod-apps-btns .nr-prod-btn-secondary {
  background: transparent;
  border: 2px solid var(--nr-blue);
  color: var(--nr-blue) !important;
}
.nr-prod-apps-btns .nr-prod-btn-secondary .fa { color: #25d366; }
.nr-prod-apps-btns .nr-prod-btn-secondary:hover { background: #f0f4ff; }

/* ---- CTA final da página de produto ---- */
.nr-prod-cta-final {
  padding: 64px 0;
  background: linear-gradient(135deg, #0b1a3e 0%, #1558d6 100%);
}
.nr-prod-cta-final-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.nr-prod-cta-final-text h2 {
  font-family: 'Montserrat', var(--nr-font);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.nr-prod-cta-final-text p {
  font-size: 15px;
  color: rgba(255,255,255,.75);
  margin: 0;
  font-family: var(--nr-font);
}
.nr-prod-cta-final-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.nr-prod-cta-final .nr-prod-btn-primary {
  background: #fff;
  color: var(--nr-blue) !important;
}
.nr-prod-cta-final .nr-prod-btn-primary:hover {
  background: #f0f4ff;
}
.nr-prod-cta-final .nr-prod-btn-secondary {
  border-color: rgba(255,255,255,.4);
}

/* ---- Responsivo produto ---- */
@media (max-width: 900px) {
  .nr-prod-overview-inner { flex-direction: column; gap: 40px; }
  .nr-prod-detail-inner { flex-direction: column; gap: 40px; }
  .nr-prod-detail-cols { flex-direction: column !important; }
  .nr-prod-img-wrap { flex: none; width: 100%; }
  .nr-prod-detail-img { flex: none; width: 100%; }
  .nr-prod-hero-inner,
  .nr-prod-overview-inner,
  .nr-prod-detail-inner,
  .nr-prod-specs-inner,
  .nr-prod-apps-inner { padding: 0 24px; }
}
@media (max-width: 600px) {
  .nr-prod-hero { padding: 36px 0 40px; }
  .nr-prod-overview,
  .nr-prod-specs,
  .nr-prod-apps { padding: 48px 0; }
  .nr-prod-apps-grid { grid-template-columns: 1fr 1fr; }
  .nr-prod-hero-ctas,
  .nr-prod-ctas-inline { flex-direction: column; }
  .nr-prod-btn-primary,
  .nr-prod-btn-secondary,
  .nr-prod-btn-download { width: 100%; justify-content: center; }
}

/* ================================================
   PRODUCT PAGE — TABS (Câmara SHED e similares)
   ================================================ */

/* Overview centralizada para produtos sem imagem única */
.nr-prod-overview-centered { justify-content: center; }
.nr-prod-overview-full { max-width: 860px; }
.nr-prod-overview-full h2 { font-size: clamp(20px, 3vw, 26px); }

/* Cards de modelo (visão geral) */
.nr-prod-model-cards {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.nr-prod-model-card {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 16px;
  background: #f0f4ff;
  border: 2px solid transparent;
  border-radius: var(--nr-radius);
  text-align: center;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .15s;
}
.nr-prod-model-card:hover {
  border-color: var(--nr-blue);
  background: #e6eeff;
  transform: translateY(-2px);
}
/* App card com link */
.nr-prod-app-card--link {
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.nr-prod-app-card--link:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(21,88,214,.12);
  border-color: var(--nr-blue);
}
.nr-prod-app-card--link h4 { color: #1a2340; }
.nr-prod-app-card--link:hover h4 { color: var(--nr-blue); }
.nr-prod-app-arrow {
  font-size: 13px;
  color: var(--nr-blue);
  margin-left: 4px;
  opacity: 0;
  transition: opacity .2s;
}
.nr-prod-app-card--link:hover .nr-prod-app-arrow { opacity: 1; }

.nr-prod-model-card--static {
  cursor: default;
}
.nr-prod-model-card--static:hover {
  border-color: transparent;
  background: #f0f4ff;
  transform: none;
}
.nr-prod-model-card.active {
  border-color: var(--nr-blue);
  background: #e6eeff;
}
.nr-prod-model-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--nr-blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 18px;
}
.nr-prod-model-card strong {
  font-size: 14px;
  font-weight: 700;
  color: #1a2340;
}
.nr-prod-model-card span {
  font-size: 12px;
  color: #666;
}

/* Seção de abas */
.nr-prod-tabs-section {
  background: #fff;
  padding: 56px 0 64px;
}
.nr-prod-tabs-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Label acima das abas */
.nr-prod-tab-label {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

/* Barra de abas */
.nr-prod-tab-bar {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #e2e8f0;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.nr-prod-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  border: none;
  background: transparent;
  font-family: var(--nr-font);
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: 6px 6px 0 0;
  transition: color .2s, border-color .2s, background .2s;
}
.nr-prod-tab-btn:hover {
  color: var(--nr-blue);
  background: #f0f4ff;
}
.nr-prod-tab-btn.active {
  color: var(--nr-blue);
  border-bottom-color: var(--nr-blue);
  background: #f0f4ff;
}
.nr-prod-tab-btn .fa { font-size: 15px; }

/* Painéis */
.nr-prod-tab-panel { display: none; }
.nr-prod-tab-panel.active { display: block; }

/* Header do painel: título + botão download */
.nr-prod-tab-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
}
.nr-prod-tab-header h2 {
  margin: 0;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  color: #1a2340;
}
.nr-prod-tab-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--nr-blue);
  color: #fff !important;
  font-family: var(--nr-font);
  font-weight: 600;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .2s;
}
.nr-prod-tab-download:hover { background: var(--nr-blue2); }
.nr-prod-tab-download .fa { font-size: 14px; }

/* Layout imagem + conteúdo */
.nr-prod-tab-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 36px;
}
.nr-prod-tab-img {
  border-radius: var(--nr-radius);
  overflow: hidden;
  background: #f8fafc;
  text-align: center;
}
.nr-prod-tab-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.nr-prod-tab-img--contain img {
  object-fit: contain;
  padding: 12px;
  background: #f8fafc;
}
.nr-prod-tab-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #374151;
  margin-bottom: 16px;
}

/* Tabelas lado a lado */
.nr-prod-tab-tables {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 32px;
}
.nr-prod-table-block h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 12px;
}
.nr-prod-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.nr-prod-spec-table thead th {
  background: var(--nr-blue);
  color: #fff;
  padding: 9px 12px;
  text-align: left;
  font-weight: 600;
}
.nr-prod-spec-table tbody td {
  padding: 9px 14px;
  border-bottom: 1px solid #e2e8f0;
  color: #374151;
  vertical-align: top;
}
.nr-prod-spec-table tbody tr:nth-child(even) td { background: #f8fafc; }
.nr-prod-spec-table tbody td:first-child { font-weight: 500; color: #1a2340; width: 45%; }

/* Aplicações */
.nr-prod-tab-apps { margin-top: 4px; }
.nr-prod-tab-apps h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 12px;
}
.nr-prod-tab-apps-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.nr-prod-tab-apps-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 15px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}
.nr-prod-tab-apps-list .fa {
  color: var(--nr-blue);
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 3px;
}

/* Título de seção interno (OBD) */
.nr-prod-obd-section-title {
  font-size: clamp(17px, 2.2vw, 21px);
  font-weight: 700;
  color: #1a2340;
  margin-bottom: 20px;
}
.nr-prod-obd-table td:first-child { width: 28%; font-weight: 600; color: #1a2340; }

/* CTA final da SHED */
.nr-prod-apps-sub {
  text-align: center;
  color: rgba(255,255,255,.8);
  font-size: 15px;
  margin-bottom: 28px;
  margin-top: -8px;
}

/* ---- Responsivo abas ---- */
@media (max-width: 900px) {
  .nr-prod-tabs-inner { padding: 0 24px; }
  .nr-prod-tab-layout { grid-template-columns: 1fr; gap: 24px; }
  .nr-prod-tab-img img { height: 220px; }
  .nr-prod-tab-tables { grid-template-columns: 1fr; gap: 20px; }
  .nr-prod-tab-apps-list { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nr-prod-tab-btn { padding: 10px 14px; font-size: 13px; }
  .nr-prod-tab-btn .fa { display: none; }
  .nr-prod-tab-header { flex-direction: column; align-items: flex-start; }
  .nr-prod-tab-download { width: 100%; justify-content: center; }
  .nr-prod-model-cards { gap: 10px; }
  .nr-prod-model-card { flex: 1 1 120px; padding: 14px 10px; }
}
