/* ===================================
   CRONUS — Design Original + Conteúdo v2
   =================================== */

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

:root {
  --bg: #000000;
  --bg-2: #111111;
  --bg-card: #1c1c1e;
  --bg-card-hover: #242426;
  --text: #f5f5f7;
  --text-muted: #86868b;
  --text-dim: #48484a;
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.18);
  --accent: #5b7cf8;
  --accent-dim: rgba(91,124,248,0.15);
  --accent-glow: rgba(91,124,248,0.06);
  --accent-border: rgba(91,124,248,0.28);
  --success: #30d158;
  --danger: #ff453a;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --nav-h: 56px;
  --container: 1240px;
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.3s ease;
  --transition-slow: 0.8s ease;
}

[data-theme="light"] {
  --bg: #fbfbfd;
  --bg-2: #f5f5f7;
  --bg-card: #ffffff;
  --bg-card-hover: #f5f5f7;
  --text: #1d1d1f;
  --text-muted: #6e6e73;
  --text-dim: #aeaeb2;
  --border: rgba(0,0,0,0.08);
  --border-hover: rgba(0,0,0,0.15);
  --accent-glow: rgba(91,124,248,0.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition-slow), color var(--transition-slow);
}

/* ---- SCROLL PROGRESS ---- */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #a78bfa);
  z-index: 1000; width: 0%;
  transition: width 0.1s linear;
}

/* ---- UTILS ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

.section-label {
  display: inline-block;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.section-header { text-align: center; margin-bottom: 80px; }

.section-title {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700; line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.section-title em { font-style: italic; font-weight: 300; font-family: var(--font-display); font-size: 1.1em; letter-spacing: 0; }
.section-subtitle { font-size: 1.05rem; color: var(--text-muted); max-width: 560px; margin: 0 auto; line-height: 1.8; font-weight: 300; }

/* ---- FADE ANIMATIONS ---- */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: var(--accent); color: #fff;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none; border: none;
  border-radius: 980px;
  transition: var(--transition);
  box-shadow: 0 4px 28px rgba(91,124,248,0.35);
}
.btn-primary:hover {
  background: #6e8df9;
  box-shadow: 0 8px 40px rgba(91,124,248,0.5);
  transform: translateY(-2px) scale(1.01);
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; color: var(--text-muted);
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em;
  text-decoration: none; transition: var(--transition);
  border: 1px solid transparent; border-radius: 50px;
}
.btn-ghost:hover { color: var(--text); border-color: var(--border); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 28px; border: 1px solid var(--border-hover);
  color: var(--text); font-size: 12px; font-weight: 500;
  letter-spacing: 0.05em; text-decoration: none; transition: var(--transition);
  border-radius: 50px;
}
.btn-outline:hover { border-color: var(--text); }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-h);
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
[data-theme="light"] .navbar { background: rgba(255,255,255,0.82); border-bottom-color: rgba(0,0,0,0.08); }

.nav-container {
  max-width: var(--container); margin: 0 auto;
  padding: 0 40px; height: 100%;
  display: flex; align-items: center; gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-symbol { font-size: 18px; color: var(--text-muted); line-height: 1; }
.logo-text { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text); }

