/* ============ TOKENS ============ */
:root{
  --ink:#16202b;
  --body:#4a5663;
  --muted:#6a7686;
  --bg:#f8fafc;
  --bg-2:#f1f5f9;
  --bg-3:#f8fafc;
  --card-bg:#ffffff;
  --nav-bg:rgba(255,255,255,.94);
  --line:#e4e8ee;
  --line-2:#d2d9e2;
  --accent:#0a7cbe;
  --accent-dark:#086499;
  --accent-soft:#e8f3fb;
  --radius:20px;
  --container:1160px;
  --ease:cubic-bezier(.16,1,.3,1);
  --font-head:'Poppins',sans-serif;
  --font-body:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --shadow-sm:0 1px 2px rgba(0,0,0,.04),0 4px 14px rgba(0,0,0,.05);
  --shadow:0 12px 44px -10px rgba(20,30,45,.16);
}

/* Versão Executiva — Dark Corporativo Premium */
body.executive {
  --ink:#f8fafc;
  --body:#94a3b8;
  --muted:#64748b;
  --bg:#090d16;
  --bg-2:#0f1626;
  --bg-3:#151f32;
  --card-bg:#0f1626;
  --nav-bg:rgba(9,13,22,.94);
  --line:#1e293b;
  --line-2:#334155;
  --accent:#38bdf8;
  --accent-dark:#0284c7;
  --accent-soft:rgba(56, 189, 248, 0.12);
  --shadow-sm:0 1px 2px rgba(0,0,0,.4),0 4px 14px rgba(0,0,0,.3);
  --shadow:0 12px 44px -10px rgba(0,0,0,.6);
}

/* Classes utilitárias de visibilidade Geral vs. Executivo */
.show-executive {
  display: none !important;
}
body.executive .show-general {
  display: none !important;
}
body.executive .show-executive {
  display: block !important;
}
body.executive span.show-executive {
  display: inline !important;
}
body.executive div.show-executive {
  display: block !important;
}
body.executive .grid.show-executive {
  display: grid !important;
}
body.executive .flex.show-executive {
  display: flex !important;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{font-family:var(--font-body);color:var(--body);background:var(--bg);line-height:1.6;font-size:17px;-webkit-font-smoothing:antialiased;overflow-x:hidden;transition:background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease)}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font-family:inherit;cursor:pointer;border:none;background:none;color:inherit}

.container{width:100%;max-width:var(--container);margin:0 auto;padding:0 26px}
section{position:relative}
.section-pad{padding:108px 0}
h1,h2,h3,h4{color:var(--ink);font-family:var(--font-head);line-height:1.1;letter-spacing:-.02em;font-weight:700}
h2{font-size:clamp(2.1rem,4.2vw,3.1rem);font-weight:700;letter-spacing:-.025em}
h3{font-size:1.24rem;font-weight:600;letter-spacing:-.01em}
p{text-align:left}
.lead{font-size:clamp(1.1rem,1.7vw,1.32rem);color:var(--body);font-weight:400;line-height:1.55}

.eyebrow{display:inline-block;font-family:var(--font-body);font-size:.82rem;font-weight:600;letter-spacing:.16em;text-transform:uppercase;color:var(--accent);margin-bottom:18px;padding:6px 14px;background:var(--accent-soft);border-radius:980px}
.head-center{text-align:center;max-width:700px;margin:0 auto 68px}
.head-center p{text-align:center}
.head-center .lead{margin-top:20px}

.link-arrow{display:inline-flex;align-items:center;gap:5px;color:var(--accent);font-weight:600;font-size:1rem;transition:gap .2s var(--ease)}
.link-arrow svg{width:16px;height:16px}
.link-arrow:hover{gap:9px}

/* buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;font-family:var(--font-head);font-weight:600;font-size:.97rem;padding:14px 28px;border-radius:980px;transition:background .25s,transform .25s var(--ease),box-shadow .25s,border-color .25s;white-space:nowrap}
.btn svg{width:17px;height:17px}
.btn-primary{background:var(--accent);color:#fff}
.btn-primary:hover{background:var(--accent-dark);transform:translateY(-1px)}
.btn-soft{background:var(--bg-2);color:var(--ink);border:1px solid var(--line)}
.btn-soft:hover{background:#ecf0f4;border-color:var(--line-2);transform:translateY(-1px)}
.btn-lg{padding:16px 34px;font-size:1.03rem}
.btn-block{width:100%}
.btn:disabled{opacity:.45;cursor:not-allowed;transform:none}

/* Botão Flutuante com Borda de Neon Animada (Efeito Sparo/Stripe) */
.btn-glow-border {
  position: relative;
  overflow: hidden;
  background: transparent !important;
  border: none !important;
  z-index: 1;
  color: #ffffff !important;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.15);
  cursor: pointer;
}
.btn-glow-border::before {
  content: '';
  position: absolute;
  top: -150%;
  left: -150%;
  width: 400%;
  height: 400%;
  background: conic-gradient(
    from 0deg,
    transparent 20%,
    #38bdf8 45%,
    transparent 60%,
    #00a2ff 85%,
    transparent 100%
  );
  animation: rotateBorder 3s infinite linear;
  z-index: -2;
}
.btn-glow-border::after {
  content: '';
  position: absolute;
  inset: 2px; /* Espessura da borda */
  background: var(--bg);
  border-radius: 980px;
  z-index: -1;
  transition: background 0.3s;
}
body.executive .btn-glow-border::after {
  background: #090d16;
}
body:not(.executive) .btn-glow-border::after {
  background: var(--accent-dark);
}
.btn-glow-border:hover::after {
  background: rgba(56, 189, 248, 0.08);
}
body:not(.executive) .btn-glow-border:hover::after {
  background: var(--accent);
}
@keyframes rotateBorder {
  100% {
    transform: rotate(360deg);
  }
}

