/* ============================================================================
   EPX Inc. — Stylesheet principal
   ============================================================================ */

/* === FONTES LOCAIS === */
@font-face {
  font-family: 'Michroma';
  src: url('../images/fonts/Michroma.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../images/fonts/IBMPlexSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../images/fonts/IBMPlexSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans';
  src: url('../images/fonts/IBMPlexSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}

/* === TOKENS === */
:root {
  --orange: #FF4F01;
  --orange-hov: #FF6825;
  --orange-glow: rgba(255, 79, 1, 0.20);

  --bg: #0A0A0B;
  --bg-elev: #101012;
  --bg-card: #141417;
  --bg-card-hi: #1A1A1E;
  --line: #232328;
  --line-hi: #32323A;

  --text: #F5F5F7;
  --text-dim: #9797A0;
  --text-mute: #62626B;

  /* Cores principais dos hubs (identidade de marca, usadas em fundo claro) */
  --hub-corretora: #013EF8;
  --hub-business: #C48300;
  --hub-consultoria: #FF5204;
  --hub-intelligence: #430493;
  --hub-agency: #F9017B;
  --hub-capital: #2D5016;

  /* Versões neon (usadas em fundo escuro, para contraste) */
  --hub-corretora-neon: #3B6FFF;
  --hub-business-neon: #FFB800;
  --hub-consultoria-neon: #FF6825;
  --hub-intelligence-neon: #8B2FFF;
  --hub-agency-neon: #FF3D9A;
  --hub-capital-neon: #2bff00;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --space-section: clamp(80px, 12vw, 130px);
  --container: min(1240px, 92%);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'IBM Plex Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--orange); color: #000; }

h1, h2, h3 {
  font-family: 'Michroma', 'Arial Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-wrap: balance;
  line-height: 1.08;
}

.container { width: var(--container); margin-inline: auto; }

.eyebrow {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--orange);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.x-pattern {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M20 20 L180 180 M180 20 L20 180' stroke='%23FF4F01' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 260px 260px;
}

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  background: rgba(10,10,11,0.6);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(10,10,11,0.92);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav-logo { display: block; line-height: 0; }
.nav-logo img { height: 56px; width: auto; transition: height 0.3s var(--ease); }
.nav.scrolled .nav-logo img { height: 44px; }
.nav-links {
  display: flex; gap: 36px; list-style: none;
  font-size: 13.5px; font-weight: 500; margin: 0 auto;
}
.nav-links a { color: var(--text-dim); transition: color 0.2s var(--ease); position: relative; padding: 4px 0; }
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--orange);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

/* === BOTÕES === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px; padding: 13px 22px;
  font-family: 'Michroma', sans-serif;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 100px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  border: 1px solid transparent;
  line-height: 1;
}
.btn-primary { background: var(--orange); color: #000; border-color: var(--orange); }
.btn-primary:hover {
  background: #fff; border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -10px var(--orange-glow);
}
.btn-ghost { color: var(--text); border-color: var(--line-hi); background: rgba(255,255,255,0.02); }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { padding: 17px 32px; font-size: 11px; }
.btn svg { width: 13px; height: 13px; transition: transform 0.3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }

.mobile-toggle { display: none; }

/* === HERO === */
.hero {
  position: relative; min-height: 100vh;
  padding: 160px 0 80px;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(255, 79, 1, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 70% at 5% 95%, rgba(255, 79, 1, 0.06), transparent 70%),
    linear-gradient(180deg, #0A0A0B 0%, #0A0A0B 55%, #0E0E10 100%);
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

/* === ÍCONE DECORATIVO DE FUNDO (substitui o X SVG anterior) === */
.hero-bg-icon {
  position: absolute; right: -3%; top: 50%;
  transform: translateY(-50%);
  width: clamp(420px, 58vmin, 760px);
  aspect-ratio: 1;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
  filter: drop-shadow(0 0 40px rgba(255, 79, 1, 0.15));
}
.hero-bg-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-inner { position: relative; z-index: 2; display: grid; gap: 100px; }
.hero-content { max-width: 860px; }

.hero-eyebrow { margin-bottom: 36px; opacity: 0; animation: fadeUp 0.8s var(--ease) 0.1s forwards; }
.hero h1 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 6.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.2s forwards;
}
.hero h1 .accent { color: var(--orange); }
.hero h1 .accent::after { content: '.'; color: var(--orange); }
.hero-sub {
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  color: var(--text-dim); font-weight: 300;
  max-width: 600px; margin-bottom: 48px;
  line-height: 1.6;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.35s forwards;
}
.hero-sub strong { color: var(--text); font-weight: 500; }
.hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.5s forwards;
}

.hero-metrics {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  opacity: 0; animation: fadeUp 1s var(--ease) 0.75s forwards;
}
.hero-metric {
  padding: 30px 28px 4px;
  border-right: 1px solid var(--line);
}
.hero-metric:last-child { border-right: none; }
.hero-metric .num {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(1.5rem, 2.3vw, 2.1rem);
  color: var(--text); line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.hero-metric .num span.num-suffix { color: var(--orange); margin: 0 4px; font-size: 0.55em; vertical-align: baseline; }
.hero-metric .num .counter { display: inline-block; }
.hero-metric .label {
  font-size: 10px; color: var(--text-mute);
  text-transform: uppercase; letter-spacing: 0.2em;
  font-weight: 400;
  font-family: 'Michroma', sans-serif;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === MANIFESTO === */
.manifesto {
  position: relative;
  padding: clamp(70px, 10vw, 110px) 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.manifesto-inner { position: relative; z-index: 2; max-width: 1000px; }
.manifesto-text {
  font-family: 'Michroma', sans-serif;
  font-size: clamp(1.35rem, 2.7vw, 2.2rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--text-dim);
}
.manifesto-text strong { color: var(--text); font-weight: 400; }
.manifesto-text .hl { color: var(--orange); }
.manifesto-sig {
  margin-top: 40px;
  display: inline-flex; gap: 14px; align-items: center;
  font-size: 10px; color: var(--text-mute);
  letter-spacing: 0.22em; text-transform: uppercase;
  font-family: 'Michroma', sans-serif;
}
.manifesto-sig::before { content: ''; width: 30px; height: 1px; background: var(--orange); }

/* === SEÇÃO BASE === */
section.block { padding: var(--space-section) 0; position: relative; }
.section-head { max-width: 740px; margin-bottom: 72px; }
.section-head .eyebrow { margin-bottom: 26px; }
.section-head h2 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.section-head h2 .accent { color: var(--orange); }
.section-head p {
  color: var(--text-dim);
  font-size: 1.08rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 640px;
}

/* === ECOSSISTEMA === */
.ecosystem { background: var(--bg); }
.hubs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.hub-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px 32px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  min-height: 320px;
  display: flex; flex-direction: column;
}
.hub-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--hub-color, var(--orange));
  transform-origin: left; transform: scaleX(0);
  transition: transform 0.5s var(--ease);
}
.hub-card::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 55% at 100% 0%, var(--hub-color, var(--orange)) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.5s var(--ease);
  pointer-events: none; mix-blend-mode: screen;
}
.hub-card:hover {
  transform: translateY(-5px);
  border-color: var(--hub-color, var(--orange));
  background: var(--bg-card-hi);
}
.hub-card:hover::before { transform: scaleX(1); }
.hub-card:hover::after { opacity: 0.22; }

.hub-card-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 32px; position: relative; z-index: 2;
}
.hub-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease); flex-shrink: 0;
}
.hub-card:hover .hub-icon { background: var(--hub-color, var(--orange)); border-color: var(--hub-color, var(--orange)); }
.hub-icon svg {
  width: 20px; height: 20px;
  stroke: var(--hub-color, var(--orange));
  fill: none; stroke-width: 1.6;
  transition: stroke 0.4s var(--ease);
}
.hub-card:hover .hub-icon svg { stroke: #000; }

.hub-arrow {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease); flex-shrink: 0;
}
.hub-arrow svg { width: 13px; height: 13px; stroke: var(--text-mute); fill: none; stroke-width: 1.8; transition: all 0.3s var(--ease); }
.hub-card:hover .hub-arrow { background: var(--hub-color, var(--orange)); transform: rotate(-45deg); }
.hub-card:hover .hub-arrow svg { stroke: #000; }

.hub-name {
  font-family: 'Michroma', sans-serif;
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--text-mute); margin-bottom: 10px;
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 8px;
}
.hub-name::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--hub-color, var(--orange));
}
.hub-title {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: 1.32rem;
  margin-bottom: 14px; line-height: 1.2;
  letter-spacing: -0.015em;
  position: relative; z-index: 2;
}
.hub-desc {
  color: var(--text-dim);
  font-size: 0.94rem; line-height: 1.6;
  flex: 1; position: relative; z-index: 2;
  margin-bottom: 22px;
}
.hub-tags { display: flex; flex-wrap: wrap; gap: 6px; position: relative; z-index: 2; }
.hub-tag {
  font-size: 11px; padding: 5px 10px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
}

