/* =====================================================
   REDE SUPRIMENTOS · Tokens
   ===================================================== */
:root {
  /* Brand */
  --verde:        #0BA14B;
  --verde-dark:   #088a3f;
  --verde-darker: #066b31;
  --verde-light:  #1ec062;
  --verde-soft:   #e7f6ed;

  --preto:        #111111;
  --grafite:      #2A2A2A;
  --grafite-2:    #3a3a3a;
  --grafite-3:    #4d4d4d;
  --cinza-claro:  #F2F2F2;
  --cinza-medio:  #d4d4d4;
  --cinza-texto:  #6b6b6b;
  --branco:       #ffffff;

  /* Surfaces */
  --bg-light:  #ffffff;
  --bg-soft:   #F7F8F7;
  --bg-dark:   #111111;
  --bg-darker: #0a0a0a;

  /* Type */
  --font-sans: 'Poppins', system-ui, -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* =====================================================
   RESET
   ===================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--preto);
  background: var(--bg-light);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

/* =====================================================
   LAYOUT PRIMITIVES
   ===================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: clamp(72px, 10vw, 130px) 0;
  position: relative;
}
.section-light { background: var(--bg-light); color: var(--preto); }
.section-dark  { background: var(--preto);    color: #f4f4f4; }
.section-green { background: var(--verde);    color: #fff; }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vw, 80px);
}
.section-head .lead { margin: 18px auto 0; }

/* =====================================================
   TYPE
   ===================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(28px, 4.2vw, 52px);
  font-weight: 600;
  line-height: 1.1;
}
.section-title em {
  font-style: normal;
  color: var(--verde);
  font-weight: 600;
}
.section-dark .section-title em { color: var(--verde-light); }

.lead {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  color: var(--cinza-texto);
  max-width: 60ch;
  text-wrap: pretty;
}
.section-dark .lead { color: rgba(255,255,255,0.75); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-light);
  padding: 6px 0;
  position: relative;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 10px;
  opacity: 0.6;
}
.eyebrow-dark { color: var(--verde); }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  transition: all .25s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.btn-primary {
  background: var(--verde);
  color: #fff;
  box-shadow: 0 6px 24px -8px rgba(11,161,75,.55);
}
.btn-primary:hover {
  background: var(--verde-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px -8px rgba(11,161,75,.7);
}

.btn-ghost {
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.btn-ghost:hover {
  border-color: var(--verde-light);
  color: var(--verde-light);
}

.btn-ghost-light {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--preto);
}
.btn-white:hover {
  background: var(--preto);
  color: #fff;
}

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(17,17,17,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background .3s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(17,17,17,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 14px;
  padding-bottom: 14px;
  color: #fff;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--verde);
  flex-shrink: 0;
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
}
.brand-logo-footer {
  height: 44px;
  margin-bottom: 8px;
}
.brand-mark { width: 38px; height: 38px; }
.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #fff;
}
.brand-text strong { font-weight: 700; }

.primary-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 500;
}
.primary-nav a {
  color: rgba(255,255,255,0.78);
  position: relative;
  padding: 8px 0;
  transition: color .2s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--verde);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.primary-nav a:hover { color: #fff; }
.primary-nav a:hover::after { transform: scaleX(1); }
.primary-nav a.is-active { color: #fff; }
.primary-nav a.is-active::after { transform: scaleX(1); }

.header-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}
.nav-toggle span {
  width: 22px; height: 2px; background: #fff;
  transition: all .25s var(--ease);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px;
  background: var(--preto);
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 20%, rgba(11,161,75,0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(11,161,75,0.10), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  opacity: 0.6;
  pointer-events: none;
}
.hero-network { width: 100%; height: 100%; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.hero-copy { z-index: 2; }
.hero-title {
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
  margin: 18px 0 24px;
}
.hero-title em {
  font-style: normal;
  color: var(--verde);
  font-weight: 600;
  display: inline-block;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(255,255,255,0.75);
  max-width: 52ch;
  margin: 0 0 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 500px;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--verde-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stats span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

/* Hero visual: hex cluster */
.hero-visual {
  position: relative;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hex-cluster {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
}
.hex-center {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  aspect-ratio: 2.5 / 1;
  background: var(--preto);
  border: 2px solid var(--verde);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  z-index: 3;
  box-shadow:
    0 0 0 8px rgba(11,161,75,0.06),
    0 0 60px rgba(11,161,75,0.4);
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 8px rgba(11,161,75,0.06), 0 0 60px rgba(11,161,75,0.4); }
  50%      { box-shadow: 0 0 0 14px rgba(11,161,75,0.04), 0 0 80px rgba(11,161,75,0.7); }
}
.hex-logo {
  width: 100%;
  height: auto;
  display: block;
}