.nav-links { list-style: none; display: flex; gap: 4px; margin-left: auto; }
.nav-link {
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; padding: 8px 14px;
  transition: var(--transition); position: relative;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 1px; background: var(--text); transform: scaleX(0); transition: transform 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.theme-toggle {
  background: none; border: 1px solid var(--border); color: var(--text-muted);
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
}
.theme-toggle:hover { color: var(--text); border-color: var(--border-hover); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 20px; border: none;
  color: #fff; font-size: 11px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none; transition: var(--transition);
  border-radius: 50px; background: var(--accent);
}
.nav-cta:hover { background: #6e8df9; box-shadow: 0 0 24px rgba(91,124,248,0.4); transform: translateY(-1px); }

/* ---- HERO ---- */
.hero {
  height: 100vh; min-height: 700px;
  position: relative; display: flex; align-items: center;
  justify-content: center; overflow: hidden; text-align: center;
  background: radial-gradient(ellipse 90% 70% at 50% 30%, rgba(91,124,248,0.12) 0%, transparent 65%),
              radial-gradient(ellipse 60% 40% at 80% 80%, rgba(167,139,250,0.06) 0%, transparent 60%);
}
#heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--container); width: 100%;
  padding: 0 40px;
  padding-top: calc(var(--nav-h) + 60px);
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 28px;
}
.badge-dot {
  width: 5px; height: 5px; border-radius: 50%; background: var(--text-muted);
  animation: pulse 2.5s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 14rem);
  font-weight: 300; line-height: 0.9;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
  filter: drop-shadow(0 0 80px rgba(91,124,248,0.25));
  background: linear-gradient(135deg, #f5f5f7 30%, #a0b4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

[data-theme="light"] .hero-title {
  background: linear-gradient(135deg, #1d1d1f 40%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: none;
}

.hero-tagline {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--text-muted); max-width: 560px;
  line-height: 1.8; margin-bottom: 52px; font-weight: 300;
  letter-spacing: 0.01em;
}
.hero-actions { display: flex; align-items: center; gap: 20px; margin-bottom: 80px; flex-wrap: wrap; justify-content: center; }

.hero-stats {
  display: flex; align-items: center;
  padding: 32px 0; border-top: 1px solid var(--border);
  width: 100%; max-width: 660px;
  justify-content: center;
}
.stat-item { flex: 1; padding: 0 32px; text-align: center; }
.stat-item:first-child { padding-left: 0; }
.stat-number { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1; }
.stat-suffix { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 300; color: var(--text-muted); }
.stat-label { display: block; font-size: 10px; color: var(--text-dim); letter-spacing: 0.1em; margin-top: 6px; text-transform: uppercase; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; right: 40px;
  display: flex; align-items: center; gap: 16px; z-index: 2;
}
.scroll-text { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); writing-mode: vertical-rl; }
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  49% { transform: scaleY(1); transform-origin: top; }
  50% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---- PARA QUEM ---- */
.para-quem { padding: 160px 0; background: var(--bg); }
.dores-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.dor-card {
  background: var(--bg-card); padding: 40px;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: all var(--transition);
}
.dor-card:hover { background: var(--bg-card-hover); border-color: var(--accent-border); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 0 0 1px var(--accent-border); }
.dor-icon { color: var(--accent); margin-bottom: 20px; }
.dor-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 12px; line-height: 1.3; }
.dor-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-weight: 300; }
.dor-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.dor-tag { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border: 1px solid var(--border); color: var(--text-dim); font-weight: 500; border-radius: 50px; }

/* ---- POSITIONING ---- */
.positioning { padding: 160px 0; background: var(--bg-2); }
.pos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.pos-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 3rem); font-weight: 300; line-height: 1.2; margin-bottom: 24px; }
.pos-title em { font-style: italic; }
.pos-body { color: var(--text-muted); line-height: 1.9; margin-bottom: 40px; font-size: 0.95rem; font-weight: 300; }
.pos-features { display: flex; flex-direction: column; gap: 24px; }
.pos-feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--text-muted); }
.pos-feature h4 { font-size: 14px; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 4px; }
.pos-feature p { font-size: 13px; color: var(--text-muted); font-weight: 300; }

.pos-visual { position: relative; }
.pos-card-stack { position: relative; height: 400px; }
.pos-card { position: absolute; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.pos-card:hover { border-color: var(--border-hover); }
.pos-card-1 { top: 0; left: 0; right: 50px; transform: rotate(-2deg); }
.pos-card-2 { top: 90px; left: 30px; right: 0; transform: rotate(1.5deg); z-index: 1; }
.pos-card-3 { bottom: 0; left: 60px; right: 20px; z-index: 2; border-color: var(--border-hover); }
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; color: var(--text-muted); }
.card-tag { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; padding: 4px 12px; border: 1px solid var(--border); color: var(--text-dim); font-weight: 500; border-radius: 50px; }
.card-tag-success { color: var(--success); border-color: rgba(74,222,128,0.3); }
.card-tag-gold { color: var(--text); border-color: var(--border-hover); }
.pos-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 8px; }
.pos-card p { font-size: 13px; color: var(--text-muted); font-weight: 300; }
.roi-display { display: flex; align-items: baseline; gap: 12px; }
.roi-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; line-height: 1; }
.roi-label { font-size: 13px; color: var(--text-muted); font-weight: 300; }