.hub-corretora { --hub-color: var(--hub-corretora-neon); }
.hub-business { --hub-color: var(--hub-business-neon); }
.hub-consultoria { --hub-color: var(--hub-consultoria-neon); }
.hub-intelligence { --hub-color: var(--hub-intelligence-neon); }
.hub-agency { --hub-color: var(--hub-agency-neon); }
.hub-capital { --hub-color: var(--hub-capital-neon); }

/* === METODOLOGIA === */
.method {
  background: #F4F4F6;
  border-top: 1px solid #E5E5E9;
  border-bottom: 1px solid #E5E5E9;
  position: relative; overflow: hidden;
}
.method .section-head h2 { color: #14141A; }
.method .section-head p { color: #4A4A55; }
.method .section-head .eyebrow { color: var(--orange); }
.method .section-head .eyebrow::before { background: var(--orange); }
.method-timeline {
  position: relative; display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px; margin-top: 20px;
}
.method-line {
  position: absolute;
  top: 42px;
  left: calc(12.5% + 42px);
  right: calc(12.5% + 42px);
  height: 1px;
  background: linear-gradient(90deg,
    var(--orange) 0%,
    rgba(255, 79, 1, 0.4) 50%,
    var(--orange) 100%);
  z-index: 1;
}
.method-step { position: relative; z-index: 2; text-align: left; }
.method-step-num {
  width: 84px; height: 84px; border-radius: 50%;
  background: #FFFFFF; border: 1px solid #E5E5E9;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Michroma', sans-serif;
  font-size: 1rem; color: var(--orange);
  margin-bottom: 28px; position: relative;
  transition: all 0.4s var(--ease);
  letter-spacing: 0;
  box-shadow: 0 6px 18px -8px rgba(0, 0, 0, 0.12);
}
.method-step:hover .method-step-num {
  background: var(--orange); color: #fff; border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 79, 1, 0.18), 0 12px 28px -10px rgba(255, 79, 1, 0.4);
}
.method-step-title {
  font-family: 'Michroma', sans-serif;
  font-weight: 400; font-size: 1.08rem;
  margin-top: 4px;
  margin-bottom: 14px; line-height: 1.25;
  letter-spacing: -0.01em;
  color: #14141A;
}
.method-step-desc { font-size: 0.92rem; color: #4A4A55; line-height: 1.6; }

/* === DIFERENCIAIS === */
.differentials { background: var(--bg); }
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff-card {
  padding: 40px 34px 38px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative; overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
  min-height: 260px;
}
.diff-card:hover {
  border-color: var(--line-hi);
  background: var(--bg-card-hi);
  transform: translateY(-3px);
}
.diff-num {
  font-family: 'Michroma', sans-serif;
  font-size: 0.72rem; color: var(--orange);
  letter-spacing: 0.2em; margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.diff-num::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
  max-width: 40px;
}
.diff-card h3 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400; font-size: 1.2rem;
  margin-bottom: 16px; line-height: 1.25;
  letter-spacing: -0.01em;
}
.diff-card p { color: var(--text-dim); font-size: 0.96rem; line-height: 1.65; }

/* === TARGET === */
.target {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.target-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 90px; align-items: start; }
.target-copy h2 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.12; letter-spacing: -0.02em;
  margin: 24px 0;
}
.target-copy h2 .accent { color: var(--orange); }
.target-copy p {
  color: var(--text-dim);
  font-size: 1.04rem; line-height: 1.65;
  font-weight: 300; max-width: 440px;
}
.target-personas { display: grid; gap: 14px; }
.persona-card {
  display: flex; align-items: center; gap: 22px;
  padding: 24px 26px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}
.persona-card:hover {
  border-color: var(--orange);
  background: var(--bg-card-hi);
  transform: translateX(6px);
}
.persona-badge {
  width: 52px; height: 52px; border-radius: 13px;
  background: linear-gradient(135deg, var(--orange), #C43E00);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-family: 'Michroma', sans-serif;
  font-size: 16px; color: #000;
}
.persona-badge svg {
  width: 24px; height: 24px;
  stroke: #000; stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.persona-info .p-title {
  font-family: 'Michroma', sans-serif;
  font-weight: 400; font-size: 0.92rem;
  margin-bottom: 6px;
  letter-spacing: -0.005em; line-height: 1.25;
}
.persona-info .p-sub { color: var(--text-dim); font-size: 0.88rem; line-height: 1.5; }

/* === TESTIMONIALS === */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi-card {
  padding: 34px 30px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  display: flex; flex-direction: column;
}
.testi-card:hover {
  border-color: var(--line-hi);
  background: var(--bg-card-hi);
  transform: translateY(-4px);
}
.testi-quote-mark {
  font-family: 'Michroma', sans-serif;
  color: var(--orange);
  font-size: 1.8rem; line-height: 0.6;
  margin-bottom: 24px;
}
.testi-text {
  color: var(--text); font-size: 1rem;
  line-height: 1.6; font-weight: 300;
  margin-bottom: 28px; flex: 1;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #C43E00);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Michroma', sans-serif;
  font-size: 12px; color: #000; flex-shrink: 0;
}
.testi-name { font-size: 0.94rem; font-weight: 500; margin-bottom: 2px; }
.testi-role { font-size: 0.82rem; color: var(--text-mute); }

/* === FAQ === */
.faq { background: var(--bg-elev); border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; align-items: start; }
.faq-copy h2 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.12; letter-spacing: -0.02em;
  margin: 24px 0;
}
.faq-copy h2 .accent { color: var(--orange); }
.faq-copy p {
  color: var(--text-dim); font-size: 1rem;
  line-height: 1.6; font-weight: 300;
  margin-bottom: 28px;
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover { border-color: var(--line-hi); }
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  padding: 22px 26px; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-weight: 500; font-size: 0.98rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 14px; height: 14px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF4F01' stroke-width='2.2'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 26px 22px;
  color: var(--text-dim);
  line-height: 1.65; font-size: 0.94rem;
}

/* === CTA FINAL === */
.cta-final { background: var(--bg); padding: var(--space-section) 0; position: relative; overflow: hidden; }
.cta-box {
  position: relative;
  padding: clamp(60px, 8vw, 90px) clamp(28px, 5vw, 70px);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 79, 1, 0.24), transparent 65%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(255, 79, 1, 0.1), transparent 65%),
    linear-gradient(135deg, var(--bg-card) 0%, var(--bg-card-hi) 100%);
  border: 1px solid var(--line-hi);
  border-radius: var(--radius-lg);
  overflow: hidden; text-align: center;
}
.cta-box .eyebrow { justify-content: center; margin-bottom: 26px; }
.cta-box .eyebrow::before { display: none; }
.cta-box h2 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  line-height: 1.12; letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 820px; margin-inline: auto;
}
.cta-box h2 .accent { color: var(--orange); }
.cta-box p {
  color: var(--text-dim); font-size: 1.06rem;
  max-width: 560px; margin: 0 auto 38px;
  font-weight: 300; line-height: 1.6;
}
.cta-stats {
  margin-top: 50px; padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: center;
  gap: clamp(30px, 6vw, 80px);
  flex-wrap: wrap;
}
.cta-stat .v {
  font-family: 'Michroma', sans-serif;
  font-size: 1.3rem; color: var(--orange);
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.cta-stat .l {
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--text-mute); text-transform: uppercase;
  font-family: 'Michroma', sans-serif;
}

