/* ═══════════════════════════════════════════════════════════════
   JB Soluções Financeiras — estilos do site (fonte única, após style.css)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --nn-border-subtle: rgba(10, 10, 10, 0.1);
  --nn-border-medium: rgba(10, 10, 10, 0.14);
  --nn-surface-glass: rgba(255, 255, 255, 0.55);
  --nn-text-muted: #5c6378;
  --nn-text-trust: #6a7185;
  --nn-ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --nn-ease-smooth: cubic-bezier(0.45, 0.05, 0.25, 1);
  --nn-hero-accent-gradient: linear-gradient(118deg,
      var(--nn-blue) 0%,
      #ffca28 18%,
      #ffd04a 34%,
      #f5a623 52%,
      #ffc947 68%,
      #d48600 84%,
      var(--nn-blue) 100%);
  --nn-hero-accent-gradient-dark: linear-gradient(118deg,
      #ffca28 0%,
      #ffd04a 22%,
      var(--nn-orange) 48%,
      #ffc947 70%,
      #f5a623 88%,
      #ffca28 100%);
  --nn-section-bg: linear-gradient(180deg, #fffdf8 0%, #fff9ee 55%, #fff6e6 100%);
  --nn-section-bg-dark: linear-gradient(180deg, #141414 0%, #0f0f0f 55%, #0a0a0a 100%);
  --nn-navbar-scrolled: rgba(255, 253, 248, 0.97);
  --nn-navbar-scrolled-dark: rgba(10, 10, 10, 0.94);
  --nn-title-accent-gradient: linear-gradient(105deg, #0a0a0a 0%, #f5a623 45%, #ffd04a 100%);
  --nn-title-accent-gradient-dark: linear-gradient(105deg, #ffca28 0%, var(--nn-orange) 50%, #ffd04a 100%);
}

/* Gradiente navy + verde — destaques em títulos de seção */
.nn-diferenciais__title span,
.nn-depoimentos__title span,
.nn-maricar__title span,
.nn-momentos__title span,
.nn-humano__title span,
.nn-reels__title span,
.nn-story-head h2 span,
.nn-sobre .saas-features-content .saas-section-title h2 span,
.nn-faq .saas-section-title h2 span,
.saas-faq-area .saas-section-title h2 span {
  background: var(--nn-title-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

body.body_dark .nn-diferenciais__title span,
body.body_dark .nn-depoimentos__title span,
body.body_dark .nn-maricar__title span,
body.body_dark .nn-momentos__title span,
body.body_dark .nn-humano__title span,
body.body_dark .nn-reels__title span,
body.body_dark .nn-story-head h2 span,
body.body_dark .nn-sobre .saas-features-content .saas-section-title h2 span,
body.body_dark .nn-faq .saas-section-title h2 span,
body.body_dark .saas-faq-area .saas-section-title h2 span {
  background-image: var(--nn-title-accent-gradient-dark);
}

@keyframes nn-hero-gradient-shimmer {
  0% {
    background-position: 0% 46%;
    animation-timing-function: cubic-bezier(0.33, 0, 0.2, 1);
  }

  20% {
    background-position: 24% 58%;
    animation-timing-function: cubic-bezier(0.4, 0, 0.55, 1);
  }

  45% {
    background-position: 62% 36%;
    animation-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  72% {
    background-position: 92% 54%;
    animation-timing-function: cubic-bezier(0.33, 0, 0.67, 1);
  }

  100% {
    background-position: 0% 46%;
  }
}

/* ── Navbar ── */
.header-menu.header-menu-2.nn-header--light-look {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: transparent;
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    backdrop-filter 0.25s ease;
}

.header-menu.header-menu-2.nn-header--light-look.navbar_fixed {
  background: var(--nn-navbar-scrolled);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nn-border-subtle);
  box-shadow: 0 4px 20px rgba(8, 0, 102, 0.06);
}

.header-menu.header-menu-2 .menu>.nav-item>.nav-link.active::before,
.header-menu.header-menu-2 .menu>.nav-item>.nav-link::before {
  content: none;
  display: none;
}

.nn-nav-simple {
  position: relative;
}

.nn-nav-simple > .nav-item + .nav-item {
  margin-left: 4px;
}

.header-menu.header-menu-2 .nn-nav-simple > .nav-item {
  padding: 18px 0;
}

.header-menu.header-menu-2 .nn-nav-simple > .nav-item > .nav-link {
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #5c6378;
  transition: color 0.2s ease;
}

.header-menu.header-menu-2 .nn-nav-simple > .nav-item > .nav-link.active {
  color: var(--nn-orange);
}

.nn-nav-indicator {
  position: absolute;
  left: 0;
  bottom: 16px;
  height: 2px;
  border-radius: 99px;
  background: var(--nn-orange);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.28s var(--nn-ease-out-expo),
    width 0.28s var(--nn-ease-out-expo),
    opacity 0.2s ease;
}

.nn-nav-indicator.is-on {
  opacity: 1;
}

.nn-navbar__tools {
  flex-shrink: 0;
}

.header-menu.header-menu-2 .nn-navbar__cta.is-current {
  box-shadow: 0 0 0 2px rgba(245, 166, 35, 0.28);
}

#inicio,
#sobre,
#linhas-credito,
#faq,
#solicitar-simulacao {
  scroll-margin-top: 112px;
}

.header-menu.header-menu-2 .nn-navbar__cta {
  background-color: var(--nn-orange);
  border: none;
  box-shadow: none;
}

.header-menu.header-menu-2 .nn-navbar__cta::before {
  background-color: #171d24;
}

.header-menu.header-menu-2 .nn-navbar__cta:hover {
  background-color: var(--nn-orange);
}

/* Hambúrguer mobile — ícone limpo */
.nn-navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
}

.nn-navbar-toggler__bar {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: background 0.2s ease;
}

.nn-navbar-toggler__bar::before,
.nn-navbar-toggler__bar::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.22s ease, top 0.22s ease;
}

.nn-navbar-toggler__bar::before {
  top: -7px;
}

.nn-navbar-toggler__bar::after {
  top: 7px;
}

.nn-navbar-toggler.is-open .nn-navbar-toggler__bar {
  background: transparent;
}

