/* Tokens */
:root {
  --navy-950: #0A1638;
  --navy-900: #0E1D46;
  --navy-800: #152752;
  --navy-700: #1D3266;
  --navy-line: rgba(247, 195, 49, 0.16);
  --gold-500: #F7C331;
  --gold-600: #E0A916;
  --gold-100: #FBE7AE;
  --sky-400: #3AB6E8;
  --paper: #F5F6FA;
  --paper-2: #ECEEF4;
  --white: #FFFFFF;
  --ink: #0A1638;
  --ink-soft: #4A5578;
  --shadow-lg: 0 24px 60px -24px rgba(10, 22, 56, 0.45);
  --shadow-md: 0 12px 30px -14px rgba(10, 22, 56, 0.28);
  --radius: 20px;
  --font-display: 'Anton', sans-serif;
  --font-label: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, p {
  margin: 0;
}

section {
  position: relative;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

::selection {
  background: var(--gold-500);
  color: var(--navy-950);
}

:focus-visible {
  outline: 3px solid var(--sky-400);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Typography & Section Helpers */
.eyebrow {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: currentColor;
  display: inline-block;
}

.on-light .eyebrow { color: var(--gold-600); }
.on-dark .eyebrow { color: var(--gold-500); }

h2.section-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 400;
  line-height: .98;
  letter-spacing: .01em;
  font-size: clamp(30px, 4.4vw, 50px);
  margin-top: 10px;
}

.lede {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 640px;
  margin-top: 18px;
}

.on-dark .lede {
  color: #C7CEE6;
}

.section {
  padding: 96px 0;
}

.section.on-dark {
  background: var(--navy-950);
  color: var(--white);
}

.section.on-paper {
  background: var(--paper);
}

.section.on-paper-2 {
  background: var(--paper-2);
}

/* Buttons */
.btn {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 10px 24px -8px rgba(247, 195, 49, 0.55);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -8px rgba(247, 195, 49, 0.65);
  background: var(--gold-600);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--navy-950);
  color: var(--navy-950);
}

.btn-outline-dark:hover {
  background: var(--navy-950);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  transition: all .22s ease;
  flex-shrink: 0;
}

.icon-btn svg {
  width: 19px;
  height: 19px;
}

.icon-btn:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-950);
  transform: translateY(-3px);
}

/* Pitch Divider */
.pitch-divider {
  width: 100%;
  height: 46px;
  display: block;
  color: var(--navy-line);
}

.pitch-divider.flip {
  transform: scaleY(-1);
}

.pitch-divider.on-dark {
  color: rgba(247, 195, 49, 0.14);
}

.pitch-divider path,
.pitch-divider circle,
.pitch-divider line {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 22, 56, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(247, 195, 49, 0.12);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}

header.scrolled {
  background: rgba(10, 22, 56, 0.92);
  box-shadow: 0 12px 30px -18px rgba(0, 0, 0, 0.6);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  max-width: 1180px;
  margin: 0 auto;
}

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

.brand-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(247, 195, 49, 0.55);
  flex-shrink: 0;
}

.brand-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-word {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 17px;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-word span {
  display: block;
  color: var(--gold-500);
  font-size: 11px;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: .16em;
  margin-top: 4px;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

nav.main-nav a {
  font-family: var(--font-label);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 14px;
  color: #D7DCF0;
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}

nav.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width .25s ease;
}

nav.main-nav a:hover {
  color: var(--white);
}

nav.main-nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger svg {
  width: 20px;
  height: 20px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--navy-900);
  border-top: 1px solid rgba(247, 195, 49, 0.14);
  padding: 10px 28px 22px;
}

.mobile-menu a {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 600;
  color: #D7DCF0;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu .btn {
  margin-top: 14px;
  justify-content: center;
}

/* Hero Section */
.hero {
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(247, 195, 49, 0.20), transparent 60%),
    radial-gradient(700px 500px at 8% 105%, rgba(58, 182, 232, 0.14), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 60%, var(--navy-900));
  padding: 168px 0 0;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 195, 49, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 195, 49, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, black, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 55% at 50% 20%, black, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-copy .eyebrow {
  color: var(--gold-500);
}

