@import url('https://fonts.googleapis.com/css2?family=Geist:wght@400;500;600;700&family=Montserrat:wght@600;700;800&display=swap');
/* =========================================================
   CloudHub by ITPOINT — Design System v2 (premium)
   Base navy + escala neutra cool + 1 acento (azul elétrico).
   Tipografia: Geist (UI/títulos) · Montserrat (só wordmark).
   ========================================================= */

:root {
  /* Marca */
  --navy:        #0a2540;
  --navy-2:      #0d2945;
  --navy-3:      #071a2f;

  /* Acento único */
  --accent:      #2d5bff;
  --accent-600:  #1e45e0;
  --accent-50:   #eff3ff;

  /* Escala neutra (cool) */
  --n-950: #0a2540;
  --n-800: #1b2a3a;
  --n-700: #33414e;
  --n-600: #4c5a68;
  --n-500: #697785;
  --n-400: #8e9aa6;
  --n-300: #bfc8d1;
  --n-200: #e2e7ec;
  --n-150: #edf0f4;
  --n-100: #f4f6f9;
  --n-50:  #f9fafb;
  --white: #ffffff;

  /* Aliases semânticos */
  --ink:    var(--n-950);
  --ink-2:  var(--n-600);
  --ink-3:  var(--n-500);
  --line:   var(--n-200);
  --line-2: var(--n-150);
  --bg:     #ffffff;
  --bg-soft:   var(--n-50);
  --bg-soft-2: var(--n-100);
  --brand:     var(--accent);
  --brand-2:   var(--accent);
  --brand-ink: var(--accent-600);
  --brand-soft:var(--accent-50);

  /* Estado */
  --ok: #16a34a;

  /* Raios (8/12/16/24) */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --radius:    var(--r-lg);
  --radius-lg: var(--r-xl);
  --radius-sm: var(--r-md);

  /* Elevação — 3 níveis subtis, neutros */
  --e1: 0 1px 2px rgba(10,37,64,.06);
  --e2: 0 4px 14px rgba(10,37,64,.07), 0 1px 2px rgba(10,37,64,.04);
  --e3: 0 18px 44px rgba(10,37,64,.12), 0 3px 10px rgba(10,37,64,.05);
  --shadow:      var(--e2);
  --shadow-lg:   var(--e3);
  --shadow-card: var(--e1);

  --maxw:   1140px;
  --gutter: 24px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Geist", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--n-600);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv11", "ss01";
  display: flex; flex-direction: column; min-height: 100vh;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-600); }
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: "Geist", "Inter", system-ui, sans-serif;
  color: var(--navy); line-height: 1.1; letter-spacing: -.025em;
  margin: 0 0 .5em; font-weight: 600;
}
h1 { font-size: clamp(2.3rem, 1.4rem + 3.4vw, 3.6rem); font-weight: 700; letter-spacing: -.035em; line-height: 1.04; }
h2 { font-size: clamp(1.7rem, 1.2rem + 1.9vw, 2.5rem); font-weight: 700; letter-spacing: -.03em; }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -.02em; }
p  { margin: 0 0 1rem; }
strong, b { font-weight: 600; color: var(--n-700); }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 4.5rem + 4vw, 112px) 0; }
.section--soft { background: var(--bg-soft); border-block: 1px solid var(--n-150); }
.section--navy { background: var(--navy); color: #c4d2e0; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  text-transform: uppercase; letter-spacing: .1em; font-size: .8rem;
  font-weight: 600; color: var(--accent); margin: 0 0 16px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 2px; background: var(--accent); flex: none; }