.nn-navbar-toggler.is-open .nn-navbar-toggler__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nn-navbar-toggler.is-open .nn-navbar-toggler__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-menu.header-menu-2.nn-header--light-look.navbar_fixed .nn-navbar-toggler {
  color: var(--secondary_color);
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look.navbar_fixed .nn-navbar-toggler {
  color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 991px) {
  .header-menu.header-menu-2.nn-header--light-look .nn-navbar .container {
    position: relative;
  }

  .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-brand {
    margin-left: 0 !important;
  }

  .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse.show {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block !important;
    padding: 12px 16px 20px !important;
    background: var(--nn-navbar-scrolled) !important;
    border-bottom: 1px solid var(--nn-border-subtle);
    box-shadow: 0 16px 40px rgba(8, 0, 102, 0.1);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }

  .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse .menu {
    padding: 0 !important;
  }

  .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse .menu>.nav-item {
    padding: 0 !important;
    border-bottom: 1px solid rgba(8, 0, 102, 0.06) !important;
  }

  .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse .menu>.nav-item+.nav-item {
    margin-left: 0 !important;
  }

  .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse .menu>.nav-item>.nav-link {
    padding: 12px 4px;
    font-size: 15px;
    color: #5c6378 !important;
  }

  .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse .menu>.nav-item>.nav-link.active {
    color: var(--nn-orange) !important;
  }

  .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse .nn-navbar__cta {
    width: 100%;
    justify-content: center;
    margin: 8px 0 0 !important;
  }

  .nn-nav-indicator {
    display: none;
  }

  .nn-navbar__tools {
    width: 100%;
    padding-top: 8px;
  }
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look:not(.navbar_fixed) {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look.navbar_fixed {
  background: var(--nn-navbar-scrolled-dark) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35) !important;
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse.show {
  background: var(--nn-navbar-scrolled-dark) !important;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse .menu>.nav-item {
  border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse .menu>.nav-item>.nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look .nn-navbar .navbar-collapse .menu>.nav-item>.nav-link.active {
  color: var(--nn-orange) !important;
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look .nn-navbar .menu>.nav-item>.nav-link {
  color: rgba(255, 255, 255, 0.78);
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look .nn-navbar .menu>.nav-item>.nav-link.active {
  color: var(--nn-orange);
}

/* ── Hero ── */
.banner-saas-area {
  padding-top: 148px;
  padding-bottom: 80px;
}

.nn-hero-badge {
  display: inline-block;
  margin-bottom: 35px;
  padding: 11px 16px 10px;
  border-radius: 12px;
  border: 1px solid rgba(245, 166, 35, 0.16);
  background: rgba(255, 255, 255, 0.88);
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: var(--nn-blue);
  box-shadow: none;
}

.nn-hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 62px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -2px;
  color: var(--secondary_color);
}

.nn-hero-title__line {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

.nn-hero-title__accent {
  display: inline-block;
  padding-bottom: 0.02em;
  background-image: var(--nn-hero-accent-gradient);
  background-size: 280% 280%;
  background-repeat: repeat;
  background-position: 0% 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: nn-hero-gradient-shimmer 14s linear infinite;
}

.nn-hero-lead {
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--nn-text-muted);
}

.nn-hero-text {
  max-width: 620px;
  margin: 0 auto 32px;
}

.nn-hero-actions {
  gap: 12px;
  margin-top: 4px;
}

.banner-saas-area .nn-hero-actions .theme-btn {
  margin: 0;
  min-width: 200px;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 500;
  box-shadow: none;
}

.banner-saas-area .nn-hero-actions .theme-btn:not(.nn-hero-btn-secondary) {
  background-color: var(--nn-orange);
  border: none;
}

.banner-saas-area .nn-hero-btn-secondary {
  border: 1px solid var(--nn-border-medium);
  background: transparent;
  color: var(--nn-blue);
}

.banner-saas-area .nn-hero-btn-secondary:hover {
  color: #fff;
  border-color: var(--nn-orange);
  background-color: var(--nn-orange);
}

/* ── Seções ── */
.nn-linhas-credito,
.nn-como-funciona,
.nn-sim-section {
  background: var(--nn-section-bg);
}

.nn-story-panel {
  position: relative;
  border-color: rgba(8, 0, 102, 0.08);
  box-shadow: 0 10px 32px rgba(8, 0, 102, 0.06);
}

.nn-linhas-credito__grid {
  max-width: 1140px;
  margin: 0 auto;
}

.nn-linhas-credito__cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.nn-linhas-credito__cards .nn-linhas-credito__item:nth-child(-n + 3) {
  grid-column: span 2;
}

.nn-linhas-credito__cards .nn-linhas-credito__item:nth-child(4) {
  grid-column: 2 / 4;
}

.nn-linhas-credito__cards .nn-linhas-credito__item:nth-child(5) {
  grid-column: 4 / 6;
}

@media (max-width: 991px) {
  .nn-linhas-credito__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .nn-linhas-credito__cards .nn-linhas-credito__item:nth-child(-n + 3),
  .nn-linhas-credito__cards .nn-linhas-credito__item:nth-child(4),
  .nn-linhas-credito__cards .nn-linhas-credito__item:nth-child(5) {
    grid-column: auto;
  }

  .nn-linhas-credito__cards .nn-linhas-credito__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .nn-linhas-credito__cards {
    grid-template-columns: 1fr;
  }
}

.nn-linhas-credito__foot {
  margin-top: clamp(28px, 4vw, 40px);
}



.nn-bancos-marquee-wrap {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* ── Scroll reveal por item (moderno) ── */
.nn-reveal-section [data-nn-reveal] {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.85s var(--nn-ease-out-expo),
    transform 0.85s var(--nn-ease-out-expo),
    filter 0.85s var(--nn-ease-out-expo);
  transition-delay: calc(var(--nn-reveal-i, 0) * 90ms);
  will-change: opacity, transform, filter;
}

.nn-reveal-section.is-visible [data-nn-reveal] {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* legado ScrollReveal (componentes isolados) */
.nn-scroll-reveal {
  opacity: 0;
  transition: opacity 0.9s var(--nn-ease-out-expo);
  transition-delay: var(--nn-reveal-delay, 0ms);
}

.nn-scroll-reveal--rise {
  transform: translateY(24px);
  transition:
    opacity 0.85s var(--nn-ease-out-expo),
    transform 0.85s var(--nn-ease-out-expo);
}

.nn-scroll-reveal--fade {
  transform: none;
}

.nn-scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Formulário — layout fino, sem bordas ── */
.nn-sim-section {
  border-top: none !important;
}

.nn-sim-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 32px);
  border-radius: 18px;
  border: 1px solid rgba(8, 0, 102, 0.08);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 40px rgba(8, 0, 102, 0.06);
}

.nn-sim-form-wrap::before,
.nn-sim-panel::before {
  display: none !important;
}

.nn-sim-form__group {
  margin-bottom: 32px;
  padding-bottom: 0;
  border-bottom: none !important;
}

.nn-sim-form__group-title {
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-sim-form__field {
  margin-bottom: 0;
}

.nn-sim-form__label {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--nn-text-muted);
}

.nn-sim-form .nn-sim-form__control {
  border: none !important;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  background: rgba(8, 0, 102, 0.04);
  box-shadow: none !important;
  transition: background 0.2s, outline 0.2s;
}

.nn-sim-form select.nn-sim-form__control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23080066' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.nn-sim-form .nn-sim-form__control::placeholder {
  color: rgba(92, 99, 120, 0.55);
}

.nn-sim-form .nn-sim-form__control:focus {
  outline: 2px solid rgba(245, 166, 35, 0.35);
  outline-offset: 0;
  background: rgba(245, 166, 35, 0.06);
  box-shadow: none !important;
}

.nn-sim-form .nn-sim-form__control.is-invalid,
.nn-sim-form.was-validated .nn-sim-form__control:invalid {
  outline: 2px solid rgba(220, 53, 69, 0.35);
  background: rgba(220, 53, 69, 0.04);
}

.nn-sim-form .invalid-feedback {
  margin-top: 6px;
  font-size: 12px;
}

.nn-sim-form__accept {
  margin-top: 24px;
  margin-bottom: 24px;
}

.nn-sim-form__accept-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin: 0;
}

.nn-sim-form__accept-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.nn-sim-form__accept-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 6px;
  background: rgba(8, 0, 102, 0.06);
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
}

.nn-sim-form__accept-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s ease;
}

.nn-sim-form__accept-input:checked+.nn-sim-form__accept-box {
  background: var(--nn-orange);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.nn-sim-form__accept-input:checked+.nn-sim-form__accept-box::after {
  transform: rotate(45deg) scale(1);
}

.nn-sim-form__accept-input:focus-visible+.nn-sim-form__accept-box {
  outline: 2px solid var(--nn-orange);
  outline-offset: 2px;
}

.nn-sim-form__accept-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--nn-text-muted);
}

.nn-sim-form__accept-text a {
  color: var(--nn-blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nn-sim-form__accept-text a:hover {
  color: var(--nn-orange);
}

.nn-sim-form__accept--invalid .nn-sim-form__accept-box {
  outline: 2px solid rgba(220, 53, 69, 0.45);
}

.nn-sim-form__accept-error {
  margin: 8px 0 0 32px;
  font-size: 12px;
  color: #dc3545;
}

.nn-sim-form__submit {
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 28px;
  letter-spacing: 0.01em;
}

body.body_dark .nn-sim-form-wrap {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

/* ── Mapa / localização ── */
.nn-mapa {
  position: relative;
  padding: clamp(48px, 7vw, 72px) 0 clamp(52px, 7vw, 80px);
  background: #0e0c0b;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.nn-mapa::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 45% at 18% 0%, rgba(245, 166, 35, 0.1), transparent 62%);
  pointer-events: none;
}

.nn-mapa .container {
  position: relative;
  z-index: 1;
}

.nn-mapa__head {
  max-width: 520px;
  margin: 0 auto clamp(24px, 3.5vw, 36px);
}

.nn-mapa__kicker {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-mapa__title {
  margin: 0 0 8px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #fff;
}

.nn-mapa__title span {
  color: var(--nn-orange);
}

.nn-mapa__sub {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.nn-mapa__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 0.85fr);
  gap: clamp(12px, 2vw, 18px);
  align-items: stretch;
}

.nn-mapa__layout--solo {
  grid-template-columns: 1fr;
}

.nn-mapa__layout--solo .nn-mapa__frame {
  min-height: clamp(320px, 42vw, 420px);
}

.nn-mapa__frame {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 34vw, 360px);
  border-radius: 8px;
  background: #1a1816;
}

.nn-mapa__frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.nn-mapa__photo {
  position: relative;
  overflow: hidden;
  min-height: inherit;
  border-radius: 8px;
  background: #1a1816;
}

.nn-mapa__photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center top;
}

.nn-mapa__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
  margin-top: clamp(12px, 2vw, 16px);
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.nn-mapa__bar-text {
  flex: 1 1 220px;
}

.nn-mapa__info-label {
  margin: 0 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-mapa__address {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.nn-mapa__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.nn-mapa__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nn-mapa__btn--primary {
  color: #fff;
  background: var(--nn-orange);
  border: none;
}

.nn-mapa__btn--primary:hover {
  color: #fff;
  background: #e86f00;
}

.nn-mapa__btn--ghost {
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.nn-mapa__btn--ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.nn-mapa__phone {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nn-mapa__phone:hover {
  color: var(--nn-orange);
}

body.body_dark .nn-sim-form .nn-sim-form__control {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
}

body.body_dark .nn-sim-form .nn-sim-form__control:focus {
  background: rgba(245, 166, 35, 0.1);
}

body.body_dark .nn-sim-form__label {
  color: rgba(255, 255, 255, 0.55);
}

body.body_dark .nn-sim-form__accept-text {
  color: rgba(255, 255, 255, 0.6);
}

body.body_dark .nn-sim-form__accept-text a {
  color: rgba(255, 255, 255, 0.88);
}

body.body_dark .nn-sim-form__accept-box {
  background: rgba(255, 255, 255, 0.08);
}

body.body_dark .nn-sim-form select.nn-sim-form__control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ffffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
}

/* ── A JB (pilares com SVG) ── */
.nn-maricar {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(180deg, #fff 0%, #f4faf7 100%);
  overflow: hidden;
}

.nn-maricar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 166, 35, 0.08), transparent 60%);
  pointer-events: none;
}

.nn-maricar__head {
  position: relative;
  margin-bottom: 48px;
}

.nn-maricar__kicker {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-maricar__title {
  margin-bottom: 10px;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--nn-blue);
}

.nn-maricar__lead {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: var(--nn-text-muted);
}

.nn-maricar__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.nn-maricar__card {
  padding: 22px 20px 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--nn-border-subtle);
  box-shadow: 0 12px 36px rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.35s var(--nn-ease-out-expo), box-shadow 0.35s ease;
}

.nn-maricar__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(10, 10, 10, 0.1);
}

.nn-maricar__visual {
  margin: 0 auto 12px;
  max-width: 220px;
}

.nn-maricar__visual svg,
.nn-sobre__scene svg {
  display: block;
  width: 100%;
  height: auto;
}

.nn-maricar__card-title {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--nn-blue);
}