.hero h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(46px, 6.6vw, 84px);
  line-height: .94;
  letter-spacing: .005em;
  margin-top: 14px;
}

.hero h1 .accent {
  color: var(--gold-500);
}

.hero-copy .lede {
  margin-top: 22px;
  font-size: 18px;
  color: #C7CEE6;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 46px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-social span {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9AA4C7;
  font-weight: 600;
}

.hero-social .icons {
  display: flex;
  gap: 10px;
}

.hero-badge-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.badge-glow {
  position: absolute;
  width: 120%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(247, 195, 49, 0.35), rgba(247, 195, 49, 0) 62%);
  filter: blur(6px);
  animation: pulseGlow 5s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: .7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.crest-card {
  position: relative;
  width: min(440px, 86%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  padding: 28px;
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.55), 0 0 0 3px rgba(247, 195, 49, 0.65), 0 0 0 10px rgba(247, 195, 49, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.crest-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.crest-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(247, 195, 49, 0.4);
  animation: spin 60s linear infinite;
}

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

.hero-bottom-space {
  height: 60px;
}

/* Stats Section */
.stats {
  background: var(--navy-800);
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat {
  padding: 38px 20px;
  text-align: center;
  border-right: 1px solid rgba(247, 195, 49, 0.14);
}

.stat:last-child {
  border-right: none;
}

.stat .num {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 50px);
  color: var(--gold-500);
  line-height: 1;
}

.stat .label {
  margin-top: 10px;
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  color: #B9C1DE;
  font-weight: 600;
}

/* Quem Somos Section */
.quemsomos-grid {
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: 64px;
  align-items: start;
}

.quemsomos-list {
  margin-top: 30px;
  display: grid;
  gap: 14px;
}

.quemsomos-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.quemsomos-list svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-600);
}

.quote-card {
  margin-top: 34px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px 32px;
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '“';
  position: absolute;
  top: -30px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 160px;
  color: rgba(247, 195, 49, 0.16);
  line-height: 1;
}

.quote-card p {
  position: relative;
  font-family: var(--font-label);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1.25;
}

.quote-card p span {
  color: var(--gold-500);
}

.side-panel {
  background: var(--navy-950);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow-lg);
}

.side-panel-inner {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-800));
  border-radius: 14px;
  padding: 34px 28px;
  display: grid;
  gap: 22px;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mini-stat .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(247, 195, 49, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
}

.mini-stat .ico svg {
  width: 24px;
  height: 24px;
}

.mini-stat strong {
  display: block;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 20px;
  letter-spacing: .01em;
}

.mini-stat span {
  font-size: 13.5px;
  color: #AAB2CE;
  line-height: 1.4;
  display: block;
  margin-top: 2px;
}

.side-panel hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Valores Section */
.values-intro {
  max-width: 640px;
}

.quad-wrap {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--navy-950);
}

.quad {
  padding: 44px 38px;
  position: relative;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  transition: transform .3s ease;
}

.quad:hover {
  transform: scale(1.015);
  z-index: 2;
}

.quad.navy {
  background: var(--navy-950);
  color: var(--white);
}

.quad.gold {
  background: var(--gold-500);
  color: var(--navy-950);
}

.quad .qico {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quad .qico svg {
  width: 100%;
  height: 100%;
}

.quad.navy .qico { color: var(--gold-500); }
.quad.gold .qico { color: var(--navy-950); }

.quad h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: .01em;
}

.quad p {
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 320px;
}

.quad.navy p { color: #C7CEE6; }
.quad.gold p { color: #3A2F06; }

/* Projetos Section */
.proj-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.proj-card {
  background: linear-gradient(165deg, var(--navy-900), var(--navy-800));
  border: 1px solid rgba(247, 195, 49, 0.16);
  border-radius: var(--radius);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
}

.proj-card::before {
  content: '';
  position: absolute;
  right: -40px;
  top: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 195, 49, 0.16), transparent 70%);
}

