:root {
  --nl-primary: #004070;
  --nl-primary-light: #005a9e;
  --nl-primary-dark: #002d4f;
  --nl-white: #fefefe;
  --nl-light-bg: #f0f4f8;
  --nl-accent: #0077cc;
  --nl-text: #1f2d3d;
  --nl-muted: #5b6b7a;
  --nl-radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--nl-text);
  background: var(--nl-white);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.nl-container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* Header */
.nl-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--nl-primary);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.nl-header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nl-brand img,
.nl-brand .custom-logo {
  width: auto;
  height: 42px;
}

.nl-main-nav {
  position: absolute;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--nl-primary);
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.nl-main-nav.is-open {
  max-height: 420px;
}

.nl-nav-list {
  list-style: none;
  margin: 0;
  padding: 16px 4%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nl-nav-list a {
  color: var(--nl-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.nl-menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--nl-white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nl-menu-icon,
.nl-menu-icon::before,
.nl-menu-icon::after {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--nl-white);
  display: block;
  position: relative;
  transition: transform .2s ease;
}

.nl-menu-icon::before {
  position: absolute;
  top: -7px;
}

.nl-menu-icon::after {
  position: absolute;
  top: 7px;
}

.nl-menu-toggle.is-open .nl-menu-icon {
  background: transparent;
}

.nl-menu-toggle.is-open .nl-menu-icon::before {
  transform: rotate(45deg) translate(5px, 5px);
}

.nl-menu-toggle.is-open .nl-menu-icon::after {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Sections */
.nl-section {
  padding: 72px 0;
}

.nl-section-white {
  background: var(--nl-white);
}

.nl-section-light {
  background: var(--nl-light-bg);
}

.nl-section-primary {
  background: linear-gradient(135deg, var(--nl-primary), var(--nl-primary-dark));
  color: var(--nl-white);
}

.nl-section-title {
  margin: 0;
  text-align: center;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 800;
  color: inherit;
}

.nl-section-white .nl-section-title,
.nl-section-light .nl-section-title {
  color: var(--nl-primary);
}

.nl-section-divider {
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.9;
  margin: 12px auto 18px;
  display: block;
}

.nl-section-subtitle {
  text-align: center;
  max-width: 670px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, .8);
}

.nl-section-white .nl-section-subtitle,
.nl-section-light .nl-section-subtitle {
  color: var(--nl-muted);
}

/* Hero */
.nl-hero {
  margin-top: 74px;
  min-height: 84vh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--nl-primary), var(--nl-primary-light), var(--nl-primary-dark));
  color: var(--nl-white);
  display: flex;
  align-items: center;
  padding: 48px 0;
}

.nl-hero-overlay-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.nl-hero-shape-1 {
  width: 360px;
  height: 360px;
  top: -110px;
  right: -90px;
  background: rgba(255, 255, 255, .07);
}

.nl-hero-shape-2 {
  width: 450px;
  height: 450px;
  left: -120px;
  bottom: -150px;
  background: rgba(255, 255, 255, .04);
}

.nl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.nl-hero-photo-wrap {
  text-align: center;
}

.nl-hero-photo {
  width: min(340px, 85vw);
  height: min(430px, 95vw);
  margin: 0 auto 12px;
  border-radius: 20px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, .12);
}

.nl-hero-photo-placeholder {
  display: grid;
  place-items: center;
  font-size: 84px;
}

.nl-hero-content {
  text-align: center;
}

.nl-hero-content h1 {
  font-size: clamp(36px, 9vw, 62px);
  margin: 0 0 12px;
  line-height: 1.06;
}

.nl-hero-content p {
  margin: 0;
  font-size: clamp(18px, 4vw, 25px);
  line-height: 1.4;
  opacity: .9;
  font-style: italic;
}

/* Sobre */
.nl-about-grid {
  display: grid;
  gap: 28px;
}

.nl-about-grid p {
  line-height: 1.8;
  color: #434d59;
}

.nl-bio-wrapper {
  position: relative;
}

.nl-bio-text {
  margin: 0;
  display: grid;
  gap: 12px;
}

.nl-bio-short p,
.nl-bio-full p {
  margin: 0 0 12px;
}

.nl-bio-short p:last-child,
.nl-bio-full p:last-child {
  margin-bottom: 0;
}

.nl-bio-full {
  display: none;
}