.nn-maricar__card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--nn-text-muted);
}

.nn-sobre__scene {
  width: 100%;
  max-width: 506px;
}

.nn-m-svg__panel {
  fill: rgba(245, 166, 35, 0.08);
  stroke: rgba(10, 10, 10, 0.08);
  stroke-width: 1;
}

.nn-m-svg__muted {
  fill: rgba(10, 10, 10, 0.12);
}

.nn-m-svg__chip {
  fill: rgba(245, 166, 35, 0.16);
}

.nn-m-svg__chip-fill {
  fill: var(--nn-orange, #f5a623);
}

.nn-m-svg__accent {
  fill: var(--nn-orange, #f5a623);
  color: var(--nn-orange, #f5a623);
}

.nn-m-svg__ring {
  fill: rgba(245, 166, 35, 0.14);
  stroke: rgba(245, 166, 35, 0.35);
  stroke-width: 1.5;
}

.nn-m-svg__check {
  color: var(--nn-orange, #f5a623);
  fill: none;
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: nn-m-draw 1.2s var(--nn-ease-out-expo) 0.5s forwards;
}

.nn-m-svg__line {
  fill: rgba(10, 10, 10, 0.14);
  transform-box: fill-box;
  transform-origin: left center;
  animation: nn-m-grow 0.9s var(--nn-ease-out-expo) both;
}

.nn-m-svg__line--1 { animation-delay: 0.15s; }
.nn-m-svg__line--2 { animation-delay: 0.28s; }
.nn-m-svg__line--3 { animation-delay: 0.4s; }

.nn-m-svg__bubble {
  fill: rgba(10, 10, 10, 0.06);
  stroke: rgba(10, 10, 10, 0.08);
}

.nn-m-svg__bubble--alt {
  fill: rgba(245, 166, 35, 0.12);
  stroke: rgba(245, 166, 35, 0.2);
}

.nn-m-svg__land {
  fill: rgba(245, 166, 35, 0.35);
}

.nn-m-svg__pin {
  fill: var(--nn-blue);
}

.nn-m-svg__pulse-ring {
  fill: none;
  stroke: rgba(245, 166, 35, 0.45);
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
}

.nn-m-svg__orbit {
  fill: none;
  stroke: rgba(245, 166, 35, 0.28);
  stroke-width: 1.2;
  stroke-dasharray: 8 10;
  transform-box: fill-box;
  transform-origin: center;
}

.nn-m-svg__shield {
  fill: #0a0a0a;
}

.nn-m-svg__mark {
  fill: #fff;
}

.nn-m-svg__mark--lg {
  fill: #fff;
}

.nn-m-svg__mark-disc {
  fill: #0a0a0a;
}

.nn-m-svg__arc {
  color: #f5a623;
}

.nn-m-svg__card {
  fill: #fff;
  stroke: rgba(10, 10, 10, 0.08);
  filter: drop-shadow(0 8px 18px rgba(10, 10, 10, 0.08));
}

.nn-m-svg__bob {
  animation: nn-m-bob 3.6s var(--nn-ease-smooth) infinite alternate;
}

.nn-m-svg__bob--late {
  animation-delay: 0.8s;
}

.nn-m-svg__pulse {
  animation: nn-m-pulse 2.4s ease-out infinite;
}

.nn-m-svg__pulse--late {
  animation-delay: 1.1s;
}

.nn-m-svg__spin {
  animation: nn-m-spin 22s linear infinite;
}

.nn-m-svg__spin--rev {
  animation-duration: 32s;
  animation-direction: reverse;
}

.nn-m-svg__pop {
  transform-origin: 96px 150px;
  animation: nn-m-pop 2.8s var(--nn-ease-out-expo) infinite;
}

.nn-m-svg__pop--late {
  transform-origin: 184px 142px;
  animation-delay: 0.6s;
}

@keyframes nn-m-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes nn-m-grow {
  from { transform: scaleX(0.2); opacity: 0.3; }
  to { transform: scaleX(1); opacity: 1; }
}

@keyframes nn-m-bob {
  from { transform: translateY(0); }
  to { transform: translateY(-7px); }
}

@keyframes nn-m-pulse {
  0% { transform: scale(0.85); opacity: 0.7; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.85); opacity: 0; }
}

@keyframes nn-m-spin {
  to { transform: rotate(360deg); }
}

@keyframes nn-m-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@media (max-width: 991px) {
  .nn-maricar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .nn-maricar {
    padding: 72px 0 80px;
  }

  .nn-maricar__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nn-m-svg__check,
  .nn-m-svg__line,
  .nn-m-svg__bob,
  .nn-m-svg__pulse,
  .nn-m-svg__spin,
  .nn-m-svg__pop,
  .nn-maricar__card {
    animation: none;
    transition: none;
  }
}

/* ── Por que a NN (carrossel) ── */
.nn-diferenciais {
  position: relative;
  padding: 72px 0 80px;
  background: #fff;
  overflow: hidden;
}

.nn-diferenciais::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(245, 166, 35, 0.06), transparent 60%);
  pointer-events: none;
}

.nn-diferenciais__head {
  position: relative;
  z-index: 1;
  margin-bottom: 36px;
}

.nn-diferenciais__kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-diferenciais__title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--nn-blue);
}

.nn-diferenciais__sub {
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--nn-text-muted);
}

.nn-diferenciais__strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 28px);
  max-width: 960px;
  margin: 0 auto;
}

.nn-diferenciais__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px 8px;
}

.nn-diferenciais__item + .nn-diferenciais__item {
  border-left: 1px solid rgba(8, 0, 102, 0.08);
}

.nn-diferenciais__visual {
  width: 100%;
  max-width: 220px;
  margin: 0 auto 12px;
}

.nn-diferenciais__visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.nn-diferenciais__item-title {
  margin: 0 0 4px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--nn-blue);
}

.nn-diferenciais__item-text {
  margin: 0;
  max-width: 220px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--nn-text-muted);
}

