/* ================================================
   TECHSAVVY — Design System
   Primary #E85B0D · Navy #1A2B3A · Open Sans
   ================================================ */

:root {
  --orange:        #E85B0D;
  --orange-dark:   #C44E0A;
  --orange-pale:   rgba(232,91,13,0.10);
  --orange-glow:   rgba(232,91,13,0.18);
  --navy:          #1A2B3A;
  --navy-dark:     #0D1B27;
  --navy-mid:      #1E3248;
  --navy-light:    #243950;
  --white:         #FFFFFF;
  --off-white:     #F8FAFB;
  --gray-50:       #F2F4F6;
  --gray-100:      #E8EBEE;
  --gray-200:      #D4D9DE;
  --gray-400:      #8A9BAE;
  --gray-600:      #4A5568;
  --text:          #0F1923;
  --font:          'Open Sans', -apple-system, sans-serif;
  --mono:          'JetBrains Mono', 'Courier New', monospace;
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     14px;
  --shadow:        0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:     0 12px 48px rgba(0,0,0,0.14);
  --transition:    180ms ease;
  --max-w:         1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ── LAYOUT ───────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section           { padding: 100px 0; }
.section-dark      { background: var(--navy-dark); padding: 100px 0; }
.section-stats     { background: var(--navy); padding: 80px 0; position: relative; }

.section-stats::before,
.section-stats::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,91,13,0.5), transparent);
}
.section-stats::before { top: 0; }
.section-stats::after  { bottom: 0; }

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--text);
}

h1 { font-size: clamp(48px, 6vw, 84px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.6vw, 50px); }
h3 { font-size: clamp(18px, 2vw, 24px); }
h4 { font-size: 17px; font-weight: 700; }

p { color: var(--gray-600); }

/* ── SECTION HEADER ───────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { margin-bottom: 14px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--orange);
  opacity: 0.5;
}

.section-dark .section-header .section-label { color: rgba(255,255,255,0.3); }
.section-dark .section-header .section-label::before,
.section-dark .section-header .section-label::after { background: rgba(255,255,255,0.2); opacity: 1; }

.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p  { color: rgba(255,255,255,0.45); }

.section-sub {
  max-width: 540px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.72;
}

/* ── BUTTONS ──────────────────────────────── */
.btn-primary,
.btn-ghost,
.btn-white,
.btn-white-ghost,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(232,91,13,0.35);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.22);
}
.btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.btn-white { background: #fff; color: var(--orange); border-color: #fff; font-weight: 700; }
.btn-white:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: translateY(-1px);
}

.btn-white-ghost {
  background: transparent;
  color: rgba(255,255,255,0.82);
  border-color: rgba(255,255,255,0.4);
}
.btn-white-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange-pale);
  transform: translateY(-1px);
}

/* ── NAVBAR ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  height: 68px;
  max-width: 100%;
  transition: background 350ms ease, box-shadow 350ms ease;
}

.nav.scrolled {
  background: rgba(13,27,39,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo span {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-links a {
  display: block;
  padding: 7px 13px;
  text-decoration: none;
  color: rgba(255,255,255,0.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,0.08); }

.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,91,13,0.4);
}

/* ── HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: grid;
  grid-template-columns: 56% 1fr;
  align-items: center;
  padding: 100px 0;
  padding-left: clamp(24px, 4vw, calc((100vw - 1180px) / 2 + 28px));
  padding-right: clamp(24px, 4vw, calc((100vw - 1180px) / 2 + 28px));
  gap: 56px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,91,13,0.5), transparent);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,91,13,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--orange);
}

.hero-h1 {
  color: #fff;
  line-height: 1.04;
  margin-bottom: 20px;
  font-size: clamp(46px, 5.5vw, 78px);
}

.hero-h1 span { color: var(--orange); }

.hero-desc {
  font-size: 17px;
  line-height: 1.78;
  color: rgba(255,255,255,0.5);
  max-width: 500px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual { position: relative; z-index: 1; }

.hero-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 220ms ease;
}

.hcard:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,91,13,0.3);
  transform: translateX(5px);
}

.hcard-label {
  font-weight: 600;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.01em;
}

.hcard-tag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid rgba(232,91,13,0.2);
}

/* ── PRODUCT CARDS ────────────────────────── */
.pcards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 2px solid var(--gray-100);
  overflow: hidden;
}

