/* ============================================================
   BPP CONSULTING — MAIN STYLESHEET
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;600;700&display=swap');

/* === VARIABLES === */
:root {
  --primary: #2A3146;
  --primary-light: #374060;
  --primary-dark: #1a2035;
  --secondary: #D4B06E;
  --secondary-light: #E8C984;
  --secondary-dark: #B8924A;
  --bg: #0D1120;
  --bg-2: #111827;
  --bg-card: rgba(42, 49, 70, 0.5);
  --bg-card-hover: rgba(55, 64, 96, 0.75);
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.65);
  --text-dim: rgba(255,255,255,0.35);
  --border: rgba(212, 176, 110, 0.18);
  --border-hover: rgba(212, 176, 110, 0.5);
  --glow: 0 0 40px rgba(212, 176, 110, 0.15);
  --glow-strong: 0 0 60px rgba(212, 176, 110, 0.35);
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 80px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: none; font-family: inherit; }

/* === CUSTOM CURSOR === */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--secondary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: normal;
}
#cursor-follower {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(212,176,110,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: all 0.12s ease;
}
body:hover #cursor { opacity: 1; }
.cursor-grow #cursor { width: 20px; height: 20px; }
.cursor-grow #cursor-follower { width: 60px; height: 60px; border-color: var(--secondary); }

/* === PARTICLES CANVAS === */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* === SCROLL PROGRESS BAR === */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-dark), var(--secondary), var(--secondary-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s;
}

/* === NAVIGATION === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(13,17,32,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--secondary);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--secondary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.6rem 1.5rem;
  background: transparent;
  border: 1.5px solid var(--secondary);
  color: var(--secondary) !important;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--secondary);
  color: var(--primary-dark) !important;
  box-shadow: var(--glow);
}
.nav-cta::after { display: none !important; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 5px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(13,17,32,0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  flex-direction: column;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--secondary); padding-left: 0.5rem; }

/* === MAIN CONTENT === */
main { position: relative; z-index: 1; }
section { position: relative; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--nav-h) 5% 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, rgba(212,176,110,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%; left: -5%;
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, rgba(42,49,70,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  background: rgba(212,176,110,0.05);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero h1 span { color: var(--secondary); }
.hero p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll span { width: 1px; height: 50px; background: linear-gradient(to bottom, transparent, var(--secondary)); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: none;
}
.btn::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 0; height: 0;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width 0.5s, height 0.5s;
}
.btn:hover::before { width: 300px; height: 300px; }
.btn-primary {
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: #0D1120;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212,176,110,0.4);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}
.btn-gold-outline {
  background: transparent;
  border: 1.5px solid var(--secondary);
  color: var(--secondary);
}
.btn-gold-outline:hover {
  background: var(--secondary);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.82rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-title span { color: var(--secondary); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--secondary-dark), var(--secondary));
  border-radius: 2px;
  margin: 1.5rem auto 0;
}
.divider-left { margin: 1.5rem 0 0; }

/* === CONTAINERS === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 7rem 5%; }
.section-pad-sm { padding: 5rem 5%; }

/* === CARDS === */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glow), var(--shadow);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(212,176,110,0.1);
  border: 1px solid rgba(212,176,110,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  transition: var(--transition);
}
.card:hover .card-icon {
  background: rgba(212,176,110,0.2);
  box-shadow: var(--glow);
}
.card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* === PILLARS GRID === */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pillar-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  opacity: 0.3;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 1rem;
}

/* === RESULTS SECTION === */
.results-section {
  background: linear-gradient(135deg, rgba(42,49,70,0.4) 0%, rgba(13,17,32,0.6) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.result-item {
  text-align: center;
  padding: 2rem 1rem;
}
.result-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.result-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* === METHODOLOGY === */
.methodology-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.methodology-steps::before {
  content: '';
  position: absolute;
  top: 40px; left: 10%;
  width: 80%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), var(--secondary-dark), var(--border), transparent);
}
.step-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(212,176,110,0.08);
}
.step-deliverable {
  margin-top: 1rem;
  padding: 0.4rem 0.8rem;
  background: rgba(212,176,110,0.08);
  border: 1px solid rgba(212,176,110,0.15);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 500;
}

