/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --indigo: #6366f1;
  --indigo-light: #818cf8;
  --indigo-dark: #4f46e5;
  --cyan: #06b6d4;
  --emerald: #10b981;
  --amber: #f59e0b;
  --pink: #ec4899;
  --purple: #a78bfa;
  --orange: #f97316;
  --bg: #050510;
  --bg-2: #080818;
  --bg-3: #0d0d24;
  --surface: #111128;
  --surface-2: #16162e;
  --border: rgba(99,102,241,.18);
  --border-light: rgba(255,255,255,.06);
  --text: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --radius: 1rem;
  --radius-lg: 1.5rem;
  --shadow: 0 4px 24px rgba(0,0,0,.4);
  --shadow-glow: 0 0 60px rgba(99,102,241,.25);
  --transition: .25s cubic-bezier(.4,0,.2,1);
  --transition-slow: .5s cubic-bezier(.4,0,.2,1);
  --container: 1240px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--cyan) 60%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== GLASS CARDS ===== */
.glass-card {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}
.glass-card-dark {
  background: rgba(13,13,36,.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: 3rem;
  font-weight: 600;
  font-size: .9375rem;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(99,102,241,.4);
}
.btn-primary::before { background: linear-gradient(135deg, var(--indigo-light), var(--cyan)); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,.5); }

.btn-secondary {
  background: rgba(99,102,241,.1);
  color: var(--indigo-light);
  border: 1px solid rgba(99,102,241,.3);
}
.btn-secondary:hover { background: rgba(99,102,241,.2); border-color: var(--indigo); transform: translateY(-2px); }

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(37,211,102,.4); }

.btn-lg { padding: 1.125rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }
.btn-full { width: 100%; }

/* ===== SECTION BASE ===== */
.section { padding: 6rem 0; }
.dark-section { background: var(--bg-2); }

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}
.section-header h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.section-header p { color: var(--text-2); font-size: 1.0625rem; line-height: 1.7; }

.section-tag {
  display: inline-block;
  background: rgba(99,102,241,.15);
  border: 1px solid rgba(99,102,241,.3);
  color: var(--indigo-light);
  padding: .375rem 1rem;
  border-radius: 2rem;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

/* ===== ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.fade-up { opacity: 0; transform: translateY(40px); }
.fade-up.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity .8s var(--transition-slow), transform .8s var(--transition-slow);
}
.fade-right { opacity: 0; transform: translateX(60px); }
.fade-right.visible {
  opacity: 1; transform: translateX(0);
  transition: opacity .9s var(--transition-slow), transform .9s var(--transition-slow);
}

/* ===== LANG TOGGLE ===== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: .375rem;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 2rem;
  padding: .35rem .875rem;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
  flex-shrink: 0;
}
.lang-toggle:hover { background: rgba(99,102,241,.18); border-color: rgba(99,102,241,.4); }
.lang-opt {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: .06em;
  transition: color var(--transition);
}
.lang-opt.lang-active { color: var(--indigo-light); }
.lang-sep { font-size: .75rem; color: var(--text-3); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: .875rem 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(5,5,16,.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  padding: .625rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo imagem */
.logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: brightness(1.05);
}
.logo-img-footer {
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-dark)) !important;
  color: #fff !important;
  padding: .625rem 1.25rem !important;
  border-radius: 2rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(99,102,241,.35);
  transition: all var(--transition) !important;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(99,102,241,.45) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  z-index: 101;
  flex-shrink: 0;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .6;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,.25) 0%, transparent 70%);
  top: -100px; left: -100px;
  animation: floatGlow 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,.18) 0%, transparent 70%);
  bottom: -100px; right: -50px;
  animation: floatGlow 10s ease-in-out infinite reverse;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
