/* Gesto Energia — v20.0 (Acerca de nós: intro + 3 diferenciadores antes da timeline) */

:root {
  /* Brand palette (energy gradient) */
  --green-1: #598B1D;
  --green-2: #6EAB24;
  --green-3: #99BC1A;
  --lime:    #B9C911;
  --yellow:  #FFB400;
  --orange-1:#FF860C;
  --orange-2:#FA6914;
  --red-1:   #EE4611;
  --red-2:   #C92715;

  /* Brand neutrals */
  --navy: #1a2332;
  --navy-soft: #2a3344;

  /* Theme */
  --bg: #ffffff;
  --bg-alt: #f4f7f0;
  --bg-dark: var(--navy);
  --ink: #1a2332;
  --ink-soft: #5a6573;
  --line: #e3e8e0;
  --accent: var(--green-2);
  --accent-strong: var(--green-1);

  --radius: 14px;
  --max: 1120px;
  --shadow: 0 6px 24px rgba(26, 35, 50, 0.08);
  --font: "Inter", "Helvetica Neue", Arial, system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--accent-strong); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--bg-dark);
  color: #fff;
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 20px;
}
.logo { display: inline-flex; align-items: center; }
.logo-img {
  height: 42px;
  width: auto;
  display: block;
}
.logo-footer {
  height: 56px;
  margin: 0 0 24px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}

.site-nav ul {
  display: flex;
  gap: 28px;
  margin: 0; padding: 0;
  list-style: none;
}
.site-nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: var(--accent-strong); text-decoration: none; }

@media (max-width: 720px) {
  .site-nav ul { gap: 16px; }
  .site-nav li:not(:last-child) { display: none; }
  .logo-img { height: 36px; }
}

/* Hero */
.hero {
  position: relative;
  padding: 96px 0 80px;
  background:
    radial-gradient(1100px 480px at 88% -10%, rgba(255, 180, 0, 0.18) 0%, transparent 60%),
    radial-gradient(900px 420px at -5% 10%, rgba(110, 171, 36, 0.18) 0%, transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--green-1) 0%,
    var(--green-2) 18%,
    var(--green-3) 32%,
    var(--lime) 45%,
    var(--yellow) 58%,
    var(--orange-1) 72%,
    var(--orange-2) 85%,
    var(--red-1) 95%,
    var(--red-2) 100%);
  opacity: 0.9;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-strong);
  margin: 0 0 12px;
}
.eyebrow.light { color: var(--green-3); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--navy);
}
.accent {
  background: linear-gradient(90deg, var(--green-1), var(--green-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  max-width: 620px;
  font-size: 1.12rem;
  color: var(--ink-soft);
  margin: 0 0 28px;
}

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.btn {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-strong); text-decoration: none; transform: translateY(-1px); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}
.btn-ghost:hover { border-color: var(--accent); text-decoration: none; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 32px;
  max-width: 760px;
}
.stats li { display: flex; flex-direction: column; }
.stats strong {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.stats span { color: var(--ink-soft); font-size: 0.9rem; }

@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; gap: 12px; }
}

/* Sections */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { max-width: 720px; margin: 0 0 40px; }
.section h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--navy);
}
.section-sub { color: var(--ink-soft); margin: 0; max-width: 620px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 760px) {
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
}

