/* 
================================================================================
Nacional Alpha Global - Sistema de Identidade Visual e Estilos
================================================================================
Este arquivo gerencia toda a apresentação visual do site.

Se você deseja alterar cores ou fontes do site, a maneira mais rápida e organizada
é modificar as Variáveis CSS do `:root` localizadas logo abaixo.

COMO ALTERAR CORES:
1. --color-bg: Altera a cor de fundo padrão de todas as seções (atual: preto #0A0A0A).
2. --color-surface: Altera a cor de fundo dos cards e superfícies destacadas (atual: #111111).
3. --color-gold: Altera o dourado principal usado em botões principais, ícones e destaques.
4. --color-gold-light: Altera o dourado claro usado nos efeitos de hover e pequenos textos de tags.
5. --color-cream: Altera a cor do texto principal do site (atual: off-white/creme #F5F0E8).

COMO ALTERAR FONTES:
As fontes são importadas via HTML (do Google Fonts) e atribuídas aqui:
1. --font-title: Usada nos títulos principais (h1, h2, h3, h4) e seções nobres.
2. --font-sub: Usada para subtítulos e elementos complementares.
3. --font-body: Usada para os textos de leitura regular de parágrafos.
4. --font-stat: Usada em números grandes de estatísticas.

DICA: Se você adicionar uma nova fonte no link do <head> do HTML, basta atualizar
a variável correspondente aqui para aplicar em todo o site.
================================================================================
*/

:root {
  --color-bg: #0A0A0A; /* Fundo principal */
  --color-surface: #111111; /* Fundo de cards/superfícies */
  --color-gold: #C9A96E; /* Dourado principal (CTA, Destaques) */
  --color-gold-light: #E8CFA0; /* Dourado claro (Hover, Destaques secundários) */
  --color-cream: #F5F0E8; /* Texto principal claro */
  --color-muted: #6B6560; /* Texto secundário/muted */
  --color-border: rgba(201, 169, 110, 0.2); /* Bordas douradas sutis */
  --color-white: #FFFFFF;

  /* Fontes Google importadas (Mude aqui se desejar outras fontes padrão) */
  --font-title: 'Playfair Display', Georgia, serif;
  --font-sub: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Lato', sans-serif;
  --font-stat: 'DM Serif Display', Georgia, serif;

  /* Outras configurações visuais (bordas arredondadas, sombras, efeitos de transição) */
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(201, 169, 110, 0.15);
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── GLOBAL RESET & SCROLLBAR ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--color-gold);
  border-radius: 3px;
}

/* ─── CUSTOM CURSOR ─── */
.custom-cursor {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  transition: width 0.2s, height 0.2s;
}
.custom-cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.08s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (max-width: 768px) {
  .custom-cursor, .custom-cursor-follower {
    display: none !important;
  }
}

/* ─── LAYOUT CONTAINERS ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ─── TYPOGRAPHY UTILITIES ─── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-white);
}

.section-tag {
  font-family: var(--font-sub);
  font-weight: 400;
  color: var(--color-gold);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title em {
  font-family: var(--font-title);
  font-style: italic;
  font-weight: 400;
}

.section-sub {
  font-family: var(--font-sub);
  font-weight: 300;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.6;
  color: var(--color-cream);
  opacity: 0.85;
  max-width: 700px;
  margin-bottom: 48px;
}

.gold-text {
  color: var(--color-gold);
}

/* ─── BUTTONS & SHIMMER ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.btn-shimmer::after {
  content: '';
  position: absolute;
  top: -50%; left: -60%;
  width: 30%; height: 200%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  pointer-events: none;
}

.btn-shimmer:hover::after {
  left: 140%;
  transition: all 0.8s ease-in-out;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-bg);
  border: 1px solid var(--color-gold);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-cream);
  border: 1px solid var(--color-gold);
}

.btn-outline:hover {
  background-color: var(--color-gold);
  color: var(--color-bg);
  transform: translateY(-2px);
}

/* ─── ANIMATION - SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ─── NAVBAR ─── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(201, 169, 110, 0.05);
}

header.scrolled {
  padding: 14px 0;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

header.scrolled .logo-img {
  height: 32px;
}

footer .logo-img {
  height: 48px;
  margin-bottom: 8px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--color-cream);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  opacity: 0.8;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--color-gold);
  opacity: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-nav-cta {
  border: 1px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  font-size: 0.85rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition);
}

.btn-nav-cta:hover {
  background-color: var(--color-gold);
  color: var(--color-bg);
}

/* Mobile Menu Toggle */
.menu-toggle {
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

/* Mobile Navigation Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: var(--color-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: var(--font-title);
  font-size: 1.8rem;
  color: var(--color-cream);
  text-decoration: none;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--color-gold);
}

.close-menu {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--color-cream);
  font-size: 2rem;
  cursor: pointer;
}

/* ─── HERO SECTION ─── */
.hero {
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Imagem de Fundo da Seção Hero - Altere a URL do url() abaixo para mudar a foto de fundo */
  background-image: 
    linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.6) 100%),
    url('https://nag.net.br/wp-content/uploads/2026/06/fachada-scaled.png'); /* Imagem do avião ao amanhecer */
  background-size: cover;
  background-position: center;
  padding-top: 100px;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-gold);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  background: rgba(201, 169, 110, 0.08);
}