/* === FOOTER === */
footer {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  padding: 80px 0 30px;
}

/* Faixa de logos dos hubs (topo do footer) */
.footer-ecosystem {
  padding-bottom: 56px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
}
.footer-ecosystem-label {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--text-mute);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.footer-ecosystem-label::before,
.footer-ecosystem-label::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--line-hi);
}
.footer-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  align-items: stretch;
}
.footer-ecosystem-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 14px;
  background: #FFFFFF;
  border: 1px solid #E5E5E9;
  border-radius: 16px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 3;
}
.footer-ecosystem-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--ecosystem-color, var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.footer-ecosystem-item:hover {
  background: #FAFAFC;
  border-color: var(--ecosystem-color, var(--orange));
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(0, 0, 0, 0.4);
}
.footer-ecosystem-item:hover::before { transform: scaleX(1); }
.footer-ecosystem-item img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s var(--ease);
}
.footer-ecosystem-item:hover img {
  transform: scale(1.05);
}

/* Cores associadas a cada hub no footer (cores da marca, não neon, pois fundo é branco) */
.footer-eco-corretora { --ecosystem-color: var(--hub-corretora); }
.footer-eco-business { --ecosystem-color: var(--hub-business); }
.footer-eco-consultoria { --ecosystem-color: var(--hub-consultoria); }
.footer-eco-intelligence { --ecosystem-color: var(--hub-intelligence); }
.footer-eco-agency { --ecosystem-color: var(--hub-agency); }
.footer-eco-capital { --ecosystem-color: var(--hub-capital); }