.pcard {
  background: var(--white);
  padding: 48px 44px;
  position: relative;
  transition: background var(--transition);
}

.pcard::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 280ms ease;
}

.pcard:hover { background: var(--off-white); }
.pcard:hover::before { transform: scaleX(1); }

.pcard-icon {
  width: 52px; height: 52px;
  background: var(--orange-pale);
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--orange);
  margin-bottom: 26px;
}

.pcard h3 {
  color: var(--navy);
  margin-bottom: 12px;
}

.pcard p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.pcard-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: gap var(--transition);
}

.pcard-link:hover { gap: 11px; }

/* ── FEATURES GRID ────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.fitem {
  background: var(--navy-dark);
  padding: 38px 34px;
  transition: background var(--transition);
}

.fitem:hover { background: var(--navy-mid); }

.fitem-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  opacity: 0.5;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.fitem h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
}

.fitem p {
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  line-height: 1.65;
}

/* ── STATS GRID ───────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.sitem {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.sitem:last-child { border-right: none; }

.sitem-value {
  display: block;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 12px;
}

.sitem-label {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ── TWO-COLUMN LAYOUT ────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.two-col-text h2 { margin-bottom: 20px; }
.two-col-text p  { font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
.two-col-text .btn-outline { margin-top: 12px; }

.tech-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14.5px;
  color: var(--text);
  transition: background var(--transition);
}

.tech-item:last-child { border-bottom: none; }
.tech-item:hover { background: var(--off-white); }

.tech-check {
  color: var(--orange);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── TESTIMONIALS ─────────────────────────── */
.tcards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  transition: all 250ms ease;
}

.tcard:hover {
  border-color: rgba(232,91,13,0.3);
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.tcard-quote {
  font-size: 15px;
  line-height: 1.78;
  font-style: italic;
  color: rgba(255,255,255,0.58);
  margin-bottom: 30px;
  position: relative;
}

.tcard-quote::before {
  content: '"';
  font-size: 56px;
  line-height: 0;
  color: var(--orange);
  opacity: 0.22;
  font-family: Georgia, serif;
  font-style: normal;
  font-weight: 800;
  display: block;
  margin-bottom: 14px;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.tcard-avatar {
  width: 44px; height: 44px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.tcard-author strong {
  display: block;
  font-size: 14.5px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 2px;
}

.tcard-author span {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.05em;
}

/* ── CTA BAND ─────────────────────────────── */
.cta-band {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.cta-band-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-band-inner h2 {
  color: #fff;
  margin-bottom: 10px;
  max-width: 520px;
}

.cta-band-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 17px;
}

.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── BLOG CARDS ───────────────────────────── */
.bcards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bcard {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 250ms ease;
  position: relative;
  overflow: hidden;
}

.bcard:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
  transform: translateY(-4px);
}

.bcard-tag {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid rgba(232,91,13,0.18);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 18px;
}

.bcard h3 {
  font-size: 17px;
  color: var(--navy);
  line-height: 1.42;
  margin-bottom: 12px;
}

.bcard p {
  font-size: 14px;
  line-height: 1.68;
  margin-bottom: 20px;
}

.bcard-soon {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── FOOTER ───────────────────────────────── */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-brand .nav-logo span { color: #fff; }

.footer-brand p {
  color: rgba(255,255,255,0.38);
  font-size: 14px;
  line-height: 1.75;
  margin-top: 16px;
  max-width: 260px;
}

.footer-brand .footer-location {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.08em;
  margin-top: 8px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.48);
  font-size: 14px;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}

.social-icons a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.48);
  transition: all var(--transition);
}

.social-icons a:hover {
  color: #fff;
  border-color: rgba(232,91,13,0.5);
  background: rgba(232,91,13,0.1);
}

.social-icons svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.22);
}