.proj-top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proj-ico {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(247, 195, 49, 0.14);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proj-ico svg {
  width: 30px;
  height: 30px;
}

.proj-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 26px;
  color: var(--white);
  letter-spacing: .01em;
}

.proj-card p.desc {
  color: #C7CEE6;
  font-size: 15px;
  line-height: 1.6;
}

.proj-meta {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.proj-meta div {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: #AAB2CE;
}

.proj-meta strong {
  color: var(--white);
  font-weight: 600;
  margin-right: 4px;
}

.proj-meta svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-500);
}

.proj-note {
  margin-top: 30px;
  text-align: center;
  font-size: 14.5px;
  color: #9AA4C7;
}

.proj-note a {
  color: var(--gold-500);
  font-weight: 600;
  border-bottom: 1px solid rgba(247, 195, 49, 0.4);
}

/* Galeria Section */
.carousel {
  position: relative;
  margin-top: 52px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--navy-950);
}

.carousel-track {
  display: flex;
  width: 100%;
  aspect-ratio: 16/9;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  margin: 0;
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

#leleco {
  object-fit: contain;
  background: var(--navy-950);
}

.carousel-slide figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 54px 28px 22px;
  font-family: var(--font-label);
  font-weight: 600;
  letter-spacing: .02em;
  font-size: 16px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(10, 22, 56, 0.85), transparent);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(10, 22, 56, 0.55);
  backdrop-filter: blur(4px);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  z-index: 4;
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow:hover {
  background: var(--gold-500);
  color: var(--navy-950);
}

.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.carousel-dots {
  position: absolute;
  bottom: 20px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 4;
}

.dot {
  width: 34px;
  height: 5px;
  border-radius: 100px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.dot .dot-fill {
  position: absolute;
  inset: 0;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left center;
}

.dot.is-active .dot-fill {
  transform: scaleX(1);
  transition: transform 3.5s linear;
}

/* Onde Atuamos Section */
.atua-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.neigh-list {
  display: grid;
  gap: 0;
}

.neigh-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 12px;
  border-bottom: 1px solid rgba(10, 22, 56, 0.1);
  cursor: pointer;
  transition: background .2s ease, padding-left .2s ease;
  border-radius: 10px;
}

.neigh-item:first-child {
  padding-top: 12px;
}

.neigh-item:hover,
.neigh-item.is-active {
  background: rgba(247, 195, 49, 0.12);
  padding-left: 16px;
}

.neigh-pin {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy-950);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}

.neigh-item.is-active .neigh-pin {
  background: var(--gold-500);
  color: var(--navy-950);
}

.neigh-pin svg {
  width: 20px;
  height: 20px;
}

.neigh-item h4 {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .03em;
}

.neigh-item p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-top: 2px;
}

.neigh-tag {
  margin-left: auto;
  font-family: var(--font-label);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--gold-600);
  background: var(--gold-100);
  padding: 5px 10px;
  border-radius: 100px;
  flex-shrink: 0;
}

.map-visual {
  background: var(--navy-950);
  border-radius: var(--radius);
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.leaflet-map {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--navy-950);
}

.map-callout {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(10, 22, 56, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(247, 195, 49, 0.25);
  border-radius: 14px;
  padding: 16px 18px;
  color: var(--white);
  font-size: 13.5px;
  line-height: 1.5;
  z-index: 500;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.map-callout p {
  flex: 1;
  min-width: 180px;
}

.map-callout strong {
  color: var(--gold-500);
}

.map-directions-btn {
  font-family: var(--font-label);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-500);
  color: var(--navy-950);
  padding: 9px 14px;
  border-radius: 100px;
  white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
  flex-shrink: 0;
}

.map-directions-btn svg {
  width: 14px;
  height: 14px;
}

.map-directions-btn:hover {
  background: var(--gold-600);
  transform: translateY(-1px);
}

.map-pin {
  background: transparent;
  border: none;
}

.map-pin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(10, 22, 56, 0.9);
}

.map-pin-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--gold-500);
  opacity: .55;
  animation: mapPinPulse 2.2s ease-out infinite;
}