.nn-dif-svg__panel {
  fill: rgba(245, 166, 35, 0.08);
  stroke: rgba(8, 0, 102, 0.08);
  stroke-width: 1;
}

.nn-dif-svg__muted {
  fill: rgba(8, 0, 102, 0.12);
}

.nn-dif-svg__bar {
  fill: rgba(8, 0, 102, 0.2);
}

.nn-dif-svg__bar--mid {
  fill: rgba(245, 166, 35, 0.45);
}

.nn-dif-svg__bar--hi {
  fill: var(--nn-orange, #f5a623);
}

.nn-dif-svg__accent {
  fill: var(--nn-orange, #f5a623);
  color: var(--nn-orange, #f5a623);
}

.nn-dif-svg__accent-ring {
  fill: rgba(245, 166, 35, 0.15);
  stroke: rgba(245, 166, 35, 0.35);
  stroke-width: 1.5;
}

.nn-dif-svg__check {
  color: var(--nn-orange, #f5a623);
}

.nn-dif-svg__bubble {
  fill: rgba(8, 0, 102, 0.06);
  stroke: rgba(8, 0, 102, 0.08);
  stroke-width: 1;
}

.nn-dif-svg__bubble--alt {
  fill: rgba(245, 166, 35, 0.1);
  stroke: rgba(245, 166, 35, 0.2);
}

.nn-dif-svg__axis {
  fill: rgba(10, 10, 10, 0.12);
}

.nn-dif-svg__line {
  color: #f5a623;
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: nn-dif-draw-line 2.4s var(--nn-ease-out-expo) 0.4s infinite alternate;
}

.nn-dif-svg__grow {
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: nn-dif-grow 2.6s ease-in-out infinite alternate;
}

.nn-dif-svg__bar--mid.nn-dif-svg__grow {
  animation-delay: 0.18s;
}

.nn-dif-svg__bar--hi.nn-dif-svg__grow {
  animation-delay: 0.36s;
}

.nn-dif-svg__pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: nn-dif-pulse 2.4s ease-out infinite;
}

.nn-dif-svg__check {
  stroke-dasharray: 28;
  stroke-dashoffset: 28;
  animation: nn-dif-draw-check 1.4s var(--nn-ease-out-expo) 0.5s infinite alternate;
}

.nn-dif-svg__bob {
  animation: nn-dif-bob 3.2s ease-in-out infinite alternate;
}

.nn-dif-svg__pop {
  transform-box: fill-box;
  transform-origin: center;
  animation: nn-dif-pop 2.8s ease-in-out infinite;
}

.nn-dif-svg__pop--late {
  animation-delay: 0.5s;
}

.nn-dif-svg__dot {
  fill: #f5a623;
  animation: nn-dif-dot 1.2s ease-in-out infinite;
}

.nn-dif-svg__dot--2 {
  animation-delay: 0.18s;
}

.nn-dif-svg__dot--3 {
  animation-delay: 0.36s;
}

.nn-dif-svg__card-a {
  animation: nn-dif-bob 4s ease-in-out infinite alternate;
}

.nn-dif-svg__card-b {
  animation: nn-dif-bob 4s ease-in-out infinite alternate-reverse;
}

@keyframes nn-dif-grow {
  from { transform: scaleY(0.55); }
  to { transform: scaleY(1); }
}

@keyframes nn-dif-draw-line {
  to { stroke-dashoffset: 0; }
}

@keyframes nn-dif-draw-check {
  to { stroke-dashoffset: 0; }
}

@keyframes nn-dif-pulse {
  0% { transform: scale(0.92); opacity: 0.85; }
  70% { transform: scale(1.12); opacity: 0.35; }
  100% { transform: scale(0.92); opacity: 0.85; }
}

@keyframes nn-dif-bob {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

@keyframes nn-dif-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes nn-dif-dot {
  0%, 80%, 100% { opacity: 0.28; }
  40% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .nn-dif-svg__line,
  .nn-dif-svg__grow,
  .nn-dif-svg__pulse,
  .nn-dif-svg__check,
  .nn-dif-svg__bob,
  .nn-dif-svg__pop,
  .nn-dif-svg__dot,
  .nn-dif-svg__card-a,
  .nn-dif-svg__card-b {
    animation: none;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Depoimentos ── */
.nn-depoimentos {
  position: relative;
  padding: 88px 0 96px;
  background: var(--nn-section-bg);
  overflow: hidden;
}

.nn-depoimentos::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 15% 0%, rgba(8, 0, 102, 0.06), transparent 55%),
    radial-gradient(ellipse 45% 35% at 85% 100%, rgba(245, 166, 35, 0.08), transparent 50%);
  pointer-events: none;
}

.nn-depoimentos__head {
  position: relative;
  z-index: 1;
  margin-bottom: 44px;
}

.nn-depoimentos__kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-depoimentos__title {
  margin-bottom: 12px;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--nn-blue);
}

.nn-depoimentos__sub {
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--nn-text-muted);
}

.nn-depoimentos__slider-wrap {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.nn-depoimentos__slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
}

.nn-depoimentos__stage {
  min-width: 0;
  animation: nn-depo-enter 0.45s var(--nn-ease-out-expo) both;
}

.nn-depoimentos__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(8, 0, 102, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--nn-blue);
  cursor: pointer;
  flex-shrink: 0;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.nn-depoimentos__nav:hover {
  border-color: rgba(245, 166, 35, 0.35);
  color: var(--nn-orange);
  transform: translateY(-1px);
}

.nn-depoimentos__nav i {
  font-size: 18px;
  line-height: 1;
}

@keyframes nn-depo-enter {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nn-depoimentos__controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.nn-depoimentos__counter {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--nn-text-trust);
}

.nn-depoimentos__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nn-depoimentos__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(8, 0, 102, 0.14);
  cursor: pointer;
  transition: width 0.3s ease, background 0.3s ease, opacity 0.3s ease;
}

.nn-depoimentos__dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--nn-orange);
}

.nn-depoimentos__card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 260px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 12px;
  border: 1px solid rgba(8, 0, 102, 0.07);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 36px rgba(8, 0, 102, 0.06);
}

.nn-depoimentos__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nn-depoimentos__product {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--nn-orange);
  background: rgba(245, 166, 35, 0.1);
}

.nn-depoimentos__stars {
  display: flex;
  gap: 3px;
}

.nn-depoimentos__star {
  fill: rgba(8, 0, 102, 0.1);
}

.nn-depoimentos__star.is-filled {
  fill: rgba(245, 166, 35, 0.85);
}

.nn-depoimentos__quote {
  display: flex;
  gap: 12px;
  margin: 0;
  padding-left: 14px;
  border-left: 3px solid var(--nn-orange);
}

.nn-depoimentos__mark {
  flex-shrink: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 0.85;
  color: rgba(245, 166, 35, 0.22);
  font-family: Georgia, "Times New Roman", serif;
}

.nn-depoimentos__text {
  margin: 0;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  color: #3d4352;
  font-style: normal;
}

.nn-depoimentos__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 0, 102, 0.07);
}

.nn-depoimentos__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--nn-blue);
  background: rgba(8, 0, 102, 0.06);
}

.nn-depoimentos__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.nn-depoimentos__name {
  font-style: normal;
  font-size: 15px;
  font-weight: 700;
  color: var(--nn-blue);
}

.nn-depoimentos__role {
  font-size: 13px;
  line-height: 1.4;
  color: var(--nn-text-trust);
}

/* ── Footer profissional ── */
.nn-footer {
  background: #0f0e12;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 56px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.nn-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 48px);
  padding-bottom: 40px;
}

.nn-footer__logo-link {
  display: inline-block;
  margin-bottom: 14px;
}

.nn-footer__logo {
  display: block;
  width: auto;
  max-width: 200px;
  height: auto;
  max-height: 48px;
}

.nn-footer__tagline {
  max-width: 280px;
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}

.nn-footer__social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.nn-footer__social .social_instagram {
  font-size: 16px;
  color: var(--nn-orange);
}

.nn-footer__social:hover {
  color: #ffd04a;
}

.nn-footer__heading {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.nn-footer__links li,
.nn-footer__contact li {
  margin-bottom: 8px;
}

.nn-footer__links a,
.nn-footer__contact a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  transition: color 0.2s;
}

.nn-footer__links a:hover,
.nn-footer__contact a:hover {
  color: #ffd04a;
}