/* Brand pills (about) */
.brand-pills {
  list-style: none;
  padding: 0; margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.brand-pills li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #cfe6c0;
}
.card-icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  margin-bottom: 14px;
  color: #fff;
}
.card-1 .card-icon { background: var(--green-1); }
.card-2 .card-icon { background: var(--green-2); }
.card-3 .card-icon { background: var(--orange-1); }
.card-4 .card-icon { background: var(--red-1); }
.card h3 { margin: 0 0 6px; font-size: 1.1rem; color: var(--navy); }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* Regions */
.regions {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.regions li {
  background: #fff;
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Dark contact */
.section-dark {
  background: var(--bg-dark);
  color: #e7eaef;
  position: relative;
}
.section-dark::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--green-1) 0%,
    var(--green-2) 18%,
    var(--green-3) 32%,
    var(--lime) 45%,
    var(--yellow) 58%,
    var(--orange-1) 72%,
    var(--orange-2) 85%,
    var(--red-1) 95%,
    var(--red-2) 100%);
}
.section-dark h2 { color: #fff; }
.muted { color: #aab4c2; }

.contact-list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 18px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.contact-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.contact-label {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 1.4px;
  color: var(--green-3);
  font-weight: 700;
  padding-top: 2px;
}
.contact-list a { color: #fff; }
.contact-list a:hover { color: var(--green-3); }

@media (max-width: 600px) {
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 24px 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-meta { margin: 0; }
.footer-inner p { margin: 0; }

/* ─────────────────────────────────────────────────────────
   Comercialização — teaser na home + página dedicada
   ───────────────────────────────────────────────────────── */

/* Teaser na home (entre Serviços e Projetos) */
.commerce-teaser {
  background: linear-gradient(135deg, var(--navy) 0%, #243047 60%, #1c2738 100%);
  color: #e7eaef;
  position: relative;
  overflow: hidden;
}
.commerce-teaser::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 320px at 90% 110%, rgba(110,171,36,0.18) 0%, transparent 60%),
    radial-gradient(600px 280px at -10% -10%, rgba(255,180,0,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.commerce-teaser .container { position: relative; z-index: 1; }
.commerce-teaser h2 { color: #fff; }
.commerce-teaser .eyebrow { color: var(--lime); }
.commerce-teaser .lead { color: rgba(255,255,255,.72); max-width: 640px; }
.commerce-teaser .grid-2 { align-items: center; }

.teaser-segments {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-top: 8px;
}
@media (max-width: 720px) { .teaser-segments { grid-template-columns: 1fr; } }
.teaser-seg {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 22px 22px;
  display: block;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.teaser-seg:hover {
  background: rgba(110,171,36,0.12);
  border-color: rgba(110,171,36,0.45);
  transform: translateY(-2px);
  text-decoration: none;
}
.teaser-seg .tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--lime); margin-bottom: 8px;
}
.teaser-seg h3 { color: #fff; margin: 0 0 6px; font-size: 1.05rem; }
.teaser-seg p { color: rgba(255,255,255,.62); margin: 0; font-size: 0.92rem; line-height: 1.55; }
.teaser-seg .arrow { color: var(--green-3); font-weight: 700; }

.commerce-teaser .btn-primary { background: var(--accent); }
.commerce-teaser .btn-primary:hover { background: var(--accent-strong); }
.commerce-teaser .btn-ghost {
  background: transparent; border-color: rgba(255,255,255,.25); color: #fff;
}
.commerce-teaser .btn-ghost:hover { border-color: rgba(255,255,255,.7); }

/* ─── Página comercialização ─── */
.page-hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 90% -10%, rgba(255,180,0,0.10) 0%, transparent 60%),
    radial-gradient(800px 380px at -10% 110%, rgba(110,171,36,0.16) 0%, transparent 60%),
    linear-gradient(135deg, var(--navy) 0%, #1f2a3f 100%);
  color: #fff;
  padding: 96px 0 72px;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--green-1) 0%, var(--green-2) 18%, var(--green-3) 32%,
    var(--lime) 45%, var(--yellow) 58%, var(--orange-1) 72%,
    var(--orange-2) 85%, var(--red-1) 95%, var(--red-2) 100%);
  opacity: 0.92;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .grid-2 { gap: 48px; align-items: center; }
.page-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  line-height: 1.08; letter-spacing: -0.015em;
  font-weight: 700; color: #fff; margin: 0 0 18px;
}
.page-hero h1 .accent {
  background: linear-gradient(90deg, var(--green-3), var(--lime));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero .eyebrow { color: var(--lime); }
.page-hero .lead { color: rgba(255,255,255,.72); max-width: 540px; }
.page-hero .btn-primary { background: var(--accent); }
.page-hero .btn-primary:hover { background: var(--accent-strong); }
.page-hero .btn-ghost {
  background: transparent; border-color: rgba(255,255,255,.28); color: #fff;
}
.page-hero .btn-ghost:hover { border-color: rgba(255,255,255,.7); }

/* Audience cards no hero */
.audience-stack { display: flex; flex-direction: column; gap: 12px; }
.aud-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 22px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.aud-card:hover {
  background: rgba(110,171,36,0.12);
  border-color: rgba(110,171,36,0.45);
  text-decoration: none;
  transform: translateY(-2px);
}
.aud-card .tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; margin-bottom: 4px;
}
.aud-card.upac .tag { color: var(--lime); }
.aud-card.cent .tag { color: var(--yellow); }
.aud-card h3 { color: #fff; margin: 0 0 4px; font-size: 1.02rem; }
.aud-card p { color: rgba(255,255,255,.6); margin: 0; font-size: 0.88rem; line-height: 1.5; }
.aud-card .arrow { font-size: 1.2rem; color: rgba(255,255,255,.5); }

/* Trust strip */
.trust-strip {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.trust-row {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 28px; font-size: 0.86rem; color: var(--ink-soft);
}
.trust-item strong { color: var(--ink); }
.trust-dot { width: 4px; height: 4px; background: var(--line); border-radius: 50%; }

/* Value props (3 cards) */
.props-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 860px) { .props-grid { grid-template-columns: 1fr; } }
.prop-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.prop-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow);
  border-color: #cfe6c0;
}
.prop-card .prop-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--green-1), var(--green-2));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.prop-card h3 { margin: 0 0 6px; font-size: 1.05rem; color: var(--navy); }
.prop-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

/* Process / steps */
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
@media (max-width: 860px) { .steps-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps-row { grid-template-columns: 1fr; } }
.step { position: relative; }
.step-n {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; margin-bottom: 16px;
}
.step h4 { margin: 0 0 6px; font-size: 1rem; color: var(--navy); }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.6; }

/* Pricing */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 16px;
}
@media (max-width: 860px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
}
.price-card.featured {
  background: var(--navy); border-color: var(--navy); color: #e7eaef;
}
.price-card .p-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--accent-strong); margin-bottom: 10px;
  display: inline-block;
}
.price-card.featured .p-tag { color: var(--green-3); }
.price-card h3 { margin: 0 0 4px; font-size: 1.25rem; color: var(--navy); }
.price-card.featured h3 { color: #fff; }
.price-card .sub { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 18px; }
.price-card.featured .sub { color: rgba(255,255,255,.55); }
.price-row { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-big {
  font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em;
  color: var(--navy); line-height: 1;
}
.price-card.featured .price-big {
  background: linear-gradient(90deg, var(--green-3), var(--lime));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.price-unit { font-size: 0.92rem; color: var(--ink-soft); }
.price-card.featured .price-unit { color: rgba(255,255,255,.6); }
.price-note { font-size: 0.82rem; color: var(--ink-soft); margin: 0 0 20px; }
.price-card.featured .price-note { color: rgba(255,255,255,.45); }
.feat-list { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 9px; }
.feat-list li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 0.92rem; color: var(--ink-soft);
}
.price-card.featured .feat-list li { color: rgba(255,255,255,.78); }
.feat-list li::before {
  content: '✓'; color: var(--accent-strong); font-weight: 700;
  flex-shrink: 0; font-size: 0.88rem;
}
.price-card.featured .feat-list li::before { color: var(--green-3); }

.transp-note {
  margin-top: 24px; padding: 16px 20px;
  background: #FFF7E6; border: 1px solid #F2D998; border-radius: 10px;
  font-size: 0.88rem; color: #6B4A05; line-height: 1.6;
}
.transp-note a { color: #B47200; font-weight: 600; }

/* Metrics strip */
.metrics-band {
  background: var(--navy);
  color: #fff;
  padding: 56px 0;
  position: relative;
}
.metrics-band::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--green-1) 0%, var(--green-2) 18%, var(--green-3) 32%,
    var(--lime) 45%, var(--yellow) 58%, var(--orange-1) 72%,
    var(--orange-2) 85%, var(--red-1) 95%, var(--red-2) 100%);
  opacity: 0.92;
}
.metrics-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  text-align: center;
}
@media (max-width: 720px) { .metrics-grid { grid-template-columns: 1fr 1fr; } }
.metric-val {
  font-size: 2.4rem; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 6px;
  background: linear-gradient(90deg, var(--green-3), var(--lime));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.metric-lbl { font-size: 0.88rem; color: rgba(255,255,255,.6); line-height: 1.4; }

/* Simulator */
.sim-in {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start;
}
@media (max-width: 860px) { .sim-in { grid-template-columns: 1fr; gap: 24px; } }
.sim-box {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
}
.sim-box h3 { margin: 0 0 18px; font-size: 1.1rem; color: var(--navy); }
.fg { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.fg label {
  font-size: 0.76rem; font-weight: 600; color: var(--ink-soft);
  letter-spacing: .3px;
}
.fg input, .fg select {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 13px; font-size: 0.95rem; color: var(--ink);
  font-family: inherit; background: #fff;
  outline: none; transition: border-color .15s ease;
}
.fg input:focus, .fg select:focus { border-color: var(--accent); }
.sim-btn {
  width: 100%; margin-top: 6px;
  background: var(--accent); color: #fff;
  font-size: 0.95rem; font-weight: 600;
  padding: 12px; border: none; border-radius: 999px;
  cursor: pointer; transition: background .15s ease;
}
.sim-btn:hover { background: var(--accent-strong); }
.sim-result {
  display: none; margin-top: 18px;
  background: #f2f8ea; border: 1px solid #cfe6c0;
  border-left: 3px solid var(--accent);
  border-radius: 10px; padding: 16px 18px;
}
.sim-result.show { display: block; }
.sim-r-lbl {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--accent-strong); margin-bottom: 4px;
}
.sim-r-val {
  font-size: 1.7rem; font-weight: 800; letter-spacing: -0.015em;
  color: var(--navy);
}
.sim-r-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; }
.sim-disc { font-size: 0.78rem; color: var(--ink-soft); margin-top: 12px; line-height: 1.55; }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0; cursor: pointer;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  background: none; border: none; width: 100%; text-align: left;
  font-family: inherit;
}
.faq-q:hover { color: var(--accent-strong); }
.faq-ico {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ink-soft); transition: transform .2s ease;
}
.faq-item[open] .faq-ico { transform: rotate(45deg); }
.faq-a {
  padding: 0 0 18px;
  font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7;
}