/* ============ NAV FLOATING GLASSMORPHISM ============ */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent !important;
  border: none !important;
  transition: top 0.3s var(--ease);
}
.nav.scrolled {
  top: 10px;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 980px;
  padding: 0 24px;
  width: calc(100% - 32px);
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
body.executive .nav-inner {
  background: rgba(9, 13, 22, 0.94);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}
.nav.scrolled .nav-inner {
  height: 58px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.02);
}
body.executive .nav.scrolled .nav-inner {
  background: #090d16;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(56, 189, 248, 0.05);
}
.brand img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  font-size: .93rem;
  font-weight: 500;
  color: var(--ink);
  opacity: .82;
  transition: opacity .2s, color .2s;
}
.nav-links a:hover {
  opacity: 1;
}
.nav-links a.active {
  opacity: 1;
  color: var(--accent);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.menu-btn{display:none;width:44px;height:44px;border-radius:10px;align-items:center;justify-content:center;color:var(--ink)}
.menu-btn svg{width:24px;height:24px}
.mobile-menu{position:fixed;inset:0 0 0 auto;width:min(84vw,330px);z-index:99;background:var(--bg);border-left:1px solid var(--line);box-shadow:var(--shadow);transform:translateX(100%);transition:transform .4s var(--ease);padding:92px 26px 26px;display:flex;flex-direction:column;gap:2px}
.mobile-menu.open{transform:translateX(0)}
.mobile-menu a{padding:15px 4px;font-size:1.06rem;font-weight:500;color:var(--ink);border-bottom:1px solid var(--line)}
.mobile-menu a.active{color:var(--accent)}
.mobile-menu .btn{margin-top:22px}
.overlay{position:fixed;inset:0;background:rgba(0,0,0,.28);z-index:98;opacity:0;visibility:hidden;transition:.3s}
.overlay.open{opacity:1;visibility:visible}

/* Switcher de Visão (Geral vs. Executiva) */
.view-switcher {
  display: inline-flex;
  align-items: center;
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 3px;
  border-radius: 980px;
  user-select: none;
  height: 38px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.switcher-pill {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  background: var(--bg);
  border-radius: 980px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s var(--ease);
}
body.executive .switcher-pill {
  transform: translateX(100%);
  background: var(--bg-3);
}
.switcher-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 14px;
  height: 100%;
  border-radius: 980px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  position: relative;
  z-index: 2;
  transition: color 0.3s;
  border: none;
  background: none;
  cursor: pointer;
}
.switcher-option svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s;
  color: var(--muted);
}
.switcher-option:hover svg {
  transform: scale(1.1);
}
.switcher-option.active {
  color: var(--ink);
}
.switcher-option.active svg {
  color: var(--accent);
}
body.executive .switcher-option[data-view="executive"] {
  color: var(--accent);
}
body.executive .switcher-option[data-view="executive"] svg {
  color: var(--accent);
}
body:not(.executive) .switcher-option[data-view="general"] {
  color: var(--accent);
}
body:not(.executive) .switcher-option[data-view="general"] svg {
  color: var(--accent);
}

/* Switcher no Menu Mobile */
.mobile-switcher-container {
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-switcher-container span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.mobile-switcher-container .view-switcher {
  width: 100%;
}
.mobile-switcher-container .switcher-option {
  flex: 1;
  justify-content: center;
}

/* ============ HERO (Estilo Grid 2 Colunas com Flow Builder) ============ */
/* ============ HERO CLEAN E CENTRALIZADA (Estilo Sparo) ============ */
.hero {
  padding: 220px 24px 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.hero::before {
  content: "";
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, var(--accent-soft), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5.2vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.08;
  margin: 24px auto;
  max-width: 22ch;
  text-align: center;
  transition: color 0.4s;
}
.hero h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 1.05em;
  letter-spacing: 0;
  display: inline-block;
}
body:not(.executive) .hero h1 em {
  color: var(--accent);
}
body.executive .hero h1 em {
  color: #38bdf8;
  text-shadow: 0 0 24px rgba(56, 189, 248, 0.22);
}
.hero .lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.65;
  color: var(--body);
  max-width: 64ch;
  margin: 0 auto 38px;
  text-align: center;
  transition: color 0.4s;
}
.hero-actions {
  display: inline-flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 24px;
}
.hero-visual {
  display: none !important; /* removido da Hero */
}

/* ===== SEÇÃO DO FLOW BUILDER (SEGUNDA DOBRA) ===== */
.section-flow {
  padding: 100px 24px;
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.section-flow-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-flow-title h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.4s;
}
.section-flow-title h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  font-size: 1.05em;
  letter-spacing: 0;
}
body:not(.executive) .section-flow-title h2 em {
  color: var(--accent);
}
body.executive .section-flow-title h2 em {
  color: #38bdf8;
}
.section-flow-title p {
  font-size: 1.02rem;
  color: var(--body);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
  transition: color 0.4s;
}

/* ===== KALLTECH PIPELINE HORIZONTAL (Estilo Stripe/Linear) ===== */
.pipeline-container {
  width: 100%;
  max-width: 900px;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 60px 40px 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 10;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
}
body.executive .pipeline-container {
  border-color: rgba(56, 189, 248, 0.22);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45), 0 0 30px rgba(56,189,248,0.06);
}
body.executive .pipeline-container:hover {
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 20px 45px rgba(0,0,0,0.5), 0 0 35px rgba(56,189,248,0.12);
}
.pipeline-track {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 0 40px;
  margin-bottom: 84px; /* Evita que as popovers flutuantes sobreponham a barra de status inferior */
}
.pipeline-line {
  position: absolute;
  left: 80px;
  right: 80px;
  height: 2px;
  background: var(--line);
  z-index: 1;
  overflow: hidden;
  transition: background 0.4s;
}
.pipeline-pulse {
  position: absolute;
  left: -25%;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: pulseTrack 2.6s infinite linear;
}
body.executive .pipeline-pulse {
  background: linear-gradient(90deg, transparent, #a855f7, var(--accent), transparent);
}
@keyframes pulseTrack {
  to {
    left: 125%;
  }
}

.pipeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.step-dot {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-2);
  border: 2px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.4s var(--ease);
}
.step-dot svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s;
}
.pipeline-step.active .step-dot {
  background: var(--card-bg);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 20px var(--accent-soft);
  transform: scale(1.08);
}
.pipeline-step:hover .step-dot {
  border-color: var(--line-2);
  color: var(--ink);
}
body.executive .pipeline-step.active .step-dot {
  background: var(--bg);
}
body.executive .pipeline-step.active:nth-of-type(1) .step-dot {
  border-color: #38bdf8;
  color: #38bdf8;
  box-shadow: 0 0 22px rgba(56, 189, 248, 0.28);
}
body.executive .pipeline-step.active:nth-of-type(2) .step-dot {
  border-color: #a855f7;
  color: #a855f7;
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.28);
}
body.executive .pipeline-step.active:nth-of-type(3) .step-dot {
  border-color: #ec4899;
  color: #ec4899;
  box-shadow: 0 0 22px rgba(236, 72, 153, 0.28);
}
body.executive .pipeline-step.active:nth-of-type(4) .step-dot {
  border-color: #22b66c;
  color: #22b66c;
  box-shadow: 0 0 22px rgba(34, 182, 108, 0.28);
}