@keyframes floatGlow {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,15px) scale(.95); }
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.3);
  padding: .5rem 1.125rem;
  border-radius: 2rem;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--indigo-light);
  letter-spacing: .04em;
  margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--emerald);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--emerald);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.12;
}
.hero-subtitle {
  font-size: 1.0625rem;
  color: var(--text-2);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
}
.stat-item { text-align: left; }
.stat-item strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--text); }
.stat-item span { font-size: .8125rem; color: var(--text-3); }
.stat-divider { width: 1px; height: 36px; background: var(--border-light); flex-shrink: 0; }

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 440px;
}
.hero-card-main {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(340px, 90%);
  padding: 1.5rem;
  box-shadow: var(--shadow-glow);
}
.card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}
.card-dots { display: flex; gap: .375rem; }
.card-dots span { width: 10px; height: 10px; border-radius: 50%; }
.card-dots span:nth-child(1) { background: #ff5f57; }
.card-dots span:nth-child(2) { background: #ffbd2e; }
.card-dots span:nth-child(3) { background: #28c840; }
.card-label { font-size: .8125rem; color: var(--text-3); margin-left: auto; }
.card-metrics { display: flex; flex-direction: column; gap: .875rem; margin-bottom: 1.25rem; }
.metric { display: flex; align-items: center; gap: .75rem; }
.metric-label { font-size: .75rem; color: var(--text-3); white-space: nowrap; flex: 0 0 110px; }
.metric-bar { flex: 1; height: 6px; background: var(--surface-2); border-radius: 3px; overflow: hidden; }
.metric-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--indigo), var(--cyan));
  border-radius: 3px;
  animation: fillBar 1.5s cubic-bezier(.4,0,.2,1) forwards 1s;
}
.metric-fill.blue { background: linear-gradient(90deg, var(--cyan), #38bdf8); }
.metric-fill.purple { background: linear-gradient(90deg, var(--purple), var(--pink)); }
@keyframes fillBar { to { width: var(--w); } }
.metric-value { font-size: .8125rem; font-weight: 700; color: var(--text); width: 36px; text-align: right; }
.card-chart svg { width: 100%; height: 50px; }

.hero-card-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .875rem 1.125rem;
  min-width: 155px;
  box-shadow: var(--shadow);
}
.hero-card-float div { display: flex; flex-direction: column; }
.hero-card-float strong { font-size: .875rem; color: var(--text); }
.hero-card-float span { font-size: .75rem; color: var(--text-3); }
.float-1 { top: 8%; right: 0%; animation: floatCard 6s ease-in-out infinite; }
.float-2 { bottom: 28%; left: -2%; animation: floatCard 7s ease-in-out infinite reverse; }
.float-3 { bottom: 6%; right: 6%; animation: floatCard 5.5s ease-in-out infinite; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 46px;
  border: 2px solid var(--border);
  border-radius: 14px;
}
.hero-scroll span {
  display: block;
  width: 4px; height: 8px;
  background: var(--indigo);
  border-radius: 2px;
  margin: 8px auto 0;
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* ===== QUEM SOMOS ===== */
.qs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.qs-lead {
  font-size: 1.125rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.qs-content p { color: var(--text-2); margin-bottom: 1rem; line-height: 1.7; }
.qs-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .625rem;
  margin-top: 1.75rem;
}
.pillar {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  padding: .625rem .875rem;
  background: rgba(99,102,241,.05);
  border: 1px solid rgba(99,102,241,.12);
  border-radius: .75rem;
}

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1.25rem;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 43px;
  top: 42px;
  bottom: -1rem;
  width: 2px;
  background: linear-gradient(180deg, var(--indigo) 0%, transparent 100%);
}
.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.125rem;
  gap: .5rem;
}
.tl-year {
  font-size: .75rem;
  font-weight: 700;
  color: var(--indigo-light);
  letter-spacing: .04em;
}
.tl-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--indigo);
}
.tl-dot.active {
  background: var(--indigo);
  box-shadow: 0 0 16px rgba(99,102,241,.6);
}
.timeline-content {
  padding: 1.125rem 1.375rem;
  margin-bottom: 1.25rem;
}
.timeline-content h3 { font-size: 1rem; margin-bottom: .4rem; }
.timeline-content p { font-size: .875rem; color: var(--text-2); line-height: 1.65; }
.active-card { border-color: rgba(99,102,241,.4); box-shadow: 0 0 30px rgba(99,102,241,.12); }
.badge-now {
  display: inline-block;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .2rem .7rem;
  border-radius: 2rem;
  margin-top: .625rem;
  letter-spacing: .06em;
}