/* === CLIENTS === */
.clients-section { padding: 5rem 5%; }
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.client-item {
  padding: 0.8rem 1.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.client-item:hover {
  border-color: var(--border-hover);
  color: var(--secondary);
  background: rgba(212,176,110,0.05);
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: 8rem 5%;
  background: radial-gradient(ellipse at center, rgba(42,49,70,0.4) 0%, transparent 70%);
  position: relative;
}
.cta-section::before, .cta-section::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::before {
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,176,110,0.06) 0%, transparent 70%);
}
.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.cta-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* === SERVICES OVERVIEW === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  background: linear-gradient(to top, rgba(212,176,110,0.04), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none; /* overlay decorativo não pode capturar cliques */
}
.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-8px);
  box-shadow: var(--glow), var(--shadow);
}
.service-card:hover::after { opacity: 1; }
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.service-impacts {
  margin-bottom: 1.5rem;
}
.impact-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--secondary);
  margin: 0.2rem 0.2rem 0.2rem 0;
  padding: 0.25rem 0.6rem;
  background: rgba(212,176,110,0.08);
  border-radius: 50px;
  font-weight: 500;
}
.impact-tag::before { content: '◆'; font-size: 0.5rem; }

/* === SERVICE DETAIL PAGES === */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 5% 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(ellipse at right, rgba(212,176,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.hero-visual {
  position: relative;
}
.visual-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.visual-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--secondary-dark) 0%, transparent 50%, transparent 50%, rgba(212,176,110,0.1) 100%);
  z-index: -1;
  opacity: 0.5;
}

/* === PROBLEM/SOLUTION SECTION === */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.problem-box, .solution-box {
  padding: 3rem;
  border-radius: var(--radius-lg);
}
.problem-box {
  background: rgba(180, 50, 50, 0.06);
  border: 1px solid rgba(180, 50, 50, 0.2);
}
.solution-box {
  background: rgba(212,176,110,0.05);
  border: 1px solid var(--border);
}
.box-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.problem-box .box-label { color: #E57373; }
.solution-box .box-label { color: var(--secondary); }
.problem-list li, .solution-list li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}
.problem-list li::before { content: '✕'; color: #E57373; flex-shrink: 0; margin-top: 2px; }
.solution-list li::before { content: '✓'; color: var(--secondary); flex-shrink: 0; margin-top: 2px; font-weight: 700; }

/* === FEATURES TABLE === */
.features-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: var(--radius);
}
.features-table thead tr {
  background: linear-gradient(90deg, var(--secondary-dark), var(--secondary));
}
.features-table thead th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 0.05em;
}
.features-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.features-table tbody tr:hover { background: rgba(212,176,110,0.04); }
.features-table tbody td {
  padding: 1.2rem 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  vertical-align: top;
}
.features-table tbody td:first-child {
  font-weight: 600;
  color: var(--text);
}

