/* =============================================
   NEVES SOLUÇÕES — felipebarneves.me
   Tech/Premium Dark Theme
   Space Grotesk | DM Sans | JetBrains Mono
   ============================================= */

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

:root {
  --bg:           #07111F;
  --bg-card:      #0B1929;
  --bg-glass:     rgba(11, 25, 41, 0.65);
  --gold-1:       #C8883A;
  --gold-2:       #E8A855;
  --gold-grad:    linear-gradient(135deg, #C8883A 0%, #E8A855 100%);
  --silver:       #A8B4C0;
  --white:        #EDF1F5;
  --border:       rgba(168, 180, 192, 0.09);
  --border-gold:  rgba(200, 136, 58, 0.22);
  --glow-gold:    rgba(200, 136, 58, 0.07);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --max-width: 1180px;
  --tr:        0.28s ease;
  --radius:    8px;
  --radius-lg: 14px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

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

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.85rem); }
h4 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }

p { color: var(--silver); line-height: 1.78; }

.label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-1);
  display: block;
  margin-bottom: 0.85rem;
}

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── GRADIENT DIVIDER ─── */
.g-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-1) 50%, transparent 100%);
  opacity: 0.15;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--tr);
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* Primary: gold border + gold text → gold fill on hover */
.btn-primary {
  background: transparent;
  border-color: var(--border-gold);
  color: var(--gold-1);
}
.btn-primary:hover {
  background: var(--gold-grad);
  border-color: transparent;
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(200, 136, 58, 0.35);
  transform: translateY(-1px);
}

/* Secondary: glass → gold outline on hover */
.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  color: var(--silver);
}
.btn-secondary:hover {
  border-color: var(--border-gold);
  color: var(--gold-1);
  background: var(--glow-gold);
}

/* Solid: always gold fill, brighter on hover */
.btn-solid {
  background: var(--gold-grad);
  border-color: transparent;
  color: var(--bg);
  font-weight: 700;
}
.btn-solid:hover {
  box-shadow: 0 6px 32px rgba(200, 136, 58, 0.45);
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(7, 17, 31, 0.88);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img { height: 75px; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--silver);
  transition: color var(--tr);
  letter-spacing: -0.01em;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--silver);
  transition: var(--tr);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--silver);
  letter-spacing: -0.03em;
  transition: color var(--tr);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: var(--silver);
  font-size: 1.75rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 300;
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
  align-items: center;
  width: 100%;
  padding: 0 3rem;
}
.mobile-actions .btn { width: 100%; justify-content: center; }

