/* ===== Easy Global Capsule Brasil — design tokens extraidos do site internacional (easyglobalcapsule.com) ===== */
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("../fonts/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f8f8f5;
  --dark: #141414;
  --white: #ffffff;
  --gray: #999999;
  --text-gray: #444444;
  --nav-gray: rgba(48, 48, 48, 0.5);
  /* verde conferido no site global via getComputedStyle: rgb(91,250,82) */
  --green: #5bfa52;
  --radius-pill: 54px;
  --font: "Satoshi", "Satoshi Placeholder", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font);
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: -0.05em;
  line-height: 1.05;
}

h1 { font-size: clamp(36px, 6vw, 72px); letter-spacing: -0.045em; }
h2 { font-size: clamp(26px, 4vw, 40px); }
h3 { font-size: 18px; letter-spacing: -0.03em; }

p {
  font-family: var(--font);
  font-weight: 500;
  font-size: 15px;
  line-height: 2;
  color: var(--text-gray);
}

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

/* Padrao replicado do site internacional: o circulo da seta expande e "toma conta"
   do botao no hover; no clique, um leve encolhimento da tatil feedback. */
.btn-pill {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--green);
  color: var(--dark);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: normal;
  padding: 10px 20px;
  min-height: 48px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: gap 0.45s cubic-bezier(.16,1,.3,1), color 0.45s cubic-bezier(.16,1,.3,1), transform 0.15s ease, box-shadow 0.25s ease;
}
.btn-pill:hover { gap: 20px; color: var(--white); box-shadow: 0 10px 24px rgba(20,20,20,0.2); }
.btn-pill:active { transform: scale(0.96); }
.btn-pill .label { position: relative; z-index: 1; }
.btn-pill .arrow {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--dark); color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex: none;
  position: relative;
  z-index: 0;
  transition: inset 0.45s cubic-bezier(.16,1,.3,1), width 0.45s cubic-bezier(.16,1,.3,1), height 0.45s cubic-bezier(.16,1,.3,1);
}
.text-link {
  color: inherit; text-decoration: underline;
  text-decoration-color: var(--green); text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  transition: color 0.2s ease;
}
.text-link:hover { color: var(--green); }

.btn-pill:hover .arrow {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border-radius: inherit;
}

/* ===== Header (modelo easyglobalcapsule.com: 64px, fundo solido, nav a direita) ===== */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--bg);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0 24px;
}
/* logo exportada sem respiro interno (traco encosta nas bordas do PNG) --
   compensa reduzindo a altura renderizada, o que abre folga vertical e horizontal */
.logo { padding: 6px 4px; }
.logo img { height: 44px; width: auto; display: block; }
nav.main-nav { display: flex; align-items: center; gap: 20px; margin-left: auto; margin-right: 20px; }
nav.main-nav a {
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: -0.15px;
  transition: color 0.2s ease;
}
nav.main-nav a:hover { color: var(--nav-gray); }
nav.main-nav a.is-current { text-decoration: underline; text-underline-offset: 4px; }
.header-cta { display: none; }
@media (min-width: 640px) { .header-cta { display: inline-flex; } }

.nav-toggle { display: none; background: none; border: none; font-size: 26px; cursor: pointer; margin-left: auto; }

/* ===== Dropdown "Parcerias" no menu (padrao replicado do site internacional) ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-panel {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white); border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  padding: 8px; min-width: 240px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-dropdown:hover .nav-dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 14px; font-weight: 500; text-transform: none;
  white-space: nowrap; color: var(--dark);
}
.nav-dropdown-panel a::before { content: "—"; color: var(--green); }
.nav-dropdown-panel a:hover { background: rgba(0,0,0,0.05); color: var(--dark); }

/* ===== Hero — video full-bleed logo abaixo do header (sem texto sobreposto) ===== */
.hero-video {
  margin-top: 64px;
  width: 100%;
  height: clamp(260px, 44vw, 720px);
  overflow: hidden;
  background: var(--dark);
}
.hero-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Hero — bloco de texto: headline a esquerda, coluna direita alinhada pela base ===== */
.hero-intro { padding: 48px 50px 64px; }
.hero-intro-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 64px;
}
.hero-intro h1 {
  flex: 1 1 auto;
  max-width: 800px;
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 1;
  letter-spacing: -0.054em;
}
.hero-intro-side {
  flex: 0 0 400px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero-intro-side p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.18px;
  color: var(--dark);
}