.hero-badge span {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-title);
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-family: var(--font-sub);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  line-height: 1.6;
  color: var(--color-cream);
  opacity: 0.9;
  max-width: 680px;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}

/* Hero Stats Bar */
.hero-stats {
  border-top: 1px solid var(--color-border);
  padding-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 768px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: var(--font-stat);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--color-cream);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ─── SERVIÇOS GRID ─── */
.services {
  /* Imagem de Fundo Escura com Gradiente - Altere a URL do url() abaixo para mudar a foto de fundo desta seção */
  background-image: 
    linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%),
    url('https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1920&q=80'); /* Imagem executiva de negócios */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efeito parallax */
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.service-card {
  height: 380px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.4) 100%);
  z-index: 1;
  transition: var(--transition);
}

.service-card-content {
  position: relative;
  z-index: 2;
  transform: translateY(20px);
  transition: var(--transition);
}

.service-icon-wrapper {
  width: 44px;
  height: 44px;
  color: var(--color-gold);
  margin-bottom: 16px;
  opacity: 0.9;
}

.service-card-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-cream);
  opacity: 0.75;
  margin-bottom: 16px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.service-card-link {
  font-family: var(--font-sub);
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
  background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 20%, rgba(10, 10, 10, 0.5) 100%);
}

.service-card:hover .service-card-content {
  transform: translateY(0);
}

.service-card:hover .service-card-desc {
  max-height: 80px;
  margin-bottom: 20px;
}

.service-card:hover .service-card-link {
  color: var(--color-gold-light);
}

/* ─── PROCESSO TIMELINE ─── */
.process {
  /* Imagem de Fundo Escura com Gradiente - Altere a URL do url() abaixo para mudar a foto de fundo desta seção */
  background-image: 
    linear-gradient(180deg, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.95) 100%),
    url('https://nag.net.br/wp-content/uploads/2026/06/interno-scaled.png'); /* Imagem de jornada/ponte/estrada */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efeito parallax */
  position: relative;
  overflow: hidden;
}

/* Noise Texture Filter */
.noise-bg {
  position: relative;
}

.noise-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  filter: url(#noise);
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.timeline-container {
  position: relative;
  margin-top: 60px;
}

.timeline-line {
  position: absolute;
  top: 50px; left: 30px;
  bottom: 50px; right: auto;
  width: 2px;
  border-left: 2px dashed var(--color-border);
  z-index: 1;
}

@media (min-width: 1024px) {
  .timeline-line {
    top: 60px; left: 50px;
    right: 50px; bottom: auto;
    height: 2px; width: auto;
    border-top: 2px dashed var(--color-border);
    border-left: none;
  }
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .timeline-steps {
    flex-direction: row;
    gap: 24px;
    justify-content: space-between;
  }
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  flex: 1;
}

@media (min-width: 1024px) {
  .process-step {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.step-number-bg {
  position: absolute;
  top: -20px; right: 0;
  font-family: var(--font-stat);
  font-size: 6rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.06;
  pointer-events: none;
}

.step-node {
  width: 60px;
  height: 60px;
  background-color: var(--color-surface);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(201, 169, 110, 0.1);
  transition: var(--transition);
  z-index: 3;
}

.process-step:hover .step-node {
  background-color: var(--color-gold);
  color: var(--color-bg);
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(201, 169, 110, 0.4);
}

.step-icon-svg {
  width: 24px;
  height: 24px;
  color: currentColor;
}

.step-text {
  padding-top: 10px;
}

@media (min-width: 1024px) {
  .step-text {
    padding-top: 0;
  }
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.step-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-cream);
  opacity: 0.7;
}

/* ─── PRESENÇA GLOBAL ─── */
.global {
  /* Imagem de Fundo Escura com Gradiente - Altere a URL do url() abaixo para mudar a foto de fundo desta seção */
  background-image: 
    linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%),
    url('https://nag.net.br/wp-content/uploads/2026/06/interno-scaled.png'); /* Imagem de rede de conexões/globo */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efeito parallax */
}

.global-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 1024px) {
  .global-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.global-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.global-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--color-surface);
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0.05);
}