.nn-footer__cookie-btn {
  padding: 0;
  border: 0;
  background: none;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s;
}

.nn-footer__cookie-btn:hover {
  color: #ffd04a;
}

.nn-footer__address {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.45);
}

.nn-footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.nn-footer__copy,
.nn-footer__cnpj {
  margin: 0;
}

/* ── Páginas legais ── */
.nn-legal {
  padding: 120px 0 80px;
  background: #fff;
  min-height: 60vh;
}

.nn-legal__container {
  max-width: 720px;
}

.nn-legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nn-orange);
}

.nn-legal__back:hover {
  color: var(--nn-blue);
}

.nn-legal__head {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--nn-border-subtle);
}

.nn-legal__logo {
  display: block;
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.nn-legal__logo--dark {
  display: none;
}

body.body_dark .nn-legal__logo--light {
  display: none;
}

body.body_dark .nn-legal__logo--dark {
  display: block;
}

.nn-legal__title {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--nn-blue);
}

.nn-legal__updated {
  margin: 0;
  font-size: 13px;
  color: var(--nn-text-trust);
}

.nn-legal__body section {
  margin-bottom: 24px;
}

.nn-legal__body h2 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: var(--nn-blue);
}

.nn-legal__body p {
  margin: 0 0 10px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--nn-text-muted);
}

.nn-legal__company {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--nn-text-muted);
}

.nn-legal__list {
  margin: 8px 0 0;
  padding-left: 1.15em;
}

.nn-legal__list li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--nn-text-muted);
}

.nn-legal__manage {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--nn-border-subtle);
}

.nn-legal__manage-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--nn-orange);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}

.nn-legal__manage-btn:hover {
  background: var(--nn-orange-dark);
  color: #fff;
}

/* ── Cookie consent (profissional) ── */
.nn-cookie {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 0, 102, 0.18);
  backdrop-filter: blur(4px);
}

.nn-cookie__panel {
  width: min(100%, 640px);
  padding: 22px 24px 20px;
  border-radius: 18px;
  border: 1px solid var(--nn-border-subtle);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 80px rgba(8, 0, 102, 0.18);
}

.nn-cookie__panel--manage {
  width: min(100%, 680px);
}

.nn-cookie__brand {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px 14px;
  align-items: center;
  margin-bottom: 14px;
}

.nn-cookie__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nn-cookie__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--nn-blue);
}

.nn-cookie__subtitle {
  margin: 2px 0 0;
  font-size: 12px;
  color: var(--nn-text-trust);
}

.nn-cookie__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--nn-orange);
  font-size: 22px;
}

.nn-cookie__text {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--nn-text-muted);
}

.nn-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.nn-cookie__actions--manage {
  margin-top: 16px;
}

.nn-cookie__btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}

.nn-cookie__btn--primary {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--nn-orange);
  color: #fff;
}

.nn-cookie__btn--primary:hover {
  background: var(--nn-orange-dark);
  color: #fff;
}

.nn-cookie__btn--ghost {
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--nn-border-medium);
  color: var(--nn-blue);
}

.nn-cookie__btn--ghost:hover {
  border-color: var(--nn-orange);
  color: var(--nn-orange);
}

.nn-cookie__btn--link {
  padding: 8px 2px 4px;
  color: var(--nn-text-trust);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  line-height: 1.35;
}

.nn-cookie__btn--link:hover {
  color: var(--nn-blue);
}

.nn-cookie__prefs {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nn-cookie__pref {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--nn-border-subtle);
  background: rgba(8, 0, 102, 0.02);
}

.nn-cookie__pref strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
  color: var(--nn-blue);
}

.nn-cookie__pref span {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: var(--nn-text-muted);
}

.nn-cookie__pref--locked {
  opacity: 0.92;
}

.nn-cookie__pill {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: var(--nn-blue);
  background: rgba(8, 0, 102, 0.08);
}

.nn-cookie__switch {
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 26px;
  cursor: pointer;
}

.nn-cookie__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.nn-cookie__switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(8, 0, 102, 0.15);
  transition: background 0.2s;
}

.nn-cookie__switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.nn-cookie__switch input:checked+span {
  background: var(--nn-orange);
}

.nn-cookie__switch input:checked+span::after {
  transform: translateX(18px);
}

.nn-cookie__switch input:focus-visible+span {
  outline: 2px solid var(--nn-orange);
  outline-offset: 2px;
}

/* ── Dark mode ── */
body.body_dark .header-menu.header-menu-2.nn-header--light-look:not(.navbar_fixed) {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  backdrop-filter: none;
}

body.body_dark .header-menu.header-menu-2.nn-header--light-look.navbar_fixed {
  background: var(--nn-navbar-scrolled-dark) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35) !important;
}

body.body_dark .banner-saas-area {
  background: var(--nn-section-bg-dark);
}

body.body_dark .nn-hero-title__line {
  color: rgba(255, 255, 255, 0.94);
}

body.body_dark .nn-hero-title__accent {
  background-image: var(--nn-hero-accent-gradient-dark);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

body.body_dark .nn-hero-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 166, 35, 0.22);
  color: rgba(240, 208, 96, 0.95);
}

body.body_dark .banner-saas-area .nn-hero-lead {
  color: rgba(255, 255, 255, 0.68);
}

body.body_dark .banner-saas-area .nn-hero-btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
}

body.body_dark .banner-saas-area .nn-hero-btn-secondary:hover {
  background-color: var(--nn-orange);
  border-color: var(--nn-orange);
  color: #0a0a0a;
}