/* ===== Icone de fundo com parallax no scroll (padrao replicado do site internacional) ===== */
.about-hero { position: relative; overflow: hidden; }
.about-hero .hero-intro-inner { position: relative; z-index: 1; }
.about-hero .bg-icon {
  position: absolute;
  top: -10%; right: -6%;
  height: 130%;
  width: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ===== Faixa preta (divisor) — fundo tech com brilho e icone com parallax ===== */
.band-dark {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 72px 0;
  overflow: hidden;
}
.band-dark .bg-icon {
  position: absolute;
  top: -15%; right: -4%;
  height: 130%;
  width: auto;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.band-dark::after {
  /* brilho verde ambiente */
  content: "";
  position: absolute;
  top: -35%; left: 50%;
  width: 900px; height: 500px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(91,250,82,0.22) 0%, rgba(91,250,82,0) 70%);
  pointer-events: none;
}
.band-dark .container { position: relative; z-index: 1; }
.band-dark h2 { color: var(--white); }
.band-dark p { color: rgba(255,255,255,0.55); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 800px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 799px) { .stats-grid-values { grid-template-columns: 1fr; } }
@media (min-width: 800px) { .stats-grid-values { grid-template-columns: repeat(3, 1fr); } }

.stat {
  position: relative;
  padding: 28px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.stat::before {
  /* reflexo diagonal, reforca o vidro */
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}
.stat:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(91,250,82,0.35);
  transform: translateY(-3px);
}
.stat .num {
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 24px rgba(91,250,82,0.35);
}
.stat .num-suffix {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: normal;
  text-shadow: none;
  vertical-align: middle;
}
.stat .label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ===== Diferenciais ===== */
.section { padding: 72px 0; }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark);
  background: var(--green);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: rgba(20,20,20,0.08);
  border: 1px solid rgba(20,20,20,0.08);
}
@media (min-width: 720px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
.diff-item {
  background: var(--bg);
  padding: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: transform 0.15s ease;
}
/* Reveal em circulo ao passar o mouse — padrao replicado do site internacional (easyglobalcapsule.com) */
.diff-item::before {
  content: "";
  position: absolute;
  top: 32px; left: 32px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  transform: scale(0);
  transition: transform 0.55s cubic-bezier(.16,1,.3,1);
  z-index: 0;
  pointer-events: none;
}
.diff-item:hover::before { transform: scale(18); }
.diff-item:active { transform: scale(0.98); }
.diff-item > * { position: relative; z-index: 1; }
.diff-item .icon {
  width: 40px; height: 40px; flex: 0 0 auto;
  border-radius: 50%;
  background: var(--dark);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: transform 0.35s cubic-bezier(.16,1,.3,1);
}
.diff-item:hover .icon { transform: scale(1.08); }
.diff-item h3 { margin-bottom: 6px; }
.diff-item p { font-size: 14px; line-height: 1.7; margin: 0; transition: color 0.3s ease 0.05s; }
.diff-item:hover p { color: var(--dark); }

/* ===== Tipos de projeto ===== */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 480px) { .usecase-grid { grid-template-columns: 1fr; } }
@media (min-width: 720px) { .usecase-grid { grid-template-columns: repeat(3, 1fr); } }
.usecase-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #1a1a1a;
}
@media (min-width: 720px) { .usecase-card-wide { grid-column: span 3; aspect-ratio: 12 / 5; } }
.usecase-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.usecase-card:hover img { transform: scale(1.08); }
.usecase-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,20,0.92) 0%, rgba(20,20,20,0.35) 45%, rgba(20,20,20,0) 72%);
  pointer-events: none;
}
.usecase-label {
  position: absolute; left: 18px; right: 18px; bottom: 16px;
  z-index: 1;
  color: var(--white);
}
.usecase-label .title {
  display: block;
  font-size: 15px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.usecase-label .sub {
  display: block;
  font-size: 11px; color: rgba(255,255,255,0.65);
  margin-top: 4px; line-height: 1.4;
}
@media (min-width: 720px) { .usecase-label .title { font-size: 17px; } .usecase-label .sub { font-size: 12px; } }
.usecase-cta {
  margin-top: 40px;
  padding: 28px;
  border-radius: 16px;
  background: var(--dark);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 20px;
}
.usecase-cta h3 { color: var(--white); font-size: clamp(19px, 2.4vw, 27px); font-weight: 600; line-height: 1.3; margin: 0; max-width: 480px; }
@media (max-width: 640px) { .usecase-cta { flex-direction: column; align-items: flex-start; text-align: left; } }

/* ===== Galeria de capsulas ===== */
.gallery-section { background: var(--white); }
.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(20,20,20,0.15);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.filter-btn:active { transform: scale(0.95); }

/* ===== Slider de capsulas (padrao replicado do site internacional: contador + setas + miniaturas) ===== */
.slider-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.slider-count {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}
.slider-arrows { display: flex; gap: 10px; }
.slider-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--dark);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease, transform 0.2s ease;
}
.slider-arrow:hover { background: var(--green); color: var(--dark); }
.slider-arrow:active { transform: scale(0.92); }
.slider-arrow:disabled { opacity: 0.3; cursor: default; }
.slider-arrow:disabled:hover { background: var(--dark); color: var(--white); }
.slider-divider { height: 1px; background: rgba(20,20,20,0.15); margin-bottom: 28px; }
.slider-title {
  margin-bottom: 20px;
  transition: opacity 0.25s ease;
}
.slider-stage {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #f1f1ee;
  aspect-ratio: 16 / 9;
  cursor: pointer;
}
.slider-stage img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.slider-stage img.is-visible { opacity: 1; transform: translateX(0); }
.slider-empty {
  position: absolute; inset: 0;
  display: none;
  align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
}
.slider-stage.is-empty .slider-empty { display: flex; }
.slider-stage.is-empty { cursor: default; }