.step-popover {
  position: absolute;
  top: 72px;
  width: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.55;
  transform: translateY(4px);
  transition: all 0.4s var(--ease);
}
.pipeline-step.active .step-popover {
  opacity: 1;
  transform: translateY(0);
}
.step-popover h5 {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color 0.4s;
}
.step-popover p {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.35;
  margin: 0;
  transition: color 0.4s;
}

.pipeline-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 0.76rem;
  color: var(--muted);
  transition: border-color 0.4s;
}
.status-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.status-indicator {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22b66c;
  display: inline-block;
  animation: blink 1.4s infinite;
}
.text-accent {
  color: var(--accent);
  font-weight: 600;
  transition: color 0.4s;
}
body.executive .text-accent {
  color: #38bdf8;
}

@media(max-width: 767px) {
  .pipeline-container {
    padding: 40px 20px 24px;
    gap: 30px;
  }
  .pipeline-track {
    flex-direction: column;
    gap: 40px;
    padding: 0;
  }
  .pipeline-line {
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
  }
  .pipeline-pulse {
    top: -25%;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
    animation: pulseTrackVertical 2.6s infinite linear;
  }
  body.executive .pipeline-pulse {
    background: linear-gradient(180deg, transparent, #a855f7, var(--accent), transparent);
  }
  @keyframes pulseTrackVertical {
    to {
      top: 125%;
    }
  }
  .pipeline-step {
    flex-direction: row;
    width: 100%;
    gap: 20px;
    align-items: flex-start;
  }
  .step-popover {
    position: static;
    width: auto;
    text-align: left;
    align-items: flex-start;
    transform: none !important;
    opacity: 0.7;
  }
  .pipeline-step.active .step-popover {
    opacity: 1;
  }
  .pipeline-status-bar {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media(max-width: 991px) {
  .hero {
    padding: 120px 0 64px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero .lead {
    max-width: 100%;
  }
  .flow-builder {
    max-width: 100%;
  }
}

/* Painel de Gráfico Dinâmico da Hero */
.flow-chart-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  margin-top: 14px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}
.chart-status {
  color: #22b66c !important;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}
.chart-status::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #22b66c;
  border-radius: 50%;
  animation: blink 1.2s infinite;
}
.hero-chart-svg {
  width: 100%;
  height: 48px;
  display: block;
  overflow: visible;
}

/* ============ PÁGINA INTERNA (page-hero) ============ */
.page-hero{padding:190px 0 24px;text-align:center;position:relative;overflow:hidden}
.page-hero::before{content:"";position:absolute;top:-180px;left:50%;transform:translateX(-50%);width:840px;height:500px;z-index:-1;background:radial-gradient(50% 50% at 50% 50%,var(--accent-soft),transparent 70%);opacity:.7}
.page-hero h1{font-size:clamp(2.2rem,4.4vw,3.3rem);font-weight:700;letter-spacing:-.03em;color:var(--ink);line-height:1.08;margin-bottom:18px}
.page-hero .lead{max-width:640px;margin:0 auto}

/* ============ CAPS ============ */
.caps{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--bg-3)}
.caps-inner{display:flex;flex-wrap:wrap;justify-content:center;gap:10px 36px;padding:30px 0}
.caps-inner span{font-size:.94rem;font-weight:500;color:var(--ink);opacity:.6;display:inline-flex;align-items:center;gap:9px}
.caps-inner span svg{width:17px;height:17px;color:var(--accent)}

.alt{background:var(--bg-2)}

/* ============ SERVICES ============ */
.grid-services{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:var(--card-bg);border:1px solid var(--line);border-radius:var(--radius);padding:36px 32px;transition:transform .4s var(--ease),box-shadow .4s var(--ease)}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.card .ic{width:50px;height:50px;border-radius:14px;display:flex;align-items:center;justify-content:center;background:var(--accent-soft);color:var(--accent);margin-bottom:24px}
.card .ic svg{width:24px;height:24px;stroke-width:1.7}
.card h3{margin-bottom:10px}
.card p{font-size:.99rem;color:var(--body);line-height:1.6;text-align:left}
.card .feat{margin-top:18px;display:flex;flex-direction:column;gap:9px}
.card .feat li{display:flex;align-items:center;gap:9px;font-size:.9rem;color:var(--body)}
.card .feat svg{width:16px;height:16px;color:var(--accent);flex-shrink:0}

/* ============ ABOUT ============ */
.about-grid{display:grid;grid-template-columns:.78fr 1.22fr;gap:64px;align-items:center}
.about-photo{position:relative}
.about-photo .frame{aspect-ratio:76/103;border-radius:24px;overflow:hidden;background:var(--bg-2);border:1px solid var(--line);position:relative}
.about-photo .frame img{width:100%;height:100%;object-fit:cover;object-position:center}
.about-photo .ph{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:16px;color:var(--muted);text-align:center;padding:24px}
.about-photo .ph .mono{width:92px;height:92px;border-radius:50%;background:var(--accent);display:flex;align-items:center;justify-content:center;font-family:var(--font-head);font-weight:600;font-size:2.1rem;color:#fff}
.about-photo .ph small{font-size:.82rem;line-height:1.5}
.about-photo .badge{position:absolute;bottom:-20px;right:22px;background:var(--card-bg);border:1px solid var(--line);border-radius:16px;padding:14px 20px;display:flex;align-items:center;gap:13px;box-shadow:var(--shadow)}
.about-photo .badge .y{font-family:var(--font-head);font-weight:700;font-size:1.5rem;color:var(--ink);line-height:1}
.about-photo .badge .t{font-size:.78rem;color:var(--body);line-height:1.3;text-align:left}
.about .role{color:var(--accent);font-weight:500;font-size:1.04rem;margin:4px 0 22px;text-align:left}
.about p+p{margin-top:15px}
.about p{font-size:1.04rem}
.about-creds{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.cred{display:inline-flex;align-items:center;gap:8px;background:var(--card-bg);border:1px solid var(--line);border-radius:980px;padding:9px 16px;font-size:.88rem;color:var(--ink)}
.cred svg{width:16px;height:16px;color:var(--accent)}

/* ============ TIMELINE ============ */
.timeline{position:relative;max-width:720px;margin:0 auto;padding-left:30px}
.timeline::before{content:"";position:absolute;left:5px;top:8px;bottom:10px;width:2px;background:var(--line-2)}
.tl-item{position:relative;padding-bottom:36px}
.tl-item:last-child{padding-bottom:0}
.tl-item::before{content:"";position:absolute;left:-30px;top:3px;width:15px;height:15px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 4px var(--bg)}
.tl-year{font-family:var(--font-head);font-weight:700;color:var(--accent);font-size:1.05rem;margin-bottom:3px}
.tl-item h3{font-size:1.14rem;margin-bottom:5px}
.tl-item p{font-size:.97rem;text-align:left;color:var(--body)}

/* ============ CASE EM DESTAQUE (home) ============ */
.feature{max-width:920px;margin:0 auto;background:var(--card-bg);border:1px solid var(--line);border-radius:var(--radius);padding:40px 44px;display:grid;grid-template-columns:auto 1fr;gap:38px;align-items:center;box-shadow:var(--shadow-sm)}
.feature .fl{text-align:center;min-width:170px}
.feature .fl img{height:46px;width:auto;max-width:190px;object-fit:contain;margin:0 auto 10px}
.feature .fl .lbl{font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--muted);font-weight:600}
.feature .fr h3{font-size:1.32rem;margin-bottom:8px}
.feature .fr p{font-size:.98rem;text-align:left;margin-bottom:18px}

/* ============ QUEM ATENDEMOS ============ */
.seg-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.seg{display:flex;align-items:center;gap:13px;background:var(--card-bg);border:1px solid var(--line);border-radius:14px;padding:18px 20px;transition:.3s var(--ease)}
.seg:hover{border-color:var(--line-2);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
.seg .si{width:40px;height:40px;border-radius:11px;flex-shrink:0;background:var(--accent-soft);color:var(--accent);display:flex;align-items:center;justify-content:center}
.seg .si svg{width:21px;height:21px}
.seg span{font-family:var(--font-head);font-weight:500;font-size:.95rem;color:var(--ink);line-height:1.25}

/* ============ POR QUE ESCOLHER ============ */
.diffs{display:grid;grid-template-columns:1fr 1fr;gap:20px 40px;max-width:880px;margin:0 auto}
.diff{display:flex;align-items:flex-start;gap:13px}
.diff .dk{width:26px;height:26px;border-radius:50%;flex-shrink:0;background:var(--accent-soft);color:var(--accent);display:flex;align-items:center;justify-content:center;margin-top:1px}
.diff .dk svg{width:14px;height:14px}
.diff p{font-size:1rem;color:var(--ink);text-align:left;line-height:1.45}

/* ============ CASE intro/resultado ============ */
.case-intro{font-size:1rem;color:var(--body);text-align:center;max-width:560px;margin:10px auto 0}
.case-result{margin-top:30px;padding:18px 22px;background:var(--accent-soft);border:1px solid #cfe6f5;border-radius:14px;font-size:.98rem;color:var(--ink);text-align:left}
.case-result b{font-family:var(--font-head)}

@media(max-width:980px){.seg-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.seg-grid,.diffs{grid-template-columns:1fr}}

/* ============ PORTFOLIO (cases por cliente) ============ */
.cases{display:flex;flex-direction:column;gap:24px;max-width:920px;margin:0 auto}
.case{background:var(--card-bg);border:1px solid var(--line);border-radius:var(--radius);padding:42px 46px;transition:box-shadow .4s var(--ease)}
.case:hover{box-shadow:var(--shadow)}
.case-head{display:flex;flex-direction:column;align-items:center;text-align:center;gap:12px;padding-bottom:30px;border-bottom:1px solid var(--line);margin-bottom:32px}
.case-logo{height:54px;width:auto;max-width:260px;object-fit:contain}
.case-nm{font-family:var(--font-head);font-weight:700;font-size:1.7rem;color:var(--ink)}
.case-sub{font-size:.76rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--muted)}
.case-list{display:grid;grid-template-columns:1fr 1fr;gap:24px 40px}
.case-item{display:flex;gap:14px;align-items:flex-start}
.case-item .ck{width:24px;height:24px;border-radius:50%;background:var(--accent-soft);color:var(--accent);display:flex;align-items:center;justify-content:center;flex-shrink:0;margin-top:2px}
.case-item .ck svg{width:13px;height:13px}
.case-item h3{font-family:var(--font-head);font-size:1.03rem;font-weight:600;color:var(--ink);margin-bottom:3px}
.case-item p{font-size:.92rem;color:var(--body);text-align:left;line-height:1.5}
.case-link{font-size:.82rem;font-weight:600;color:var(--accent);white-space:nowrap}

/* ============ PROCESS ============ */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:30px}
.step{position:relative}
.step .n{font-family:var(--font-head);font-size:1rem;font-weight:700;color:var(--accent);margin-bottom:14px}
.step h3{font-size:1.14rem;margin-bottom:8px}
.step p{font-size:.96rem;text-align:left}
.step:not(:last-child)::after{content:"";position:absolute;top:9px;right:-15px;width:6px;height:6px;border-top:2px solid var(--line-2);border-right:2px solid var(--line-2);transform:rotate(45deg)}

/* ============ FAQ ============ */
.faq-wrap{max-width:780px;margin:0 auto;border-top:1px solid var(--line)}
.faq{border-bottom:1px solid var(--line)}
.faq button{width:100%;display:flex;align-items:center;justify-content:space-between;gap:16px;padding:26px 4px;text-align:left;font-family:var(--font-head);font-size:1.1rem;font-weight:500;color:var(--ink)}
.faq .pm{flex-shrink:0;width:24px;height:24px;display:flex;align-items:center;justify-content:center;color:var(--accent);transition:transform .3s}
.faq.open .pm{transform:rotate(45deg)}
.faq .pm svg{width:18px;height:18px}
.faq .a{max-height:0;overflow:hidden;transition:max-height .35s var(--ease)}
.faq .a p{padding:0 4px 26px;font-size:1rem;color:var(--body)}

/* ============ SCHEDULER ============ */
.sched-card{max-width:980px;margin:0 auto;background:#fff;border:1px solid var(--line);border-radius:24px;box-shadow:var(--shadow-sm);overflow:hidden;display:grid;grid-template-columns:1fr 1.3fr}
.sched-side{padding:40px 34px;background:var(--bg-2);border-right:1px solid var(--line)}
.sched-side h3{font-size:1.4rem;margin-bottom:8px}
.sched-side .dur{display:inline-flex;align-items:center;gap:8px;color:var(--accent);font-size:.92rem;font-weight:500;margin-bottom:22px}
.sched-side .dur svg{width:16px;height:16px}
.sched-side p{font-size:.96rem;margin-bottom:26px;text-align:left}
.sched-side .mini{display:flex;flex-direction:column;gap:14px}
.sched-side .mini li{display:flex;gap:11px;font-size:.93rem;color:var(--body)}
.sched-side .mini svg{width:18px;height:18px;color:var(--accent);flex-shrink:0;margin-top:2px}
.sched-main{padding:36px 34px}
.field-label{font-family:var(--font-head);font-size:.84rem;font-weight:600;color:var(--ink);margin-bottom:11px}
.sel{position:relative;margin-bottom:28px}
.sel select{width:100%;appearance:none;-webkit-appearance:none;background:var(--bg-2);border:1px solid var(--line);border-radius:13px;padding:14px 44px 14px 16px;color:var(--ink);font-family:inherit;font-size:.98rem;cursor:pointer;transition:.2s}
.sel select:focus{outline:none;border-color:var(--accent);box-shadow:0 0 0 3px var(--accent-soft)}
.sel::after{content:"";position:absolute;right:18px;top:50%;width:9px;height:9px;border-right:2px solid var(--muted);border-bottom:2px solid var(--muted);transform:translateY(-70%) rotate(45deg);pointer-events:none}
.cal-time{display:grid;grid-template-columns:1.1fr .9fr;gap:28px}
.cal-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.cal-head .mn{font-family:var(--font-head);font-weight:600;color:var(--ink);font-size:1rem;text-transform:capitalize}
.cal-nav{display:flex;gap:8px}
.cal-nav button{width:32px;height:32px;border-radius:9px;border:1px solid var(--line);background:#fff;color:var(--body);display:flex;align-items:center;justify-content:center;transition:.2s}
.cal-nav button:hover:not(:disabled){background:var(--bg-2);color:var(--ink)}
.cal-nav button:disabled{opacity:.35;cursor:not-allowed}
.cal-nav svg{width:15px;height:15px}
.cal-dow{display:grid;grid-template-columns:repeat(7,1fr);gap:3px;margin-bottom:6px}
.cal-dow span{text-align:center;font-size:.7rem;color:var(--muted);font-weight:600;padding:4px 0}
.cal-days{display:grid;grid-template-columns:repeat(7,1fr);gap:3px}
.cal-days button{height:42px;display:flex;align-items:center;justify-content:center;border-radius:10px;font-size:.92rem;font-weight:500;color:var(--ink);transition:.16s}
.cal-days button:hover:not(:disabled){background:var(--accent-soft)}
.cal-days button:disabled{color:var(--line-2);cursor:not-allowed}
.cal-days button.sel{background:var(--accent);color:#fff;font-weight:600}
.cal-days .empty{height:42px;visibility:hidden}
.times{display:flex;flex-direction:column;gap:9px;max-height:320px;overflow-y:auto;padding-right:4px}
.times .t-empty{font-size:.9rem;color:var(--muted);padding:14px 4px;line-height:1.5;text-align:left}
.times button{padding:12px;border-radius:11px;border:1px solid var(--line);background:var(--card-bg);color:var(--ink);font-weight:500;font-size:.95rem;transition:.16s}
.times button:hover{border-color:var(--accent);color:var(--accent)}
.times button.sel{background:var(--accent);color:#fff;border-color:var(--accent)}
.sched-foot{grid-column:1/-1;border-top:1px solid var(--line);padding:22px 34px;display:flex;align-items:center;justify-content:space-between;gap:20px;flex-wrap:wrap}
.sched-foot .sum{font-size:.96rem;color:var(--body)}
.sched-foot .sum b{color:var(--ink);font-weight:600}
.sched-foot .btn{min-width:230px}
.confirm{display:none;grid-column:1/-1;padding:54px 34px;text-align:center}
.confirm.show{display:block}
.confirm .ok{width:62px;height:62px;border-radius:50%;margin:0 auto 20px;background:var(--accent-soft);display:flex;align-items:center;justify-content:center;color:var(--accent)}
.confirm .ok svg{width:30px;height:30px}
.confirm h3{font-size:1.5rem;margin-bottom:8px}
.confirm p{font-size:.98rem;max-width:440px;margin:0 auto;text-align:center}
.confirm .det{background:var(--bg-2);border:1px solid var(--line);border-radius:14px;padding:18px;margin:22px auto;color:var(--ink);font-weight:600;max-width:400px}
.confirm .actions{display:flex;gap:10px;justify-content:center;flex-wrap:wrap;max-width:470px;margin:0 auto}
.confirm .actions .btn{flex:1;min-width:200px}
.linklike{background:none;color:var(--accent);font-size:.9rem;text-decoration:underline;text-underline-offset:3px;margin-top:18px}
.confirm-hint{font-size:.84rem;color:var(--muted);margin-top:16px;text-align:center}
.confirm-links{display:flex;gap:22px;justify-content:center;flex-wrap:wrap;margin-top:4px}
.confirm-links .linklike{margin-top:0}

/* ============ CAL.COM EMBED ============ */
.cal-embed{max-width:1000px;margin:0 auto;border:1px solid var(--line);border-radius:24px;overflow:hidden;box-shadow:var(--shadow-sm);background:var(--card-bg)}
.cal-embed iframe{width:100%;height:720px;border:0;display:block}
.cal-fallback{text-align:center;margin-top:18px;font-size:.92rem;color:var(--muted)}
.cal-fallback a{color:var(--accent);font-weight:600}
@media(max-width:640px){.cal-embed iframe{height:920px}}
/* agenda Google (botão) */
.gcal-card{max-width:600px;margin:0 auto;text-align:center;background:var(--card-bg);border:1px solid var(--line);border-radius:24px;box-shadow:var(--shadow-sm);padding:48px 40px}
.gcal-card .gcal-ic{width:64px;height:64px;border-radius:18px;margin:0 auto 22px;background:var(--accent-soft);color:var(--accent);display:flex;align-items:center;justify-content:center}
.gcal-card .gcal-ic svg{width:31px;height:31px}
.gcal-card h3{font-size:1.4rem;margin-bottom:10px}
.gcal-card p{font-size:1rem;color:var(--body);text-align:center;max-width:420px;margin:0 auto 26px}
.gcal-card .btn{margin:0 auto}
.gcal-btn{display:flex;justify-content:center;margin:4px 0}
.gcal-meta{display:flex;flex-direction:column;gap:11px;margin-top:30px;align-items:center}
.gcal-meta span{display:inline-flex;align-items:center;gap:9px;font-size:.92rem;color:var(--body)}
.gcal-meta span svg{width:16px;height:16px;color:var(--accent);flex-shrink:0}
@media(max-width:640px){.gcal-card{padding:36px 24px}}

/* ============ CTA ============ */
.cta-final{text-align:center;background:var(--bg-2)}
.cta-final h2{margin-bottom:14px}
.cta-final p{font-size:1.18rem;max-width:540px;margin:0 auto 32px;color:var(--body);text-align:center}

/* ============ CONTACT ============ */
.contact-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.channel{display:flex;flex-direction:column;gap:12px;padding:32px;border:1px solid var(--line);border-radius:var(--radius);background:var(--card-bg);transition:.35s var(--ease)}
.channel:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.channel .ic{width:48px;height:48px;border-radius:13px;background:var(--accent-soft);color:var(--accent);display:flex;align-items:center;justify-content:center}
.channel .ic svg{width:23px;height:23px}
.channel .lbl{font-size:.82rem;color:var(--muted);font-weight:500}
.channel .val{font-family:var(--font-head);font-weight:600;color:var(--ink);font-size:1.1rem}
.channel .sub{font-size:.9rem;color:var(--body);text-align:left}
.channel .go{margin-top:auto;color:var(--accent);font-weight:600;font-size:.92rem;display:inline-flex;align-items:center;gap:6px}
.channel .go svg{width:15px;height:15px}

/* ============ FOOTER ============ */
footer{border-top:1px solid var(--line);padding:56px 0 30px;background:var(--bg-3)}
.foot-grid{display:grid;grid-template-columns:1.8fr 1fr 1fr 1fr;gap:40px;margin-bottom:40px}
footer .brand img{height:38px;margin-bottom:18px}
.foot-about{font-size:.92rem;color:var(--body);max-width:290px;text-align:left}
.foot-social{display:flex;gap:11px;margin-top:20px}
.foot-social a{width:38px;height:38px;border-radius:10px;background:var(--bg);border:1px solid var(--line);display:flex;align-items:center;justify-content:center;color:var(--body);transition:.25s}
.foot-social a:hover{background:var(--ink);color:#fff;border-color:var(--ink)}
.foot-social svg{width:17px;height:17px}
.foot-col h4{color:var(--ink);font-size:.9rem;font-weight:600;margin-bottom:15px}
.foot-col a{display:block;font-size:.9rem;padding:6px 0;color:var(--body);transition:color .2s}
.foot-col a:hover{color:var(--accent)}
.foot-bottom{border-top:1px solid var(--line);padding-top:24px;display:flex;justify-content:space-between;align-items:center;gap:14px;flex-wrap:wrap;font-size:.84rem;color:var(--muted)}

.wa-float{position:fixed;bottom:24px;right:24px;z-index:90;width:58px;height:58px;border-radius:50%;background:#25D366;display:flex;align-items:center;justify-content:center;color:#fff;box-shadow:0 8px 24px rgba(37,211,102,.4);transition:transform .25s var(--ease)}
.wa-float:hover{transform:scale(1.08)}
.wa-float svg{width:30px;height:30px}

.reveal{opacity:0;transform:translateY(24px);transition:opacity .8s var(--ease),transform .8s var(--ease)}
.reveal.in{opacity:1;transform:none}
.reveal[data-d="1"]{transition-delay:.08s}.reveal[data-d="2"]{transition-delay:.16s}.reveal[data-d="3"]{transition-delay:.24s}.reveal[data-d="4"]{transition-delay:.32s}.reveal[data-d="5"]{transition-delay:.40s}.reveal[data-d="6"]{transition-delay:.48s}.reveal[data-d="7"]{transition-delay:.56s}.reveal[data-d="8"]{transition-delay:.64s}

/* Layout do Processo em Duas Colunas (Sticky + Timeline Vertical) */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  position: relative;
  align-items: start;
}
.process-left {
  position: sticky;
  top: 120px; /* Mantém fixo na tela no scroll */
}
.process-right {
  position: relative;
  padding-left: 56px;
}
/* Linha vertical conectora */
.process-v-line {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 20px; /* Centro do badge */
  width: 2px;
  background-image: linear-gradient(to bottom, var(--line) 40%, transparent 40%);
  background-size: 100% 8px;
  opacity: 0.5;
}
body.executive .process-v-line {
  background-image: linear-gradient(to bottom, var(--line-2) 40%, transparent 40%);
}
.process-step-v {
  position: relative;
  margin-bottom: 48px;
}
.process-step-v:last-child {
  margin-bottom: 0;
}
.step-v-badge {
  position: absolute;
  left: -56px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  z-index: 2;
  box-shadow: 0 0 0 5px var(--bg);
  transition: all 0.4s var(--ease);
}
body.executive .step-v-badge {
  background: var(--bg-3);
  border-color: rgba(255, 255, 255, 0.08);
  color: #38bdf8;
  box-shadow: 0 0 0 5px #090d16;
}
.step-v-content {
  padding-top: 4px;
}
.step-v-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color 0.3s;
}
.step-v-content p {
  font-size: 0.94rem;
  color: var(--body);
  line-height: 1.6;
}

/* Hover e estados ativos */
.process-step-v:hover .step-v-badge {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
  box-shadow: 0 0 14px var(--accent-soft), 0 0 0 5px var(--bg);
  transform: scale(1.08);
}
body.executive .process-step-v:hover .step-v-badge {
  background: #38bdf8;
  color: #090d16;
  border-color: #38bdf8;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.35), 0 0 0 5px #090d16;
}

/* Responsivo para Tablet e Mobile */
@media (max-width: 991px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .process-left {
    position: static;
  }
  .process-right {
    padding-left: 48px;
  }
  .process-v-line {
    left: 16px;
  }
  .step-v-badge {
    left: -48px;
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
    box-shadow: 0 0 0 4px var(--bg);
  }
  body.executive .step-v-badge {
    box-shadow: 0 0 0 4px #090d16;
  }
}

@media(max-width:980px){
  .nav-links{display:none}
  .nav-cta .btn{display:none}
  .menu-btn{display:flex}
  .hero-grid{grid-template-columns:1fr;gap:48px}
  .hero .lead{max-width:none}
  .grid-services{grid-template-columns:1fr 1fr}
  .about-grid{grid-template-columns:1fr;gap:60px;max-width:540px;margin:0 auto}
  .feature{grid-template-columns:1fr;gap:26px;text-align:center}
  .feature .fr p{text-align:center}
  .steps{grid-template-columns:1fr 1fr;gap:40px 30px}
  .step:not(:last-child)::after{display:none}
  .sched-card{grid-template-columns:1fr}
  .sched-side{border-right:none;border-bottom:1px solid var(--line)}
  .contact-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr 1fr;gap:34px}
}
@media(max-width:640px){
  body{font-size:16px}
  .section-pad{padding:78px 0}
  .hero{padding:130px 0 64px}
  .page-hero{padding:128px 0 16px}
  .grid-services,.steps,.case-list{grid-template-columns:1fr}
  .case,.feature{padding:30px 24px}
  .cal-time{grid-template-columns:1fr;gap:24px}
  .sched-main,.sched-side{padding:28px 24px}
  .hero-actions{flex-direction:column;align-items:flex-start}
  .foot-grid{grid-template-columns:1fr;gap:30px;text-align:center}
  .foot-about{max-width:none;text-align:center}
  .foot-social{justify-content:center}
  p{text-align:left}
}

/* Reduz animações para quem pediu (acessibilidade + bateria) */
@media (prefers-reduced-motion: reduce){
  *,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}
}

/* ============================================================
   Reposicionamento executivo: hero-stats, tecnologia, especialista
   ============================================================ */
/* faixa de números no hero */
.hero-stats{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 36px;margin-top:44px;padding-top:32px;border-top:1px solid var(--line);max-width:500px}
body.executive .hero-stats.show-general { display: none !important; }
body:not(.executive) .hero-stats.show-executive { display: none !important; }
.hs b{display:block;font-family:var(--font-head);font-weight:700;font-size:1.32rem;color:var(--ink);line-height:1.2;letter-spacing:-.02em}
.hs span{font-size:.82rem;color:var(--muted);margin-top:5px;display:block;line-height:1.35}

/* faixa de tecnologias/plataformas */
.tech-band{border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:var(--bg-3);padding:40px 0}
.tech-band .th{text-align:center;font-size:.8rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;color:var(--muted);margin-bottom:22px}
.tech-grid{display:flex;flex-wrap:wrap;justify-content:center;gap:12px}
.tech-chip{display:inline-flex;align-items:center;gap:9px;background:var(--card-bg);border:1px solid var(--line);border-radius:980px;padding:11px 20px;font-family:var(--font-head);font-weight:500;font-size:.94rem;color:var(--ink);box-shadow:var(--shadow-sm)}
.tech-chip svg{width:17px;height:17px;color:var(--accent);flex-shrink:0}

/* card "falar com especialista" (contato) */
.specialist{display:grid;grid-template-columns:1.15fr .85fr;background:var(--card-bg);border:1px solid var(--line);border-radius:24px;overflow:hidden;box-shadow:var(--shadow);max-width:940px;margin:0 auto}
.specialist .sp-l{padding:44px 40px}
.specialist .sp-l h3{font-size:1.5rem;margin:6px 0 12px}
.specialist .sp-l p{color:var(--body);font-size:1rem;line-height:1.6}
.specialist .sp-feat{display:flex;flex-wrap:wrap;gap:8px 18px;margin-top:18px}
.specialist .sp-feat span{display:inline-flex;align-items:center;gap:7px;font-size:.86rem;color:var(--body)}
.specialist .sp-feat svg{width:15px;height:15px;color:var(--accent);flex-shrink:0}
.specialist .sp-r{padding:40px;background:var(--bg-2);border-left:1px solid var(--line);display:flex;flex-direction:column;gap:12px;justify-content:center}
.specialist .sp-r .btn{width:100%}
.specialist .sp-note{font-size:.8rem;color:var(--muted);text-align:center;margin-top:2px}
@media(max-width:760px){
  .specialist{grid-template-columns:1fr}
  .specialist .sp-l,.specialist .sp-r{padding:32px 26px}
  .specialist .sp-r{border-left:none;border-top:1px solid var(--line)}
}

/* lista de resultados/ganhos (case) */
.wins{display:flex;flex-direction:column;gap:13px;margin:22px 0 26px}
.wins li{display:flex;gap:11px;align-items:flex-start;font-size:.98rem;color:var(--body);line-height:1.5}
.wins svg{width:20px;height:20px;color:var(--accent);flex-shrink:0;margin-top:3px}
.wins b{color:var(--ink);font-weight:600}

/* ============================================================
   Efeitos Visuais Ultra-Premium: Aurora-BG & Spotlight Cards
   ============================================================ */
/* Aurora-BG (Mesh Gradients & 3D Neural Canvas) */
.aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.8s ease;
}
body.executive .aurora-bg {
  opacity: 0.75;
}
.higgs-cine-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}
.aurora-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter: blur(140px);
  will-change: transform;
}
.glow-1 {
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation: auroraMove1 22s infinite alternate ease-in-out;
}
.glow-2 {
  background: radial-gradient(circle, #a855f7 0%, transparent 70%);
  top: 400px;
  left: -200px;
  animation: auroraMove2 28s infinite alternate ease-in-out;
}
.glow-3 {
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
  bottom: 15%;
  right: 10%;
  width: 700px;
  height: 700px;
  animation: auroraMove3 35s infinite alternate ease-in-out;
}

@keyframes auroraMove1 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-120px, 90px, 0) scale(1.1); }
  100% { transform: translate3d(60px, -60px, 0) scale(0.9); }
}
@keyframes auroraMove2 {
  0% { transform: translate3d(0, 0, 0) scale(0.9); }
  50% { transform: translate3d(140px, -70px, 0) scale(1.15); }
  100% { transform: translate3d(-50px, 120px, 0) scale(1); }
}
@keyframes auroraMove3 {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-90px, -140px, 0) scale(0.85); }
  100% { transform: translate3d(70px, 60px, 0) scale(1.1); }
}