.nl-bio-wrapper.is-expanded .nl-bio-short {
  display: none;
}

.nl-bio-wrapper.is-expanded .nl-bio-full {
  display: block;
}

.nl-bio-toggle {
  margin-top: 12px;
  border: 0;
  border-radius: 999px;
  background: var(--nl-primary);
  color: var(--nl-white);
  font: inherit;
  font-weight: 700;
  padding: 10px 18px;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}

.nl-bio-toggle:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.nl-bio-wrapper.is-expanded .nl-bio-toggle {
  background: var(--nl-primary-dark);
}

.nl-about-cards {
  display: grid;
  gap: 14px;
}

.nl-about-card {
  border-radius: var(--nl-radius);
  background: var(--nl-light-bg);
  padding: 16px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
}

.nl-about-icon {
  font-size: 30px;
}

.nl-about-card h3 {
  margin: 0;
  color: var(--nl-primary);
  font-size: 16px;
}

.nl-about-card p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Realizações */
.nl-accordion-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.nl-accordion-item {
  background: var(--nl-white);
  border-radius: var(--nl-radius);
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  padding: 18px;
  cursor: pointer;
}

.nl-accordion-item:focus-visible {
  outline: 3px solid rgba(0, 119, 204, .35);
}

.nl-accordion-item.is-open {
  border-color: var(--nl-primary);
  box-shadow: 0 8px 30px rgba(0, 64, 112, .15);
}

.nl-accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nl-accordion-header h3 {
  margin: 0;
  color: var(--nl-primary);
}

.nl-accordion-icon {
  font-size: 34px;
}

.nl-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.nl-accordion-content p {
  margin: 14px 0 0;
  color: #52606e;
  line-height: 1.75;
}

.nl-accordion-item.is-open .nl-accordion-content {
  max-height: 1200px;
}

/* Notícias */
.nl-news-grid {
  display: grid;
  gap: 20px;
}

.nl-news-card {
  border-radius: var(--nl-radius);
  overflow: hidden;
  background: var(--nl-light-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.nl-news-thumb {
  height: 130px;
  background: linear-gradient(135deg, var(--nl-primary), var(--nl-primary-light));
  display: grid;
  place-items: center;
}

.nl-news-thumb span {
  font-size: 46px;
}

.nl-news-body {
  padding: 18px;
}

.nl-news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.nl-news-date {
  color: var(--nl-accent);
  font-size: 13px;
  font-weight: 600;
}

.nl-news-type {
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
}

.nl-news-type.is-article {
  background: #e8f4fd;
  color: var(--nl-primary);
}

.nl-news-type.is-news {
  background: #e8f8e8;
  color: #2d7a2d;
}

.nl-news-body h3 {
  margin: 0 0 8px;
  color: var(--nl-primary);
  font-size: 18px;
}

.nl-news-body p {
  margin: 0;
  color: #617182;
  line-height: 1.65;
}

.nl-news-read-more {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: var(--nl-primary);
  color: var(--nl-white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 14px;
  transition: transform .2s ease, opacity .2s ease;
}

.nl-news-read-more:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.nl-news-grid.is-loading {
  opacity: .6;
  pointer-events: none;
  transition: opacity .2s ease;
}

.nl-news-pagination {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nl-news-page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(0, 64, 112, .35);
  background: rgba(0, 64, 112, .06);
  color: var(--nl-primary);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.nl-news-page-btn:hover:not(:disabled) {
  background: rgba(0, 64, 112, .14);
  transform: translateY(-1px);
}

.nl-news-page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.nl-news-page-indicator {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
  color: var(--nl-primary);
}

/* Single notícia */
.nl-news-single-page {
  margin-top: 74px;
  padding: 36px 0 72px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.nl-news-single-card {
  background: var(--nl-white);
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(0, 64, 112, .1);
  padding: 24px;
}

.nl-news-back-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nl-primary);
  color: var(--nl-white);
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 10px 16px;
  margin-bottom: 18px;
  transition: opacity .2s ease, transform .2s ease;
}

.nl-news-back-home:hover {
  opacity: .92;
  transform: translateY(-1px);
}

.nl-news-single-header h1 {
  margin: 8px 0 0;
  color: var(--nl-primary);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.2;
}

.nl-news-single-content {
  margin-top: 22px;
  color: #32465a;
  line-height: 1.8;
}

.nl-news-single-content p:first-child {
  margin-top: 0;
}

.nl-news-share-box {
  margin-top: 30px;
  border-top: 1px solid #dde6ef;
  padding-top: 18px;
}

.nl-news-share-box h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--nl-primary);
}

.nl-news-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nl-news-share-actions a {
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(0, 64, 112, .2);
  color: var(--nl-primary);
  background: rgba(0, 64, 112, .05);
  padding: 8px 14px;
  font-weight: 700;
  font-size: 13px;
  transition: background .2s ease;
}

.nl-news-share-actions a:hover {
  background: rgba(0, 64, 112, .12);
}

/* Galeria */
.nl-gallery-plugin-wrap {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.nl-gallery-plugin-wrap .sb_instagram_header,
.nl-gallery-plugin-wrap .sb_instagram_follow_btn {
  display: none !important;
}

.nl-gallery-note {
  margin: 16px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--nl-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Mídia */
.nl-media-list {
  display: grid;
  gap: 12px;
}

.nl-media-list.is-loading {
  opacity: .6;
  pointer-events: none;
  transition: opacity .2s ease;
}

.nl-media-item {
  text-decoration: none;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 16px;
  transition: transform .2s ease, background .2s ease;
}

.nl-media-item:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, .14);
}

.nl-media-emoji {
  font-size: 30px;
}

.nl-media-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.nl-media-vehicle {
  background: rgba(255, 255, 255, .18);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
}

.nl-media-date {
  font-size: 12px;
  opacity: .74;
}

.nl-media-content h3 {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.4;
  color: inherit;
}

.nl-media-arrow {
  opacity: .6;
  font-size: 22px;
}

.nl-media-pagination {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.nl-media-page-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .12);
  color: var(--nl-white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.nl-media-page-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, .22);
  transform: translateY(-1px);
}