/* ---- COMPARATIVO ---- */
.comparativo { padding: 160px 0; background: var(--bg); }
.compare-table { display: grid; grid-template-columns: 1fr 1fr 1fr; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-top: 60px; }
.compare-col { display: flex; flex-direction: column; }
.compare-col-header { padding: 28px 24px; border-bottom: 1px solid var(--border); background: var(--bg-card); }
.compare-col-header.featured { background: var(--bg-card-hover); border-bottom-color: var(--border-hover); border-left: 1px solid var(--border-hover); border-right: 1px solid var(--border-hover); }
.compare-col-header h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; margin-bottom: 6px; }
.compare-col-header.featured h3 { font-size: 1.3rem; }
.compare-col-header p { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.featured-badge { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 10px; font-weight: 500; }
.compare-cell {
  padding: 16px 24px; border-bottom: 1px solid var(--border);
  font-size: 13px; color: var(--text-muted); font-weight: 300;
  display: flex; align-items: center; gap: 10px; background: var(--bg-card);
}
.compare-cell.featured { background: var(--bg-card-hover); color: var(--text); border-left: 1px solid var(--border-hover); border-right: 1px solid var(--border-hover); }
.compare-cell:last-child { border-bottom: none; }
.compare-cell i { flex-shrink: 0; width: 14px; height: 14px; }
.icon-yes { color: var(--success); }
.icon-no { color: var(--danger); }
.icon-partial { color: var(--text-muted); }

/* ---- SERVICES ---- */
.expertise { padding: 160px 0; background: var(--bg-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card { background: var(--bg-card); padding: 40px; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 2px 20px rgba(0,0,0,0.4); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--accent), transparent); transform: scaleX(0); transition: transform 0.4s ease; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--bg-card-hover); border-color: var(--accent-border); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 0 1px var(--accent-border); }
.service-icon-wrap { color: var(--accent); margin-bottom: 20px; }
.service-number { font-size: 11px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 12px; font-weight: 600; }
.service-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; margin-bottom: 14px; }
.service-desc { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-muted); font-weight: 300; }
.service-list li i { color: var(--text-dim); flex-shrink: 0; width: 14px; height: 14px; }
.service-card:hover .service-list li { color: var(--text); }
.service-footer { padding-top: 20px; border-top: 1px solid var(--border); }
.service-metric { font-size: 12px; color: var(--text-dim); font-weight: 300; }
.service-metric strong { color: var(--accent); font-weight: 600; }
.service-card-highlight { border-left: 1px solid var(--border-hover); }

/* ---- METHODOLOGY ---- */
.methodology { padding: 160px 0; background: var(--bg); }
.method-flow { display: flex; align-items: flex-start; }
.method-connector { flex: 1; height: 1px; margin-top: 38px; background: var(--border); position: relative; }
.method-connector::after { content: ''; position: absolute; right: -5px; top: -4px; width: 9px; height: 9px; border-top: 1px solid var(--text-muted); border-right: 1px solid var(--text-muted); transform: rotate(45deg); }
.method-step { flex: 0 0 auto; width: 175px; text-align: center; }
.step-number { font-size: 10px; color: var(--accent); letter-spacing: 0.15em; margin-bottom: 14px; font-weight: 600; text-transform: uppercase; }
.step-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 18px; transition: all 0.3s ease; }
.method-step:hover .step-content { border-color: var(--border-hover); transform: translateY(-4px); }
.step-icon { color: var(--accent); margin: 0 auto 14px; display: flex; justify-content: center; }
.step-content h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; margin-bottom: 10px; }
.step-content p { font-size: 12px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; font-weight: 300; }
.step-duration { font-size: 10px; color: var(--text-muted); letter-spacing: 0.1em; border: 1px solid var(--border); padding: 4px 10px; font-weight: 500; border-radius: 50px; display: inline-block; }

/* ---- IMPACT ---- */
.impact { padding: 160px 0; background: var(--bg-2); }
.impact-bg { display: none; }
.impact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 100px; align-items: center; }
.impact-text h2 { font-family: var(--font-body); font-size: clamp(2.5rem, 4vw, 4rem); font-weight: 700; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em; }
.impact-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; font-size: 0.95rem; font-weight: 300; }
.impact-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.impact-number-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 2px 20px rgba(0,0,0,0.4); padding: 36px; transition: all var(--transition); }
.impact-number-item:hover { background: var(--bg-card-hover); border-color: var(--accent-border); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.6); }
.impact-value { font-family: var(--font-display); font-size: clamp(2.2rem, 3.5vw, 3rem); font-weight: 300; line-height: 1; margin-bottom: 10px; display: flex; align-items: baseline; gap: 4px; color: var(--accent); }
.impact-prefix { font-size: 1.2rem; color: var(--text-muted); }
.impact-plus { font-size: 1.2rem; color: var(--text-muted); }
.impact-label { font-size: 12px; color: var(--text-muted); display: block; font-weight: 300; letter-spacing: 0.02em; }