/* Spotlight Hover Cards (Border Gradient) */
.card, .feature, .case, .channel, .specialist, .gcal-card {
  position: relative;
  overflow: hidden;
}
.card::before, .feature::before, .case::before, .channel::before, .specialist::before, .gcal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: radial-gradient(
    180px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(10, 124, 190, 0.4),
    transparent 60%
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.35s ease;
}
body.executive .card::before, 
body.executive .feature::before, 
body.executive .case::before, 
body.executive .channel::before, 
body.executive .specialist::before,
body.executive .gcal-card::before {
  background: radial-gradient(
    200px circle at var(--mouse-x, -999px) var(--mouse-y, -999px),
    rgba(56, 189, 248, 0.5) 0%,
    rgba(168, 85, 247, 0.35) 50%,
    transparent 100%
  );
}
.card:hover::before, .feature:hover::before, .case:hover::before, .channel:hover::before, .specialist:hover::before, .gcal-card:hover::before {
  opacity: 1;
}

/* ============================================================
   Simulador de ROI de IA Interativo
   ============================================================ */
.roi-simulator {
  max-width: 920px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.roi-inputs {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.roi-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.roi-field-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.roi-field-header label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  transition: color 0.4s;
}
.roi-field-header span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  transition: color 0.4s;
}
.roi-slider {
  width: 100%;
  height: 6px;
  border-radius: 980px;
  background: var(--line);
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: background 0.4s;
}
.roi-slider::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  transition: transform 0.2s, background 0.4s;
  box-shadow: 0 0 10px var(--accent);
}
.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}
.roi-outputs {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.roi-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.roi-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.4s;
}
.roi-stat-value {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  transition: color 0.4s;
}
.roi-stat-value.highlight {
  color: var(--accent);
  text-shadow: 0 0 16px var(--accent-soft);
}
.roi-indicator {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.roi-progress-bg {
  width: 100%;
  height: 8px;
  background: var(--line);
  border-radius: 980px;
  overflow: hidden;
  transition: background 0.4s;
}
.roi-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #a855f7 100%);
  border-radius: 980px;
  width: 0%;
  transition: width 0.4s ease;
  box-shadow: 0 0 8px var(--accent);
}
@media(max-width: 780px) {
  .roi-simulator {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 30px;
  }
  .roi-outputs {
    padding: 24px;
  }
  .roi-stat-value {
    font-size: 1.9rem;
  }
}