.footer-tagline {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── PAGE HERO (inner pages) ──────────────── */
.page-hero {
  padding: 140px 0 84px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  z-index: 0;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,91,13,0.45), transparent);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-content {
  max-width: 680px;
}

.page-hero-content .hero-eyebrow { display: inline-flex; }
.page-hero-content h1 { color: #fff; margin-bottom: 18px; }
.page-hero-content .hero-actions { margin-top: 36px; }

.page-hero-desc {
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  max-width: 560px;
}

.product-badge {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid rgba(232,91,13,0.25);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}

/* ── INTRO STATEMENT (solucoes) ───────────── */
.intro-statement {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.intro-mono {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.intro-statement h2 { margin-bottom: 20px; }
.intro-statement p   { font-size: 17px; line-height: 1.75; }

/* ── PRODUCT BLOCKS (solucoes) ────────────── */
.product-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.product-block-light {
  background: var(--white);
  border-color: var(--gray-100);
}

.product-block-header {
  padding: 56px 52px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.product-block-light .product-block-header {
  border-bottom-color: var(--gray-100);
}

.product-tag {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid rgba(232,91,13,0.2);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 16px;
}

.product-block-header h2 {
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.08;
}

.product-block-light .product-block-header h2 { color: var(--navy); }

.product-sub {
  display: block;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  font-size: clamp(20px, 2.5vw, 32px);
}

.product-block-light .product-sub { color: var(--gray-400); }

.product-block-header p {
  font-size: 16px;
  line-height: 1.72;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  margin-bottom: 28px;
}

.product-block-light .product-block-header p { color: var(--gray-600); }

.product-block-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
}

.product-block-light .product-block-features {
  background: var(--gray-100);
}

.mfeat {
  display: flex;
  gap: 20px;
  padding: 36px 40px;
  background: var(--navy-dark);
  transition: background var(--transition);
}

.product-block-light .mfeat { background: var(--white); }
.product-block-light .mfeat:hover { background: var(--off-white); }
.mfeat:hover { background: var(--navy-mid); }

.mfeat-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  opacity: 0.5;
  letter-spacing: 0.12em;
  flex-shrink: 0;
  padding-top: 3px;
}

.mfeat h4 {
  font-size: 15.5px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}

.product-block-light .mfeat h4 { color: var(--navy); }

.mfeat p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.42);
}

.product-block-light .mfeat p { color: var(--gray-600); }

.mfeat-more {
  padding: 22px 40px 30px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.product-block-light .mfeat-more { color: var(--gray-400); }

/* ── CONTRACT CARDS (solucoes) ────────────── */
.contract-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.ccard {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: all 250ms ease;
}

.ccard:hover {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
}

.ccard-featured {
  background: rgba(232,91,13,0.07);
  border-color: rgba(232,91,13,0.35);
}

.ccard-featured:hover {
  background: rgba(232,91,13,0.1);
  border-color: rgba(232,91,13,0.55);
}

.ccard-header { margin-bottom: 20px; }

.ccard-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  opacity: 0.5;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.ccard-header h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}

.ccard-price {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.05em;
  background: var(--orange-pale);
  border: 1px solid rgba(232,91,13,0.2);
  padding: 3px 10px;
  border-radius: 4px;
  margin-top: 8px;
}

.ccard > p {
  font-size: 14px;
  line-height: 1.72;
  color: rgba(255,255,255,0.48);
  margin-bottom: 24px;
}

.ccard-list {
  list-style: none;
  margin-bottom: 32px;
}

.ccard-list li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-left: 16px;
  position: relative;
}

.ccard-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 16px;
  line-height: 1.4;
}

/* ── MENTOR INTRO ─────────────────────────── */
.mentor-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.mentor-intro-text h2 { margin-bottom: 20px; }
.mentor-intro-text p  { font-size: 16px; line-height: 1.75; margin-bottom: 14px; }