/* Contact form (página) */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; gap: 24px; } }
.contact-form {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin: 0 0 4px; font-size: 1.1rem; color: var(--navy); }
.cf-sub { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 22px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 520px) { .cf-row { grid-template-columns: 1fr; } }
.cf-g { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.cf-g label {
  font-size: 0.76rem; font-weight: 600; color: var(--ink-soft); letter-spacing: .3px;
}
.cf-g input, .cf-g select, .cf-g textarea {
  border: 1px solid var(--line); border-radius: 10px;
  padding: 11px 13px; font-size: 0.95rem; color: var(--ink);
  font-family: inherit; outline: none; transition: border-color .15s ease;
}
.cf-g input:focus, .cf-g select:focus, .cf-g textarea:focus { border-color: var(--accent); }
.cf-g textarea { min-height: 84px; resize: vertical; }
.cf-submit {
  width: 100%; margin-top: 6px;
  background: var(--navy); color: #fff;
  font-size: 0.95rem; font-weight: 700;
  padding: 13px; border: none; border-radius: 999px;
  cursor: pointer; transition: background .15s ease;
}
.cf-submit:hover { background: var(--navy-soft); }
.cf-legal { font-size: 0.74rem; color: var(--ink-soft); margin-top: 10px; line-height: 1.5; text-align: center; }
.contact-text h2 { color: var(--navy); }
.contact-detail { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 10px; }
.contact-detail strong { color: var(--ink); }
.contact-detail a { color: var(--accent-strong); }

/* Sticky bar (mobile) */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,.96); backdrop-filter: saturate(140%) blur(12px);
  border-top: 1px solid var(--line);
  padding: 12px 16px;
  display: none;
  justify-content: space-between; align-items: center; gap: 12px;
}
@media (max-width: 720px) { .sticky-cta { display: flex; } }
.sticky-cta p { margin: 0; font-size: 0.82rem; color: var(--ink-soft); }
.sticky-cta strong { color: var(--ink); }
.sticky-cta .btn { padding: 9px 16px; font-size: 0.85rem; }


/* ─────────────────────────────────────────────────────────
   Hero com vídeo (estilo Ignis) — home v3.2
   Header sempre branco sólido (sem branco-sobre-branco)
   ───────────────────────────────────────────────────────── */
.hero-video {
  position: relative;
  min-height: 86vh;
  padding: 112px 0 96px;
  background: var(--navy);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26,35,50,0.55) 0%, rgba(26,35,50,0.30) 35%, rgba(26,35,50,0.55) 75%, rgba(26,35,50,0.85) 100%),
    linear-gradient(135deg, rgba(26,35,50,0.30) 0%, transparent 55%);
  pointer-events: none;
}
.hero-video .hero-inner {
  position: relative;
  z-index: 2;
}
.hero-video .eyebrow { color: var(--green-3); }
.hero-video h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero-video .accent {
  background: linear-gradient(90deg, var(--green-3), var(--lime) 50%, var(--yellow));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-video .lead {
  color: rgba(255,255,255,0.88);
  text-shadow: 0 1px 12px rgba(0,0,0,0.35);
}
.hero-video .btn-ghost {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.38);
  color: #fff;
  backdrop-filter: blur(6px);
}
.hero-video .btn-ghost:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.75);
}
.hero-video .stats {
  border-top-color: rgba(255,255,255,0.20);
  max-width: 760px;
}
.hero-video .stats strong { color: #fff; }
.hero-video .stats span { color: rgba(255,255,255,0.74); }
.hero-video::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px; z-index: 3;
  background: linear-gradient(90deg,
    var(--green-1) 0%, var(--green-2) 18%, var(--green-3) 32%,
    var(--lime) 45%, var(--yellow) 58%, var(--orange-1) 72%,
    var(--orange-2) 85%, var(--red-1) 95%, var(--red-2) 100%);
  opacity: 0.95;
}

/* Logo header — proporção corrigida (era 42px) */
.logo-img { height: 52px; }
@media (max-width: 720px) {
  .logo-img { height: 42px; }
}

/* Mobile: usar poster em vez de vídeo (economia de dados) */
@media (max-width: 720px) {
  .hero-video { min-height: 68vh; padding: 88px 0 64px; }
  .hero-bg { display: none; }
  .hero-video {
    background:
      linear-gradient(180deg, rgba(26,35,50,0.55) 0%, rgba(26,35,50,0.85) 100%),
      url('hero-poster.jpg') center / cover no-repeat,
      var(--navy);
  }
  .hero-overlay { display: none; }
}

/* Respeita prefers-reduced-motion: cai para poster estático */
@media (prefers-reduced-motion: reduce) {
  .hero-bg { display: none; }
  .hero-video {
    background:
      linear-gradient(180deg, rgba(26,35,50,0.45) 0%, rgba(26,35,50,0.75) 100%),
      url('hero-poster.jpg') center / cover no-repeat,
      var(--navy);
  }
  .hero-overlay { display: none; }
}