/* Reorganizar grid: 3 colunas em vez de 4 (sem mais a coluna Ecossistema) */
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand img { height: 32px; margin-bottom: 24px; }
.footer-brand p {
  color: var(--text-dim); font-size: 0.92rem;
  line-height: 1.6; max-width: 340px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-card); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.footer-socials a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.footer-socials svg { width: 14px; height: 14px; fill: var(--text-dim); transition: fill 0.3s var(--ease); }
.footer-socials a:hover svg { fill: #000; }

.footer-col h4 {
  font-family: 'Michroma', sans-serif;
  font-size: 10px; letter-spacing: 0.2em;
  color: var(--text); margin-bottom: 22px;
  font-weight: 400; text-transform: uppercase;
}
.footer-col ul { list-style: none; display: grid; gap: 12px; }
.footer-col a {
  color: var(--text-dim); font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  padding-top: 30px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 0.82rem; color: var(--text-mute);
}
.footer-bottom-links { display: flex; gap: 28px; }
.footer-bottom a { color: var(--text-mute); }
.footer-bottom a:hover { color: var(--orange); }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.3s var(--ease);
  animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 26px; height: 26px; fill: #fff; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 40px rgba(37, 211, 102, 0.7); }
}

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .hubs-grid { grid-template-columns: 1fr 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .target-layout, .faq-layout { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-ecosystem-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 860px) {
  .method-timeline { grid-template-columns: 1fr 1fr; gap: 40px; }
  .method-line { display: none; }
  .hero-metrics { grid-template-columns: 1fr 1fr 1fr; }
  .hero-metric { padding: 22px 18px 4px; }
  .hero-metric .num { font-size: 1.5rem; }
}

/* ============ MOBILE OTIMIZADO ============ */
@media (max-width: 680px) {
  /* Nav mobile */
  .nav { padding: 14px 0; }
  .nav-links { display: none; }
  .nav-cta-desktop {
    padding: 10px 16px !important;
    font-size: 9px !important;
    letter-spacing: 0.12em;
  }
  .nav-cta-desktop svg { width: 11px; height: 11px; }
  .mobile-toggle { display: none; }
  .nav-logo img { height: 38px; }
  .nav.scrolled .nav-logo img { height: 32px; }

  /* Container ajustado */
  .container { width: 92%; }

  /* Hero - tipografia e ritmo */
  .hero {
    padding: 110px 0 50px;
    min-height: auto;
  }
  .hero-inner { gap: 50px; }
  .hero-content { padding: 0; }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.6rem) !important;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 32px;
  }
  .hero-eyebrow { margin-bottom: 24px; font-size: 9px; letter-spacing: 0.2em; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .hero-actions .btn { width: 100%; padding: 16px 22px; font-size: 10px; }

  /* Hero metrics em coluna empilhada */
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metric {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 22px 0 14px;
  }
  .hero-metric:last-child { border-bottom: none; }
  .hero-metric .num { font-size: 1.7rem; margin-bottom: 8px; }
  .hero-metric .label { font-size: 9px; }

  /* Vetor de fundo do hero - quase invisível em mobile */
  .hero-bg-icon {
    opacity: 0.18;
    right: -30%;
    top: 30%;
    width: 90vmin;
  }

  /* Manifesto */
  .manifesto { padding: 56px 0; }
  .manifesto-text {
    font-size: 1.2rem !important;
    line-height: 1.35;
  }
  .manifesto-sig { font-size: 9px; letter-spacing: 0.18em; margin-top: 28px; }

  /* Seção base */
  section.block { padding: 64px 0; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 {
    font-size: clamp(1.5rem, 7vw, 2rem) !important;
    margin-bottom: 18px;
  }
  .section-head .eyebrow { margin-bottom: 18px; font-size: 9px; letter-spacing: 0.2em; }
  .section-head p { font-size: 0.96rem; line-height: 1.6; }

  /* Hubs em coluna única */
  .hubs-grid { grid-template-columns: 1fr; gap: 14px; }
  .hub-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .hub-card-header { margin-bottom: 22px; }
  .hub-title { font-size: 1.2rem; }
  .hub-desc { font-size: 0.92rem; }

  /* Metodologia - linha simples */
  .method-timeline { grid-template-columns: 1fr; gap: 32px; }
  .method-step { padding: 0; }
  .method-step-num {
    width: 64px; height: 64px;
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  .method-step-title { font-size: 1rem; }
  .method-step-desc { font-size: 0.9rem; }

  /* Diferenciais */
  .diff-grid { grid-template-columns: 1fr; gap: 14px; }
  .diff-card {
    min-height: auto;
    padding: 28px 24px;
  }
  .diff-card h3 { font-size: 1.08rem; }
  .diff-card p { font-size: 0.92rem; }

  /* Para quem */
  .target-layout { gap: 36px; }
  .target-copy h2 { font-size: 1.6rem !important; }
  .persona-card {
    padding: 18px 18px;
    gap: 14px;
  }
  .persona-badge {
    width: 44px; height: 44px;
    border-radius: 11px;
  }
  .persona-badge svg { width: 20px; height: 20px; }
  .persona-info .p-title { font-size: 0.85rem; }
  .persona-info .p-sub { font-size: 0.82rem; line-height: 1.45; }

  /* Depoimentos */
  .testi-card { padding: 26px 22px; }
  .testi-text { font-size: 0.95rem; }

  /* FAQ */
  .faq-layout { gap: 36px; }
  .faq-copy h2 { font-size: 1.6rem !important; }
  .faq-copy p { font-size: 0.92rem; margin-bottom: 22px; }
  .faq-item summary {
    padding: 18px 20px;
    font-size: 0.92rem;
    gap: 14px;
  }
  .faq-body { padding: 0 20px 18px; font-size: 0.9rem; }

  /* CTA final */
  .cta-final { padding: 64px 0; }
  .cta-box {
    padding: 44px 24px;
    border-radius: 18px;
  }
  .cta-box h2 {
    font-size: 1.4rem !important;
    line-height: 1.18;
    margin-bottom: 20px;
  }
  .cta-box p { font-size: 0.94rem; margin-bottom: 28px; }
  .cta-box .btn { width: 100%; padding: 16px 22px; font-size: 10px; }
  .cta-stats {
    margin-top: 36px;
    padding-top: 28px;
    gap: 22px;
  }
  .cta-stat .v { font-size: 1.05rem; }
  .cta-stat .l { font-size: 9px; letter-spacing: 0.16em; }

  /* Footer */
  footer { padding: 56px 0 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 36px; }
  .footer-ecosystem { padding-bottom: 40px; margin-bottom: 36px; }
  .footer-ecosystem-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-ecosystem-item {
    padding: 16px 12px;
    border-radius: 12px;
  }
  .footer-ecosystem-label {
    font-size: 9px;
    letter-spacing: 0.18em;
    margin-bottom: 24px;
  }
  .footer-ecosystem-label::before,
  .footer-ecosystem-label::after { width: 24px; }
  .footer-brand img { height: 26px; }
  .footer-brand p { font-size: 0.88rem; }
  .footer-col h4 { font-size: 9px; margin-bottom: 16px; }
  .footer-col a { font-size: 0.88rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.78rem;
    gap: 14px;
  }
  .footer-bottom-links { flex-wrap: wrap; gap: 16px; }

  /* WhatsApp float maior em mobile (mais fácil tocar) */
  .wa-float {
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
  .wa-float svg { width: 26px; height: 26px; }
}

/* === Mobile pequeno (telefones antigos / iPhone SE) === */
@media (max-width: 380px) {
  .container { width: 92%; }
  .hero h1 { font-size: 1.85rem !important; }
  .section-head h2 { font-size: 1.45rem !important; }
  .manifesto-text { font-size: 1.08rem !important; }
  .cta-box h2 { font-size: 1.25rem !important; }
  .hub-card { padding: 24px 20px; }
  .diff-card { padding: 24px 20px; }
}

/* ============================================================================
   PÁGINA SOBRE NÓS
   ============================================================================ */

/* Hero da página sobre */
.about-hero {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 80% 25%, rgba(255, 79, 1, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 70% at 5% 95%, rgba(255, 79, 1, 0.06), transparent 70%),
    linear-gradient(180deg, #0A0A0B 0%, #0A0A0B 60%, #0E0E10 100%);
}
.about-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}
.about-hero-inner { position: relative; z-index: 2; text-align: left; }
.about-hero h1 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
  max-width: 1000px;
}
.about-hero h1 .accent { color: var(--orange); }
.about-hero-sub {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.65;
  max-width: 760px;
}

/* Seção sobre conteúdo */
.about-content {
  background: var(--bg);
  padding: var(--space-section) 0;
}
.about-content .section-head { max-width: 800px; }
.about-text-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-text p {
  color: var(--text-dim);
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 22px;
  font-weight: 300;
}
.about-text p strong { color: var(--text); font-weight: 500; }
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,11,0.5));
}