/* ─── SECTION BASE ─── */
section { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header h2 { margin-top: 0.5rem; }
.section-header p { margin-top: 1rem; max-width: 560px; font-size: 1.02rem; }
.section-header.centered p { margin-left: auto; margin-right: auto; }

/* ─── HERO HOMEPAGE ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0 6rem;
  position: relative;
  overflow: hidden;
}
/* Ambient background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: 20%;
  width: 900px; height: 900px;
  background: radial-gradient(ellipse, rgba(200, 136, 58, 0.055) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,136,58,0.2), transparent);
}
.hero-inner {
  display: grid;
  grid-template-columns: 56% 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-1);
  margin-bottom: 1.75rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-gold);
  border-radius: 100px;
  background: var(--glow-gold);
  width: fit-content;
  backdrop-filter: blur(8px);
}
.hero-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-1);
  box-shadow: 0 0 8px var(--gold-1);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--gold-1); }
  50% { opacity: 0.6; box-shadow: 0 0 4px var(--gold-1); }
}
.hero h1 { margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.75rem;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── FLOATING CARDS ─── */
.hero-visual {
  position: relative;
  height: 520px;
}
.hero-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200, 136, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(40px);
}
.float-card {
  position: absolute;
  background: rgba(11, 25, 41, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(200, 136, 58, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.35rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: floatY 7s ease-in-out infinite;
}
.float-card:nth-child(2) { animation-delay: -1.8s; animation-duration: 8s; }
.float-card:nth-child(3) { animation-delay: -3.5s; animation-duration: 6.5s; }
.float-card:nth-child(4) { animation-delay: -5s; animation-duration: 7.5s; }
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.fc-label {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  opacity: 0.65;
  display: block;
  margin-bottom: 0.6rem;
}
.fc-big {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.fc-big-unit {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
}
.fc-sub {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  color: var(--silver);
  opacity: 0.55;
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
}
.fc-stat {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.fc-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  color: var(--silver);
  opacity: 0.65;
  margin-top: 0.25rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-text-fill-color: var(--silver);
}
.fc-checklist { margin-top: 0.4rem; }
.fc-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--silver);
  padding: 0.22rem 0;
  opacity: 0.45;
}
.fc-checklist li.done   { opacity: 1; }
.fc-checklist li.active { opacity: 1; color: var(--gold-2); }
.fc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1px solid currentColor;
  flex-shrink: 0;
}
.fc-checklist li.done   .fc-dot { background: var(--gold-1); border-color: var(--gold-1); }
.fc-checklist li.active .fc-dot { background: var(--gold-2); border-color: var(--gold-2); box-shadow: 0 0 6px var(--gold-2); }
.fc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(168,180,192,0.07);
  font-size: 0.8rem;
}
.fc-row:last-child { border-bottom: none; }
.fc-row-label { color: var(--silver); opacity: 0.65; }
.fc-row-val {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.78rem;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.fc-bar {
  height: 3px;
  background: rgba(168,180,192,0.1);
  border-radius: 2px;
  margin-top: 0.6rem;
  overflow: hidden;
}
.fc-bar-fill {
  height: 100%;
  background: var(--gold-grad);
  border-radius: 2px;
}

/* Card positions — Homepage */
.fc-home-1 { top: 4%;  right: 4%;  width: 188px; }
.fc-home-2 { top: 36%; left: 0%;  width: 176px; }
.fc-home-3 { bottom: 8%;  right: 10%; width: 200px; }
.fc-home-4 { top: 58%; right: 40%; width: 164px; }

/* Card positions — B2B page hero */
.fc-b2b-1 { top: 4%;  right: 2%;  width: 210px; }
.fc-b2b-2 { top: 42%; left: 0%;  width: 215px; }
.fc-b2b-3 { bottom: 6%; right: 22%; width: 185px; }

/* Card positions — B2C page hero */
.fc-b2c-1 { top: 4%;  left: 4%;  width: 215px; }
.fc-b2c-2 { top: 44%; right: 2%; width: 185px; }
.fc-b2c-3 { bottom: 6%; left: 18%; width: 175px; }

/* ─── MÉTODO ─── */
.metodo {
  background: rgba(255,255,255,0.018);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fase {
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  transition: background var(--tr);
}
.fase:hover { background: var(--glow-gold); }
.fase:not(:last-child) { border-right: 1px solid var(--border); }
.fase-num {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  color: var(--gold-1);
  letter-spacing: 0.18em;
  display: block;
  margin-bottom: 1.1rem;
}
.fase-icon {
  width: 46px; height: 46px;
  margin: 0 auto 1.25rem;
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-1);
  background: var(--glow-gold);
}
.fase h3 { font-size: 1.15rem; margin-bottom: 0.7rem; }
.fase p { font-size: 0.875rem; line-height: 1.65; }

/* ─── CREDENCIAIS ─── */
.credenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.cred-item {
  padding: 2.5rem 1.75rem;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.018);
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.cred-item:hover {
  border-color: var(--border-gold);
  background: var(--glow-gold);
  transform: translateY(-2px);
}
.cred-num {
  font-family: var(--font-mono);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.65rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.cred-label {
  font-size: 0.84rem;
  color: var(--silver);
  line-height: 1.5;
}

/* ─── DOIS CAMINHOS ─── */
.caminhos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.caminho-card {
  padding: 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.018);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr), background var(--tr);
}
.caminho-card:hover {
  border-color: var(--border-gold);
  background: rgba(200,136,58,0.025);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,0.25), 0 0 0 1px var(--border-gold);
}
.caminho-card h3 { line-height: 1.2; font-size: 1.55rem; }
.caminho-card > p { font-size: 0.92rem; }
.pain-list { flex: 1; }
.pain-list li {
  font-size: 0.875rem;
  color: var(--silver);
  padding: 0.55rem 0 0.55rem 1.3rem;
  border-bottom: 1px solid rgba(168,180,192,0.06);
  position: relative;
  line-height: 1.55;
}
.pain-list li:last-child { border-bottom: none; }
.pain-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold-1);
  font-size: 0.8rem;
  top: 0.6rem;
}

/* ─── SOBRE ─── */
.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.sobre-content h2 { margin-bottom: 1.5rem; }
.sobre-content p { margin-bottom: 1.15rem; font-size: 0.97rem; }
.sobre-links { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.sobre-photo {
  width: 100%;
  max-width: 400px;
  height: 510px;
  object-fit: cover;
  object-position: center 15%;
  border-radius: var(--radius-lg);
  margin-left: auto;
  border: 1px solid var(--border-gold);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45), 0 0 50px rgba(200,136,58,0.07);
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 2.75rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo .logo-text { font-size: 1rem; opacity: 0.45; }
.footer-social { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-social a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--silver);
  opacity: 0.45;
  transition: all var(--tr);
}
.footer-social a:hover { opacity: 1; color: var(--gold-1); }
.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.67rem;
  color: var(--silver);
  opacity: 0.28;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 10rem 0 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 5%;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(200,136,58,0.055) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 4rem;
  align-items: center;
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
}
.page-hero-content { }
.page-hero h1 { margin-bottom: 1.25rem; }
.page-hero p { font-size: 1.08rem; line-height: 1.8; max-width: 500px; }
.page-hero-visual {
  position: relative;
  height: 420px;
}