.slider-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.slider-thumb {
  flex: 0 0 auto;
  width: 84px; height: 64px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.45;
  background: #f1f1ee;
  transition: opacity 0.25s ease, border-color 0.25s ease;
}
.slider-thumb img { width: 100%; height: 100%; object-fit: cover; }
.slider-thumb:hover { opacity: 0.75; }
.slider-thumb.active { opacity: 1; border-color: var(--green); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20,20,20,0.94);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 88vw; max-height: 80vh; border-radius: 12px; }
.lightbox .close {
  position: absolute; top: 24px; right: 32px;
  color: var(--white); font-size: 32px; cursor: pointer; background: none; border: none;
}
.lightbox .caption {
  position: absolute; bottom: 32px; left: 0; right: 0;
  text-align: center; color: var(--white); font-size: 14px; letter-spacing: 0.04em; text-transform: uppercase;
}

/* ===== FAQ ===== */
.faq-list { max-width: 780px; }
.faq-item { border-bottom: 1px solid rgba(20,20,20,0.1); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px; font-weight: 500; text-transform: uppercase; letter-spacing: -0.02em;
}
.faq-q .plus { font-size: 20px; transition: transform 0.3s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p { padding-bottom: 22px; margin: 0; }

/* ===== Contato / footer ===== */
.contact-band {
  background: var(--dark);
  color: var(--white);
  padding: 96px 0 0;
  text-align: center;
}
.contact-band h2 { color: var(--white); max-width: 720px; margin: 0 auto 28px; }
.contact-band h2.contact-title { font-size: clamp(20px, 2.4vw, 28px); font-weight: 500; max-width: 620px; }

/* ===== Letreiro animado (padrao replicado do site internacional) ===== */
.marquee-band {
  margin-top: 72px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  animation: marquee-scroll 26s linear infinite;
  will-change: transform;
}
.marquee-track span {
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #17b6c4, var(--green), #17b6c4, var(--green));
  background-size: 300% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: text-shine 5s linear infinite;
}
@keyframes text-shine {
  to { background-position: -300% center; }
}
.marquee-track span.dash {
  width: 40px; height: 3px;
  background: var(--green);
  border-radius: 2px;
  flex: none;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Rodape ===== */
footer .container { padding-top: 64px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: left;
  padding-bottom: 40px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; } }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.footer-logo { height: 40px; width: auto; align-self: flex-start; }
.footer-logo-tag {
  font-size: 11px; font-weight: 700; color: var(--dark);
  text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--green);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}
.footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-title {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--green); margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,0.7);
  transition: color 0.2s ease;
}
.footer-col a:hover { color: var(--white); }