/* Seção CEO */
.about-ceo {
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}
.about-ceo-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-ceo-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
}
.about-ceo-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-ceo-content .quote-mark {
  font-family: 'Michroma', sans-serif;
  color: var(--orange);
  font-size: 4rem;
  line-height: 0.5;
  margin-bottom: 32px;
  display: block;
}
.about-ceo-content .ceo-quote {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.42;
  letter-spacing: -0.012em;
  color: var(--text);
  margin-bottom: 40px;
}
.about-ceo-content .ceo-quote .accent { color: var(--orange); }
.about-ceo-content .ceo-info {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-ceo-content .ceo-name {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
}
.about-ceo-content .ceo-role {
  font-family: 'Michroma', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--orange);
  text-transform: uppercase;
}

/* Seção Propósito */
.about-purpose {
  background: var(--bg);
  padding: var(--space-section) 0;
}
.about-purpose-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.about-purpose h2 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.18;
  letter-spacing: -0.018em;
  margin-bottom: 36px;
}
.about-purpose h2 .accent { color: var(--orange); }
.about-purpose-text p {
  color: var(--text-dim);
  font-size: 1.06rem;
  line-height: 1.72;
  margin-bottom: 22px;
  font-weight: 300;
}

/* Seção Manifesto (em fundo claro) */
.about-manifesto {
  background: #F4F4F6;
  border-top: 1px solid #E5E5E9;
  border-bottom: 1px solid #E5E5E9;
  padding: var(--space-section) 0;
  position: relative;
  overflow: hidden;
}
.about-manifesto .x-pattern {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M20 20 L180 180 M180 20 L20 180' stroke='%23FF4F01' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-size: 260px 260px;
}
.about-manifesto-inner {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.about-manifesto .eyebrow {
  color: var(--orange);
  margin-bottom: 28px;
}
.about-manifesto .eyebrow::before { background: var(--orange); }
.about-manifesto h2 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: 1.16;
  letter-spacing: -0.018em;
  margin-bottom: 44px;
  color: #14141A;
}
.about-manifesto h2 .accent { color: var(--orange); }
.about-manifesto-text {
  font-size: 1.06rem;
  line-height: 1.72;
  color: #4A4A55;
  font-weight: 300;
}
.about-manifesto-text p {
  margin-bottom: 22px;
}
.about-manifesto-text strong {
  color: #14141A;
  font-weight: 500;
}
.about-manifesto-text .hl {
  color: var(--orange);
  font-weight: 500;
}