body.body_dark .nn-linhas-credito,
body.body_dark .nn-como-funciona,
body.body_dark .nn-sim-section {
  background: linear-gradient(180deg, #12101f 0%, #141210 55%, #0e0c0b 100%);
}

body.body_dark .nn-diferenciais {
  background: linear-gradient(180deg, #0e0c0b 0%, #12101f 100%);
}

body.body_dark .nn-diferenciais__title {
  color: rgba(255, 255, 255, 0.94);
}

body.body_dark .nn-diferenciais__sub {
  color: rgba(255, 255, 255, 0.58);
}

body.body_dark .nn-diferenciais__item-title {
  color: rgba(255, 255, 255, 0.92);
}

body.body_dark .nn-diferenciais__item-text {
  color: rgba(255, 255, 255, 0.58);
}

body.body_dark .nn-diferenciais__item + .nn-diferenciais__item {
  border-left-color: rgba(255, 255, 255, 0.08);
}

body.body_dark .nn-dif-svg__panel {
  fill: rgba(245, 166, 35, 0.1);
  stroke: rgba(255, 255, 255, 0.08);
}

body.body_dark .nn-dif-svg__muted {
  fill: rgba(255, 255, 255, 0.15);
}

body.body_dark .nn-dif-svg__bar {
  fill: rgba(255, 255, 255, 0.22);
}

body.body_dark .nn-dif-svg__bubble {
  fill: rgba(255, 255, 255, 0.05);
  stroke: rgba(255, 255, 255, 0.08);
}

body.body_dark .nn-dif-svg__bubble--alt {
  fill: rgba(245, 166, 35, 0.12);
  stroke: rgba(245, 166, 35, 0.25);
}

body.body_dark .nn-depoimentos__dot {
  background: rgba(255, 255, 255, 0.18);
}

body.body_dark .nn-depoimentos__nav {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

body.body_dark .nn-depoimentos__nav:hover {
  border-color: rgba(245, 166, 35, 0.45);
  color: var(--nn-orange);
}

body.body_dark .nn-depoimentos__counter {
  color: rgba(255, 255, 255, 0.45);
}

body.body_dark .nn-depoimentos__product {
  background: rgba(245, 166, 35, 0.14);
}

body.body_dark .nn-legal {
  background: linear-gradient(180deg, #0e0c0b 0%, #12101f 100%);
}

body.body_dark .nn-legal__title,
body.body_dark .nn-legal__body h2 {
  color: rgba(255, 255, 255, 0.92);
}

body.body_dark .nn-legal__body p {
  color: rgba(255, 255, 255, 0.62);
}

body.body_dark .nn-legal__head {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.body_dark .nn-depoimentos {
  background: var(--nn-section-bg-dark);
}

body.body_dark .nn-depoimentos__title {
  color: rgba(255, 255, 255, 0.94);
}

body.body_dark .nn-depoimentos__sub {
  color: rgba(255, 255, 255, 0.62);
}

body.body_dark .nn-depoimentos__card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

body.body_dark .nn-depoimentos__text {
  color: rgba(255, 255, 255, 0.78);
}

body.body_dark .nn-depoimentos__author {
  border-top-color: rgba(255, 255, 255, 0.08);
}

body.body_dark .nn-depoimentos__name {
  color: rgba(255, 255, 255, 0.92);
}

body.body_dark .nn-depoimentos__role {
  color: rgba(255, 255, 255, 0.52);
}

body.body_dark .nn-depoimentos__star {
  fill: rgba(255, 255, 255, 0.12);
}

body.body_dark .nn-depoimentos__star.is-filled {
  fill: rgba(255, 176, 102, 0.9);
}

.nn-depoimentos__nav--mobile {
  display: none;
}

body.body_dark .nn-depoimentos__mark {
  color: rgba(245, 166, 35, 0.28);
}

body.body_dark .nn-depoimentos__quote {
  border-left-color: rgba(245, 166, 35, 0.75);
}

body.body_dark .nn-depoimentos__avatar {
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
}

body.body_dark .nn-reels,
body.body_dark .nn-maricar {
  background: linear-gradient(180deg, #0e0c0b 0%, #0c1a16 100%);
}

body.body_dark .nn-reels__title,
body.body_dark .nn-maricar__title,
body.body_dark .nn-maricar__card-title {
  color: rgba(255, 255, 255, 0.94);
}

body.body_dark .nn-maricar__lead,
body.body_dark .nn-maricar__card-text {
  color: rgba(255, 255, 255, 0.62);
}

body.body_dark .nn-reels__profile {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

body.body_dark .nn-maricar__card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

body.body_dark .nn-m-svg__card {
  fill: #122018;
  stroke: rgba(255, 255, 255, 0.08);
}

body.body_dark .nn-cookie {
  background: rgba(0, 0, 0, 0.45);
}

body.body_dark .nn-cookie__panel {
  background: rgba(18, 16, 24, 0.98);
  border-color: rgba(255, 255, 255, 0.1);
}

body.body_dark .nn-cookie__title {
  color: rgba(255, 255, 255, 0.92);
}

body.body_dark .nn-cookie__subtitle,
body.body_dark .nn-cookie__text {
  color: rgba(255, 255, 255, 0.62);
}

body.body_dark .nn-cookie__pref {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

body.body_dark .nn-cookie__pref strong {
  color: rgba(255, 255, 255, 0.9);
}

body.body_dark .nn-cookie__pref span {
  color: rgba(255, 255, 255, 0.55);
}

body.body_dark .nn-cookie__btn--primary {
  background: #f5a623;
  color: #fff;
}

body.body_dark .nn-cookie__btn--primary:hover {
  background: #d48600;
  color: #fff;
}

body.body_dark .nn-cookie__btn--ghost {
  color: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

body.body_dark .nn-cookie__btn--link {
  color: rgba(255, 255, 255, 0.78);
}

@media (prefers-reduced-motion: reduce) {
  .nn-hero-title__accent {
    animation: none;
    background-size: 100% 100%;
    background-position: 50% 50%;
  }

  .nn-reveal-section [data-nn-reveal],
  .nn-scroll-reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

@media (max-width: 991px) {
  .nn-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nn-footer__brand-col {
    grid-column: 1 / -1;
  }

  .nn-diferenciais__strip {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .nn-diferenciais__item + .nn-diferenciais__item {
    border-left: none;
    border-top: 1px solid rgba(8, 0, 102, 0.08);
    padding-top: 24px;
  }

  .nn-sim-form-wrap {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .nn-diferenciais {
    padding: 56px 0 64px;
  }

  .nn-footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .nn-footer__bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nn-cookie__brand {
    grid-template-columns: auto 1fr;
  }

  .nn-cookie__icon {
    display: none;
  }

  .nn-cookie__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nn-cookie__btn--primary,
  .nn-cookie__btn--ghost {
    width: 100%;
    text-align: center;
  }

  .banner-saas-area {
    padding-top: 108px;
    padding-bottom: 64px;
    min-height: 100svh;
  }

  .nn-hero-title {
    font-size: 46px;
    letter-spacing: -1.5px;
  }

  .nn-hero-lead {
    font-size: 16px;
    line-height: 1.6;
  }

  .nn-hero-badge {
    margin-bottom: 15px;
  }

  .banner-saas-area .nn-hero-actions .theme-btn {
    width: 100%;
    min-width: 0;
  }

  .banner-saas-area .nn-hero-actions .theme-btn+.theme-btn {
    margin-top: 10px;
  }

  .nn-sim-section {
    scroll-margin-top: 80px;
  }

  .nn-sim-form-wrap {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .nn-sim-section__top h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .nn-linhas-credito.pt-90,
  .nn-como-funciona.pt-90,
  .nn-sobre.pt-90,
  .pt-90 {
    padding-top: 3.25rem !important;
  }

  .nn-linhas-credito.pb-90,
  .nn-como-funciona.pb-90,
  .pb-90 {
    padding-bottom: 3.25rem !important;
  }

  .nn-depoimentos {
    padding: 52px 0 60px;
  }

  .nn-depoimentos__slider {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nn-depoimentos__slider > .nn-depoimentos__nav {
    display: none;
  }

  .nn-depoimentos__nav--mobile {
    display: inline-flex;
  }

  .nn-depoimentos__controls {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
  }

  .nn-depoimentos__counter {
    grid-column: 1 / -1;
    text-align: center;
  }

  .nn-mapa__layout {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .nn-mapa__frame {
    min-height: clamp(240px, 54vw, 300px);
  }

  .nn-mapa__photo {
    min-height: clamp(180px, 40vw, 220px);
  }

  .nn-mapa__bar {
    flex-direction: column;
    align-items: flex-start;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .nn-mapa__actions {
    width: 100%;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ── Página Em breve (produção / Vercel) ── */
body.nn-soon-lock {
  overflow: hidden;
}

.nn-soon {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #f7faf8;
  color: var(--nn-blue);
}

body.body_dark .nn-soon {
  background: #071018;
  color: #fff;
}

.nn-soon__scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.nn-soon__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.55;
  will-change: transform;
}

.nn-soon__orb--navy {
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  left: -12%;
  top: -18%;
  background: rgba(10, 10, 10, 0.18);
  animation: nn-soon-orb-a 18s var(--nn-ease-smooth) infinite alternate;
}

.nn-soon__orb--green {
  width: min(46vw, 460px);
  height: min(46vw, 460px);
  right: -10%;
  bottom: -16%;
  background: rgba(245, 166, 35, 0.22);
  animation: nn-soon-orb-b 16s var(--nn-ease-smooth) infinite alternate;
}

.nn-soon__orb--mid {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  left: 42%;
  top: 28%;
  background: rgba(255, 152, 0, 0.16);
  animation: nn-soon-orb-c 12s var(--nn-ease-smooth) infinite alternate;
}

body.body_dark .nn-soon__orb--navy {
  background: rgba(21, 64, 106, 0.55);
}

body.body_dark .nn-soon__orb--green {
  background: rgba(245, 166, 35, 0.28);
}

.nn-soon__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 10, 10, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 45%, #000 20%, transparent 78%);
}

body.body_dark .nn-soon__grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
}

.nn-soon__rings {
  position: absolute;
  left: 50%;
  top: 48%;
  width: min(820px, 130vw);
  height: min(820px, 130vw);
  transform: translate(-50%, -50%);
}

.nn-soon__ring {
  fill: none;
  stroke-linecap: round;
}

.nn-soon__ring--a {
  stroke: rgba(245, 166, 35, 0.28);
  stroke-width: 1.4;
  stroke-dasharray: 28 18;
  transform-origin: 400px 400px;
  animation: nn-soon-spin 28s linear infinite;
}

.nn-soon__ring--b {
  stroke: rgba(10, 10, 10, 0.12);
  stroke-width: 1;
  stroke-dasharray: 6 14;
  transform-origin: 400px 400px;
  animation: nn-soon-spin 42s linear infinite reverse;
}

.nn-soon__ring--c {
  stroke: rgba(245, 166, 35, 0.12);
  stroke-width: 0.8;
  stroke-dasharray: 2 20;
  transform-origin: 400px 400px;
  animation: nn-soon-spin 64s linear infinite;
}

body.body_dark .nn-soon__ring--a {
  stroke: rgba(255, 152, 0, 0.35);
}

body.body_dark .nn-soon__ring--b {
  stroke: rgba(255, 255, 255, 0.1);
}

.nn-soon-nav {
  background: rgba(255, 255, 255, 0.78) !important;
}

body.body_dark .nn-soon-nav {
  background: rgba(10, 22, 32, 0.82) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nn-soon-nav__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.nn-soon-nav__brand {
  margin: 0;
  cursor: default;
}

.nn-soon-nav__brand img {
  height: 52px;
  width: auto;
}

.nn-soon-nav__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.22);
  color: #d48600;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body.body_dark .nn-soon-nav__status {
  background: rgba(245, 166, 35, 0.14);
  border-color: rgba(255, 152, 0, 0.28);
  color: #ffd04a;
}

.nn-soon-nav__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f5a623;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.55);
  animation: nn-soon-pulse 2.2s ease-out infinite;
}

.nn-soon-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nn-soon-nav__date {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--nn-text-muted);
  white-space: nowrap;
}

body.body_dark .nn-soon-nav__date {
  color: rgba(255, 255, 255, 0.62);
}

.nn-soon__main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 108px 20px 48px;
}

.nn-soon__kicker,
.nn-soon__title,
.nn-soon__lead,
.nn-soon__count,
.nn-soon__when,
.nn-soon__live {
  animation: nn-soon-rise 0.9s var(--nn-ease-out-expo) both;
}

.nn-soon__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f5a623;
  animation-delay: 0.08s;
}

.nn-soon__title {
  margin: 0 0 12px;
  font-size: clamp(40px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  color: var(--nn-blue);
  animation-delay: 0.16s;
}

.nn-soon__title span {
  background: var(--nn-title-accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

body.body_dark .nn-soon__title {
  color: #fff;
}

body.body_dark .nn-soon__title span {
  background-image: var(--nn-title-accent-gradient-dark);
}

.nn-soon__lead {
  margin: 0 0 36px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--nn-text-muted);
  animation-delay: 0.24s;
}

body.body_dark .nn-soon__lead {
  color: rgba(255, 255, 255, 0.62);
}

.nn-soon__count {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(72px, 120px));
  gap: 12px;
  margin: 0 0 18px;
  padding: 0;
  animation-delay: 0.34s;
}

.nn-soon__unit {
  position: relative;
  padding: 18px 8px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--nn-border-subtle);
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.nn-soon__unit::after {
  content: "";
  position: absolute;
  inset: auto 18% 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #f5a623, transparent);
}

body.body_dark .nn-soon__unit {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.nn-soon__num {
  display: block;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--nn-blue);
  animation: nn-soon-tick 0.45s var(--nn-ease-out-expo);
}

body.body_dark .nn-soon__num {
  color: #fff;
}

.nn-soon__label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--nn-text-muted);
}

body.body_dark .nn-soon__label {
  color: rgba(255, 255, 255, 0.48);
}

.nn-soon__when,
.nn-soon__live {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--nn-text-muted);
  animation-delay: 0.44s;
}

.nn-soon__live {
  color: #f5a623;
}

body.body_dark .nn-soon__when {
  color: rgba(255, 255, 255, 0.55);
}

body.body_dark .nn-soon__live {
  color: #ffd04a;
}

.nn-soon__foot {
  position: relative;
  z-index: 1;
  padding: 0 20px 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--nn-text-muted);
}

body.body_dark .nn-soon__foot {
  color: rgba(255, 255, 255, 0.42);
}

@keyframes nn-soon-orb-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(8%, 10%) scale(1.08); }
}

@keyframes nn-soon-orb-b {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-10%, -8%) scale(1.12); }
}

@keyframes nn-soon-orb-c {
  from { transform: translate(0, 0); }
  to { transform: translate(-18%, 14%); }
}

@keyframes nn-soon-spin {
  to { transform: rotate(360deg); }
}

@keyframes nn-soon-pulse {
  0% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(245, 166, 35, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 166, 35, 0); }
}

@keyframes nn-soon-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes nn-soon-tick {
  from {
    opacity: 0.35;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .nn-soon-nav__date {
    display: none;
  }

  .nn-soon-nav__status {
    letter-spacing: 0.1em;
    padding: 5px 10px;
  }

  .nn-soon__count {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: min(420px, 100%);
  }

  .nn-soon__unit {
    border-radius: 14px;
    padding: 14px 4px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nn-soon__orb,
  .nn-soon__ring,
  .nn-soon-nav__dot,
  .nn-soon__kicker,
  .nn-soon__title,
  .nn-soon__lead,
  .nn-soon__count,
  .nn-soon__when,
  .nn-soon__live,
  .nn-soon__num {
    animation: none;
  }
}

/* ── Carrossel de momentos (após produtos) ── */
.nn-momentos {
  position: relative;
  padding: 80px 0 72px;
  background: linear-gradient(180deg, #f7faf8 0%, #fff 100%);
  overflow: hidden;
}

.nn-momentos__head {
  margin-bottom: 36px;
}

.nn-momentos__kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-momentos__title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--nn-blue);
}

.nn-momentos__sub {
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--nn-text-muted);
}

.nn-momentos__marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.nn-momentos__rail {
  display: flex;
  width: max-content;
  animation: nn-momentos-scroll 42s linear infinite;
}

.nn-momentos__marquee:hover .nn-momentos__rail {
  animation-play-state: paused;
}

.nn-momentos__group {
  display: flex;
  align-items: stretch;
  gap: 28px;
  padding-right: 28px;
}

.nn-momentos__card {
  width: min(340px, 78vw);
  padding: 8px 4px 4px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.nn-momentos__num {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #f5a623;
}

.nn-momentos__tag {
  display: inline-block;
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5a623;
}

.nn-momentos__card-title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--nn-blue);
}