/* ─────────────────────────────────────────────────────────
   Brand Book V3 — Gesto Energia (casa-mãe institucional)
   v4.0: cor-mãe Teal #007A87, sub-marcas, Playfair Display
   Mantém o energy gradient como elemento decorativo
   ───────────────────────────────────────────────────────── */

:root {
  /* Brand Book V3 — paleta oficial */
  --teal:           #007A87;   /* cor-mãe institucional */
  --teal-dark:      #005F6B;
  --teal-soft:      #E6F4F6;
  --consulting:     #1F3A4E;   /* Gesto Consulting */
  --development:    #F39C2D;   /* Gesto Development */
  --power-inst:     #6EAB24;   /* Gesto Power (verde institucional) */
  --power-bright:   #0ABF63;   /* Power digital */
  --deep:           #0D1B2A;   /* Gesto Deep — text/header escuro */
  --amber:          #D4860A;   /* signal amber */

  /* Tipografia BB V3 */
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-display: var(--font-serif);
}

/* Display headings (Playfair) */
.font-display,
.hero-video h1,
.hero h1,
.platform-block h2,
.section-mother h2,
.subbrand h3,
.numbers h2,
.geo h2,
.power-teaser h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ─── Header: Language switcher ─── */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.6px;
}
.lang-switch a {
  padding: 4px 8px;
  border-radius: 6px;
  color: var(--ink-soft);
  transition: color .15s ease, background .15s ease;
}
.lang-switch a:hover { color: var(--teal); background: var(--teal-soft); text-decoration: none; }
.lang-switch a.active { color: var(--teal); background: var(--teal-soft); }
.lang-switch .sep { color: var(--line); font-weight: 400; }

@media (max-width: 720px) {
  .lang-switch { margin-left: 12px; font-size: 0.72rem; }
  .lang-switch a { padding: 3px 6px; }
}

/* ─── Hero (institucional, casa-mãe) ─── */
.hero-video h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0,0,0,0.4);
}
.hero-video .eyebrow { color: #7DD4DC; }
.hero-video .accent {
  /* Override do gradient: usa teal-to-lime para casar BB V3 + energy gradient */
  background: linear-gradient(90deg, #7DD4DC 0%, var(--green-3) 60%, var(--lime) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Tagline placeholder note (canto inferior) */
.hero-video .tagline-note {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 1.4px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}

/* ─── Brand Platform: Propósito · Visão · Missão ─── */
.platform {
  padding: 96px 0;
  background: #fff;
  position: relative;
}
.platform::before {
  /* faixa fina energy gradient no topo (subtil decoração) */
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg,
    var(--teal) 0%, var(--teal) 15%,
    var(--green-1) 25%, var(--green-2) 38%, var(--green-3) 48%,
    var(--lime) 58%, var(--yellow) 68%, var(--orange-1) 78%,
    var(--red-1) 92%, var(--red-2) 100%);
  opacity: 0.85;
}
.platform-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.platform-head .eyebrow { color: var(--teal); }
.platform-head h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--deep);
  margin-bottom: 18px;
}
.platform-head p {
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.7;
}
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
@media (max-width: 860px) { .platform-grid { grid-template-columns: 1fr; gap: 18px; } }
.platform-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.platform-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.08);
  border-color: var(--teal);
}
.platform-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.platform-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep);
  line-height: 1.25;
  margin-bottom: 0;
}

/* Valores: 5 colunas */
.values-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}
.values-head .eyebrow { color: var(--teal); }
.values-head h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--deep);
  margin-bottom: 12px;
}
.values-head p { color: var(--ink-soft); font-size: 0.96rem; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  text-align: left;
}
.value .v-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--teal-soft); color: var(--teal);
  font-size: 0.86rem; font-weight: 700;
  margin-bottom: 12px;
}
.value h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 6px;
}
.value p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ─── Sub-marcas (Consulting · Development · Power) ─── */
.subbrands {
  background: var(--bg-alt);
  padding: 96px 0;
  position: relative;
  border-top: 1px solid var(--line);
}
.subbrands-head {
  max-width: 720px;
  margin: 0 0 56px;
}
.subbrands-head .eyebrow { color: var(--teal); }
.subbrands-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--deep);
  margin-bottom: 14px;
}
.subbrands-head p { color: var(--ink-soft); font-size: 1.02rem; max-width: 620px; }

.subbrand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .subbrand-grid { grid-template-columns: 1fr; gap: 18px; } }

.subbrand {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 28px 28px;
  text-decoration: none;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  color: inherit;
}
.subbrand:hover {
  transform: translateY(-4px);
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.1);
}
.subbrand::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.subbrand.is-consulting::before { background: var(--consulting); }
.subbrand.is-development::before { background: var(--development); }
.subbrand.is-power::before { background: var(--power-inst); }
.subbrand:hover.is-consulting { border-color: var(--consulting); }
.subbrand:hover.is-development { border-color: var(--development); }
.subbrand:hover.is-power { border-color: var(--power-inst); }