/* ===== Representantes por regiao ===== */
.footer-reps {
  padding-top: 32px;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-reps > .footer-title { display: block; margin-bottom: 20px; }
.footer-reps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 720px) { .footer-reps-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.footer-reps-region { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px; width: 100%; }
.region-name {
  font-size: 13px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.footer-reps-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 32px; }
.rep {
  display: flex; flex-direction: column; align-items: center;
  padding: 10px 0;
  transition: opacity 0.2s ease;
}
.rep:hover { opacity: 0.7; }
.rep-name { font-size: 14px; font-weight: 500; color: var(--white); }
.rep-area { font-size: 12px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.03em; margin-top: 2px; }
.rep-phone { font-size: 13px; color: var(--green); margin-top: 4px; }
.flag-br {
  display: inline-block;
  width: 13px;
  height: 9px;
  vertical-align: middle;
  margin: 0 5px 2px;
  border-radius: 1px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 14'><rect width='20' height='14' rx='1' fill='%23009739'/><polygon points='10,2 18,7 10,12 2,7' fill='%23FEDD00'/><circle cx='10' cy='7' r='3.1' fill='%23012169'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
}

/* ===== Ecossistema EGDC Group (rodape) ===== */
.footer-ecosystem {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 28px;
  padding-top: 28px; padding-bottom: 28px; margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-eco-link { display: flex; align-items: center; gap: 10px; opacity: 0.85; transition: opacity 0.2s ease; }
.footer-eco-link:hover { opacity: 1; }
.footer-eco-link img { height: 22px; width: auto; align-self: center; filter: brightness(0) invert(1); }
.footer-eco-link span {
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.05em;
}

.footer-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 32px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.04em;
  text-align: center;
}
@media (max-width: 719px) { .footer-grid { text-align: center; } .footer-col { align-items: center; } .footer-brand p { max-width: 100%; } }

/* ===== Pagina Sobre: equipe ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card {
  background: var(--white);
  border: 1px solid rgba(20,20,20,0.08);
  border-radius: 18px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(20,20,20,0.08); }
.team-avatar {
  width: 148px; height: 148px;
  border-radius: 20px;
  background: var(--dark);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 700;
  margin-bottom: 20px;
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 17px; font-weight: 700; color: var(--dark); }
.team-role { font-size: 13px; color: var(--gray); text-transform: uppercase; letter-spacing: 0.04em; }
.team-contact { font-size: 14px; color: var(--dark); font-weight: 700; margin-top: 8px; transition: color 0.2s ease; }
.team-contact:hover { color: var(--green); }

/* ===== Pagina Sobre: mapa de atuacao ===== */
.map-wrap { position: relative; max-width: 980px; margin: 0 auto; }
.map-img { width: 100%; height: auto; display: block; border-radius: 12px; }
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
}
.pin-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(91,250,82,0.6);
  animation: pin-pulse 2.2s ease-out infinite;
}
@keyframes pin-pulse {
  0% { box-shadow: 0 0 0 0 rgba(91,250,82,0.55); }
  70% { box-shadow: 0 0 0 14px rgba(91,250,82,0); }
  100% { box-shadow: 0 0 0 0 rgba(91,250,82,0); }
}
.pin-label {
  font-size: 11px; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 0.03em;
  background: rgba(20,20,20,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.pin-label small { font-weight: 500; text-transform: none; letter-spacing: 0; color: rgba(255,255,255,0.6); font-size: 10px; }
@media (max-width: 640px) {
  .pin-label { transform: scale(0.8); }
}

/* ===== Reveal on scroll (GSAP hooks) ===== */
.reveal { opacity: 0; transform: translateY(40px); }

/* ===== Hero empilhado em tela menor ===== */
@media (max-width: 900px) {
  .hero-intro-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-intro-side { flex: 1 1 auto; max-width: 100%; }
}
@media (max-width: 640px) {
  .hero-intro { padding: 32px 20px 44px; }
  .hero-intro h1 { font-size: 22px; line-height: 1.3; letter-spacing: -0.02em; }
  .hero-intro-side p { font-size: 16px; }
}

/* ===== Espacamento entre secoes menor em telas pequenas ===== */
@media (max-width: 640px) {
  .section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .band-dark { padding: 48px 0; }
  .contact-band { padding-top: 56px; }
  .marquee-band { margin-top: 40px; }
  .about-hero { padding-top: 88px !important; padding-bottom: 8px; }
  .about-hero + .section { padding-top: 20px; }
}

/* ===== Mobile nav ===== */
@media (max-width: 900px) {
  nav.main-nav {
    position: fixed; top: 64px; left: 0; right: 0;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    margin: 0;
    background: var(--bg);
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 32px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav a { font-size: 22px; }
  .nav-toggle { display: block; }
  .nav-dropdown { display: flex; flex-direction: column; align-items: center; gap: 10px; }
  .nav-dropdown-panel {
    position: static; opacity: 1; visibility: visible; pointer-events: auto;
    transform: none; box-shadow: none; background: transparent;
    padding: 0; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 6px;
  }
  .nav-dropdown-panel a { font-size: 16px; color: var(--nav-gray); }
}