.nn-momentos__card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--nn-text-muted);
}

@keyframes nn-momentos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Seção da empresa ── */
.nn-empresa {
  padding: 80px 0 96px;
  background: #f6f8fb;
}

.nn-empresa__head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.nn-empresa__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-empresa__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--nn-blue);
}

.nn-empresa__title span {
  color: var(--nn-orange);
}

.nn-empresa__lead {
  margin: 0 auto;
  max-width: 40em;
  font-size: 17px;
  line-height: 1.65;
  color: var(--nn-text-muted);
}

.nn-empresa__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.nn-empresa__fact {
  padding: 20px 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06);
}

.nn-empresa__fact-label {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-empresa__fact-value {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--nn-blue);
}

.nn-empresa__pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.nn-empresa__pillar {
  padding: 24px 24px 22px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(10, 10, 10, 0.06);
}

.nn-empresa__pillar-num {
  display: block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--nn-orange);
}

.nn-empresa__pillar h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--nn-blue);
}

.nn-empresa__pillar p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--nn-text-muted);
}

.nn-empresa__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.nn-empresa__cta {
  overflow: hidden;
}

.nn-empresa__legal {
  font-size: 14px;
  font-weight: 600;
  color: var(--nn-blue);
}

.nn-empresa__legal:hover {
  color: var(--nn-orange);
}

body.body_dark .nn-momentos {
  background: linear-gradient(180deg, #0c1a16 0%, #071018 100%);
}

body.body_dark .nn-momentos__title,
body.body_dark .nn-momentos__card-title {
  color: #fff;
}

body.body_dark .nn-momentos__sub,
body.body_dark .nn-momentos__card-text {
  color: rgba(255, 255, 255, 0.62);
}

body.body_dark .nn-momentos__card {
  background: transparent;
}

body.body_dark .nn-empresa {
  background: #071018;
}

body.body_dark .nn-empresa__title,
body.body_dark .nn-empresa__fact-value,
body.body_dark .nn-empresa__pillar h3 {
  color: #fff;
}

body.body_dark .nn-empresa__lead,
body.body_dark .nn-empresa__pillar p {
  color: rgba(255, 255, 255, 0.62);
}

body.body_dark .nn-empresa__fact,
body.body_dark .nn-empresa__pillar {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
}

body.body_dark .nn-empresa__legal {
  color: #d7f3e4;
}

@media (prefers-reduced-motion: reduce) {
  .nn-momentos__rail {
    animation: none;
  }
}

@media (max-width: 991px) {
  .nn-empresa__facts,
  .nn-empresa__pillars {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .nn-empresa__facts,
  .nn-empresa__pillars {
    grid-template-columns: 1fr;
  }
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  line-height: 1;
}

.theme-btn i.arrow_right-up {
  font-size: 14px;
  margin-left: 8px;
  line-height: 1;
  transform: none !important;
}

/* ── Faixa ticker ── */
.nn-ticker {
  overflow: hidden;
  background: #000;
}

.nn-ticker__track {
  display: flex;
  width: max-content;
  animation: nn-ticker-scroll 32s linear infinite;
}

.nn-ticker:hover .nn-ticker__track {
  animation-play-state: paused;
}

.nn-ticker__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nn-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 18px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

.nn-ticker__item--accent {
  color: #e8c547;
}

.nn-ticker__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e85a6b;
  box-shadow: 0 0 8px rgba(232, 90, 107, 0.65);
  flex-shrink: 0;
}

@keyframes nn-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Atendimento humano ── */
.nn-humano {
  padding: 72px 0 96px;
  background: #fff;
}

.nn-humano__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px 64px;
  align-items: center;
}