.subbrand .sb-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.subbrand.is-consulting .sb-tag { color: var(--consulting); }
.subbrand.is-development .sb-tag { color: var(--development); }
.subbrand.is-power .sb-tag { color: var(--power-inst); }
.subbrand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}
.subbrand .sb-tagline {
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.subbrand .sb-body {
  font-size: 0.94rem;
  color: var(--ink-soft);
  line-height: 1.62;
  margin-bottom: 22px;
  flex: 1;
}
.subbrand .sb-audience {
  font-size: 0.78rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-bottom: 16px;
}
.subbrand .sb-audience strong {
  color: var(--ink);
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.subbrand .sb-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 600;
}
.subbrand.is-consulting .sb-link { color: var(--consulting); }
.subbrand.is-development .sb-link { color: var(--development); }
.subbrand.is-power .sb-link { color: var(--power-inst); }
.subbrand .sb-link .arrow {
  transition: transform .2s ease;
}
.subbrand:hover .sb-link .arrow { transform: translateX(4px); }
.subbrand.coming-soon {
  opacity: 0.92;
  cursor: default;
  pointer-events: none;
}
.subbrand.coming-soon .sb-link { color: var(--ink-soft); }
.subbrand .sb-soon {
  position: absolute; top: 14px; right: 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ─── A Gesto em números (BB V3 slide 3) ─── */
.numbers {
  background: var(--deep);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.numbers::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg,
    var(--teal) 0%, var(--green-1) 25%, var(--green-2) 38%,
    var(--green-3) 48%, var(--lime) 58%, var(--yellow) 68%,
    var(--orange-1) 78%, var(--red-1) 92%, var(--red-2) 100%);
}
.numbers-head { max-width: 720px; margin-bottom: 56px; }
.numbers-head .eyebrow { color: #7DD4DC; }
.numbers-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: #fff;
  margin-bottom: 14px;
}
.numbers-head p { color: rgba(255,255,255,0.7); font-size: 1.02rem; max-width: 600px; line-height: 1.7; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 24px;
}
@media (max-width: 980px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .numbers-grid { grid-template-columns: 1fr; } }
.num-tile {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.num-tile .n-val {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.num-tile .n-val .accent {
  background: linear-gradient(90deg, #7DD4DC, var(--lime));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.num-tile .n-lbl {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ─── Geografia (8 cidades) ─── */
.geo {
  background: #fff;
  padding: 96px 0;
  border-bottom: 1px solid var(--line);
}
.geo-head { max-width: 720px; margin-bottom: 48px; }
.geo-head .eyebrow { color: var(--teal); }
.geo-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--deep);
  margin-bottom: 14px;
}
.geo-head p { color: var(--ink-soft); font-size: 1.02rem; max-width: 620px; line-height: 1.7; }

.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .cities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .cities-grid { grid-template-columns: 1fr; } }
.city {
  padding: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.city:hover {
  border-color: var(--teal);
  transform: translateY(-2px);
  background: #fff;
}
.city .c-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
  margin-bottom: 4px;
}
.city .c-country {
  font-size: 0.84rem;
  color: var(--ink-soft);
  letter-spacing: 0.3px;
}
.geo-extra {
  margin-top: 28px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.geo-extra strong { color: var(--ink); font-weight: 600; }

/* ─── Power teaser refinado (substitui o antigo) ─── */
.power-teaser h2 {
  font-family: var(--font-display);
  color: #fff;
}
.power-teaser .eyebrow { color: var(--power-bright); }

/* ─── Footer institucional alargado ─── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.ft-brand img { height: 44px; margin-bottom: 12px; }
.ft-brand p { font-size: 0.88rem; color: var(--ink-soft); max-width: 280px; line-height: 1.6; }
.ft-col h5 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: var(--deep); margin-bottom: 14px;
}
.ft-col a {
  display: block; font-size: 0.92rem;
  color: var(--ink-soft); margin-bottom: 8px;
  transition: color .15s ease;
}
.ft-col a:hover { color: var(--teal); text-decoration: none; }
.ft-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--line);
  font-size: 0.82rem; color: var(--ink-soft);
  flex-wrap: wrap; gap: 12px;
}

/* ─── Buttons: novos tokens ─── */
.btn-teal {
  background: var(--teal);
  color: #fff;
}
.btn-teal:hover { background: var(--teal-dark); text-decoration: none; }

/* Override do nav-cta para teal */
.nav-cta {
  background: var(--teal);
}
.nav-cta:hover { background: var(--teal-dark); }


/* ─────────────────────────────────────────────────────────
   v7 overrides — preservar look do hero V3.4 (Inter, sem Playfair)
   ───────────────────────────────────────────────────────── */

/* Force Inter on hero (over the v4 Playfair override) */
.hero h1,
.hero-video h1 {
  font-family: var(--font) !important;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

/* Hero accent gradient — verde/amarelo (V3.4 + variante V4 que o utilizador validou) */
.hero-video .accent,
.hero .accent {
  background: linear-gradient(90deg, var(--green-3), var(--lime) 45%, var(--yellow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Logo header: PNG novo Gesto ENERGIA (proporção ~2.5:1) */
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  max-width: 240px;
}
@media (max-width: 720px) {
  .logo-img { height: 42px; max-width: 200px; }
}
.ft-brand img { height: 48px; width: auto; max-width: 220px; margin-bottom: 12px; }
.logo-footer { height: 56px; max-width: 240px; }


/* ─────────────────────────────────────────────────────────
   v8 — Nav style institucional (Ignis / Axpo)
   Itens com peso uniforme, sem pill verde, spacing generoso
   ───────────────────────────────────────────────────────── */

.site-header {
  background: rgba(255,255,255,0.98);
  border-bottom: 1px solid rgba(13,27,42,0.06);
  backdrop-filter: saturate(140%) blur(8px);
}
.header-inner {
  padding: 18px 24px;
  gap: 32px;
}

.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav ul {
  display: flex;
  align-items: center;
  gap: 38px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a,
.megamenu-trigger {
  color: var(--deep);
  font-family: var(--font);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.1px;
  text-decoration: none;
  transition: color .15s ease;
  padding: 6px 0;
  position: relative;
}
.site-nav a:hover,
.megamenu-trigger:hover,
.megamenu-trigger[aria-expanded="true"] {
  color: var(--teal);
  text-decoration: none;
}
.site-nav a::after,
.megamenu-trigger::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.site-nav a:hover::after,
.megamenu-trigger:hover::after,
.megamenu-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
}

/* Override do pill CTA — agora é só um link de texto como os outros */
.site-nav .nav-cta {
  background: transparent !important;
  color: var(--deep) !important;
  padding: 6px 0 !important;
  border-radius: 0 !important;
  font-weight: 400 !important;
}
.site-nav .nav-cta:hover {
  background: transparent !important;
  color: var(--teal) !important;
}

/* Megamenu trigger refinado (mesma estética dos outros itens) */
.megamenu-trigger {
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}
.megamenu-trigger .chev {
  width: 10px !important;
  height: 10px !important;
  opacity: 0.6;
  transition: transform .2s ease, opacity .15s ease;
}
.megamenu-trigger:hover .chev,
.megamenu-trigger[aria-expanded="true"] .chev { opacity: 1; }
.megamenu-trigger[aria-expanded="true"] .chev { transform: rotate(180deg); }

/* Language switch — estilo Ignis: PT EN, activo a bold sem decoração */
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: 8px;
  padding-left: 24px;
  border-left: 1px solid rgba(13,27,42,0.10);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.4px;
}
.lang-switch a {
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--ink-soft);
  text-transform: uppercase;
  transition: color .15s ease;
}
.lang-switch a:hover { color: var(--deep); background: transparent !important; text-decoration: none; }
.lang-switch a.active {
  color: var(--deep);
  font-weight: 700;
  background: transparent !important;
}
.lang-switch .sep { display: none; }

@media (max-width: 980px) {
  .site-nav ul { gap: 24px; }
  .header-inner { padding: 16px 20px; gap: 20px; }
}
@media (max-width: 720px) {
  .site-nav ul { gap: 16px; }
  .site-nav a, .megamenu-trigger { font-size: 0.88rem; }
  .lang-switch { padding-left: 14px; margin-left: 4px; gap: 8px; }
}


/* ─────────────────────────────────────────────────────────
   v10 — Componentes da página /sobre.html
   Timeline · Pilares expandidos · Parceiros · Carreiras
   ───────────────────────────────────────────────────────── */

/* Page hero institucional (sem vídeo) */
.page-hero-about {
  background: linear-gradient(135deg, var(--deep) 0%, #14283a 50%, #0d1b2a 100%);
  color: #fff;
  padding: 140px 0 96px;
  position: relative;
  overflow: hidden;
}
.page-hero-about::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(700px 320px at 80% -10%, rgba(0,122,135,0.30) 0%, transparent 60%),
    radial-gradient(600px 280px at -10% 110%, rgba(110,171,36,0.18) 0%, transparent 60%);
}
.page-hero-about::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg,
    var(--teal) 0%, var(--green-1) 25%, var(--green-2) 38%, var(--green-3) 48%,
    var(--lime) 58%, var(--yellow) 68%, var(--orange-1) 78%, var(--red-1) 92%, var(--red-2) 100%);
  opacity: 0.92;
}
.page-hero-about .container { position: relative; z-index: 1; max-width: 920px; }
.page-hero-about .eyebrow { color: var(--green-3); }
.page-hero-about h1 {
  font-family: var(--font);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
}
.page-hero-about h1 .accent {
  background: linear-gradient(90deg, var(--green-3), var(--lime) 50%, var(--yellow));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.page-hero-about .lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 720px;
}

/* ─── Timeline ─── */
.timeline-section {
  background: #fff;
  padding: 96px 0;
}
.timeline-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.timeline-head .eyebrow { color: var(--teal); }
.timeline-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--deep);
  margin-bottom: 14px;
}
.timeline-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.timeline {
  position: relative;
  padding-left: 32px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 9px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg,
    var(--teal) 0%, var(--teal) 12%,
    var(--green-1) 22%, var(--green-2) 35%, var(--green-3) 48%,
    var(--lime) 60%, var(--yellow) 72%, var(--orange-1) 86%, var(--red-1) 100%);
  opacity: 0.5;
}
.tl-item {
  position: relative;
  padding: 0 0 36px 28px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  align-items: baseline;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 8px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px var(--teal);
  z-index: 1;
}
.tl-item.is-now::before {
  background: var(--lime);
  box-shadow: 0 0 0 2px var(--lime), 0 0 0 6px rgba(185,201,17,0.20);
}
.tl-year {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tl-item.is-now .tl-year { color: var(--power-inst); }
.tl-body h3 {
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 6px;
}
.tl-body p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
  max-width: 580px;
}