@keyframes mapPinPulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(2.6); opacity: 0; }
}

.leaflet-control-zoom {
  border: none !important;
  margin: 14px !important;
}

.leaflet-control-zoom a {
  background: rgba(10, 22, 56, 0.85) !important;
  color: var(--gold-500) !important;
  border: 1px solid rgba(247, 195, 49, 0.3) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--navy-950) !important;
}

.leaflet-control-attribution {
  background: rgba(10, 22, 56, 0.7) !important;
  color: #AAB2CE !important;
  font-size: 10px !important;
}

.leaflet-control-attribution a {
  color: #C7CEE6 !important;
}

.leaflet-popup-content-wrapper {
  background: var(--navy-950) !important;
  color: var(--white) !important;
  border-radius: 12px !important;
}

.leaflet-popup-content {
  font-family: var(--font-body);
  font-size: 13.5px;
  margin: 12px 14px !important;
}

.leaflet-popup-content strong {
  color: var(--gold-500);
}

.leaflet-popup-tip {
  background: var(--navy-950) !important;
}

/* Como Ajudar Section */
.ajudar-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ajudar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 4px solid var(--gold-500);
  transition: transform .25s ease, box-shadow .25s ease;
}

.ajudar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.ajudar-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--navy-950);
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ajudar-ico svg {
  width: 26px;
  height: 26px;
}

.ajudar-card h3 {
  font-family: var(--font-label);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: .02em;
}

.ajudar-card p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex-grow: 1;
}

.ajudar-card .btn {
  align-self: flex-start;
  margin-top: 4px;
}

/* CTA Band Section */
.ctaband {
  background:
    radial-gradient(700px 400px at 15% 30%, rgba(247, 195, 49, 0.18), transparent 60%),
    linear-gradient(120deg, var(--navy-950), var(--navy-900));
  padding: 86px 0;
  text-align: center;
}

.ctaband h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--white);
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
}

.ctaband h2 span {
  color: var(--gold-500);
}

.ctaband p {
  color: #C7CEE6;
  margin-top: 16px;
  font-size: 16px;
}

.ctaband .hero-cta {
  justify-content: center;
  margin-top: 32px;
}

.ctaband .hero-social {
  justify-content: center;
  border-top: none;
  margin-top: 36px;
  padding-top: 0;
}

/* Footer */
footer {
  background: var(--navy-950);
  color: #AAB2CE;
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand .brand {
  align-items: flex-start;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
  color: var(--gold-500);
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col ul {
  display: grid;
  gap: 11px;
}

.footer-col a {
  font-size: 14.5px;
  color: #AAB2CE;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold-500);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0 34px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-stagger.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in > *:nth-child(1) { transition-delay: .03s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .21s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .30s; }

/* Responsive Queries */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal, .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .badge-glow, .crest-ring {
    animation: none;
  }
}

@media (max-width: 980px) {
  nav.main-nav {
    display: none;
  }
  .burger {
    display: inline-flex;
  }
  .hero {
    padding-top: 150px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-badge-wrap {
    order: -1;
  }
  .crest-card {
    width: min(320px, 70%);
  }
  .quemsomos-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .atua-grid {
    grid-template-columns: 1fr;
  }
  .map-visual {
    max-width: 460px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .stat {
    border-bottom: 1px solid rgba(247, 195, 49, 0.14);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 44px;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 70px 0;
  }
  .quad-wrap {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .proj-grid {
    grid-template-columns: 1fr;
  }
  .ajudar-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta .btn {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .carousel-track {
    aspect-ratio: 4/5;
  }
  .carousel-slide img {
    object-position: center 15%;
  }
  .carousel-slide figcaption {
    font-size: 14px;
    padding: 44px 18px 16px;
  }
  .carousel-arrow {
    width: 38px;
    height: 38px;
  }
  .carousel-arrow.prev { left: 10px; }
  .carousel-arrow.next { right: 10px; }
  .carousel-dots {
    right: 16px;
    bottom: 14px;
  }
  .dot {
    width: 22px;
  }
}