/* ─── PROBLEMAS ─── */
.problemas { background: rgba(255,255,255,0.015); }
.problemas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.problema-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.018);
  transition: border-color var(--tr), background var(--tr);
}
.problema-item:hover {
  border-color: var(--border-gold);
  background: var(--glow-gold);
}
.problema-num {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  color: var(--gold-1);
  flex-shrink: 0;
  margin-top: 0.15rem;
  letter-spacing: 0.1em;
}
.problema-item p { font-size: 0.9rem; margin: 0; line-height: 1.65; }

/* ─── DELIVERABLES ─── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.deliverable {
  padding: 1.5rem 1.75rem;
  border-left: 2px solid var(--gold-1);
  background: rgba(200,136,58,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.deliverable p { font-size: 0.875rem; margin: 0; line-height: 1.65; }

/* ─── PRODUTOS ─── */
.produtos-list {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.produto-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 2.5rem;
  background: rgba(255,255,255,0.015);
  border-bottom: 1px solid var(--border);
  transition: background var(--tr);
}
.produto-card:last-child { border-bottom: none; }
.produto-card:hover { background: rgba(200,136,58,0.03); }
.produto-card.destaque {
  background: rgba(200,136,58,0.04);
  border-left: 2px solid var(--gold-1);
}
.produto-track {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.15em;
  color: var(--gold-1);
  display: block;
  margin-bottom: 0.35rem;
}
.produto-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.produto-card p { font-size: 0.875rem; margin: 0; line-height: 1.65; max-width: 660px; }
.badge-soon {
  display: inline-block;
  padding: 0.35rem 0.95rem;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.1em;
  border-radius: 100px;
  background: rgba(200,136,58,0.08);
  border: 1px solid var(--border-gold);
  color: var(--gold-1);
  white-space: nowrap;
}

/* ─── PARA QUEM ─── */
.para-quem-box {
  max-width: 720px;
  padding: 2.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.018);
}
.para-quem-box p { font-size: 0.97rem; line-height: 1.82; }
.para-quem-box p + p { margin-top: 1rem; }

/* ─── RESULTADOS ─── */
.resultados { background: rgba(255,255,255,0.015); }
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.resultado-item {
  text-align: center;
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.018);
  transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.resultado-item:hover {
  border-color: var(--border-gold);
  background: var(--glow-gold);
  transform: translateY(-2px);
}
.resultado-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.resultado-item p { font-size: 0.875rem; line-height: 1.6; }

/* ─── CTA SECTION ─── */
.cta-section {
  text-align: center;
  border-top: 1px solid var(--border);
  background: rgba(200,136,58,0.02);
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section > .container > p { margin: 0 auto 2.5rem; max-width: 500px; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── B2C PROSE ─── */
.b2c-intro {
  max-width: 800px;
}
.b2c-intro p { font-size: 1.05rem; line-height: 1.88; margin-bottom: 1.25rem; }
.b2c-intro p:last-child { margin-bottom: 0; }

/* ─── EXEC MÉTODO (B2C) ─── */
.metodo-exec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.exec-fase {
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.018);
  transition: border-color var(--tr), background var(--tr);
}
.exec-fase:hover {
  border-color: var(--border-gold);
  background: var(--glow-gold);
}
.exec-num {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--gold-1);
  letter-spacing: 0.16em;
  display: block;
  margin-bottom: 0.75rem;
}
.exec-fase h4 { margin-bottom: 0.6rem; }
.exec-fase p { font-size: 0.84rem; line-height: 1.68; }

/* ─── FADE-IN ─── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fd1 { transition-delay: 0.1s; }
.fd2 { transition-delay: 0.2s; }
.fd3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .credenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .metodo-exec-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 0; }
  .page-hero-visual { height: 300px; margin-top: 2.5rem; }
  .metodo-grid { grid-template-columns: 1fr 1fr; }
  .fase:nth-child(2) { border-right: none; }
  .sobre-inner { grid-template-columns: 1fr; gap: 3rem; }
  .sobre-photo { margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 0 4rem; min-height: auto; }
  .hero-visual { height: 340px; }
  .caminhos-grid { grid-template-columns: 1fr; }
  .problemas-grid { grid-template-columns: 1fr; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .resultados-grid { grid-template-columns: 1fr; }
  .produto-card { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-social { justify-content: center; }
  section { padding: 4rem 0; }
}
@media (max-width: 480px) {
  .metodo-grid { grid-template-columns: 1fr; }
  .fase:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .metodo-exec-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-visual { display: none; }
  .page-hero-visual { display: none; }
}