@media (max-width: 720px) {
  .timeline { padding-left: 28px; }
  .timeline::before { left: 7px; }
  .tl-item {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 0 0 30px 20px;
  }
  .tl-item::before { left: -28px; width: 16px; height: 16px; top: 4px; }
  .tl-year { font-size: 1.5rem; }
}

/* ─── 3 Pilares expandidos (página sobre) ─── */
.pillars-extended {
  background: var(--bg-alt);
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.pillars-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.pillars-head .eyebrow { color: var(--teal); }
.pillars-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: var(--deep);
  margin-bottom: 14px;
}
.pillars-head p { color: var(--ink-soft); font-size: 1.02rem; max-width: 620px; line-height: 1.7; }

.pillar {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 40px 36px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; top: 0; left: 0; bottom: 0; width: 6px;
}
.pillar.is-consulting::before { background: var(--consulting); }
.pillar.is-development::before { background: var(--development); }
.pillar.is-power::before { background: var(--power-inst); }
.pillar-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) {
  .pillar-grid { grid-template-columns: 1fr; gap: 18px; }
}
.pillar-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}
.pillar.is-consulting .pillar-tag { color: var(--consulting); }
.pillar.is-development .pillar-tag { color: var(--development); }
.pillar.is-power .pillar-tag { color: var(--power-inst); }
.pillar h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 4px;
}
.pillar .pillar-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
}
.pillar-detail h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 8px;
}
.pillar-detail h4:not(:first-child) { margin-top: 22px; }
.pillar-detail p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 10px;
}
.pillar-detail ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.pillar-detail ul li {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.84rem;
  color: var(--ink-soft);
}
.pillar.coming-soon { opacity: 0.95; }
.pillar .pillar-status {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 14px;
}

/* ─── Geografia estendida (40+ países por região) ─── */
.geo-extended {
  background: #fff;
  padding: 96px 0;
}
.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 56px;
  margin-top: 48px;
}
@media (max-width: 720px) { .regions-grid { grid-template-columns: 1fr; gap: 28px; } }
.region {
  border-top: 2px solid var(--line);
  padding-top: 20px;
}
.region-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 4px;
}
.region-count {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.region-countries {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.85;
}
.region-countries span { white-space: nowrap; }
.region-countries span:not(:last-child)::after { content: " · "; color: var(--line); }

/* ─── Parceiros & certificações ─── */
.partners {
  background: var(--bg-alt);
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.partners-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.partners-head .eyebrow { color: var(--teal); }
.partners-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.3rem);
  color: var(--deep);
  margin-bottom: 12px;
}
.partners-head p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7; }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
  margin-bottom: 56px;
}
.partner-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 14px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.4px;
  min-height: 80px;
  transition: border-color .18s ease, background .18s ease;
}
.partner-box:hover {
  border-color: var(--teal);
  background: #fff;
}
.partner-box.placeholder {
  background: #fbfdf8;
  color: rgba(13,27,42,0.40);
  border-style: dashed;
  font-style: italic;
}
.certifications-row {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.cert-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep);
  letter-spacing: 0.5px;
}
.cert-box small { display: block; font-size: 0.7rem; font-weight: 400; color: var(--ink-soft); margin-top: 4px; }