.nl-media-page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.nl-media-page-indicator {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .3px;
}

/* Contato */
.nl-contact-grid {
  display: grid;
  gap: 24px;
}

.nl-contact-form input,
.nl-contact-form textarea {
  width: 100%;
  border: 2px solid #d3d9e0;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 12px;
  font: inherit;
  background: var(--nl-white);
}

.nl-contact-form textarea {
  resize: vertical;
}

.nl-contact-form button {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px;
  font: inherit;
  font-weight: 700;
  color: var(--nl-white);
  background: var(--nl-primary);
  cursor: pointer;
}

.nl-contact-feedback {
  margin: 12px 0 0;
  font-size: 14px;
  min-height: 20px;
}

.nl-contact-feedback.is-success {
  color: #1d7d30;
}

.nl-contact-feedback.is-error {
  color: #ac1f1f;
}

.nl-social-box h3 {
  margin: 0 0 14px;
  color: var(--nl-primary);
}

.nl-social-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.nl-social-box li a {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  background: var(--nl-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

.nl-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: var(--nl-primary);
  color: var(--nl-white);
}

/* Footer */
.nl-site-footer {
  background: var(--nl-primary-dark);
  color: rgba(255, 255, 255, .72);
  text-align: center;
  padding: 26px 0;
}

.nl-site-footer p {
  margin: 0 0 8px;
}

.nl-site-footer p:last-child {
  margin-bottom: 0;
  opacity: .75;
  font-size: 13px;
}

.nl-page-default {
  margin-top: 74px;
  padding: 36px 0;
}

@media (min-width: 768px) {
  .nl-main-nav {
    position: static;
    max-height: none;
    background: transparent;
    overflow: visible;
  }

  .nl-nav-list {
    flex-direction: row;
    align-items: center;
    gap: 22px;
    padding: 0;
  }

  .nl-nav-list a {
    font-size: 14px;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: border-color .2s ease;
  }

  .nl-nav-list a:hover {
    border-color: rgba(255, 255, 255, .95);
  }

  .nl-menu-toggle {
    display: none;
  }

  .nl-hero-grid {
    grid-template-columns: minmax(300px, 360px) 1fr;
    align-items: center;
    gap: 48px;
  }

  .nl-hero-content {
    text-align: left;
  }

  .nl-about-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 32px;
  }

  .nl-accordion-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nl-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nl-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .nl-contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .nl-news-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .nl-news-single-card {
    padding: 34px;
  }
}