/* ---- CASES ---- */
.cases { padding: 160px 0; background: var(--bg); }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.case-card { background: var(--bg-card); padding: 36px; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 2px 20px rgba(0,0,0,0.4); display: flex; flex-direction: column; gap: 24px; transition: all var(--transition); }
.case-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.6); }
.case-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.case-sector { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); border: 1px solid var(--border); padding: 4px 12px; font-weight: 500; border-radius: 50px; }
.case-time { font-size: 10px; color: var(--text-dim); white-space: nowrap; letter-spacing: 0.05em; font-weight: 500; }
.case-problem-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.case-problem-label i { width: 12px; height: 12px; color: var(--danger); }
.case-problem h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 400; line-height: 1.3; }
.case-solution-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.case-solution-label i { width: 12px; height: 12px; color: var(--success); }
.case-solution p { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }
.case-pillars { display: flex; flex-wrap: wrap; gap: 6px; }
.case-pillar { font-size: 11px; color: var(--text-dim); padding: 4px 10px; border: 1px solid var(--border); font-weight: 500; letter-spacing: 0.03em; }
.case-results { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; }
.case-result-item { background: var(--bg-card-hover); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; transition: background var(--transition); }
.case-result-item:hover { border-color: var(--border-hover); }
.case-result-value { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; line-height: 1; margin-bottom: 4px; color: var(--accent); }
.case-result-label { font-size: 11px; color: var(--text-dim); font-weight: 300; }

/* ---- DEPOIMENTOS ---- */
.depoimentos { padding: 160px 0; background: var(--bg-2); }
.depo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.depo-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 2px 20px rgba(0,0,0,0.4); padding: 36px; display: flex; flex-direction: column; gap: 20px; transition: all var(--transition); }
.depo-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.6); }
.depo-stars { display: flex; gap: 4px; }
.depo-stars i { color: var(--text-muted); width: 13px; height: 13px; }
.depo-text { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; line-height: 1.7; color: var(--text); flex: 1; font-weight: 300; }
.depo-divider { height: 1px; background: var(--border); }
.depo-author { display: flex; align-items: center; gap: 14px; }
.depo-avatar { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-display); font-size: 0.9rem; font-weight: 400; flex-shrink: 0; }
.depo-info h4 { font-size: 13px; font-weight: 600; margin-bottom: 3px; }
.depo-info span { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.depo-sector { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-top: 4px; font-weight: 500; }

/* ---- INDUSTRIES ---- */
.industries { padding: 140px 0; background: var(--bg); }
.industry-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.industry-tag { padding: 9px 20px; border: 1px solid var(--border); border-radius: 50px; font-size: 12px; color: var(--text-muted); background: var(--bg-card); transition: all 0.3s ease; cursor: default; font-weight: 300; letter-spacing: 0.03em; }
.industry-tag:hover { border-color: var(--accent-border); color: var(--accent); background: var(--accent-dim); }

/* ---- JOURNAL ---- */
.journal-preview { padding: 160px 0; background: var(--bg-2); }

/* Featured article */
.journal-featured {
  display: block; text-decoration: none; color: inherit;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 56px 60px;
  margin-bottom: 16px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: all var(--transition); position: relative;
}
.journal-featured:hover { border-color: var(--accent-border); box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--accent-border); }
.journal-featured-meta {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 28px; flex-wrap: wrap;
}
.journal-featured-label {
  font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--accent-dim); color: var(--accent);
  padding: 4px 12px; border-radius: 50px; border: 1px solid var(--accent-border);
}
.journal-featured-time { font-size: 11px; color: var(--text-dim); font-weight: 300; letter-spacing: 0.05em; }
.journal-featured-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 28px;
}
.journal-featured-excerpt {
  max-width: 780px; margin-bottom: 40px;
  border-left: 2px solid var(--border); padding-left: 24px;
}
.journal-featured-excerpt p {
  font-size: 1rem; color: var(--text-muted); line-height: 1.85;
  font-weight: 300; margin-bottom: 14px;
}
.journal-featured-excerpt p:last-child { margin-bottom: 0; }
.journal-featured-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 32px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 20px;
}
.journal-featured-author { display: flex; align-items: center; gap: 14px; }
.journal-author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card-hover);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.85rem; color: var(--text-muted);
  flex-shrink: 0;
}
.journal-author-name { display: block; font-size: 13px; font-weight: 600; margin-bottom: 2px; }
.journal-author-role { display: block; font-size: 11px; color: var(--text-muted); font-weight: 300; }
.journal-featured-cta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  letter-spacing: 0.02em; transition: gap var(--transition);
}
.journal-featured:hover .journal-featured-cta { gap: 14px; }