.bullet-icon {
  width: 24px;
  height: 24px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.bullet-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.bullet-desc {
  font-size: 0.85rem;
  color: var(--color-cream);
  opacity: 0.7;
  line-height: 1.4;
}

.global-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
  height: 480px;
  box-shadow: var(--shadow);
}

.global-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.global-img-wrap:hover .global-img {
  transform: scale(1.04);
}

/* ─── COBERTURA BRASIL ─── */
.brasil {
  /* Imagem de Fundo Escura com Gradiente e Padrão Geométrico - Altere a URL do url() abaixo para mudar a foto de fundo */
  background-image: 
    radial-gradient(ellipse at center, transparent 40%, var(--color-bg) 90%),
    linear-gradient(45deg, rgba(201, 169, 110, 0.02) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(201, 169, 110, 0.02) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(201, 169, 110, 0.02) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(201, 169, 110, 0.02) 75%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.95) 100%),
    url('https://nag.net.br/wp-content/uploads/2026/06/urnas-scaled.png'); /* Imagem aérea de nuvens/estradas */
  background-size: 40px 40px, 40px 40px, 40px 40px, 40px 40px, 40px 40px, cover, cover;
  background-position: 0 0, 0 0, 20px 0, 20px -20px, 0 20px, center, center;
  background-attachment: scroll, scroll, scroll, scroll, scroll, fixed, fixed;
}

.brasil-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .brasil-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

/* Accordion */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(201, 169, 110, 0.08);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-item.active {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
  text-align: left;
}

.accordion-title {
  font-size: 1.15rem;
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--color-white);
  transition: var(--transition);
}

.accordion-item.active .accordion-title {
  color: var(--color-gold);
}

.accordion-icon {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  transition: transform 0.4s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  padding-bottom: 24px;
}

.accordion-content p {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--color-cream);
  opacity: 0.8;
}

/* Highlighted Sidebar Card */
.sidebar-highlight {
  background: linear-gradient(145deg, #18140D 0%, #0F0D09 100%);
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 120px;
}

.sidebar-title {
  font-size: 1.6rem;
  color: var(--color-gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.sidebar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sidebar-num {
  font-family: var(--font-stat);
  font-size: 1.4rem;
  color: var(--color-gold-light);
  font-weight: 700;
  line-height: 1;
  width: 24px;
  text-align: right;
}

.sidebar-text h5 {
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 4px;
  font-weight: 600;
}

.sidebar-text p {
  font-size: 0.85rem;
  color: var(--color-cream);
  opacity: 0.7;
  line-height: 1.45;
}

/* ─── QUEM SOMOS ─── */
.quem-somos-section {
  background-color: var(--color-bg);
  padding: 100px 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.05);
}

.quem-somos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .quem-somos-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.quem-somos-content h2 {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--color-gold);
  margin-bottom: 24px;
  line-height: 1.2;
}

.quem-somos-content p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-cream);
  line-height: 1.8;
  margin-bottom: 16px;
  opacity: 0.85;
}

.quem-somos-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.quem-somos-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.quem-somos-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .quem-somos-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(201, 169, 110, 0.3);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-item svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  color: var(--color-white);
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

.gallery-item:hover svg {
  opacity: 1;
}

/* Modal */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.image-modal.active {
  display: flex;
}

.image-modal img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-gold);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-bg);
  font-size: 24px;
  transition: var(--transition);
}

.modal-close:hover {
  transform: scale(1.1);
  background: var(--color-gold-light);
}