/* ============================================================
   Mockup de Vídeo Holográfico Premium (Hero Visual)
   ============================================================ */
.video-mockup {
  width: 100%;
  max-width: 580px;
  position: relative;
  z-index: 10;
  transition: transform 0.4s var(--ease);
}
.mockup-frame {
  background: rgba(15, 22, 38, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(56, 189, 248, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: border-color 0.4s, box-shadow 0.4s;
}
body.executive .mockup-frame:hover {
  border-color: rgba(56, 189, 248, 0.45);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.5), 0 0 35px rgba(56, 189, 248, 0.15);
}
.mockup-header {
  height: 42px;
  background: rgba(9, 13, 22, 0.95);
  border-bottom: 1px solid rgba(56, 189, 248, 0.18);
  display: flex;
  align-items: center;
  padding: 0 18px;
  position: relative;
}
.mockup-dots {
  display: flex;
  gap: 7px;
}
.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.mockup-dots span:nth-child(1) { background: #ef4444; }
.mockup-dots span:nth-child(2) { background: #f59e0b; }
.mockup-dots span:nth-child(3) { background: #10b981; }

.mockup-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
  background: #090d16;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 50%, rgba(9, 13, 22, 0.45) 100%);
  pointer-events: none;
}
.video-glow-effect {
  position: absolute;
  bottom: -40px;
  left: 15%;
  right: 15%;
  height: 60px;
  background: radial-gradient(ellipse at 50% 100%, rgba(56, 189, 248, 0.35), transparent 70%);
  filter: blur(25px);
  pointer-events: none;
}
@media(max-width: 991px) {
  .video-mockup {
    max-width: 100%;
    margin-top: 24px;
  }
}