.hex-lines {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}

.hex-orbit {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hex-node {
  --r: 42%;
  position: absolute;
  inset: 50% auto auto 50%;
  width: 88px;
  height: 88px;
  margin: -44px;
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--angle)));
  background: rgba(17,17,17,0.9);
  border: 1.5px solid rgba(11,161,75,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  transition: all .3s var(--ease);
  backdrop-filter: blur(6px);
}
.hex-node:hover {
  border-color: var(--verde);
  background: var(--verde);
  transform: rotate(var(--angle)) translateY(calc(-1 * var(--r))) rotate(calc(-1 * var(--angle))) scale(1.08);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  width: 2px;
  height: 8px;
  background: var(--verde);
  border-radius: 1px;
  animation: scroll-dot 1.8s var(--ease) infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* =====================================================
   TAGLINE STRIP
   ===================================================== */
.tagline-strip {
  background: var(--verde);
  color: #fff;
  padding: clamp(36px, 5vw, 56px) 0;
  position: relative;
  overflow: hidden;
}
.tagline-strip::before,
.tagline-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, transparent 0 40px, rgba(255,255,255,0.04) 40px 41px);
  pointer-events: none;
}
.tagline-strip p {
  margin: 0;
  text-align: center;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 400;
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
.tagline-strip span { opacity: 0.85; display: block; }
.tagline-strip strong { font-weight: 600; }

/* =====================================================
   TWO COLUMNS (Quem somos, Cobertura)
   ===================================================== */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.col-text .section-title { margin-top: 14px; }
.col-text .lead { margin-top: 22px; }
.col-text p { color: var(--cinza-texto); margin: 18px 0 0; }

.quote-mark {
  margin-top: 36px;
  padding-left: 24px;
  border-left: 3px solid var(--verde);
  position: relative;
}
.quote-mark span {
  position: absolute;
  top: -20px; left: 10px;
  font-size: 90px;
  font-weight: 700;
  color: var(--verde);
  opacity: 0.18;
  line-height: 1;
}
.quote-mark blockquote {
  margin: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 500;
  color: var(--preto);
  line-height: 1.5;
}
.quote-mark blockquote em {
  font-style: normal;
  color: var(--verde);
  font-weight: 600;
}

/* Essence grid */
.essence-grid { padding-top: 14px; }
.essence-grid > .eyebrow { margin-bottom: 28px; }
.essence-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.essence-item {
  display: flex;
  gap: 14px;
  padding: 22px 18px;
  background: var(--bg-soft);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--radius);
  transition: all .25s var(--ease);
}
.essence-item:hover {
  border-color: var(--verde);
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -16px rgba(11,161,75,0.4);
}
.essence-item svg {
  width: 24px; height: 24px;
  color: var(--verde);
  flex-shrink: 0;
  margin-top: 2px;
}
.essence-item strong {
  display: block;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
  color: var(--preto);
}
.essence-item span {
  font-size: 13px;
  color: var(--cinza-texto);
  line-height: 1.4;
}

/* =====================================================
   STEPS (Como funcionamos)
   ===================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--verde) 0 6px, transparent 6px 14px);
  opacity: 0.4;
  z-index: 0;
}
.step {
  position: relative;
  padding: 24px 16px 20px;
  text-align: center;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
  background: var(--preto);
  border: 2px solid var(--verde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--verde);
  letter-spacing: -0.02em;
  position: relative;
  transition: all .3s var(--ease);
}
.step:hover .step-num {
  background: var(--verde);
  color: #fff;
  transform: scale(1.05);
}
.step h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}
.step p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

/* Reduz/Aumenta */
.reduz-aumenta {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: clamp(20px, 4vw, 60px);
  margin-top: clamp(60px, 8vw, 96px);
  padding: clamp(32px, 4vw, 48px);
  background: rgba(11,161,75,0.06);
  border: 1px solid rgba(11,161,75,0.2);
  border-radius: var(--radius-lg);
  align-items: center;
}
.ra-col h4 {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}
.ra-reduz h4 { color: rgba(255,255,255,0.5); }
.ra-aumenta h4 { color: var(--verde-light); }
.ra-col ul { display: flex; flex-direction: column; gap: 10px; }
.ra-col li {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-left: 22px;
}
.ra-reduz li::before {
  content: "✕";
  position: absolute; left: 0;
  color: var(--grafite-3);
  font-weight: 700;
}
.ra-aumenta li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--verde-light);
  font-weight: 700;
}
.ra-divider svg { width: 40px; height: 40px; opacity: 0.7; }