/* === CASE STUDY BOX === */
.case-box {
  background: linear-gradient(135deg, rgba(212,176,110,0.08), rgba(42,49,70,0.4));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.case-box::before {
  content: '"';
  position: absolute;
  top: -20px; left: 20px;
  font-size: 12rem;
  font-family: 'Playfair Display', serif;
  color: var(--secondary);
  opacity: 0.06;
  line-height: 1;
}

/* === IMPACTS GRID === */
.impacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.impact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.impact-card:hover {
  border-color: var(--secondary);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}
.impact-icon { font-size: 2rem; margin-bottom: 1rem; }
.impact-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.impact-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* === FUTURISTIC ELEMENTS (AI / BI pages) === */
.tech-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,176,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,176,110,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.glow-orb-1 {
  width: 400px; height: 400px;
  background: rgba(212,176,110,0.08);
  top: -100px; right: -100px;
}
.glow-orb-2 {
  width: 300px; height: 300px;
  background: rgba(42,49,70,0.6);
  bottom: -50px; left: -50px;
}
.scan-line {
  position: absolute;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), transparent);
  animation: scan 4s linear infinite;
  opacity: 0.3;
}
@keyframes scan {
  0% { top: 0; }
  100% { top: 100%; }
}
.data-stream {
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--secondary);
  opacity: 0.4;
  letter-spacing: 0.05em;
  animation: stream 20s linear infinite;
  overflow: hidden;
  white-space: nowrap;
}
@keyframes stream {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* === FAKE DASHBOARD === */
.dashboard-preview {
  background: rgba(13,17,32,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  font-family: 'Inter', sans-serif;
}
.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.dash-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}
.dash-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: #4CAF50;
  font-weight: 500;
}
.dash-status::before {
  content: '';
  width: 6px; height: 6px;
  background: #4CAF50;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}
.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.dash-kpi {
  background: rgba(42,49,70,0.5);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
}
.dash-kpi-label {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.dash-kpi-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  font-family: 'Playfair Display', serif;
}
.dash-kpi-change {
  font-size: 0.72rem;
  margin-top: 0.25rem;
}
.positive { color: #4CAF50; }
.negative { color: #E57373; }
.dash-chart {
  background: rgba(42,49,70,0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem;
  height: 120px;
  position: relative;
  overflow: hidden;
}
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 100%;
}
.chart-bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  transition: height 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.chart-bar-planned { background: rgba(212,176,110,0.3); }
.chart-bar-real { background: linear-gradient(to top, var(--secondary-dark), var(--secondary)); }

/* === DIAGNOSTIC PAGE === */
.diagnostic-container {
  max-width: 800px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) 5% 5rem;
}
.diagnostic-progress {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  margin-bottom: 3rem;
  overflow: hidden;
}
.diagnostic-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-dark), var(--secondary));
  border-radius: 3px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.question-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.question-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1rem;
}
.question-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2rem;
}
.options-grid {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.option-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-align: left;
  transition: var(--transition);
  cursor: none;
  width: 100%;
}
.option-btn:hover, .option-btn.selected {
  border-color: var(--secondary);
  color: var(--text);
  background: rgba(212,176,110,0.08);
}
.option-btn.selected { box-shadow: var(--glow); }
.option-letter {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: var(--transition);
}
.option-btn.selected .option-letter {
  background: var(--secondary);
  color: var(--primary-dark);
  border-color: var(--secondary);
}
.diagnostic-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
}
.diagnostic-result {
  text-align: center;
  padding: 4rem 2rem;
}
.score-circle {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 4px solid var(--secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  position: relative;
  box-shadow: var(--glow-strong);
}
.score-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}
.score-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.maturity-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}
.maturity-low { background: rgba(229,115,115,0.1); border: 1px solid #E57373; color: #E57373; }
.maturity-mid { background: rgba(255,183,77,0.1); border: 1px solid #FFB74D; color: #FFB74D; }
.maturity-high { background: rgba(76,175,80,0.1); border: 1px solid #4CAF50; color: #4CAF50; }

/* === CASES PAGE === */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.case-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: var(--glow), var(--shadow);
}
.case-header {
  padding: 2rem;
  background: linear-gradient(135deg, rgba(42,49,70,0.8), rgba(42,49,70,0.4));
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.case-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(212,176,110,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.case-sector { font-size: 0.75rem; color: var(--secondary); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.case-company { font-size: 1rem; font-weight: 700; margin-top: 2px; }
.case-body { padding: 2rem; }
.case-section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.case-metrics {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.case-metric {
  flex: 1;
  text-align: center;
  padding: 1rem;
  background: rgba(212,176,110,0.05);
  border: 1px solid rgba(212,176,110,0.15);
  border-radius: 10px;
}
.case-metric-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
}
.case-metric-label { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; }

/* === SOBRE PAGE === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--glow);
}
.team-name { font-size: 1.1rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.25rem; }
.team-role { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.team-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}
.cert-badge {
  padding: 0.25rem 0.7rem;
  background: rgba(212,176,110,0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.05em;
}
.differentials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* === CONTATO PAGE === */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.contact-info { }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(212,176,110,0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.78rem; color: var(--text-dim); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-item-value { font-size: 0.95rem; font-weight: 500; color: var(--text); }
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  backdrop-filter: blur(10px);
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 0.85rem 1.2rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--secondary);
  background: rgba(212,176,110,0.04);
  box-shadow: 0 0 0 3px rgba(212,176,110,0.08);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-select { cursor: none; }
option { background: var(--bg-2); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success-icon { font-size: 3rem; margin-bottom: 1rem; }

/* === FOOTER === */
footer {
  background: rgba(10, 14, 25, 0.95);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 2rem;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 1.5rem 0;
  max-width: 300px;
}
.footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--secondary); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}
.social-links {
  display: flex;
  gap: 1rem;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link {
  color: var(--text-muted);
}
.social-link:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  background: rgba(212,176,110,0.08);
  transform: translateY(-2px);
}
.ico-social {
  width: 17px; height: 17px;
  fill: currentColor;
  display: block;
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.fade-in.visible { opacity: 1; }
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* === HIGHLIGHTS / TAGS === */
.highlight { color: var(--secondary); }
.tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(212,176,110,0.08);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--secondary);
  font-weight: 600;
}
.separator {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 5rem 0;
}

/* === TOOLTIP === */
.tooltip {
  position: relative;
}
.tooltip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 0.78rem;
  color: var(--text);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  z-index: 100;
}
.tooltip:hover::after { opacity: 1; }

/* === MISC === */
.text-center { text-align: center; }
.text-gold { color: var(--secondary); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.gap-label::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--secondary);
}

/* === 5 PILLARS === */
.five-pillars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-dark), var(--secondary));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.pillar-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-5px);
  box-shadow: var(--glow);
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-roman {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.75rem;
}
.pillar-card h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.pillar-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.5; }