/* ─── Carreiras CTA ─── */
.careers-cta {
  background: linear-gradient(135deg, var(--deep) 0%, #14283a 60%, #0d1b2a 100%);
  color: #fff;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.careers-cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 320px at 90% 50%, rgba(110,171,36,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.careers-cta .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 48px; align-items: center;
}
@media (max-width: 860px) { .careers-cta .container { grid-template-columns: 1fr; gap: 28px; } }
.careers-cta .eyebrow { color: #7DD4DC; }
.careers-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.careers-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 1.04rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.careers-cta .careers-stats {
  display: flex; gap: 28px; margin-bottom: 28px; flex-wrap: wrap;
}
.careers-stat {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime);
}
.careers-stat small {
  display: block;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.6px;
  margin-top: 2px;
}
.careers-cta .btn-primary {
  background: var(--teal);
  color: #fff;
}
.careers-cta .btn-primary:hover { background: var(--teal-dark); }
.careers-cta .btn-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
}
.careers-cta .btn-ghost:hover { border-color: rgba(255,255,255,0.75); }

/* CTA back-to-home na home (Conhecer toda a história →) */
.platform-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}
.platform-cta-link:hover { color: var(--teal-dark); text-decoration: none; transform: translateX(2px); }
.platform-cta-link .arrow { transition: transform .15s ease; }
.platform-cta-link:hover .arrow { transform: translateX(3px); }


/* ─────────────────────────────────────────────────────────
   v11 — Megamenu refinado (mais sofisticado)
   Títulos curtos · pesos leves · respiração
   ───────────────────────────────────────────────────────── */

.megamenu {
  /* mais respiração no painel */
  padding-top: 8px;
  padding-bottom: 8px;
}
.megamenu-inner {
  padding: 8px 0;
}
.mm-col {
  padding: 40px 36px 36px;
}
.mm-col::before {
  height: 2px;
  opacity: 0.85;
}

.mm-tag {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.85;
}
.mm-col h4 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--deep);
  margin: 0 0 10px;
}
.mm-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 18px;
  line-height: 1.4;
}
.mm-desc {
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 22px;
  opacity: 0.85;
}
.mm-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mm-link .arrow {
  font-size: 1.1em;
  transition: transform .15s ease;
}
.mm-col:hover .mm-link .arrow { transform: translateX(4px); }

.mm-soon {
  position: absolute;
  top: 24px; right: 24px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 3px 10px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Sub-brand cards na home (mantém alinhado com o megamenu refinado) */
.subbrand h3 {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.subbrand .sb-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 22px;
}
.subbrand .sb-tag {
  font-weight: 600;
  letter-spacing: 2px;
  opacity: 0.85;
}

/* ─── Contexto de mercado (Power page) ─── */
.market-context {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 0;
}
.market-context-inner {
  max-width: 820px;
  margin: 0 auto;
}
.market-context .eyebrow {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.market-context h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--deep);
  margin: 0 0 24px;
}
.market-context p {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--deep);
  margin: 0 0 16px;
  font-weight: 400;
}
.market-context p strong {
  font-weight: 600;
  color: var(--deep);
}
.market-context .acronym {
  font-weight: 600;
  background: linear-gradient(180deg, transparent 60%, rgba(0,122,135,0.18) 60%);
  padding: 0 2px;
}


/* ─────────────────────────────────────────────────────────
   v12 — Hero stats refinado
   "50 000+" sozinho na linha de topo; "MW de projectos…" abaixo
   Mais respiração entre as 3 stats
   ───────────────────────────────────────────────────────── */

.hero-video .stats,
.hero .stats {
  display: grid;
  grid-template-columns: auto auto auto;
  justify-content: start;
  column-gap: 88px;
  row-gap: 12px;
  max-width: none;
  padding-top: 36px;
  margin-top: 8px;
}
.hero-video .stats li,
.hero .stats li {
  min-width: 0;
}
.hero-video .stats strong,
.hero .stats strong {
  font-size: 1.7rem;
  letter-spacing: -0.015em;
  line-height: 1.1;
  margin-bottom: 4px;
  white-space: nowrap;
}
.hero-video .stats span,
.hero .stats span {
  font-size: 0.86rem;
  letter-spacing: 0.2px;
  line-height: 1.45;
  max-width: 220px;
}

@media (max-width: 860px) {
  .hero-video .stats,
  .hero .stats { column-gap: 48px; }
}
@media (max-width: 600px) {
  .hero-video .stats,
  .hero .stats {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 16px;
  }
  .hero-video .stats span,
  .hero .stats span { max-width: none; }
}


/* ─────────────────────────────────────────────────────────
   v16 — Nav inline definitivo (3 sub-marcas como itens de topo)
   Indicador subtil ↗ para links externos
   ───────────────────────────────────────────────────────── */

.site-nav a[target="_blank"]::after {
  content: " ↗";
  font-size: 0.75em;
  opacity: 0.55;
  margin-left: 2px;
  transition: opacity .15s ease;
  display: inline-block;
}
.site-nav a[target="_blank"]:hover::after {
  opacity: 1;
}


/* ─────────────────────────────────────────────────────────
   v18 — Sub-brand cards sofisticados (alinhado com Brand Book V3)
   Mais respiração, tipografia editorial, accents subtis
   ───────────────────────────────────────────────────────── */

.subbrands {
  background: linear-gradient(180deg, #fafbf7 0%, var(--bg-alt) 100%);
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.subbrands-head {
  max-width: 720px;
  margin: 0 0 64px;
}
.subbrands-head .eyebrow {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.subbrands-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--deep);
  margin-bottom: 18px;
}
.subbrands-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 0;
}

.subbrand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .subbrand-grid { grid-template-columns: 1fr; gap: 18px; } }

/* Reset to override v4 styles */
.subbrand {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 18px;
  padding: 48px 36px 36px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.16,.84,.32,1),
              box-shadow .35s cubic-bezier(.16,.84,.32,1),
              border-color .35s ease;
  cursor: pointer;
}
.subbrand::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity .25s ease;
}
.subbrand.is-consulting::before { background: var(--consulting); }
.subbrand.is-development::before { background: var(--development); }
.subbrand.is-power::before { background: var(--power-inst); }

.subbrand:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 27, 42, 0.10);
  box-shadow: 0 24px 56px rgba(13, 27, 42, 0.09), 0 4px 12px rgba(13, 27, 42, 0.04);
  text-decoration: none;
}
.subbrand:hover::before { opacity: 1; }
.subbrand.is-consulting:hover { border-top-color: transparent; }
.subbrand.is-development:hover { border-top-color: transparent; }
.subbrand.is-power:hover { border-top-color: transparent; }