/* ===== SERVIÇOS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  padding: 1.75rem;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.08), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(99,102,241,.4); }
.service-card:hover::before { opacity: 1; }

.sc-icon {
  width: 54px; height: 54px;
  background: rgba(99,102,241,.12);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  color: var(--indigo);
  transition: all var(--transition);
}
.sc-icon.purple { background: rgba(167,139,250,.12); border-color: rgba(167,139,250,.25); color: var(--purple); }
.sc-icon.green  { background: rgba(16,185,129,.12);  border-color: rgba(16,185,129,.25);  color: var(--emerald); }
.sc-icon.orange { background: rgba(245,158,11,.12);  border-color: rgba(245,158,11,.25);  color: var(--amber); }
.sc-icon.cyan   { background: rgba(6,182,212,.12);   border-color: rgba(6,182,212,.25);   color: var(--cyan); }
.sc-icon.pink   { background: rgba(236,72,153,.12);  border-color: rgba(236,72,153,.25);  color: var(--pink); }
.service-card:hover .sc-icon { transform: scale(1.1); }

.service-card h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.service-card p { font-size: .875rem; color: var(--text-2); margin-bottom: .875rem; line-height: 1.65; }
.sc-tags { display: flex; flex-wrap: wrap; gap: .375rem; margin-bottom: 1.125rem; }
.sc-tags span {
  font-size: .75rem;
  font-weight: 600;
  padding: .2rem .6rem;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.2);
  color: var(--indigo-light);
  border-radius: 2rem;
}
.sc-arrow { color: var(--text-3); transition: all var(--transition); }
.service-card:hover .sc-arrow { color: var(--indigo); transform: translateX(6px); }

/* ===== ECOSSISTEMA ===== */
.eco-diagram {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
.eco-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.eco-core {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 0 60px rgba(99,102,241,.5);
}
.eco-core-inner { text-align: center; }
.eco-ms {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}
.eco-name { font-size: .75rem; color: rgba(255,255,255,.8); font-weight: 600; letter-spacing: .05em; }
.eco-pulse {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(99,102,241,.4);
  animation: ecoRipple 3s ease-out infinite;
}
.eco-pulse-2 { inset: -28px; border-color: rgba(99,102,241,.2); animation-delay: 1.5s; }
@keyframes ecoRipple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.eco-nodes { position: relative; width: 500px; height: 500px; }
.eco-node {
  position: absolute;
  top: 50%; left: 50%;
}
.eco-node:nth-child(1) { transform: translate(-50%,-50%) rotate(0deg)      translateX(220px) rotate(-0deg); }
.eco-node:nth-child(2) { transform: translate(-50%,-50%) rotate(51.4deg)   translateX(220px) rotate(-51.4deg); }
.eco-node:nth-child(3) { transform: translate(-50%,-50%) rotate(102.8deg)  translateX(220px) rotate(-102.8deg); }
.eco-node:nth-child(4) { transform: translate(-50%,-50%) rotate(154.2deg)  translateX(220px) rotate(-154.2deg); }
.eco-node:nth-child(5) { transform: translate(-50%,-50%) rotate(205.7deg)  translateX(220px) rotate(-205.7deg); }
.eco-node:nth-child(6) { transform: translate(-50%,-50%) rotate(257.1deg)  translateX(220px) rotate(-257.1deg); }
.eco-node:nth-child(7) { transform: translate(-50%,-50%) rotate(308.5deg)  translateX(220px) rotate(-308.5deg); }

.eco-node-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1rem;
  min-width: 88px;
  text-align: center;
  font-size: .8125rem;
  font-weight: 600;
  transition: all var(--transition);
  transform: translate(-50%, -50%);
}
.eco-node-card:hover { transform: translate(-50%, -50%) scale(1.1); box-shadow: 0 8px 32px rgba(0,0,0,.3); }

.eco-result {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  display: flex;
  justify-content: center;
}
.eco-result-card {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(16,185,129,.05));
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius);
  padding: 1.125rem 2rem;
  white-space: nowrap;
}
.eco-result-card strong { display: block; font-size: 1.0625rem; color: var(--emerald); }
.eco-result-card span { font-size: .875rem; color: var(--text-2); }

/* Mobile eco list (replaces radial on small screens) */
.eco-list { display: none; }
.eco-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.eco-list-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
}
.eco-list-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.75rem;
  background: linear-gradient(135deg, rgba(16,185,129,.15), rgba(16,185,129,.05));
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius);
  text-align: center;
  justify-content: center;
}
.eco-list-result strong { display: block; font-size: 1.125rem; color: var(--emerald); }
.eco-list-result span { font-size: .875rem; color: var(--text-2); }