.mentor-intro-stat {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mentor-stat {
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
}

.mentor-stat-value {
  display: block;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.mentor-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--gray-400);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── MENTOR CAPABILITY BLOCKS ─────────────── */
.mblock { padding: 80px 0; }

.mcard {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 56px 52px;
}

.mcard-light {
  background: var(--white);
  border-color: var(--gray-100);
}

.mcard-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  opacity: 0.55;
  letter-spacing: 0.14em;
  padding-top: 6px;
}

.mcard-content h2 {
  color: #fff;
  margin-bottom: 8px;
}

.mcard-light .mcard-content h2 { color: var(--navy); }

.mcard-sub {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.42);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.mcard-light .mcard-sub { color: var(--gray-400); }

.mcard-content > p {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 560px;
}

.mcard-light .mcard-content > p { color: var(--gray-600); }

.mcard-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

.mcard-light .mcard-details { background: var(--gray-100); }

.mcard-detail {
  background: var(--navy-dark);
  padding: 28px 28px;
}

.mcard-light .mcard-detail { background: var(--white); }
.mcard-light .mcard-detail:hover { background: var(--off-white); }

.mcard-detail h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 8px;
}

.mcard-light .mcard-detail h4 { color: var(--navy); }

.mcard-detail p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
}

.mcard-light .mcard-detail p { color: var(--gray-600); }

/* ── ABOUT: WHY BLOCK ─────────────────────── */
.why-block {
  display: grid;
  grid-template-columns: 1fr;
}

.why-text { max-width: 760px; }
.why-text .section-label { display: inline-flex; }
.why-text h2 { margin-bottom: 20px; }
.why-text p  { font-size: 16px; line-height: 1.75; margin-bottom: 16px; }

.why-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 8px;
}

.why-pillar {
  padding: 26px 28px;
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--transition);
}

.why-pillar:last-child { border-bottom: none; }
.why-pillar:hover { background: var(--off-white); }