.nn-humano__figure {
  position: relative;
  margin: 0;
}

.nn-humano__photo {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.16);
}

.nn-humano__faces {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
}

.nn-humano__faces img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -12px;
}

.nn-humano__faces img:first-child {
  margin-left: 0;
}

.nn-humano__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-humano__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--nn-blue);
}

.nn-humano__lead {
  margin: 0 0 22px;
  max-width: 36em;
  font-size: 17px;
  line-height: 1.6;
  color: var(--nn-text-muted);
}

.nn-humano__checks {
  margin: 0 0 28px;
}

.nn-humano__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nn-humano__legal {
  display: inline-flex;
  margin-left: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nn-blue);
}

.nn-humano__legal:hover {
  color: var(--nn-orange);
}

body.body_dark .nn-humano {
  background: #071018;
}

body.body_dark .nn-humano__title {
  color: #fff;
}

body.body_dark .nn-humano__lead {
  color: rgba(255, 255, 255, 0.62);
}

body.body_dark .nn-humano__faces img {
  border-color: #0c1a16;
}

body.body_dark .nn-humano__legal {
  color: #d7f3e4;
}

@media (prefers-reduced-motion: reduce) {
  .nn-ticker__track {
    animation: none;
  }
}

@media (max-width: 767px) {
  .nn-humano__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }

  .nn-humano__copy {
    text-align: center;
  }

  .nn-humano__lead,
  .nn-humano__checks {
    margin-left: auto;
    margin-right: auto;
  }

  .nn-humano__checks li {
    text-align: left;
  }

  .nn-humano__photo {
    max-width: 420px;
    margin: 0 auto;
  }

  .nn-humano__legal {
    display: block;
    margin: 16px 0 0;
  }
}

/* ── Página 404 ── */
.nn-404 {
  padding: 148px 0 96px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: #fff;
}

.nn-404__inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.nn-404__code {
  margin: 0 0 8px;
  font-size: clamp(72px, 16vw, 120px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: rgba(245, 166, 35, 0.14);
}

.nn-404__kicker {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--nn-orange);
}

.nn-404__title {
  margin: 0 0 14px;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--nn-blue);
}

.nn-404__lead {
  margin: 0 auto 28px;
  max-width: 420px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--nn-text-muted);
}

.nn-404__logo {
  display: block;
  width: min(180px, 70vw);
  height: auto;
  margin: 0 auto 24px;
}

.nn-404__logo--dark {
  display: none;
}

body.body_dark .nn-404__logo--light {
  display: none;
}

body.body_dark .nn-404__logo--dark {
  display: block;
}

.nn-404__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.nn-404__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

body.body_dark .nn-404__legal {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.nn-404__ghost {
  font-weight: 700;
  color: var(--nn-blue);
  text-decoration: none;
}

.nn-404__ghost:hover {
  color: var(--nn-orange);
}

body.body_dark .nn-404 {
  background: #0a0a0a;
}

body.body_dark .nn-404__code {
  color: rgba(245, 166, 35, 0.22);
}

body.body_dark .nn-404__title,
body.body_dark .nn-404__ghost {
  color: #fff;
}

body.body_dark .nn-404__lead {
  color: rgba(255, 255, 255, 0.58);
}

body.body_dark .nn-404__ghost:hover {
  color: var(--nn-orange);
}

/* ── Logo JB (PNG transparente) ── */
.navbar-brand-logo-nn,
.nn-footer__logo {
  height: auto;
  width: auto;
  object-fit: contain;
}

.navbar-brand-logo-nn {
  max-height: 86px;
  max-width: min(400px, 68vw);
}

.nn-footer__logo {
  max-height: 62px;
  max-width: min(280px, 58vw);
}

/* ── Preloader Banca: círculo + spinner + logo ── */
#preloader .jb-round_spinner {
  border: 1px solid rgba(245, 166, 35, 0.18);
  border-radius: 50%;
  background-color: #fffdf8;
  box-shadow:
    0 0 80px rgba(245, 166, 35, 0.14),
    0 12px 40px rgba(10, 10, 10, 0.06);
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 0 auto;
}

#preloader .jb-round_spinner .spinner {
  animation: spinner 3s infinite linear;
  border-radius: 50%;
  border: 3px solid #f5f0e6;
  border-left-color: var(--nn-orange);
  border-top-color: var(--nn-gold-light);
  margin: 0 auto;
  position: absolute;
  inset: -40px;
}

#preloader .jb-round_spinner .spinner::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 6px solid #fff;
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.35);
  background: linear-gradient(135deg, var(--nn-gold-light) 0%, var(--nn-orange) 100%);
  position: absolute;
  right: 31px;
  top: 41px;
  border-radius: 50%;
}

#preloader .jb-round_spinner__logo {
  width: min(220px, 72%);
  height: auto;
  max-height: 72px;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

#preloader.preloader--dark .jb-round_spinner {
  border-color: rgba(255, 202, 40, 0.14);
  background-color: rgba(18, 18, 18, 0.94);
  box-shadow:
    0 0 100px rgba(245, 166, 35, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.35);
}

#preloader.preloader--dark .jb-round_spinner .spinner {
  border-color: rgba(255, 255, 255, 0.06);
  border-left-color: var(--nn-gold-light);
  border-top-color: var(--nn-orange);
}

@media (max-width: 576px) {
  #preloader .jb-round_spinner {
    width: 200px;
    height: 200px;
  }

  #preloader .jb-round_spinner .spinner {
    inset: -28px;
  }

  #preloader .jb-round_spinner .spinner::before {
    width: 14px;
    height: 14px;
    border-width: 4px;
    right: 20px;
    top: 18px;
  }

  #preloader .jb-round_spinner__logo {
    width: min(160px, 74%);
    max-height: 52px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #preloader .jb-round_spinner .spinner {
    animation: none;
  }
}

/* ── Botões JB padronizados (amarelo queimado) ── */
.theme-btn:not(.nn-hero-btn-secondary):not(.theme-btn-outlined):not(.theme-btn-alt):not(.theme-btn-primary_alt),
.header-menu.header-menu-2 .nn-navbar__cta,
.nn-humano__cta,
.nn-sim-form__submit {
  background: linear-gradient(135deg, var(--nn-gold-light) 0%, var(--nn-orange) 100%) !important;
  color: #0a0a0a !important;
  border: none !important;
  border-radius: 8px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.28);
}

.theme-btn:not(.nn-hero-btn-secondary):not(.theme-btn-outlined):not(.theme-btn-alt):not(.theme-btn-primary_alt)::before,
.header-menu.header-menu-2 .nn-navbar__cta::before {
  background-color: #0a0a0a !important;
}

.theme-btn:not(.nn-hero-btn-secondary):not(.theme-btn-outlined):not(.theme-btn-alt):not(.theme-btn-primary_alt):hover,
.header-menu.header-menu-2 .nn-navbar__cta:hover,
.nn-humano__cta:hover,
.nn-sim-form__submit:hover {
  color: #fff !important;
}

.banner-saas-area .nn-hero-btn-secondary {
  border-color: rgba(245, 166, 35, 0.35) !important;
  background: rgba(255, 255, 255, 0.65) !important;
}

.banner-saas-area .nn-hero-btn-secondary:hover {
  border-color: var(--nn-orange) !important;
  background: var(--nn-orange) !important;
  color: #0a0a0a !important;
}

body.body_dark .banner-saas-area .nn-hero-btn-secondary {
  background: rgba(255, 255, 255, 0.06) !important;
  border-color: rgba(240, 208, 96, 0.28) !important;
  color: #fff !important;
}

body.body_dark .banner-saas-area .nn-hero-btn-secondary:hover {
  background: var(--nn-orange) !important;
  color: #0a0a0a !important;
}