/* =====================================================
   TABS · Soluções
   ===================================================== */
.tabs {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
}
.tab-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tab-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-align: left;
  background: var(--bg-soft);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all .25s var(--ease);
  color: var(--preto);
}
.tab-btn:hover {
  background: #fff;
  border-color: var(--cinza-medio);
}
.tab-btn.is-active {
  background: var(--preto);
  color: #fff;
  border-color: var(--preto);
}
.tab-num {
  width: 36px; height: 36px;
  background: var(--verde);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.tab-btn.is-active .tab-num { background: var(--verde-light); }
.tab-label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
}
.tab-label small {
  font-weight: 400;
  font-size: 12px;
  color: var(--cinza-texto);
  margin-top: 2px;
}
.tab-btn.is-active .tab-label small { color: rgba(255,255,255,0.55); }

.tab-panels { position: relative; min-height: 480px; }
.tab-panel {
  display: none;
  padding: 36px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.04);
}
.tab-panel.is-active {
  display: block;
  animation: fade-in .35s var(--ease);
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.panel-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
}
.panel-copy h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.panel-copy .lead {
  font-size: 16px;
  margin: 0 0 24px;
}
.panel-copy h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--verde);
  margin: 28px 0 14px;
}
.panel-copy p { font-size: 15px; color: var(--cinza-texto); margin: 0 0 12px; }

.flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 14px 18px;
  background: #fff;
  border: 1px dashed var(--verde);
  border-radius: var(--radius);
  margin: 20px 0 8px;
  font-size: 13px;
  font-weight: 500;
}
.flow span {
  padding: 4px 10px;
  background: var(--verde-soft);
  color: var(--verde-darker);
  border-radius: 6px;
}
.flow i { color: var(--verde); font-style: normal; font-weight: 700; }

.check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 16px; }
.check-list li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  color: var(--preto);
  line-height: 1.4;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  background: var(--verde);
  border-radius: 50%;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center / 70% no-repeat;
}

.panel-examples { display: flex; flex-direction: column; gap: 12px; }
.panel-examples h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cinza-texto);
  margin: 0 0 4px;
}
.ex-card {
  padding: 18px 18px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 3px solid var(--verde);
  border-radius: var(--radius);
  transition: all .2s var(--ease);
}
.ex-card:hover {
  transform: translateX(4px);
  border-left-color: var(--verde-darker);
  box-shadow: 0 8px 24px -12px rgba(0,0,0,0.15);
}
.ex-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 8px;
}
.ex-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--grafite);
}

/* =====================================================
   SEGMENTOS
   ===================================================== */
.section-segmentos { background: var(--preto); }
.seg-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.seg-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  aspect-ratio: 1;
  padding: 20px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  text-align: center;
  transition: all .3s var(--ease);
  cursor: default;
}
.seg-card:hover {
  background: var(--verde);
  border-color: var(--verde);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(11,161,75,0.6);
}
.seg-icon {
  font-size: 48px;
  line-height: 1;
  filter: grayscale(1) brightness(2);
  opacity: 0.75;
  transition: all .3s var(--ease);
}
.seg-card:hover .seg-icon {
  filter: none;
  opacity: 1;
  transform: scale(1.15);
}
.seg-card span {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}
.seg-card:hover span { color: #fff; font-weight: 600; }

.seg-foot {
  text-align: center;
  margin-top: 32px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

/* =====================================================
   MAP
   ===================================================== */
.map-wrap {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.map-svg { width: 100%; height: auto; }

.city-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 28px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 4px;
}
.city-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: all .2s var(--ease);
  cursor: pointer;
}
.city-list li:hover { color: var(--verde); padding-left: 18px; }
.city-list li.active { color: var(--verde); font-weight: 600; }
.city-list .dot {
  width: 8px; height: 8px;
  background: var(--cinza-medio);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all .2s var(--ease);
}
.city-list li.active .dot,
.city-list li:hover .dot {
  background: var(--verde);
  box-shadow: 0 0 0 4px rgba(11,161,75,0.15);
}
.city-list small {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde);
  font-weight: 600;
}