/* === SVG LINE ICONS === */
.ico {
  width: 1.15em; height: 1.15em;
  display: inline-block;
  vertical-align: -0.15em;
  fill: none;
  stroke: var(--secondary);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: var(--transition);
}
.card-icon .ico { width: 1.6rem; height: 1.6rem; }
.service-icon .ico { width: 2rem; height: 2rem; }
.impact-icon .ico { width: 1.7rem; height: 1.7rem; }
.result-row-icon .ico { width: 1.4rem; height: 1.4rem; }
.contact-item-icon .ico { width: 1.4rem; height: 1.4rem; }
.case-icon .ico { width: 1.5rem; height: 1.5rem; }
.ai-cap-icon .ico { width: 1.5rem; height: 1.5rem; }
.form-success-icon .ico { width: 3rem; height: 3rem; stroke: #4CAF50; }
.flow-node .ico { width: 1.4rem; height: 1.4rem; }
/* leve animação no hover do card */
.card:hover .card-icon .ico,
.service-card:hover .service-icon .ico { stroke: var(--secondary-light); }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .methodology-steps { grid-template-columns: repeat(2, 1fr); }
  .methodology-steps::before { display: none; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .five-pillars { grid-template-columns: repeat(3, 1fr); }
  .differentials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-h: 70px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .methodology-steps { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .five-pillars { grid-template-columns: repeat(2, 1fr); }
  .impacts-grid { grid-template-columns: 1fr; }
  .problem-solution { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section-pad { padding: 5rem 5%; }
  .dash-kpis { grid-template-columns: 1fr; }
  .case-metrics { flex-direction: column; }
  #cursor, #cursor-follower { display: none; }
  body { cursor: auto; }
  button { cursor: pointer; }
  a { cursor: pointer; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .results-grid { grid-template-columns: 1fr; }
  .five-pillars { grid-template-columns: 1fr; }
  .differentials-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 0.9rem 2rem; }
}