/* Seção Valores */
.about-values {
  background: var(--bg);
  padding: var(--space-section) 0;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.value-card {
  padding: 38px 32px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.value-card:hover {
  border-color: var(--orange);
  background: var(--bg-card-hi);
  transform: translateY(-3px);
}
.value-card:hover::before { transform: scaleX(1); }
.value-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255, 79, 1, 0.1);
  border: 1px solid rgba(255, 79, 1, 0.3);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.value-icon svg {
  width: 22px; height: 22px;
  stroke: var(--orange);
  fill: none; stroke-width: 1.6;
}
.value-card h3 {
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.value-card p {
  color: var(--text-dim);
  font-size: 0.94rem;
  line-height: 1.65;
  font-weight: 300;
}

/* Responsivo página sobre */
@media (max-width: 1100px) {
  .about-text-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-ceo-grid { grid-template-columns: 1fr; gap: 50px; max-width: 700px; }
  .about-ceo-photo { aspect-ratio: 16/10; max-width: 600px; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .about-hero { padding: 130px 0 70px; }
  .about-hero h1 { font-size: clamp(1.85rem, 8vw, 2.6rem) !important; }
  .about-hero-sub { font-size: 0.95rem; }
  .about-content,
  .about-ceo,
  .about-purpose,
  .about-manifesto,
  .about-values { padding: 64px 0; }
  .about-text p { font-size: 0.95rem; line-height: 1.7; }
  .about-ceo-content .ceo-quote { font-size: 1.05rem !important; }
  .about-ceo-content .quote-mark { font-size: 2.8rem; margin-bottom: 22px; }
  .about-purpose h2,
  .about-manifesto h2 { font-size: 1.45rem !important; }
  .about-purpose-text p,
  .about-manifesto-text p { font-size: 0.95rem; line-height: 1.7; }
  .values-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 32px; }
  .value-card { padding: 28px 24px; }
}

/* ============================================================
   OVERRIDES — Sobre EPX Inc. (Hero claro, CEO tipografia ajustada)
   ============================================================ */

/* HERO SOBRE — versão fundo claro */
.about-hero {
  background:
    radial-gradient(ellipse 60% 55% at 80% 25%, rgba(255, 79, 1, 0.10), transparent 60%),
    radial-gradient(ellipse 45% 70% at 5% 95%, rgba(255, 79, 1, 0.05), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFAFB 60%, #F5F5F7 100%);
  border-bottom: 1px solid #ECECEF;
}
.about-hero-grid {
  background-image:
    linear-gradient(rgba(10,10,11,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,10,11,0.045) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%);
}
.about-hero h1 { color: #0A0A0B; }
.about-hero h1 .accent { color: var(--orange); }
.about-hero-sub { color: #4A4A52; }
.about-hero .eyebrow { color: var(--orange); }
.about-hero .eyebrow::before { background: var(--orange); }

/* PALAVRA DO CEO — frase de destaque com Michroma; corpo em IBM Plex Sans */
.about-ceo-content .ceo-quote {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 300;
  font-size: clamp(1.05rem, 1.45vw, 1.25rem);
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--text-dim);
}
.about-ceo-content .ceo-quote .quote-highlight {
  display: block;
  font-family: 'Michroma', sans-serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  line-height: 1.28;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 28px;
}
.about-ceo-content .ceo-quote .quote-highlight .accent { color: var(--orange); }

@media (max-width: 680px) {
  .about-ceo-content .ceo-quote { font-size: 0.98rem !important; line-height: 1.7; }
  .about-ceo-content .ceo-quote .quote-highlight { font-size: 1.2rem; margin-bottom: 20px; }
}

/* ============================================================
   OVERRIDES — "Nossa história" (fundo claro com contraste)
   ============================================================ */
.about-content {
  background: #FFFFFF;
}
.about-content .eyebrow {
  color: var(--orange);
}
.about-content .eyebrow::before {
  background: var(--orange);
}
.about-text p {
  color: #4A4A52;
}
.about-text p strong {
  color: #0A0A0B;
  font-weight: 600;
}
.about-content .about-image {
  background: #F5F5F7;
  border: 1px solid #ECECEF;
  box-shadow: 0 22px 60px -28px rgba(10,10,11,0.18);
}
.about-content .about-image img {
  filter: none;
}
.about-content .about-image::after {
  background: linear-gradient(180deg, transparent 70%, rgba(245,245,247,0.4));
}

/* ============================================================
   OVERRIDES — Palavra do CEO (REFORÇO de hierarquia tipográfica)
   ============================================================ */

/* Corpo do depoimento: IBM Plex Sans, leitura confortável */
.about-ceo-content .ceo-quote,
.about-ceo .ceo-quote {
  font-family: 'IBM Plex Sans', sans-serif !important;
  font-weight: 300 !important;
  font-size: clamp(1.05rem, 1.4vw, 1.22rem) !important;
  line-height: 1.75 !important;
  letter-spacing: 0 !important;
  color: var(--text-dim) !important;
}

/* Frase em destaque: Michroma, tamanho maior, em evidência */
.about-ceo-content .ceo-quote .quote-highlight,
.about-ceo .ceo-quote .quote-highlight {
  display: block !important;
  font-family: 'Michroma', sans-serif !important;
  font-weight: 400 !important;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem) !important;
  line-height: 1.25 !important;
  letter-spacing: -0.018em !important;
  color: var(--text) !important;
  margin-bottom: 32px !important;
}
.about-ceo-content .ceo-quote .quote-highlight .accent,
.about-ceo .ceo-quote .quote-highlight .accent {
  color: var(--orange) !important;
}

@media (max-width: 680px) {
  .about-ceo-content .ceo-quote { font-size: 0.98rem !important; line-height: 1.7 !important; }
  .about-ceo-content .ceo-quote .quote-highlight { font-size: 1.3rem !important; margin-bottom: 22px !important; }
}

/* ============================================================
   OVERRIDE FINAL — "Nossa história" 100% fundo branco (forçado)
   ============================================================ */
section.about-content,
.about-content {
  background: #FFFFFF !important;
  background-color: #FFFFFF !important;
  background-image: none !important;
}

/* Eyebrow "NOSSA HISTÓRIA" — laranja sobre branco */
section.about-content .eyebrow,
.about-content .eyebrow {
  color: var(--orange) !important;
}
section.about-content .eyebrow::before,
.about-content .eyebrow::before {
  background: var(--orange) !important;
}

/* Texto corpo — cinza escuro para leitura confortável sobre branco */
section.about-content .about-text p,
.about-content .about-text p,
.about-content p {
  color: #4A4A52 !important;
}
section.about-content .about-text p strong,
.about-content .about-text p strong,
.about-content strong {
  color: #0A0A0B !important;
  font-weight: 600 !important;
}

/* Container da imagem — borda clara e sombra suave */
section.about-content .about-image,
.about-content .about-image {
  background: #F7F7F9 !important;
  border: 1px solid #E5E5EA !important;
  box-shadow: 0 28px 70px -34px rgba(10,10,11,0.22) !important;
}
section.about-content .about-image img,
.about-content .about-image img {
  filter: none !important;
}
section.about-content .about-image::after,
.about-content .about-image::after {
  background: linear-gradient(180deg, transparent 75%, rgba(247,247,249,0.35)) !important;
}

/* ============================================================
   v15 — "Nossa história" igual ao "Nosso Manifesto" (#F4F4F6)
   ============================================================ */
section.about-content,
.about-content {
  background: #F4F4F6 !important;
  background-color: #F4F4F6 !important;
  background-image: none !important;
  border-top: 1px solid #E5E5E9 !important;
  border-bottom: 1px solid #E5E5E9 !important;
}
.about-content .about-image {
  background: #FFFFFF !important;
  border: 1px solid #E5E5E9 !important;
  box-shadow: 0 22px 60px -30px rgba(10,10,11,0.18) !important;
}
.about-content .about-image::after {
  background: linear-gradient(180deg, transparent 80%, rgba(244,244,246,0.30)) !important;
}

/* ============================================================
   v16 — REVERT "Nossa história" para PRETO original
   ============================================================ */
section.about-content,
.about-content {
  background: var(--bg) !important;
  background-color: #0A0A0B !important;
  background-image: none !important;
  border-top: none !important;
  border-bottom: none !important;
}
.about-content .eyebrow { color: var(--orange) !important; }
.about-content .eyebrow::before { background: var(--orange) !important; }
.about-content .about-text p,
.about-content p {
  color: var(--text-dim) !important;
}
.about-content .about-text p strong,
.about-content strong {
  color: var(--text) !important;
  font-weight: 500 !important;
}
.about-content .about-image {
  background: var(--bg-card) !important;
  border: 1px solid var(--line) !important;
  box-shadow: none !important;
}
.about-content .about-image img { filter: brightness(0.92) !important; }
.about-content .about-image::after {
  background: linear-gradient(180deg, transparent 60%, rgba(10,10,11,0.5)) !important;
}

/* ============================================================
   v16 — "PALAVRA DO CEO" agora em fundo claro #F4F4F6
   ============================================================ */
section.about-ceo,
.about-ceo {
  background: #F4F4F6 !important;
  background-color: #F4F4F6 !important;
  background-image: none !important;
  border-top: 1px solid #E5E5E9 !important;
  border-bottom: 1px solid #E5E5E9 !important;
}

/* Eyebrow "Palavra do CEO" — laranja sobre claro */
.about-ceo .eyebrow { color: var(--orange) !important; }
.about-ceo .eyebrow::before { background: var(--orange) !important; }

/* Container da foto do CEO — branco com borda clara */
.about-ceo .about-ceo-photo {
  background: #FFFFFF !important;
  border: 1px solid #E5E5E9 !important;
  box-shadow: 0 22px 60px -30px rgba(10,10,11,0.18) !important;
}

/* Aspas "" em laranja (já era), só reforçar */
.about-ceo .about-ceo-content .quote-mark {
  color: var(--orange) !important;
}

/* Corpo do depoimento — IBM Plex Sans com cinza-grafite legível sobre claro */
.about-ceo .about-ceo-content .ceo-quote {
  color: #4A4A52 !important;
}

/* Frase em destaque (Michroma) — preto profundo sobre claro */
.about-ceo .about-ceo-content .ceo-quote .quote-highlight {
  color: #0A0A0B !important;
}
.about-ceo .about-ceo-content .ceo-quote .quote-highlight .accent {
  color: var(--orange) !important;
}

/* Bloco do nome/cargo do CEO — borda divisória clara, nome em preto */
.about-ceo .about-ceo-content .ceo-info {
  border-top: 1px solid #E5E5E9 !important;
}
.about-ceo .about-ceo-content .ceo-name {
  color: #0A0A0B !important;
}
.about-ceo .about-ceo-content .ceo-role {
  color: var(--orange) !important;
}

/* ============================================================
   v17 — REVERT TOTAL hero "Sobre a EPX Inc." para tema escuro
   ============================================================ */
section.about-hero,
.about-hero {
  background:
    radial-gradient(ellipse 60% 55% at 80% 25%, rgba(255, 79, 1, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 70% at 5% 95%, rgba(255, 79, 1, 0.06), transparent 70%),
    linear-gradient(180deg, #0A0A0B 0%, #0A0A0B 60%, #0E0E10 100%) !important;
  border-bottom: none !important;
}
.about-hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px) !important;
  mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%) !important;
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, #000 30%, transparent 80%) !important;
}
.about-hero h1 { color: var(--text) !important; }
.about-hero h1 .accent { color: var(--orange) !important; }
.about-hero-sub { color: var(--text-dim) !important; }
.about-hero .eyebrow { color: var(--orange) !important; }
.about-hero .eyebrow::before { background: var(--orange) !important; }

/* ============================================================
   v17 — FIX texto invisível em "Nossa história" (strong/bold visível)
   ============================================================ */
section.about-content .about-text p,
.about-content .about-text p,
.about-content p {
  color: var(--text-dim) !important;
}
section.about-content .about-text p strong,
section.about-content strong,
.about-content .about-text p strong,
.about-content strong,
.about-content b {
  color: #FFFFFF !important;
  font-weight: 600 !important;
}

/* ============================================================
   v18 — "Nossa história" — sem borda na imagem + texto mais legível
   ============================================================ */

/* Container da imagem — sem borda, sem fundo, transparente */
section.about-content .about-image,
.about-content .about-image {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
.about-content .about-image img {
  filter: none !important;
}
.about-content .about-image::after {
  background: none !important;
}

/* Texto do corpo — clareado para leitura confortável */
section.about-content .about-text p,
.about-content .about-text p,
.about-content p {
  color: #C8C8CE !important;
  font-size: 1.06rem !important;
  line-height: 1.78 !important;
  font-weight: 300 !important;
}
section.about-content .about-text p strong,
.about-content .about-text p strong,
.about-content strong,
.about-content b {
  color: #FFFFFF !important;
  font-weight: 600 !important;
}

@media (max-width: 680px) {
  .about-content .about-text p { font-size: 0.98rem !important; line-height: 1.72 !important; }
}