/* Coming-soon: subtle but doesn't kill hover */
.subbrand.coming-soon {
  opacity: 1;
  cursor: default;
  pointer-events: auto;
}
.subbrand.coming-soon:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.06);
}

.subbrand .sb-tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0.85;
}
.subbrand.is-consulting .sb-tag { color: var(--consulting); }
.subbrand.is-development .sb-tag { color: var(--development); }
.subbrand.is-power .sb-tag { color: var(--power-inst); }

.subbrand h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--deep);
  margin: 0 0 10px;
}

.subbrand .sb-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0 0 24px;
  letter-spacing: -0.005em;
}

.subbrand .sb-body {
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 28px;
  flex: 1;
  opacity: 0.85;
}

.subbrand .sb-audience {
  border-top: 1px solid rgba(13,27,42,0.08);
  padding-top: 18px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.55;
  letter-spacing: 0.1px;
}
.subbrand .sb-audience strong {
  display: block;
  font-family: var(--font);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 6px;
  opacity: 0.7;
}

.subbrand .sb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  transition: gap .25s cubic-bezier(.16,.84,.32,1);
}
.subbrand:hover .sb-link { gap: 14px; }
.subbrand.is-consulting .sb-link { color: var(--consulting); }
.subbrand.is-development .sb-link { color: var(--development); }
.subbrand.is-power .sb-link { color: var(--power-inst); }
.subbrand .sb-link .arrow {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1.15em;
  display: inline-block;
  transition: transform .25s cubic-bezier(.16,.84,.32,1);
}
.subbrand:hover .sb-link .arrow { transform: translateX(3px); }

/* "Em breve" pill mais discreto */
.subbrand .sb-soon {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  opacity: 0.6;
}

/* External link badge */
.subbrand.is-external::after {
  content: "↗";
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--ink-soft);
  opacity: 0.45;
  transition: opacity .25s ease, transform .25s cubic-bezier(.16,.84,.32,1), color .25s ease;
}
.subbrand.is-external:hover::after {
  opacity: 1;
  transform: translate(2px, -2px);
}
.subbrand.is-external.is-consulting:hover::after { color: var(--consulting); }

@media (max-width: 980px) {
  .subbrand { padding: 36px 28px 28px; }
  .subbrand h3 { font-size: 1.7rem; }
}


/* ─────────────────────────────────────────────────────────
   v20 — Acerca de nós (intro + 3 diferenciadores)
   ───────────────────────────────────────────────────────── */

.about-us {
  background: #fff;
  padding: 120px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.about-us::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,
    var(--teal) 0%, var(--teal) 18%,
    var(--green-1) 28%, var(--green-2) 40%, var(--green-3) 50%,
    var(--lime) 60%, var(--yellow) 70%, var(--orange-1) 80%,
    var(--red-1) 92%, var(--red-2) 100%);
  opacity: 0.85;
}
.about-head {
  max-width: 820px;
  margin: 0 0 72px;
}
.about-head .eyebrow {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--deep);
  margin: 0 0 28px;
}
.about-intro {
  font-size: 1.16rem;
  line-height: 1.75;
  color: var(--ink);
  font-weight: 400;
  margin: 0;
  max-width: 760px;
}
.about-intro strong { font-weight: 600; color: var(--deep); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .diff-grid { grid-template-columns: 1fr; gap: 18px; }
}

.diff-card {
  background: #fbfcf9;
  border: 1px solid rgba(13, 27, 42, 0.06);
  border-radius: 18px;
  padding: 44px 36px 36px;
  position: relative;
  transition: transform .3s cubic-bezier(.16,.84,.32,1),
              box-shadow .3s ease, border-color .3s ease;
}
.diff-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 122, 135, 0.18);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.06);
}

.diff-num {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 28px;
  display: inline-block;
}

.diff-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
  color: var(--deep);
  margin: 0 0 24px;
}

.diff-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.diff-card li {
  padding: 10px 0 10px 22px;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(13,27,42,0.05);
}
.diff-card li:last-child { border-bottom: none; padding-bottom: 0; }
.diff-card li:first-child { padding-top: 0; }
.diff-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 8px;
  height: 1.5px;
  background: var(--teal);
  border-radius: 1px;
}
.diff-card li:first-child::before { top: 9px; }
.diff-card li strong {
  color: var(--deep);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.diff-card li em {
  font-style: normal;
  color: var(--power-inst);
  font-weight: 600;
  font-size: 0.86rem;
  margin-left: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}



/* === v25: Geografia — mapa-mundo (dark card) + lista de países === */
.geo-map {
  margin: 12px 0 40px;
  padding: 36px 28px 28px;
  background: #0D1B2A;
  border-radius: 18px;
  border: 1px solid rgba(0, 122, 135, 0.30);
  position: relative;
  box-shadow: 0 10px 30px rgba(13, 27, 42, 0.12);
}
.world-map {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1100px;
  margin: 0 auto;
  max-height: 540px;
}
.world-map .continent,
.world-map .island {
  fill: rgba(255, 255, 255, 0.14);
  stroke: rgba(255, 255, 255, 0.45);
  stroke-width: 1.2;
  stroke-linejoin: round;
}
.world-map .country-dot {
  fill: #14B8C6;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 1.2;
  transition: r 0.18s ease, fill 0.18s ease;
  cursor: pointer;
  filter: drop-shadow(0 0 6px rgba(20, 184, 198, 0.6));
}
.world-map .country-dot:hover {
  fill: #6EAB24;
  stroke: #fff;
  r: 7;
}

/* Country list — 4 columns on a faint teal band */
.country-list {
  list-style: none;
  margin: 0;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 28px;
  background: rgba(0, 122, 135, 0.08);
  border: 1px solid rgba(0, 122, 135, 0.20);
  border-radius: 14px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.005em;
}
.country-list li {
  padding: 2px 0;
  line-height: 1.5;
  position: relative;
  padding-left: 14px;
}
.country-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}
@media (max-width: 980px) {
  .country-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .country-list { grid-template-columns: repeat(2, 1fr); padding: 24px 20px; }
  .geo-map { padding: 24px 16px; }
}
@media (max-width: 440px) {
  .country-list { grid-template-columns: 1fr; }
  .world-map { max-height: 320px; }
}

/* Override .geo if it has a forced bg — make sure section background is light/white as expected */