.center .eyebrow, .eyebrow.center { justify-content: center; }
.section--navy .eyebrow, .hero .eyebrow, .page-hero .eyebrow { color: #6f9bff; }
.section--navy .eyebrow::before, .hero .eyebrow::before, .page-hero .eyebrow::before { background: #6f9bff; }
.lead { font-size: 1.16rem; line-height: 1.6; color: var(--n-500); }
.section--navy .lead { color: #9fb2c6; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 600; font-size: .98rem; cursor: pointer;
  border-radius: var(--r-md); padding: 12px 22px; border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, box-shadow .2s ease, transform .15s cubic-bezier(.2,.7,.2,1);
  line-height: 1; white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: var(--e1); }
.btn-primary:hover { background: #163050; transform: translateY(-1px); box-shadow: var(--e2); }
.btn-ghost { background: #fff; color: var(--navy); border-color: var(--n-200); box-shadow: var(--e1); }
.btn-ghost:hover { border-color: var(--n-300); transform: translateY(-1px); color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--n-100); transform: translateY(-1px); }
.btn-outline-light { background: rgba(255,255,255,.04); color: #fff; border-color: rgba(255,255,255,.28); }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.45); }
.btn-lg { padding: 15px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn svg { width: 18px; height: 18px; flex: none; }
/* Em fundos escuros o primário é branco (alto contraste, estilo premium) */
.hero .btn-primary, .page-hero .btn-primary, .cta-band .btn-primary {
  background: #fff; color: var(--navy); box-shadow: 0 8px 24px rgba(0,0,0,.18);
}
.hero .btn-primary:hover, .page-hero .btn-primary:hover, .cta-band .btn-primary:hover { background: var(--n-100); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { border-bottom-color: var(--n-150); box-shadow: 0 1px 0 rgba(10,37,64,.04); background: rgba(255,255,255,.9); }
.nav { display: flex; align-items: center; gap: 16px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand-mark { width: auto; height: 34px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: "Montserrat", system-ui, sans-serif; font-weight: 700; font-size: 1.26rem; color: var(--navy); letter-spacing: -.02em; }
.brand-name b { color: var(--navy); font-weight: 700; }
.brand-sub { font-family: "Montserrat", system-ui, sans-serif; font-size: .58rem; text-transform: uppercase; letter-spacing: .2em; color: var(--n-400); font-weight: 600; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-links > li > a {
  display: inline-block; padding: 9px 14px; border-radius: var(--r-sm); text-decoration: none;
  color: var(--n-700); font-weight: 500; font-size: .95rem; transition: background .15s, color .15s;
}
.nav-links > li > a:hover { background: var(--n-100); color: var(--navy); }
.nav-links > li > a.active { color: var(--accent); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta-m { display: none; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 10px); left: 0; min-width: 300px;
  background: #fff; border: 1px solid var(--n-150); border-radius: var(--r-lg);
  box-shadow: var(--e3); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; gap: 12px; align-items: center; padding: 10px 12px; border-radius: var(--r-md); }
.drop a:hover { background: var(--n-50); }
.drop .di { width: 36px; height: 36px; flex: none; border-radius: 10px; background: var(--n-100);
  display: grid; place-items: center; color: var(--n-700); transition: background .18s, color .18s; }
.drop a:hover .di { background: var(--accent-50); color: var(--accent); }
.drop .di svg { width: 18px; height: 18px; }
.drop .dt { display: block; font-weight: 600; color: var(--navy); font-size: .92rem; }
.drop .dd { display: block; font-size: .8rem; color: var(--n-500); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 4px 0; border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(900px 560px at 84% -8%, rgba(45,91,255,.20), transparent 62%),
    linear-gradient(168deg, #0a2540 0%, #0c2a4a 60%, #0a2236 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(720px 460px at 80% 6%, #000, transparent 72%);
          mask-image: radial-gradient(720px 460px at 80% 6%, #000, transparent 72%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-block: clamp(64px, 4rem + 4vw, 104px);
}
.hero h1 { color: #fff; }
.hero .lead { color: #b8c8da; max-width: 540px; font-size: 1.2rem; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 24px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 26px; }
.hero-points li { position: relative; padding-left: 28px; font-size: .94rem; color: #b8c8da; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 1px; width: 19px; height: 19px; border-radius: 50%;
  background: rgba(45,91,255,.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%236f9bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* Hero — mockup do portal (dashboard credível) */
.hero-visual { position: relative; }
.portal {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl); backdrop-filter: blur(6px); box-shadow: 0 30px 70px rgba(4,12,24,.5);
  padding: 16px; color: #e8eef6;
}
.portal-top { display: flex; align-items: center; justify-content: space-between; padding: 4px 6px 14px; }
.portal-brand { display: flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; color: #9fb2c6; }
.portal-brand .pdot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(45,91,255,.22); }
.portal-dots { display: flex; gap: 6px; }
.portal-dots i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.16); display: block; }
.portal-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 10px; }
.metric { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); padding: 12px 13px; }
.metric .ml { font-size: .72rem; color: #8aa0b8; margin-bottom: 4px; }
.metric .mv { font-size: 1.35rem; font-weight: 600; color: #fff; letter-spacing: -.02em; line-height: 1; }
.metric .mv s { color: #5e7693; font-size: .82rem; text-decoration: none; }
.metric .mv.ok { color: #34d399; }
.portal-row { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07); border-radius: var(--r-md); padding: 12px 14px; }
.portal-row + .portal-row { margin-top: 8px; }
.pr-ico { width: 36px; height: 36px; flex: none; border-radius: 10px; background: rgba(45,91,255,.16); color: #7aa2ff; display: grid; place-items: center; }
.pr-ico svg { width: 19px; height: 19px; }
.pr-name { font-size: .92rem; font-weight: 600; color: #fff; }
.pr-meta { font-size: .74rem; color: #7e93ab; }
.pr-spark { margin-left: auto; flex: none; }
.pr-state { flex: none; display: inline-flex; align-items: center; gap: 6px; font-size: .72rem; font-weight: 600;
  color: #34d399; background: rgba(52,211,153,.12); padding: 4px 10px; border-radius: 999px; }
.pr-state.idle { color: #7aa2ff; background: rgba(45,91,255,.14); }
.pr-state .sdot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.hero-badge {
  position: absolute; bottom: -20px; left: -16px; background: #fff; color: var(--navy);
  border-radius: var(--r-lg); padding: 13px 16px; box-shadow: var(--e3); display: flex; align-items: center; gap: 12px;
}
.hero-badge .hb-ico { width: 40px; height: 40px; border-radius: 11px; background: var(--accent-50); color: var(--accent); display: grid; place-items: center; }
.hero-badge .hb-ico svg { width: 20px; height: 20px; }
.hero-badge b { display: block; font-size: 1.05rem; font-weight: 700; letter-spacing: -.02em; }
.hero-badge small { color: var(--n-500); font-size: .76rem; }

/* ---------- Trust strip ---------- */
.trust { border-bottom: 1px solid var(--n-150); background: #fff; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 30px; padding: 20px 0; }
.trust-item { display: flex; align-items: center; gap: 9px; font-weight: 500; color: var(--n-700); font-size: .9rem; }
.trust-item svg { color: var(--accent); flex: none; width: 18px; height: 18px; }
.trust-sep { width: 1px; height: 20px; background: var(--n-200); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--n-200); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--e1);
  transition: transform .28s cubic-bezier(.2,.7,.2,1), box-shadow .28s ease, border-color .28s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--e2); border-color: var(--n-300); }
.card .ico {
  width: 48px; height: 48px; border-radius: var(--r-md); background: var(--n-100);
  display: grid; place-items: center; color: var(--n-700); margin-bottom: 18px;
  transition: background .28s ease, color .28s ease;
}
.card .ico svg { width: 24px; height: 24px; }
.card:hover .ico { background: var(--accent-50); color: var(--accent); }
.card.center .ico { margin-inline: auto; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--n-600); font-size: .98rem; margin-bottom: 14px; }
.card-link { font-weight: 600; color: var(--accent); text-decoration: none; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s ease; }
.card-link:hover { gap: 10px; color: var(--accent-600); }

/* Service card (featured) */
.svc-card { display: flex; flex-direction: column; }
.svc-card .ico { width: 52px; height: 52px; }
.svc-card .ico svg { width: 26px; height: 26px; }
.svc-tag { font-size: .72rem; font-weight: 600; letter-spacing: .03em; text-transform: uppercase;
  color: var(--accent-600); background: var(--accent-50); padding: 5px 11px; border-radius: 999px; align-self: flex-start; margin-bottom: 14px; }

/* feature list */
.feat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.feat-list li { position: relative; padding-left: 30px; color: var(--n-600); }
.feat-list li strong { color: var(--navy); }
.feat-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232d5bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.feat-list.on-dark li { color: #b8c8da; }
.feat-list.on-dark li strong { color: #fff; }
.feat-list.on-dark li::before { background-color: rgba(111,155,255,.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236f9bff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E"); }

/* split feature row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.media-card { border-radius: var(--r-xl); border: 1px solid var(--n-200); box-shadow: var(--e2); overflow: hidden; background: #fff; }

/* VM rows (cartões de média em fundo claro nas páginas de serviço) */
.vm { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: var(--r-md);
  background: var(--n-50); border: 1px solid var(--n-150); margin-bottom: 10px; }
.vm:last-child { margin-bottom: 0; }
.vm-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-50); color: var(--accent); display: grid; place-items: center; flex: none; }
.vm-ico svg { width: 20px; height: 20px; }
.vm-name { font-weight: 600; color: var(--navy); font-size: .92rem; }
.vm-meta { font-size: .78rem; color: var(--n-500); }
.vm-state { margin-left: auto; font-size: .72rem; font-weight: 600; color: var(--ok); display: flex; align-items: center; gap: 6px; }
.vm-state::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(22,163,74,.14); }

/* number stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat .n { font-family: "Geist", sans-serif; font-size: clamp(2rem, 1.4rem + 2vw, 2.9rem); font-weight: 700; color: var(--navy); letter-spacing: -.04em; line-height: 1; }
.stat .n .u { color: var(--accent); }
.section--navy .stat .n, .media-card .stat .n { color: #fff; }
.section--navy .stat .n .u, .media-card .stat .n .u { color: #6f9bff; }
.stat .l { color: var(--n-500); font-weight: 500; font-size: .92rem; margin-top: 10px; }
.section--navy .stat .l, .media-card .stat .l { color: #9fb2c6; }

/* steps — com linha de progresso */
.steps { display: grid; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .num {
  flex: none; width: 46px; height: 46px; border-radius: var(--r-md);
  background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 1.1rem; letter-spacing: -.02em;
}
/* Em grelha horizontal: linha de progresso entre os passos */
.steps-row { position: relative; }
.steps-row .step-h { position: relative; }
.steps-row .step-h:not(:last-child)::after {
  content: ""; position: absolute; top: 23px; left: calc(50% + 34px); right: calc(-50% + 34px); height: 2px;
  background: linear-gradient(90deg, var(--n-200), var(--n-150));
}

/* pill tags */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: #fff; border: 1px solid var(--n-200); border-radius: 999px; padding: 8px 16px; font-weight: 500; font-size: .9rem; color: var(--navy); box-shadow: var(--e1); }

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(40px, 5vw, 64px); color: #fff;
  background:
    radial-gradient(600px 320px at 88% 8%, rgba(45,91,255,.32), transparent 60%),
    var(--navy);
  box-shadow: var(--e3); }
.cta-band::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: radial-gradient(520px 320px at 86% 6%, #000, transparent 70%);
          mask-image: radial-gradient(520px 320px at 86% 6%, #000, transparent 70%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #b8c8da; }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--n-200); border-radius: var(--r-md); padding: 4px 20px; box-shadow: var(--e1); transition: border-color .2s ease, box-shadow .2s ease; }
.faq details[open] { border-color: var(--n-300); box-shadow: var(--e2); }
.faq summary { list-style: none; cursor: pointer; font-weight: 600; color: var(--navy); padding: 16px 0; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--n-600); margin: 0 0 16px; }

/* breadcrumb / page hero (interior) */
.page-hero { position: relative; overflow: hidden; color: #fff;
  background:
    radial-gradient(720px 420px at 86% -16%, rgba(45,91,255,.18), transparent 60%),
    linear-gradient(168deg, #0a2540 0%, #0c2a4a 100%);
  padding: clamp(52px, 4rem + 3vw, 88px) 0 clamp(44px, 3rem + 3vw, 68px); }
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(620px 380px at 84% 0%, #000, transparent 72%);
          mask-image: radial-gradient(620px 380px at 84% 0%, #000, transparent 72%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; max-width: 760px; }
.page-hero .lead { color: #b8c8da; max-width: 620px; }
.crumbs { font-size: .82rem; color: #7e96b0; margin-bottom: 18px; }
.crumbs a { color: #9fb2c6; text-decoration: none; } .crumbs a:hover { color: #fff; }
.kicker { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: #cfe0f0; padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .02em; margin-bottom: 18px; }

/* ---------- Form ---------- */
.form-card { background: #fff; border: 1px solid var(--n-200); border-radius: var(--r-xl); padding: clamp(24px, 4vw, 38px); box-shadow: var(--e2); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 600; font-size: .88rem; color: var(--navy); margin-bottom: 7px; }
.field .req { color: #e11d48; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--n-200); border-radius: var(--r-md); font: inherit; font-size: 1rem;
  color: var(--ink); background: #fff; transition: border-color .15s, box-shadow .15s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--n-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(45,91,255,.16); }
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-consent { font-size: .82rem; color: var(--n-500); display: flex; gap: 9px; align-items: flex-start; }
.form-consent input { width: auto; margin-top: 3px; accent-color: var(--accent); }
.form-note { font-size: .82rem; color: var(--n-500); margin-top: 14px; text-align: center; }
.form-msg { padding: 12px 14px; border-radius: var(--r-md); font-size: .9rem; font-weight: 500; margin-bottom: 16px; display: none; }
.form-msg.ok { display: block; background: #dcfce7; color: #166534; }
.form-msg.err { display: block; background: #fee2e2; color: #991b1b; }

/* contact info cards */
.contact-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ci { width: 44px; height: 44px; border-radius: var(--r-md); background: var(--n-100); color: var(--n-700); display: grid; place-items: center; flex: none; }
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list .ct { font-weight: 600; color: var(--navy); }
.contact-list .cv { color: var(--n-600); }
.contact-list a { color: var(--accent); text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-3); color: #92a6ba; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; font-weight: 600; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.site-footer a { color: #92a6ba; text-decoration: none; font-size: .92rem; transition: color .15s; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: #eef3f9; } .footer-brand .brand-name b { color: #eef3f9; }
.footer-brand .brand-sub { color: #6f87a0; }
.footer-brand .brand-mark { background: #fff; border-radius: 8px; padding: 5px 7px; }
.footer-about { font-size: .9rem; line-height: 1.65; max-width: 300px; margin-top: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 48px; padding-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .84rem; }
.footer-bottom a { color: #92a6ba; }
.foot-badges { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-badges span { display: inline-flex; align-items: center; gap: 7px; }
.foot-badges span svg { width: 15px; height: 15px; color: #6f87a0; }

/* utilities */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-1{margin-top:.5rem}.mt-2{margin-top:1rem}.mt-3{margin-top:1.5rem}.mt-4{margin-top:2.2rem}
.section-head { max-width: 680px; margin: 0 auto clamp(40px, 5vw, 60px); }
.section-head.left { margin-left: 0; text-align: left; }

/* animações de entrada */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Responsivo ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 480px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps-row .step-h:not(:last-child)::after { display: none; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--n-150); padding: 14px var(--gutter) 22px;
    box-shadow: var(--e3); transform: translateY(-130%); transition: transform .25s ease; max-height: calc(100vh - 72px); overflow: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links > li > a { padding: 13px 12px; font-size: 1rem; }
  .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-left: 2px solid var(--n-150); border-radius: 0; padding: 0 0 0 8px; margin: 2px 0 6px; min-width: 0; }
  .has-drop > a::after { content: " ▾"; color: var(--n-400); }
  .nav-cta-m { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; padding-top: 16px; border-top: 1px solid var(--n-150); }
  .nav-cta-m .btn { width: 100%; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-sep { display: none; }
  .hero-badge { position: static; margin-top: 16px; }

  .container { padding-inline: 20px; }
  .section-head { margin-bottom: 32px; }
  .lead { font-size: 1.04rem; }
  .hero .lead, .page-hero .lead { font-size: 1.04rem; }

  .brand-mark { height: 30px; }
  .brand-name { font-size: 1.12rem; }

  .hero-grid { padding-block: 40px 48px; gap: 34px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-points { gap: 10px 18px; }

  .btn-lg { padding: 14px 22px; font-size: 1rem; }
  .card { padding: 22px; }
  .cta-band { padding: 32px 24px; }
  .cta-band .btn { width: 100%; }
  .pr-spark { display: none; }
  .pr-name { white-space: nowrap; }
}

/* ---------- Diagrama de arquitetura (As suas apps → CloudHub → Datacenters UE) ---------- */
.arch { display: grid; gap: 0; }
.arch-node { display: flex; align-items: center; gap: 13px; padding: 15px 16px; border-radius: var(--r-md);
  background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); }
.arch-ico { width: 40px; height: 40px; flex: none; border-radius: 10px; background: rgba(255,255,255,.06); color: #c4d2e0; display: grid; place-items: center; }
.arch-ico svg { width: 21px; height: 21px; }
.an-t { font-weight: 600; color: #fff; font-size: .96rem; line-height: 1.2; }
.an-s { font-size: .78rem; color: #9fb2c6; margin-top: 2px; }
.arch-node.hub { background: linear-gradient(135deg, #2d5bff, #1e45e0); border-color: rgba(111,155,255,.5); box-shadow: 0 12px 30px rgba(45,91,255,.32); }
.arch-node.hub .arch-ico { background: rgba(255,255,255,.2); color: #fff; }
.arch-node.hub .an-s { color: #d6e1ff; }
.arch-conn { height: 24px; width: 2px; margin: 5px 0 5px 35px; background: linear-gradient(rgba(111,155,255,.7), rgba(111,155,255,.12)); position: relative; }
.arch-conn::after { content: ""; position: absolute; bottom: 0; left: -3px; width: 8px; height: 8px;
  border-right: 2px solid rgba(111,155,255,.7); border-bottom: 2px solid rgba(111,155,255,.7); transform: rotate(45deg); }
.arch-divider { margin: 22px 0 18px; border-top: 1px solid rgba(255,255,255,.09); }

/* ---------- Calculadora de custos ---------- */
.calc-wrap { display: grid; grid-template-columns: 1.35fr .85fr; gap: 32px; align-items: start; }
.calc-inputs { display: grid; gap: 18px; }
.calc-group { background: #fff; border: 1px solid var(--n-200); border-radius: var(--r-lg); padding: 22px 24px; box-shadow: var(--e1); }
.calc-group h3 { font-size: 1.05rem; margin: 0 0 18px; display: flex; align-items: center; gap: 11px; }
.calc-group .gi { width: 34px; height: 34px; flex: none; border-radius: 9px; background: var(--n-100); color: var(--n-700); display: grid; place-items: center; }
.calc-group .gi svg { width: 18px; height: 18px; }
.calc-field { margin-bottom: 18px; }
.calc-field:last-child { margin-bottom: 0; }
.calc-field.cf-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cf-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.calc-field label { font-weight: 500; color: var(--navy); font-size: .94rem; }
.cf-out { font-weight: 600; color: var(--accent); font-variant-numeric: tabular-nums; font-size: .95rem; }
.calc-n { width: 88px; text-align: center; padding: 9px 10px; border: 1px solid var(--n-200); border-radius: var(--r-md); font: inherit; font-weight: 600; color: var(--navy); background: #fff; }
.calc-n:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(45,91,255,.16); }
.calc-sel { padding: 9px 12px; border: 1px solid var(--n-200); border-radius: var(--r-md); font: inherit; font-weight: 600; color: var(--navy); background: #fff; cursor: pointer; min-width: 140px; }
.calc-sel:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(45,91,255,.16); }
input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 999px;
  background: var(--n-200); outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb { -webkit-appearance: none; appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff; box-shadow: 0 1px 5px rgba(10,37,64,.3); cursor: pointer; }
input[type="range"]::-moz-range-thumb { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); border: 3px solid #fff; box-shadow: 0 1px 5px rgba(10,37,64,.3); cursor: pointer; }
input[type="range"]:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 4px rgba(45,91,255,.25); }

.calc-summary { position: sticky; top: 92px; background: var(--navy); color: #fff; border-radius: var(--r-xl); padding: 28px; box-shadow: var(--e3);
  background-image: radial-gradient(420px 240px at 90% 0%, rgba(45,91,255,.28), transparent 60%); }
.cs-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: #9fb2c6; font-weight: 600; }
.calc-total { font-family: "Geist", sans-serif; font-size: 2.8rem; font-weight: 700; letter-spacing: -.04em; color: #fff; line-height: 1; margin: 8px 0 4px; }
.calc-total-note { font-size: .78rem; color: #8aa0b8; }
.calc-total-note b { color: #d6e1ef; font-weight: 600; }
.calc-lines { margin: 20px 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; display: grid; gap: 12px; }
.calc-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; font-size: .92rem; color: #c4d2e0; }
.calc-line i { display: block; font-style: normal; font-size: .76rem; color: #7e93ab; margin-top: 2px; }
.calc-line b { color: #fff; white-space: nowrap; font-weight: 600; }
.calc-empty { font-size: .9rem; color: #9fb2c6; }
.calc-summary .btn-primary { margin-top: 6px; }
.calc-summary .btn-primary, .orc .btn-primary { background: var(--accent); box-shadow: 0 8px 24px rgba(45,91,255,.35); }
.calc-summary .btn-primary:hover, .orc .btn-primary:hover { background: var(--accent-600); }
.calc-note { font-size: .76rem; color: #8aa0b8; margin: 14px 0 0; line-height: 1.5; }
.calc-summary .calc-total small { font-size: 1rem; font-weight: 500; color: #9fb2c6; letter-spacing: 0; }
.bk-repo { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.09); border-radius: var(--r-md); padding: 12px 15px; margin: 18px 0 6px; }
.bk-repo span { font-size: .84rem; color: #9fb2c6; }
.bk-repo b { font-family: "Geist", sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: -.02em; }
.bk-hint { font-size: .8rem; color: var(--n-500); margin: 4px 0 0; line-height: 1.5; }
.bk-hint b { color: var(--n-700); }
.bk-annual { font-size: .82rem; color: #9fb2c6; margin: 4px 0 8px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.1); }
.bk-annual b { color: #d6e1ef; font-weight: 600; }
.bk-annual span { color: #7e93ab; }
@media (max-width: 900px) {
  .calc-wrap { grid-template-columns: 1fr; gap: 22px; }
  .calc-summary { position: static; order: -1; }
}

/* ---------- Catálogo de software + orçamento ---------- */
.sw-layout { display: grid; grid-template-columns: 1.55fr .85fr; gap: 32px; align-items: start; }
.sw-catalog { min-width: 0; }
.sw-search { width: 100%; padding: 13px 16px 13px 44px; margin-bottom: 22px; border: 1px solid var(--n-200); border-radius: var(--r-md); font: inherit; font-size: 1rem; color: var(--ink); background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%238e9aa6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-4.3-4.3'/%3E%3C/svg%3E") 15px center no-repeat; }
.sw-search:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(45,91,255,.16); }

.sw-acc { background: #fff; border: 1px solid var(--n-200); border-radius: var(--r-lg); box-shadow: var(--e1); margin-bottom: 12px; overflow: hidden; }
.sw-acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 15px 20px; background: none; border: 0; cursor: pointer; font: inherit; text-align: left; }
.sw-acc-head:hover { background: var(--n-50); }
.sw-acc-title { font-family: "Geist", sans-serif; font-weight: 600; font-size: 1.04rem; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.sw-acc-title em { font-style: normal; font-size: .7rem; font-weight: 600; color: var(--accent-600); background: var(--accent-50); border-radius: 999px; padding: 2px 9px; }
.sw-acc-title .on-badge { color: #fff; background: var(--accent); }
.sw-acc-head .chev { color: var(--n-400); transition: transform .2s; flex: none; }
.sw-acc.open .sw-acc-head .chev { transform: rotate(180deg); }
.sw-acc-body { display: none; border-top: 1px solid var(--n-150); }
.sw-acc.open .sw-acc-body { display: block; }
.sw-prod { display: flex; align-items: center; gap: 14px; padding: 11px 20px; border-top: 1px solid var(--n-150); }
.sw-prod:first-child { border-top: 0; }
.sw-prod.on { background: var(--accent-50); }
.sw-prod-info { flex: 1; min-width: 0; }
.sw-prod-name { font-size: .92rem; color: var(--n-700); font-weight: 500; }
.sw-prod-price { font-size: .8rem; color: var(--n-500); }
.sw-prod-price b { color: var(--navy); font-weight: 600; }
.sw-qty { flex: none; display: flex; align-items: center; border: 1px solid var(--n-200); border-radius: var(--r-md); overflow: hidden; background: #fff; }
.sw-qty button { width: 32px; height: 34px; border: 0; background: #fff; color: var(--navy); font-size: 1.15rem; cursor: pointer; line-height: 1; }
.sw-qty button:hover { background: var(--n-100); color: var(--accent); }
.sw-q-input { width: 44px; height: 34px; border: 0; border-inline: 1px solid var(--n-200); text-align: center; font: inherit; font-weight: 600; color: var(--navy); -moz-appearance: textfield; }
.sw-q-input::-webkit-outer-spin-button, .sw-q-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.sw-q-input:focus { outline: none; background: var(--accent-50); }

.orc { position: sticky; top: 92px; background: var(--navy); color: #fff; border-radius: var(--r-xl); padding: 26px; box-shadow: var(--e3);
  background-image: radial-gradient(420px 240px at 90% 0%, rgba(45,91,255,.28), transparent 60%); }
.orc .cs-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: #9fb2c6; font-weight: 600; }
.orc .calc-total { font-family: "Geist", sans-serif; font-size: 2.4rem; font-weight: 700; letter-spacing: -.04em; color: #fff; line-height: 1; margin: 8px 0 4px; }
.orc .calc-total small { font-size: 1rem; font-weight: 500; color: #9fb2c6; letter-spacing: 0; }
.orc .calc-total-note { font-size: .78rem; color: #8aa0b8; }
.orc .calc-total-note b { color: #d6e1ef; font-weight: 600; }
.orc-lines { margin: 18px 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; display: grid; gap: 12px; max-height: 360px; overflow: auto; }
.orc-line { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; font-size: .9rem; color: #c4d2e0; }
.orc-line .ol-n { flex: 1; min-width: 0; }
.orc-line i { display: block; font-style: normal; font-size: .74rem; color: #7e93ab; margin-top: 1px; }
.orc-line b { color: #fff; white-space: nowrap; font-weight: 600; }
.orc-line .rm { background: none; border: 0; color: #6f87a0; cursor: pointer; font-size: 1rem; line-height: 1; padding: 0; flex: none; }
.orc-line .rm:hover { color: #fff; }
.orc-empty { font-size: .9rem; color: #9fb2c6; }
.orc-addlink { display: block; text-align: center; margin-top: 12px; font-size: .86rem; font-weight: 600; text-decoration: none; }
.orc-addlink:hover { text-decoration: underline; }
.calc-summary .orc-addlink, .orc .orc-addlink { color: #7aa2ff; }
@media (max-width: 900px) { .sw-layout { grid-template-columns: 1fr; } .orc { position: static; order: -1; } }