/* ─── MAPA INTERATIVO ─── */
.map-section {
  /* Imagem de Fundo Escura com Gradiente - Altere a URL do url() abaixo para mudar a foto de fundo desta seção */
  background-image: 
    linear-gradient(180deg, rgba(13, 13, 13, 0.96) 0%, rgba(13, 13, 13, 0.96) 100%),
    url('https://images.unsplash.com/photo-1524661135-423995f22d0b?w=1200&q=80'); /* Textura abstrata escura */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efeito parallax */
  border-top: 1px solid rgba(201, 169, 110, 0.05);
  border-bottom: 1px solid rgba(201, 169, 110, 0.05);
}

.map-wrapper {
  width: 100%;
  height: 500px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  margin-top: 40px;
  z-index: 10;
  box-shadow: var(--shadow);
}

#map {
  width: 100%;
  height: 100%;
  background-color: #111111;
}

/* Custom Div Icon for Leaflet Marker Animation */
.marker-pulse-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.marker-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-gold);
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px var(--color-gold);
}
.marker-pulse {
  position: absolute;
  width: 28px;
  height: 28px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  animation: marker-pulse-anim 2s infinite ease-out;
  opacity: 0;
  z-index: 1;
}
@keyframes marker-pulse-anim {
  0% { transform: scale(0.2); opacity: 0.8; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Legend grid */
.map-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .map-legend {
    grid-template-columns: repeat(4, 1fr);
  }
}

.legend-chip {
  background-color: var(--color-surface);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  transition: var(--transition);
}

.legend-chip:hover {
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.legend-chip strong {
  display: block;
  color: var(--color-gold);
  font-family: var(--font-stat);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.legend-chip span {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* ─── DEPOIMENTOS CARROSSEL ─── */
.testimonials {
  /* Imagem de Fundo Escura com Gradiente - Altere a URL do url() abaixo para mudar a foto de fundo desta seção */
  background-image: 
    linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, rgba(17, 17, 17, 0.95) 100%),
    url('https://nag.net.br/wp-content/uploads/2026/06/urnas-scaled.png'); /* Céu estrelado calmo */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efeito parallax */
}

.testimonials-carousel {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.testimonial-card {
  flex: 0 0 100%;
  background-color: var(--color-surface);
  border: 1px solid rgba(201, 169, 110, 0.08);
  border-left: 3px solid var(--color-gold);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
  }
}

.stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-cream);
  margin-bottom: 24px;
  min-height: 100px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 1.1rem;
  border: 1px solid var(--color-gold);
}

.author-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-muted);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--color-gold);
  width: 24px;
  border-radius: 4px;
}

/* ─── FAQ ─── */
.faq {
  /* Imagem de Fundo Escura com Gradiente - Altere a URL do url() abaixo para mudar a foto de fundo desta seção */
  background-image: 
    linear-gradient(180deg, rgba(10, 10, 10, 0.96) 0%, rgba(10, 10, 10, 0.96) 100%),
    url('https://nag.net.br/wp-content/uploads/2026/06/urnas-scaled.png'); /* Textura escura fluida premium */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Efeito parallax */
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}

.faq-header {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  cursor: pointer;
  text-align: left;
}

.faq-question {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--color-white);
  font-weight: 600;
  transition: var(--transition);
  padding-right: 20px;
}

.faq-item.active .faq-question {
  color: var(--color-gold);
}

.faq-icon-svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon-svg {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-cream);
  opacity: 0.75;
  font-weight: 300;
}

/* ─── CTA FINAL ─── */
.cta-final {
  /* Imagem de Fundo Escura com Gradiente - Altere a URL do url() abaixo para mudar a foto de fundo desta seção */
  background-image: 
    linear-gradient(to bottom, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%),
    url('https://nag.net.br/wp-content/uploads/2026/06/interno-scaled.png'); /* Vista noturna urbana sutil */
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 120px 0;
}

.cta-box {
  max-width: 650px;
  margin: 0 auto;
}

.cta-sub {
  font-family: var(--font-sub);
  font-size: 1.2rem;
  color: var(--color-cream);
  margin-bottom: 40px;
  font-weight: 300;
}

/* CTA Form */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .cta-form {
    flex-direction: row;
    gap: 12px;
  }
}

.cta-input {
  background-color: rgba(17, 17, 17, 0.8);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  flex: 1;
  transition: var(--transition);
}

.cta-input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.1);
}

.cta-form .btn {
  flex-shrink: 0;
}