.why-pillar-label {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.why-pillar p {
  font-size: 14.5px;
  line-height: 1.68;
}

/* ── TEAM GRID ────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 250ms ease;
}

.team-card:hover {
  border-color: rgba(232,91,13,0.35);
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.team-avatar {
  width: 64px; height: 64px;
  background: var(--navy-light);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-info h3 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 5px;
}

.team-role {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.team-info p {
  font-size: 13.5px;
  line-height: 1.68;
  color: rgba(255,255,255,0.38);
}

/* ── VALUES GRID ──────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.vcard {
  padding: 36px 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.vcard:hover {
  border-color: rgba(232,91,13,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.vcard-num {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  opacity: 0.7;
}

.vcard h3 { color: var(--navy); font-size: 17px; margin-bottom: 10px; }
.vcard p  { color: var(--gray-600); font-size: 14px; line-height: 1.68; }

/* ── CONTEXT BLOCK (about) ────────────────── */
.context-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.context-item {
  background: var(--navy-dark);
  padding: 40px 32px;
  text-align: center;
  transition: background var(--transition);
}

.context-item:hover { background: var(--navy-mid); }

.context-label {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

.context-value {
  display: block;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1;
}

.context-item p {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.35);
}

/* ── HERO MOCKUP ──────────────────────────── */
.mockup {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}

.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.mockup-dots span:first-child { background: #E85B0D; opacity: 0.7; }

.mockup-title {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  flex: 1;
}

.mockup-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em;
}

.mockup-live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.mockup-metrics {
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-metric {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
}

.mockup-metric-label {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

.mockup-metric-bar {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.mockup-metric-bar div {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  opacity: 0.8;
}

.mockup-metric-pct {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--orange);
  min-width: 28px;
  text-align: right;
}

.mockup-chart {
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
  margin-bottom: 8px;
}

.mockup-bar-col {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 3px 3px 0 0;
  transition: background var(--transition);
}

.mockup-bar-col.active { background: var(--orange); opacity: 0.75; }
.mockup-bar-col:hover  { background: rgba(255,255,255,0.16); }

.mockup-chart-label {
  font-family: var(--mono);
  font-size: 9px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: right;
}

.mockup-txns {
  padding: 14px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mockup-txn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.mockup-txn:last-child { border-bottom: none; }

.mockup-txn-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.mockup-txn-dot.green  { background: #22c55e; box-shadow: 0 0 5px rgba(34,197,94,0.5); }
.mockup-txn-dot.orange { background: var(--orange); box-shadow: 0 0 5px rgba(232,91,13,0.5); }

.mockup-txn-name {
  font-family: var(--mono);
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
  flex: 1;
}

.mockup-txn-status {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.05em;
}

/* ── BLOG CARD THUMBNAILS ─────────────────── */
.bcard-thumb {
  height: 160px;
  margin: -36px -32px 28px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.bcard-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 18px 18px;
}

.bcard-thumb svg { position: relative; z-index: 1; opacity: 0.9; }

.bcard-thumb--adq  { background: linear-gradient(135deg, #1A2B3A 0%, #243950 60%, #1E3248 100%); }
.bcard-thumb--infra { background: linear-gradient(135deg, #0D1B27 0%, #1A2B3A 60%, #1A3040 100%); }
.bcard-thumb--tech  { background: linear-gradient(135deg, #1A2028 0%, #1A2B3A 50%, #0D1820 100%); }

.bcard-body { padding: 0; }

/* ── TEAM AVATAR VARIANTS ─────────────────── */
.team-avatar--mc {
  background: linear-gradient(135deg, #E85B0D 0%, #C44E0A 100%);
  box-shadow: 0 4px 20px rgba(232,91,13,0.35);
  border-color: rgba(232,91,13,0.3);
}

.team-avatar--df {
  background: linear-gradient(135deg, #1A4A6A 0%, #0D2A3A 100%);
  box-shadow: 0 4px 20px rgba(26,74,106,0.4);
  border-color: rgba(26,74,106,0.4);
}

.team-avatar--ac {
  background: linear-gradient(135deg, #1A5A3A 0%, #0D3020 100%);
  box-shadow: 0 4px 20px rgba(26,90,58,0.4);
  border-color: rgba(26,90,58,0.35);
}

.team-avatar--am {
  background: linear-gradient(135deg, #3A1A5A 0%, #200D35 100%);
  box-shadow: 0 4px 20px rgba(58,26,90,0.4);
  border-color: rgba(58,26,90,0.35);
}

/* ── REVEAL ANIMATIONS ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    padding-bottom: 80px;
    min-height: auto;
  }
  .hero-visual { display: none; }
  .two-col, .why-block, .mentor-intro { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }
  .contract-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .context-block { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section, .section-dark { padding: 72px 0; }
  .mblock { padding: 60px 0; }
  .container { padding: 0 20px; }
  .pcards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .contract-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .sitem { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sitem:nth-child(even) { border-right: none; }
  .tcards-grid { grid-template-columns: 1fr; }
  .bcards-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .nav-links { display: none; }
  .product-block-features { grid-template-columns: 1fr; }
  .mcard { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; }
  .mcard-details { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .context-block { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-band-actions { flex-direction: column; align-items: stretch; }
}

/* ── LOGO (imagem real) ───────────────────── */
.nav-logo img {
  display: block;
  height: 26px;
  width: auto;
}

.footer-brand .nav-logo img {
  height: 24px;
}

/* ── WHATSAPP FLUTUANTE ───────────────────── */
.wa-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 300;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 8px 28px rgba(0,0,0,0.28);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.34);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 480px) {
  .wa-float {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
  }
  .wa-float svg { width: 25px; height: 25px; }
}

/* ── PREVENÇÃO DE PALAVRA ÓRFÃ/VIÚVA ──────── */
h1, h2, h3, h4, p {
  text-wrap: pretty;
}