.pin { cursor: pointer; transition: all .25s var(--ease); }
.pin-label, .pin-sublabel, .pin-label-sm, .map-caption {
  font-family: var(--font-sans);
  fill: var(--preto);
}
.pin-label { font-size: 11px; font-weight: 600; }
.pin-sublabel { font-size: 8px; font-weight: 700; letter-spacing: 0.15em; fill: var(--verde); }
.pin-label-sm { font-size: 9px; font-weight: 500; fill: var(--grafite-3); }
.pin-label-tiny {
  font-family: var(--font-sans);
  font-size: 8px;
  font-weight: 500;
  fill: var(--grafite-2);
  pointer-events: none;
}
.pin-label-cap {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  fill: var(--preto);
  letter-spacing: 0.01em;
  pointer-events: none;
}
.pin:hover circle:first-of-type { fill-opacity: 1; }
.pin:hover .pin-label-tiny { font-weight: 700; fill: var(--verde-darker); }
.pin-highlight circle:first-of-type {
  fill-opacity: 1;
  r: 5;
  filter: drop-shadow(0 0 6px rgba(11,161,75,0.8));
}
.pin-highlight .pin-label-tiny { font-weight: 700; fill: var(--verde-darker); }
.region-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  fill: var(--verde-darker);
}
.map-legend-title {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  fill: var(--cinza-texto);
}
.map-legend-text {
  font-family: var(--font-sans);
  font-size: 10px;
  fill: var(--grafite);
}
.map-caption {
  font-size: 10px; font-weight: 600; letter-spacing: 0.25em;
  fill: var(--cinza-texto);
}
.pin-pulse {
  transform-origin: center;
  animation: pin-pulse 2.4s ease-out infinite;
}
@keyframes pin-pulse {
  0% { transform: scale(0.7); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}
.vale-region {
  animation: vale-pulse 4s ease-in-out infinite;
}
@keyframes vale-pulse {
  0%, 100% { fill-opacity: 0.18; }
  50%      { fill-opacity: 0.28; }
}

/* =====================================================
   CTA STRIP
   ===================================================== */
.section-green {
  padding: clamp(48px, 7vw, 80px) 0;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 32px;
  align-items: center;
}
.cta-strip-inner h2 {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.cta-strip-inner p {
  margin: 0;
  font-size: 15px;
  opacity: 0.9;
}
.cta-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--bg-darker);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 48px;
}
.brand-footer { margin-bottom: 20px; }
.brand-footer .brand-text { color: #fff; }
.footer-tagline {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}
.footer-tagline em {
  font-style: italic;
  color: var(--verde-light);
}
.footer-col h5 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #fff;
  margin: 0 0 18px;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--verde-light); }
.footer-col a svg { color: var(--verde); flex-shrink: 0; }
.footer-contact { font-size: 14px; }
.footer-addr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 12px 0 0;
}
.footer-addr svg { color: var(--verde); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.02em;
}

/* =====================================================
   FLOATING WHATSAPP
   ===================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px -8px rgba(37,211,102,0.5);
  z-index: 90;
  transition: transform .25s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; }
.wpp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: wpp-pulse 2.2s ease-out infinite;
}
@keyframes wpp-pulse {
  0%   { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; max-width: 420px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; gap: 56px; }

  /* Collapse desktop nav into hamburger earlier to avoid header overflow */
  .primary-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { gap: 12px; }
  .tabs { grid-template-columns: 1fr; }
  .tab-list {
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: thin;
    padding-bottom: 8px;
  }
  .tab-btn { flex: 0 0 260px; }
  .panel-grid { grid-template-columns: 1fr; }
  .seg-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(5, 1fr); gap: 4px; }
  .step h3 { font-size: 14px; }
  .step p { font-size: 12px; }
}

@media (max-width: 768px) {
  .brand-text { font-size: 12px; }
  .brand-mark { width: 32px; height: 32px; }
  .brand-logo { height: 40px; }

  .hero { padding: 130px 0 80px; min-height: auto; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .hero-stats strong { font-size: 20px; }
  .hero-ctas .btn { flex: 1; justify-content: center; }

  .steps {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .steps::before { display: none; }
  .step { display: grid; grid-template-columns: 80px 1fr; text-align: left; gap: 18px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .step-num { margin: 0; width: 64px; height: 64px; font-size: 18px; }
  .step h3 { font-size: 16px; margin-top: 4px; }

  .reduz-aumenta { grid-template-columns: 1fr; }
  .ra-divider { display: none; }

  .check-list { grid-template-columns: 1fr; }
  .seg-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .cta-strip-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-strip-actions { justify-content: center; }

  .essence-list { grid-template-columns: 1fr; }

  .flow { font-size: 11px; }
  .flow span { padding: 3px 8px; }
}

@media (max-width: 480px) {
  .seg-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 32px; }
  .tagline-strip p { font-size: 16px; }
}

/* Mobile nav drawer */
body.nav-open .primary-nav {
  display: flex;
  position: fixed;
  inset: 70px 0 0 0;
  background: var(--preto);
  flex-direction: column;
  gap: 0;
  padding: 24px;
  z-index: 99;
}
body.nav-open .primary-nav a {
  font-size: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