/* Secondary grid */
.journal-secondary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 48px; }
.journal-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: 0 2px 20px rgba(0,0,0,0.4); padding: 32px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: all var(--transition); position: relative; }
.journal-card:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.6); }
.journal-category { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; font-weight: 600; }
.journal-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; line-height: 1.3; margin-bottom: 12px; }
.journal-card p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; flex: 1; font-weight: 300; }
.journal-meta { display: flex; gap: 16px; font-size: 11px; color: var(--text-dim); letter-spacing: 0.05em; font-weight: 300; margin-top: auto; }
.journal-arrow { position: absolute; top: 24px; right: 24px; color: var(--text-dim); transition: all 0.3s ease; }
.journal-card:hover .journal-arrow { color: var(--text); transform: translate(2px,-2px); }
.journal-cta { text-align: center; }

/* ---- FAQ ---- */
.faq-section { padding: 160px 0; background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 60px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { background: var(--bg-card-hover); border-color: var(--accent-border); }
.faq-question { padding: 24px 28px; display: flex; justify-content: space-between; align-items: center; gap: 20px; cursor: pointer; user-select: none; }
.faq-question h4 { font-size: 14px; font-weight: 500; line-height: 1.4; }
.faq-icon { width: 26px; height: 26px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex-shrink: 0; transition: all 0.3s ease; }
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1); }
.faq-answer-inner { padding: 0 28px 24px; font-size: 13px; color: var(--text-muted); line-height: 1.8; font-weight: 300; border-top: 1px solid var(--border); padding-top: 20px; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- CTA ---- */
.cta-section { padding: 160px 0; position: relative; overflow: hidden; background: var(--bg-2); }
#ctaCanvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.5; }
.cta-content { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.cta-title { font-family: var(--font-body); font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; line-height: 1.1; margin-bottom: 24px; margin-top: 20px; letter-spacing: -0.03em; }
.cta-subtitle { color: var(--text-muted); font-size: 1rem; line-height: 1.9; margin-bottom: 48px; font-weight: 300; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta-note { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-dim); font-weight: 300; }
.cta-note i { width: 13px; height: 13px; color: var(--text-dim); }

/* ---- FOOTER ---- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .nav-logo { margin-bottom: 20px; display: inline-flex; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.8; max-width: 280px; font-weight: 300; }
.footer-links h4, .footer-contact h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 20px; color: var(--text-dim); }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links ul a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: var(--transition); font-weight: 300; }
.footer-links ul a:hover { color: var(--text); }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 10px; color: var(--text-muted); text-decoration: none; font-size: 13px; font-weight: 400; margin-bottom: 24px; transition: var(--transition); }
.footer-whatsapp:hover { color: var(--text); }
.footer-tagline { font-family: var(--font-display); font-size: 1rem; font-style: italic; color: var(--text-dim); line-height: 1.6; font-weight: 300; }
.footer-bottom { padding-top: 32px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 12px; color: var(--text-dim); font-weight: 300; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: var(--text-dim); text-decoration: none; transition: var(--transition); font-weight: 300; }
.footer-bottom-links a:hover { color: var(--text); }

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float { position: fixed; bottom: 32px; right: 32px; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; z-index: 50; box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: all 0.3s ease; }
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-tooltip { position: absolute; right: 64px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 8px 14px; font-size: 12px; white-space: nowrap; color: var(--text); opacity: 0; pointer-events: none; transition: opacity 0.2s ease; font-weight: 300; }
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- SOBRE PAGE ---- */
.page-hero { padding: 160px 0 100px; background: var(--bg-2); text-align: center; position: relative; }
.page-hero-bg { display: none; }
.page-hero h1 { font-family: var(--font-body); font-size: clamp(3rem, 6vw, 5rem); font-weight: 700; line-height: 1.1; margin-bottom: 20px; margin-top: 20px; letter-spacing: -0.03em; }
.page-hero p { color: var(--text-muted); font-size: 1rem; line-height: 1.9; max-width: 560px; margin: 0 auto; font-weight: 300; }
.sobre-content { padding: 120px 0; }
.sobre-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.sobre-text h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; margin-bottom: 24px; margin-top: 40px; }
.sobre-text h2:first-child { margin-top: 0; }
.sobre-text p { color: var(--text-muted); line-height: 1.9; margin-bottom: 24px; font-size: 0.95rem; font-weight: 300; }
.sobre-quote { padding: 28px 32px; border-left: 2px solid var(--accent); margin: 40px 0; background: var(--accent-glow); border-radius: 0 var(--radius) var(--radius) 0; }
.sobre-quote blockquote { font-family: var(--font-display); font-size: 1.3rem; font-style: italic; line-height: 1.5; color: var(--text); font-weight: 300; }
.sobre-quote cite { font-size: 11px; color: var(--text-dim); margin-top: 12px; display: block; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500; }
.valores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.valor-item { background: var(--bg-card); padding: 24px; transition: background var(--transition); }
.valor-item:hover { background: var(--bg-card-hover); }
.valor-item i { color: var(--text-muted); margin-bottom: 12px; display: block; }
.valor-item h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; letter-spacing: 0.02em; }
.valor-item p { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ---- BLOG PAGE ---- */
.blog-header { padding: 160px 0 80px; background: var(--bg-2); position: relative; }
.blog-header-bg { display: none; }
.blog-header-content { position: relative; z-index: 1; }
.blog-header h1 { font-family: var(--font-body); font-size: clamp(3.5rem, 7vw, 6rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.03em; }
.blog-header p { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 520px; font-weight: 300; }
.blog-grid { padding: 80px 0 120px; }
.blog-articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.blog-article { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; text-decoration: none; color: inherit; display: flex; flex-direction: column; transition: all var(--transition); }
.blog-article:hover { background: var(--bg-card-hover); border-color: var(--border-hover); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.blog-article-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.blog-article-category { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.blog-article-date { font-size: 10px; color: var(--text-dim); letter-spacing: 0.05em; font-weight: 300; }
.blog-article h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; line-height: 1.3; margin-bottom: 14px; flex: 1; }
.blog-article p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-weight: 300; }
.blog-article-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 20px; border-top: 1px solid var(--border); margin-top: auto; }
.blog-article-author { font-size: 12px; color: var(--text-dim); font-weight: 300; }
.blog-article-arrow { color: var(--text-muted); transition: transform 0.2s; }
.blog-article:hover .blog-article-arrow { transform: translate(3px,-3px); color: var(--text); }

/* ---- ARTIGO PAGE ---- */
.artigo-hero { padding: 160px 0 80px; background: var(--bg-2); position: relative; }
.artigo-hero-bg { display: none; }
.artigo-hero-content { position: relative; z-index: 1; max-width: 800px; }
.artigo-meta { display: flex; gap: 20px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
.artigo-category { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); padding: 5px 12px; border: 1px solid var(--accent-border); font-weight: 500; }
.artigo-date { font-size: 11px; color: var(--text-dim); font-weight: 300; }
.artigo-hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 300; line-height: 1.1; margin-bottom: 28px; }
.artigo-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-family: var(--font-display); font-size: 0.9rem; font-weight: 400; }
.author-info h4 { font-size: 13px; font-weight: 600; }
.author-info span { font-size: 12px; color: var(--text-muted); font-weight: 300; }
.artigo-body { padding: 80px 0 120px; }
.artigo-layout { display: grid; grid-template-columns: 1fr 260px; gap: 80px; align-items: start; }
.artigo-content h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 300; margin: 48px 0 20px; line-height: 1.2; }
.artigo-content h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; margin: 36px 0 16px; }
.artigo-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 24px; font-size: 1rem; font-weight: 300; }
.artigo-content blockquote { padding: 24px 28px; border-left: 2px solid var(--border-hover); margin: 32px 0; font-family: var(--font-display); font-size: 1.25rem; font-style: italic; line-height: 1.5; font-weight: 300; }
.artigo-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--bg-card); border: 1px solid var(--border); padding: 24px; margin-bottom: 16px; }
.sidebar-card h4 { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 16px; font-weight: 600; }
.sidebar-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }
.sidebar-card p:last-child { margin-bottom: 0; }
.sidebar-card-cta { border-color: var(--accent-border); background: linear-gradient(135deg, var(--bg-card), var(--accent-glow)); }
.sidebar-btn { width: 100%; justify-content: center; font-size: 12px; }
.sidebar-toc { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sidebar-toc a { font-size: 13px; color: var(--text-muted); text-decoration: none; transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.sidebar-toc a::before { content: ''; width: 16px; height: 1px; background: var(--border-hover); flex-shrink: 0; transition: background var(--transition); }
.sidebar-toc a:hover { color: var(--accent); }
.sidebar-toc a:hover::before { background: var(--accent); }
.sidebar-related { display: flex; flex-direction: column; gap: 16px; }
.sidebar-related-item { text-decoration: none; color: inherit; padding-bottom: 16px; border-bottom: 1px solid var(--border); transition: opacity var(--transition); }
.sidebar-related-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-related-item:hover { opacity: 0.75; }
.sidebar-related-category { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; display: block; margin-bottom: 6px; }
.sidebar-related-item p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---- LIGHT MODE REFINEMENTS (Apple-like) ---- */
[data-theme="light"] .hero {
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(91,124,248,0.06) 0%, transparent 70%);
}
[data-theme="light"] .dor-card,
[data-theme="light"] .service-card,
[data-theme="light"] .impact-number-item,
[data-theme="light"] .case-card,
[data-theme="light"] .depo-card,
[data-theme="light"] .journal-card,
[data-theme="light"] .pos-card,
[data-theme="light"] .faq-item {
  box-shadow: 0 2px 12px rgba(0,0,0,0.05), 0 0 0 1px rgba(0,0,0,0.04);
}
[data-theme="light"] .dor-card:hover,
[data-theme="light"] .service-card:hover,
[data-theme="light"] .impact-number-item:hover,
[data-theme="light"] .case-card:hover,
[data-theme="light"] .depo-card:hover,
[data-theme="light"] .journal-card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,0.08), 0 0 0 1px var(--accent-border);
}
[data-theme="light"] .navbar {
  background: rgba(251,251,253,0.88);
  border-bottom-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .section-title em { color: var(--accent); }
[data-theme="light"] .cta-section { background: #f5f5f7; }
[data-theme="light"] .depo-stars i { color: #f5a623; }
[data-theme="light"] .stat-number,
[data-theme="light"] .stat-suffix { color: var(--accent); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .journal-featured { padding: 40px; }
  .journal-secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-articles-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .method-flow { flex-direction: column; gap: 0; }
  .method-connector { display: none; }
  .method-step { width: 100%; text-align: left; }
  .step-content { display: flex; gap: 20px; align-items: flex-start; }
  .step-icon { margin: 0; flex-shrink: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .artigo-layout { grid-template-columns: 1fr; }
  .artigo-sidebar { position: static; }
  .compare-table { grid-template-columns: 1fr; }
  .compare-col-header.featured, .compare-cell.featured { border-left: none; border-right: none; }
  .cases-grid, .depo-grid { grid-template-columns: repeat(2, 1fr); }
  .dores-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links { display: none; }
  .pos-grid, .impact-grid, .journal-grid, .sobre-grid, .valores-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 28px; border-top: none; padding-top: 0; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; }
  .services-grid, .blog-articles, .cases-grid, .depo-grid, .dores-grid { grid-template-columns: 1fr; }
  .journal-featured { padding: 28px 24px; }
  .journal-featured-title { font-size: 1.8rem; }
  .journal-secondary-grid { grid-template-columns: 1fr; }
  .blog-articles-grid { grid-template-columns: 1fr; }
  .pos-card-stack { height: 340px; }
  .footer-grid { grid-template-columns: 1fr; }
  .impact-numbers { grid-template-columns: 1fr 1fr; }
  .hero-scroll-indicator { display: none; }
  .nav-cta span { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
}