/* Big Phone Highlight */
.whatsapp-highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-gold);
  border-radius: 50px;
  padding: 16px 36px;
  margin-bottom: 24px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.whatsapp-highlight:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 169, 110, 0.15);
  background-color: rgba(201, 169, 110, 0.05);
}

.wa-icon-svg {
  width: 28px;
  height: 28px;
  color: #25D366;
  fill: currentColor;
}

.wa-num {
  font-family: var(--font-title);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold-light);
}

/* Agentes Diretos */
.agents-direct {
  margin-bottom: 24px;
}

.agents-label {
  font-family: var(--font-sub);
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.agents-numbers {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .agents-numbers {
    flex-direction: row;
    justify-content: center;
  }
}

.agent-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(17, 17, 17, 0.6);
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 12px 24px;
  text-decoration: none;
  transition: var(--transition);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
}

.agent-phone:hover {
  border-color: var(--color-gold);
  background-color: rgba(201, 169, 110, 0.08);
  transform: translateY(-2px);
}

.agent-phone svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
}

/* Endereços na seção de contato */
.agents-addresses {
  margin-bottom: 24px;
}

.addresses-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.address-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background-color: rgba(17, 17, 17, 0.6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: var(--transition);
}

.address-item:hover {
  border-color: var(--color-gold);
  background-color: rgba(201, 169, 110, 0.05);
}

.address-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.address-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}

.address-city {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--color-gold-light);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.address-item span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-cream);
  line-height: 1.4;
}

.reassurance {
  font-family: var(--font-sub);
  font-style: italic;
  color: var(--color-cream);
  opacity: 0.65;
  font-size: 0.95rem;
}

/* ─── FOOTER ─── */
footer {
  background-color: #050505;
  border-top: 1px solid var(--color-border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-col h5 {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  margin-bottom: 24px;
  font-weight: 600;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-cream);
  opacity: 0.7;
  margin-bottom: 24px;
}

.footer-logo-tag {
  font-family: var(--font-sub);
  font-style: italic;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--color-cream);
  text-decoration: none;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
  opacity: 1;
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--color-cream);
  opacity: 0.7;
}

.footer-contact-link {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-link:hover {
  color: var(--color-gold);
  opacity: 1;
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
  flex-shrink: 0;
}

.footer-address {
  font-size: 11px;
  line-height: 1.5;
  color: var(--color-cream);
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer-address {
    font-size: 9px;
  }
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-btn {
  width: 40px;
  height: 40px;
  background-color: var(--color-surface);
  border: 1px solid rgba(201, 169, 110, 0.15);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-cream);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background-color: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.social-icon-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 110, 0.05);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.copyright {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--color-muted);
  text-align: center;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-family: var(--font-sub);
  font-size: 0.85rem;
  color: var(--color-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-links a:hover {
  color: var(--color-gold);
}

/* ─── BOTTOM NAV (MOBILE APP STYLE) ─── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 8px 0 12px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 998;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
  footer {
    padding-bottom: 85px !important;
  }
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 10px;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  min-width: 48px;
}

.nav-item:active { transform: scale(0.92); }

.nav-item.active .nav-icon {
  background: rgba(201,169,110,0.15);
}

.nav-icon {
  font-size: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: var(--transition);
  color: var(--color-cream);
}

.nav-icon svg {
  stroke: currentColor;
  fill: none;
  width: 18px;
  height: 18px;
}

.nav-label {
  font-size: 8px;
  color: var(--color-cream);
  font-weight: 500;
  letter-spacing: 0.2px;
  font-family: var(--font-body);
}

.nav-item.active .nav-label { color: var(--color-gold); }
.nav-item.active .nav-icon svg {
  stroke: var(--color-gold);
}

.nav-item.wp .nav-icon {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  font-size: 20px;
  width: 40px;
  height: 40px;
}

.nav-item.wp .nav-label { color: #25D366; }
.nav-item.wp .nav-icon svg {
  stroke: var(--color-white);
  fill: var(--color-white);
}

/* ─── CUSTOM MAP POPUP OVERRIDES FOR LEAFLET ─── */
.leaflet-popup-content-wrapper {
  background: rgba(17, 17, 17, 0.95) !important;
  color: var(--color-cream) !important;
  border: 1px solid var(--color-gold) !important;
  border-radius: 6px !important;
  padding: 4px 8px !important;
  box-shadow: var(--shadow) !important;
}
.leaflet-popup-tip {
  background: var(--color-gold) !important;
}