/* ===== PRODUTOS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,.4); }
.featured-product {
  border-color: rgba(99,102,241,.45);
  box-shadow: 0 0 40px rgba(99,102,241,.18);
  transform: scale(1.03);
}
.featured-product:hover { transform: scale(1.03) translateY(-8px); }

.prod-featured-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  color: #fff;
  font-size: .73rem;
  font-weight: 700;
  padding: .3rem 1.25rem;
  border-radius: 0 0 .75rem .75rem;
  letter-spacing: .06em;
  z-index: 3;
  white-space: nowrap;
}

/* Product header */
.prod-header {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
}
.lucro-gradient  { background: linear-gradient(135deg, #0a2f5c, #1a73e8); }
.pedeai-gradient { background: linear-gradient(135deg, #4c1d95, #6d28d9); }
.maia-gradient   { background: linear-gradient(135deg, #022c22, #059669); }

.prod-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 1.5rem 1rem;
  position: relative;
  z-index: 2;
}
.prod-logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  color: #fff;
  font-size: 1.375rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}
.prod-logo-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.18);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prod-badge {
  background: rgba(255,255,255,.2);
  color: rgba(255,255,255,.92);
  font-size: .73rem;
  font-weight: 600;
  padding: .3rem .75rem;
  border-radius: 2rem;
  white-space: nowrap;
}

/* Product image (PedeAí / MAIA) */
.prod-header-img {
  flex: 1;
  position: relative;
  min-height: 110px;
  overflow: hidden;
  margin: 0 1rem 1rem;
  border-radius: .875rem;
}
.prod-img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  object-position: center top;
  border-radius: .875rem;
  display: block;
  opacity: .9;
  transition: opacity var(--transition);
}
.product-card:hover .prod-img { opacity: 1; }

/* Lucro+ mockup visual — dashboard financeiro */
.prod-header-visual {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 1.375rem 1.25rem;
  position: relative;
  z-index: 2;
}
.prod-mockup {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: .875rem;
  padding: .875rem 1rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  backdrop-filter: blur(8px);
}
.pm-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .125rem;
}
.pm-label { font-size: .7rem; color: rgba(255,255,255,.65); font-weight: 600; letter-spacing: .04em; }
.pm-live {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .68rem;
  color: #34d399;
  font-weight: 700;
}
.pm-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 6px #34d399;
  animation: pulseDot 2s ease-in-out infinite;
}
.pm-chart { margin: .125rem 0; }
.pm-chart svg { width: 100%; height: 42px; display: block; }
.pm-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .375rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: .5rem;
}
.pm-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
}
.pm-kpi span { font-size: .65rem; color: rgba(255,255,255,.55); font-weight: 600; letter-spacing: .04em; }
.pm-kpi strong { font-size: .8rem; color: #fff; font-weight: 800; }
.pm-up { color: #34d399 !important; }

/* Accent top bar por produto */
.product-card { position: relative; }
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 3;
  opacity: .9;
}
.product-card:nth-child(1)::after { background: linear-gradient(90deg, #1a73e8, #60a5fa); }
.product-card:nth-child(2)::after { background: linear-gradient(90deg, var(--indigo), var(--purple)); }
.product-card:nth-child(3)::after { background: linear-gradient(90deg, #059669, #34d399); }

/* Product body */
.prod-body { padding: 1.625rem; flex: 1; display: flex; flex-direction: column; }
.prod-body > p { color: var(--text-2); margin-bottom: 1.375rem; font-size: .9375rem; line-height: 1.65; }
.prod-features {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.625rem;
  flex: 1;
}
.prod-features li {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .9rem;
  color: var(--text);
}

.btn-product {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9375rem;
  border-radius: .875rem;
  font-weight: 700;
  font-size: .9375rem;
  transition: all var(--transition);
  color: #fff;
}
.btn-product svg { flex-shrink: 0; transition: transform var(--transition); }
.btn-product:hover svg { transform: translateX(3px); }
.lucro-btn  { background: linear-gradient(135deg, #1a73e8, #0a2f5c); box-shadow: 0 4px 16px rgba(26,115,232,.3); }
.lucro-btn:hover  { box-shadow: 0 8px 24px rgba(26,115,232,.45); transform: translateY(-2px); }
.pedeai-btn { background: linear-gradient(135deg, var(--indigo), #7c3aed); box-shadow: 0 4px 16px rgba(99,102,241,.3); }
.pedeai-btn:hover { box-shadow: 0 8px 24px rgba(99,102,241,.45); transform: translateY(-2px); }
.maia-btn   { background: linear-gradient(135deg, #059669, #022c22); box-shadow: 0 4px 16px rgba(5,150,105,.3); }
.maia-btn:hover   { box-shadow: 0 8px 24px rgba(5,150,105,.45); transform: translateY(-2px); }

/* ===== METODOLOGIA ===== */
.methodology-steps {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.methodology-steps::before {
  content: '';
  position: absolute;
  left: 38px;
  top: 55px;
  bottom: 55px;
  width: 2px;
  background: linear-gradient(180deg, var(--indigo) 0%, rgba(99,102,241,.15) 100%);
}
.method-step {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1.75rem;
  align-items: start;
}
.step-number {
  width: 78px; height: 78px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 24px rgba(99,102,241,.4);
  position: relative;
  z-index: 1;
}
.step-content {
  padding: 1.375rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-icon {
  width: 46px; height: 46px;
  background: rgba(99,102,241,.1);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  flex-shrink: 0;
}
.step-content div h3 { font-size: 1.0625rem; margin-bottom: .4rem; }
.step-content div p { font-size: .875rem; color: var(--text-2); line-height: 1.65; }

/* ===== RESULTADOS ===== */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.counter-card {
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.counter-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.08), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.counter-card:hover { transform: translateY(-6px); }
.counter-card:hover::before { opacity: 1; }
.counter-icon {
  width: 58px; height: 58px;
  background: rgba(99,102,241,.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.125rem;
}
.counter-wrap { display: flex; align-items: flex-start; justify-content: center; line-height: 1; }
.counter-number {
  font-size: clamp(2.75rem, 5vw, 3.75rem);
  font-weight: 900;
  font-family: 'Space Grotesk', sans-serif;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.counter-symbol {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 900;
  color: var(--indigo-light);
  display: inline-block;
  padding-top: .25rem;
}
.counter-card p {
  color: var(--text-2);
  font-size: .9rem;
  margin-top: .75rem;
  font-weight: 500;
}

/* ===== SEGMENTOS ===== */
.segments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
}
.segment-card {
  padding: 1.625rem 1.25rem 1.375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .5rem;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.segment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,.07), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.segment-card:hover { transform: translateY(-6px); border-color: rgba(99,102,241,.35); box-shadow: 0 16px 48px rgba(0,0,0,.3); }
.segment-card:hover::before { opacity: 1; }
.segment-card:hover .seg-icon-wrap { transform: scale(1.08); }
.segment-card:hover .seg-arrow { opacity: 1; transform: translateX(0); }

/* Icon wrap com variantes de cor */
.seg-icon-wrap {
  width: 62px; height: 62px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .5rem;
  transition: transform var(--transition);
}
.seg-amber  { background: rgba(245,158,11,.15);  border: 1px solid rgba(245,158,11,.25);  color: #f59e0b; }
.seg-cyan   { background: rgba(6,182,212,.15);   border: 1px solid rgba(6,182,212,.25);   color: #06b6d4; }
.seg-pink   { background: rgba(236,72,153,.15);  border: 1px solid rgba(236,72,153,.25);  color: #ec4899; }
.seg-indigo { background: rgba(99,102,241,.15);  border: 1px solid rgba(99,102,241,.25);  color: #818cf8; }
.seg-emerald{ background: rgba(16,185,129,.15);  border: 1px solid rgba(16,185,129,.25);  color: #10b981; }
.seg-teal   { background: rgba(20,184,166,.15);  border: 1px solid rgba(20,184,166,.25);  color: #2dd4bf; }
.seg-purple { background: rgba(167,139,250,.15); border: 1px solid rgba(167,139,250,.25); color: #a78bfa; }
.seg-orange { background: rgba(249,115,22,.15);  border: 1px solid rgba(249,115,22,.25);  color: #f97316; }

.seg-name {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}
.seg-sub {
  font-size: .75rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: .02em;
}
.seg-arrow {
  color: var(--indigo-light);
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--transition);
  margin-top: .25rem;
}

/* ===== DEPOIMENTOS ===== */
.testimonials-wrapper { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1rem);
  padding: 2rem;
}
.stars { color: var(--amber); font-size: 1.2rem; letter-spacing: .1rem; margin-bottom: .875rem; }
.testimonial-card blockquote {
  font-size: .9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: .875rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--cyan));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9375rem; }
.testimonial-author span { font-size: .8125rem; color: var(--text-3); }
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.tl-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.tl-btn:hover { background: var(--indigo); border-color: var(--indigo); }
.tl-dots { display: flex; gap: .5rem; align-items: center; }
.tl-dot-btn {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all var(--transition);
  border: none;
  padding: 0;
  cursor: pointer;
}
.tl-dot-btn.active { background: var(--indigo); width: 24px; border-radius: 4px; }

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.blog-card { overflow: hidden; transition: all var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,.3); }
.blog-img {
  height: 185px;
  position: relative;
  overflow: hidden;
}
.blog-img-1 { background: linear-gradient(135deg, #1e1b4b, #312e81); }
.blog-img-2 { background: linear-gradient(135deg, #064e3b, #065f46); }
.blog-img-3 { background: linear-gradient(135deg, #1e3a5f, #1d4ed8); }
.blog-img-4 { background: linear-gradient(135deg, #3b0764, #6d28d9); }
.blog-img-5 { background: linear-gradient(135deg, #431407, #c2410c); }
.blog-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(99,102,241,.8);
  color: #fff;
  font-size: .73rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 2rem;
  letter-spacing: .04em;
}
.blog-body { padding: 1.375rem; }
.blog-date { font-size: .8125rem; color: var(--text-3); display: block; margin-bottom: .5rem; }
.blog-body h3 { font-size: 1rem; margin-bottom: .625rem; line-height: 1.4; }
.blog-body h3 a { color: var(--text); transition: color var(--transition); }
.blog-body h3 a:hover { color: var(--indigo-light); }
.blog-body p { font-size: .875rem; color: var(--text-2); margin-bottom: .875rem; line-height: 1.6; }
.blog-link { font-size: .875rem; font-weight: 600; color: var(--indigo-light); transition: color var(--transition); }
.blog-link:hover { color: var(--cyan); }
.blog-cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 2.25rem 1.75rem;
  min-height: 320px;
}
.blog-cta-card h3 { font-size: 1.25rem; }
.blog-cta-card p { font-size: .875rem; color: var(--text-2); line-height: 1.6; }

/* ===== ARTIGO DO BLOG ===== */
.article-page { padding: 8.5rem 0 6rem; min-height: 100vh; }
.article-shell { max-width: 860px; }
.article-back { display: inline-flex; align-items: center; gap: .5rem; color: var(--indigo-light); font-weight: 600; margin-bottom: 2rem; }
.article-back:hover { color: var(--cyan); }
.article-header { padding-bottom: 2.5rem; border-bottom: 1px solid var(--border-light); margin-bottom: 2.5rem; }
.article-header h1 { font-size: clamp(2.1rem, 5vw, 3.75rem); margin: .9rem 0 1.25rem; }
.article-lead { color: var(--text-2); font-size: 1.2rem; max-width: 760px; }
.article-meta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; color: var(--text-3); font-size: .875rem; }
.article-content { font-size: 1.0625rem; color: #cbd5e1; }
.article-content h2 { color: var(--text); font-size: clamp(1.45rem, 3vw, 2rem); margin: 2.75rem 0 1rem; }
.article-content h3 { color: var(--text); font-size: 1.2rem; margin: 2rem 0 .75rem; }
.article-content p { margin-bottom: 1.25rem; }
.article-content ul { display: grid; gap: .75rem; margin: 1.25rem 0 1.75rem; }
.article-content li { position: relative; padding-left: 1.5rem; }
.article-content li::before { content: '✓'; position: absolute; left: 0; color: var(--emerald); font-weight: 800; }
.article-highlight { padding: 1.5rem; margin: 2rem 0; border-left: 3px solid var(--indigo); background: rgba(99,102,241,.08); border-radius: 0 var(--radius) var(--radius) 0; }
.article-highlight strong { color: var(--text); }
.article-cta { margin-top: 3rem; padding: 2rem; text-align: center; }
.article-cta h2 { margin-top: 0; }
.article-cta p { color: var(--text-2); }

/* ===== CTA SECTION ===== */
.cta-section { position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cta-glow-1 {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,.2) 0%, transparent 70%);
  top: -200px; left: -200px;
}
.cta-glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,.15) 0%, transparent 70%);
  bottom: -200px; right: -100px;
}
.cta-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cta-inner { }
.cta-inner h2 { font-size: clamp(1.875rem, 4vw, 2.625rem); margin: 1rem 0; }
.cta-inner p { color: var(--text-2); font-size: 1.0625rem; margin-bottom: 2rem; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.trust-item { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: var(--text-2); }

/* Form */
.contact-form-wrapper { }
.contact-form { padding: 2.25rem; }
.contact-form h3 { font-size: 1.375rem; margin-bottom: .375rem; }
.form-subtitle { font-size: .875rem; color: var(--text-3); margin-bottom: 1.625rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: .875rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .875rem; }
.form-group label { font-size: .8125rem; font-weight: 600; color: var(--text-2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: .75rem;
  padding: .8125rem 1rem;
  color: var(--text);
  font-size: .9375rem;
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-3); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-3); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 88px; }
.form-privacy {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: var(--text-3);
  margin-top: .875rem;
  justify-content: center;
}
.form-success {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
}
.form-success h4 { font-size: 1.25rem; color: var(--emerald); }
.form-success p { color: var(--text-2); }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border-light);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo { margin-bottom: 1.125rem; }
.footer-brand p { font-size: .9rem; color: var(--text-2); margin-bottom: 1.5rem; max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: .625rem; flex-wrap: wrap; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: .625rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--indigo); border-color: var(--indigo); color: #fff; }
.footer-col h4 {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col nav { display: flex; flex-direction: column; gap: .5rem; }
.footer-col nav a { font-size: .875rem; color: var(--text-2); transition: color var(--transition); }
.footer-col nav a:hover { color: var(--indigo-light); }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: .875rem;
  color: var(--text-2);
  margin-bottom: .75rem;
}
.footer-contact-item a { color: var(--text-2); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--indigo-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8125rem; color: var(--text-3); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .8125rem; color: var(--text-3); transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-2); }

/* ===== FLOATING ELEMENTS ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  z-index: 50;
  transition: all var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-4px); box-shadow: 0 8px 32px rgba(37,211,102,.6); }

.back-to-top {
  position: fixed;
  bottom: 6rem; right: 2.08rem;
  width: 44px; height: 44px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  z-index: 50;
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--indigo); border-color: var(--indigo); color: #fff; }

/* ===================================================================
   RESPONSIVIDADE COMPLETA — BREAKPOINTS PRECISOS
   ================================================================= */

/* --- 1280px: ajuste de gap --- */
@media (max-width: 1280px) {
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: .875rem; }
}

/* --- 1100px: tablet largo --- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; max-width: 680px; margin: 0 auto; }
  .hero-visual { display: none; }
  .hero-content { text-align: center; }
  .hero-badge { display: inline-flex; }
  .hero-title { font-size: clamp(2rem, 5vw, 3rem); }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .qs-grid { grid-template-columns: 1fr; gap: 3rem; }
  .qs-pillars { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-product { transform: none; }
  .featured-product:hover { transform: translateY(-8px); }

  .counters-grid { grid-template-columns: repeat(2, 1fr); }

  .segments-grid { grid-template-columns: repeat(4, 1fr); }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .eco-nodes { width: 420px; height: 420px; }
  .eco-node:nth-child(1) { transform: translate(-50%,-50%) rotate(0deg)      translateX(185px) rotate(0deg); }
  .eco-node:nth-child(2) { transform: translate(-50%,-50%) rotate(51.4deg)   translateX(185px) rotate(-51.4deg); }
  .eco-node:nth-child(3) { transform: translate(-50%,-50%) rotate(102.8deg)  translateX(185px) rotate(-102.8deg); }
  .eco-node:nth-child(4) { transform: translate(-50%,-50%) rotate(154.2deg)  translateX(185px) rotate(-154.2deg); }
  .eco-node:nth-child(5) { transform: translate(-50%,-50%) rotate(205.7deg)  translateX(185px) rotate(-205.7deg); }
  .eco-node:nth-child(6) { transform: translate(-50%,-50%) rotate(257.1deg)  translateX(185px) rotate(-257.1deg); }
  .eco-node:nth-child(7) { transform: translate(-50%,-50%) rotate(308.5deg)  translateX(185px) rotate(-308.5deg); }

  .cta-section .container { grid-template-columns: 1fr; gap: 3rem; }
  .cta-inner { text-align: center; }
  .cta-actions { justify-content: center; }
  .trust-badges { justify-content: center; }
}

/* --- 768px: tablet padrão / mobile grande --- */
@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .section-header { margin-bottom: 3rem; }

  /* Navbar mobile */
  .nav-links {
    position: fixed;
    inset: 0 0 0 25%;
    background: rgba(5,5,16,.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5.5rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    border-left: 1px solid var(--border);
    z-index: 100;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.0625rem;
    width: 100%;
    padding: .875rem 0;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links a:last-child { border-bottom: none; margin-top: 1rem; }
  .nav-cta {
    width: 100% !important;
    text-align: center !important;
    padding: .875rem 1.25rem !important;
    border-radius: .875rem !important;
  }
  .hamburger { display: flex; }
  .lang-toggle { padding: .3rem .7rem; }
  .lang-opt { font-size: .72rem; }

  /* Hero mobile */
  .hero { padding: 5.5rem 0 3rem; min-height: auto; }
  .hero-inner { max-width: 100%; }
  .hero-title { font-size: clamp(1.875rem, 7vw, 2.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 360px; }
  .hero-stats { gap: .625rem; }
  .stat-divider { display: none; }
  .hero-stats .stat-item {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border-light);
    border-radius: .75rem;
    padding: .625rem .875rem;
    flex: 1;
    min-width: 130px;
  }

  /* Quem somos */
  .qs-pillars { grid-template-columns: 1fr; }

  /* Timeline mobile */
  .timeline-item { grid-template-columns: 72px 1fr; gap: .875rem; }
  .timeline-item:not(:last-child)::after { left: 35px; }

  /* Serviços */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Ecossistema: troca diagrama por lista */
  .eco-diagram { display: none; }
  .eco-list { display: block; }

  /* Produtos */
  .products-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; gap: 1.25rem; }
  .featured-product { transform: none; }

  /* Metodologia */
  .methodology-steps::before { left: 28px; top: 48px; bottom: 48px; }
  .method-step { grid-template-columns: 58px 1fr; gap: 1rem; }
  .step-number { width: 58px; height: 58px; font-size: 1rem; }
  .step-content { padding: 1rem 1.25rem; flex-direction: column; gap: .75rem; }
  .step-icon { width: 40px; height: 40px; }

  /* Resultados */
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Segmentos */
  .segments-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .segment-card { padding: 1.5rem 1rem; }

  /* Depoimentos */
  .testimonial-card { flex: 0 0 100%; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .blog-cta-card { min-height: auto; }
  .article-page { padding: 6.5rem 0 4rem; }
  .article-lead { font-size: 1.05rem; }
  .article-content { font-size: 1rem; }

  /* CTA / Form */
  .cta-section .container { gap: 2.5rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 380px; }
  .contact-form { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; gap: .75rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* --- 560px: mobile médio --- */
@media (max-width: 560px) {
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }

  /* Navbar */
  .nav-links { inset: 0 0 0 0; border-left: none; }
  .logo-img { height: 36px; }

  /* Hero */
  .hero { padding: 5rem 0 2.5rem; }
  .hero-title { font-size: clamp(1.75rem, 8vw, 2.25rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-stats { grid-template-columns: 1fr 1fr; display: grid; gap: .5rem; }
  .hero-stats .stat-item { min-width: 0; }
  .hero-stats .stat-divider { display: none; }

  /* Serviços */
  .service-card { padding: 1.375rem; }

  /* Produtos */
  .products-grid { max-width: 100%; }
  .prod-header { min-height: 150px; }
  .prod-img { height: 90px; }

  /* Metodologia */
  .methodology-steps::before { display: none; }
  .method-step { grid-template-columns: 1fr; gap: .75rem; align-items: start; }
  .step-number { width: 52px; height: 52px; font-size: .9rem; margin-bottom: .25rem; }

  /* Contadores */
  .counter-card { padding: 1.75rem 1rem; }
  .counter-number { font-size: 2.75rem; }
  .counter-symbol { font-size: 1.75rem; }

  /* Ecossistema lista */
  .eco-list-grid { grid-template-columns: 1fr; }

  /* Segmentos */
  .segments-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA */
  .cta-inner h2 { font-size: 1.625rem; }
  .contact-form { padding: 1.375rem; }
  .trust-badges { flex-direction: column; align-items: flex-start; gap: .75rem; }

  /* Footer */
  .footer { padding: 3.5rem 0 1.5rem; }
  .footer-grid { gap: 1.75rem; }

  /* WhatsApp float */
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .back-to-top { bottom: 4.5rem; right: 1.35rem; }
}

/* --- 380px: mobile pequeno --- */
@media (max-width: 380px) {
  .hero-actions .btn { font-size: .875rem; padding: .875rem 1.25rem; }
  .counters-grid { grid-template-columns: 1fr 1fr; }
  .counter-number { font-size: 2.25rem; }
  .products-grid { gap: 1rem; }
  .section-header h2 { font-size: 1.75rem; }
  .blog-body h3 { font-size: .9375rem; }
}
