@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&display=swap');
/* =========================================================
   CloudHub by ITPOINT — Design System
   Paleta: navy ITPOINT + azul-céu "cloud" + cyan de acento
   Tipografia: Inter (corpo) + Fredoka (wordmark do logótipo)
   ========================================================= */

:root {
  /* Marca */
  --navy:        #0a2540;
  --navy-2:      #0d3358;
  --navy-3:      #06101f;
  --brand:       #0ea5e9;   /* sky-500 */
  --brand-2:     #2563eb;   /* blue-600 */
  --brand-ink:   #075985;
  --brand-soft:  #e0f2fe;
  --accent:      #22d3ee;   /* cyan */
  --grad:        linear-gradient(135deg, #0ea5e9 0%, #2563eb 100%);
  --grad-soft:   linear-gradient(135deg, #38bdf8 0%, #3b82f6 100%);

  /* Texto / superfícies */
  --ink:         #0f2233;
  --ink-2:       #41566b;
  --ink-3:       #6b7f93;
  --line:        #e4ebf2;
  --line-2:      #eef3f8;
  --bg:          #ffffff;
  --bg-soft:     #f5f9fc;
  --bg-soft-2:   #eef5fb;
  --white:       #ffffff;

  --radius:      14px;
  --radius-lg:   20px;
  --radius-sm:   9px;
  --shadow:      0 10px 30px rgba(13, 51, 88, .08);
  --shadow-lg:   0 24px 60px rgba(10, 37, 64, .16);
  --shadow-brand:0 16px 40px rgba(14, 165, 233, .28);

  --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: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main { flex: 1; }
img { max-width: 100%; display: block; }
a { color: var(--brand-2); }
h1, h2, h3, h4 { color: var(--navy); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
h3 { font-size: 1.22rem; }
p  { margin: 0 0 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy); color: #dbe7f2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.narrow { max-width: 720px; margin-inline: auto; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem;
  font-weight: 800; color: var(--brand-2); margin: 0 0 12px;
  display: inline-flex; align-items: center; gap: 8px;
}
.section--navy .eyebrow { color: var(--accent); }
.lead { font-size: 1.12rem; color: var(--ink-2); }
.section--navy .lead { color: #b6c8da; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: .98rem; text-decoration: none; cursor: pointer;
  border-radius: 10px; padding: 13px 24px; border: 1px solid transparent;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  line-height: 1; white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { box-shadow: 0 20px 46px rgba(14,165,233,.4); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-2); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #eef5fb; }
.btn-outline-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.34); }
.btn-outline-light:hover { background: rgba(255,255,255,.14); }
.btn-lg { padding: 16px 30px; font-size: 1.04rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 16px; height: 70px; }
.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: #17294d; letter-spacing: -.02em; }
.brand-name b { color: #17294d; font-weight: 700; }
.brand-sub { font-family: "Montserrat", system-ui, sans-serif; font-size: .6rem; text-transform: uppercase; letter-spacing: .2em; color: #6a7e95; font-weight: 600; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  display: inline-block; padding: 9px 13px; border-radius: 8px; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: .94rem; transition: background .15s, color .15s;
}
.nav-links a:hover { background: var(--bg-soft-2); color: var(--brand-2); }
.nav-links a.active { color: var(--brand-2); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 290px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-lg); padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: all .16s ease;
}
.has-drop:hover .drop, .has-drop:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: flex; gap: 12px; align-items: flex-start; padding: 11px 12px; border-radius: 10px; }
.drop a:hover { background: var(--bg-soft); }
.drop .di { width: 34px; height: 34px; flex: none; border-radius: 9px; background: var(--brand-soft);
  display: grid; place-items: center; color: var(--brand-2); }
.drop .dt { display: block; font-weight: 700; color: var(--navy); font-size: .92rem; }
.drop .dd { display: block; font-size: .8rem; color: var(--ink-3); font-weight: 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 500px at 80% -10%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(700px 600px at 10% 110%, rgba(37,99,235,.30), transparent 60%),
    linear-gradient(160deg, #0a2540 0%, #0d3358 55%, #0a2a4d 100%);
}
.hero-grid {
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 52px; align-items: center;
  padding: clamp(56px, 8vw, 92px) 0;
}
.hero h1 { color: #fff; }
.hero .lead { color: #c7d8e8; max-width: 540px; font-size: 1.18rem; }
.hero .eyebrow { color: var(--accent); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 26px 0 22px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-points li { position: relative; padding-left: 26px; font-size: .94rem; color: #c7d8e8; }
.hero-points li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }

/* Hero visual card */
.hero-visual { position: relative; }
.glass {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg); backdrop-filter: blur(6px); box-shadow: 0 30px 70px rgba(0,0,0,.4);
}
.console { padding: 18px; }
.console-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.console-dots { display: flex; gap: 6px; }
.console-dots i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.console-dots i:nth-child(1){ background:#ff5f57; } .console-dots i:nth-child(2){ background:#febc2e; } .console-dots i:nth-child(3){ background:#28c840; }
.console-title { font-size: .78rem; color: #9bbcd8; font-weight: 600; }
.vm {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); margin-bottom: 10px;
}
.vm-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--grad); display: grid; place-items: center; flex: none; }
.vm-name { font-weight: 700; color: #fff; font-size: .92rem; }
.vm-meta { font-size: .76rem; color: #9bbcd8; }
.vm-state { margin-left: auto; font-size: .72rem; font-weight: 700; color: #28c840; display: flex; align-items: center; gap: 6px; }
.vm-state::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: #28c840; box-shadow: 0 0 0 4px rgba(40,200,64,.18); }
.hero-badge {
  position: absolute; bottom: -18px; left: -18px; background: #fff; color: var(--navy);
  border-radius: 14px; padding: 13px 16px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px;
}
.hero-badge b { display: block; font-size: 1.05rem; }
.hero-badge small { color: var(--ink-3); font-size: .76rem; }

/* ---------- Trust strip ---------- */
.trust { border-bottom: 1px solid var(--line); background: #fff; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 34px; padding: 22px 0; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--navy); font-size: .92rem; }
.trust-item svg { color: var(--brand-2); flex: none; }
.trust-sep { width: 1px; height: 22px; background: var(--line); }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.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(--line); border-radius: var(--radius);
  padding: 26px; transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe2f1; }
.card .ico {
  width: 50px; height: 50px; border-radius: 13px; background: var(--brand-soft);
  display: grid; place-items: center; color: var(--brand-2); margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: .96rem; margin-bottom: 14px; }
.card-link { font-weight: 700; color: var(--brand-2); text-decoration: none; font-size: .92rem; display: inline-flex; align-items: center; gap: 6px; }
.card-link:hover { gap: 10px; }

/* Service card (featured) */
.svc-card { display: flex; flex-direction: column; }
.svc-card .ico { width: 54px; height: 54px; }
.svc-tag { font-size: .72rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--brand-ink); background: var(--brand-soft); padding: 4px 9px; border-radius: 999px; align-self: flex-start; margin-bottom: 14px; }

/* feature list */
.feat-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.feat-list li { position: relative; padding-left: 30px; color: var(--ink-2); }
.feat-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 19px; height: 19px; border-radius: 50%;
  background: var(--brand-soft) 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='%232563eb' stroke-width='3.5' 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: #c7d8e8; }
.feat-list.on-dark li::before { background-color: rgba(34,211,238,.16); }

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

/* number stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; }
.stat .n { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.section--navy .stat .n { color: #fff; }
.stat .n .u { color: var(--brand-2); }
.section--navy .stat .n .u { color: var(--accent); }
.stat .l { color: var(--ink-3); font-weight: 600; font-size: .92rem; margin-top: 8px; }
.section--navy .stat .l { color: #9bbcd8; }

/* steps */
.steps { counter-reset: s; display: grid; gap: 22px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step .num {
  counter-increment: s; flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem;
}
.step .num::before { content: counter(s); }

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

/* CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 64px); color: #fff;
  background:
    radial-gradient(600px 300px at 90% 10%, rgba(34,211,238,.25), transparent 60%),
    var(--grad); box-shadow: var(--shadow-lg); }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e8f4fd; }

/* FAQ */
.faq { display: grid; gap: 12px; max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; }
.faq summary { list-style: none; cursor: pointer; font-weight: 700; 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(--brand-2); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--ink-2); margin: 0 0 16px; }

/* breadcrumb / page hero (interior) */
.page-hero { background:
    radial-gradient(700px 400px at 85% -20%, rgba(34,211,238,.16), transparent 60%),
    linear-gradient(160deg, #0a2540 0%, #0d3358 100%); color: #fff; padding: clamp(48px, 7vw, 80px) 0 clamp(40px,6vw,64px); }
.page-hero h1 { color: #fff; max-width: 760px; }
.page-hero .lead { color: #c7d8e8; max-width: 620px; }
.crumbs { font-size: .82rem; color: #8fb0cf; margin-bottom: 18px; }
.crumbs a { color: #b6c8da; text-decoration: none; } .crumbs a:hover { color: #fff; }

/* tag above page hero */
.kicker { display:inline-flex; align-items:center; gap:8px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); color:#dcebf7; padding:6px 14px; border-radius:999px; font-size:.8rem; font-weight:700; margin-bottom:18px; }

/* ---------- Form ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; 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(--line); border-radius: 10px; font: inherit;
  color: var(--ink); background: #fcfdff; transition: border-color .15s, box-shadow .15s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(14,165,233,.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(--ink-3); display: flex; gap: 9px; align-items: flex-start; }
.form-consent input { width: auto; margin-top: 3px; }
.form-note { font-size: .82rem; color: var(--ink-3); margin-top: 14px; text-align: center; }
.form-msg { padding: 12px 14px; border-radius: 10px; font-size: .9rem; font-weight: 600; 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: 14px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ci { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-2); display: grid; place-items: center; flex: none; }
.contact-list .ct { font-weight: 700; color: var(--navy); }
.contact-list .cv { color: var(--ink-2); }
.contact-list a { color: var(--brand-2); text-decoration: none; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-3); color: #9fb4c8; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.site-footer h4 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.site-footer a { color: #9fb4c8; text-decoration: none; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-brand .brand-name { color: #eaf3fb; } .footer-brand .brand-name b { color: #eaf3fb; }
.footer-brand .brand-sub { color: #7fb6e0; }
.footer-brand .brand-mark { background: #fff; border-radius: 8px; padding: 5px 7px; }
.footer-about { font-size: .9rem; max-width: 300px; margin-top: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 44px; padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; font-size: .84rem; }
.footer-bottom a { color: #9fb4c8; }
.foot-badges { display: flex; gap: 18px; flex-wrap: wrap; }
.foot-badges span { display: inline-flex; align-items: center; gap: 7px; }

/* 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(36px, 5vw, 56px); }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- Responsivo ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 12px var(--gutter) 20px;
    box-shadow: var(--shadow-lg); transform: translateY(-130%); transition: transform .25s ease; max-height: calc(100vh - 70px); overflow:auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links 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(--line-2); border-radius: 0; padding: 0 0 0 8px; margin: 2px 0 6px; }
  .has-drop > a::after { content: " ▾"; color: var(--ink-3); }
}
@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; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-cta .btn-ghost { display: none; }
  .trust-sep { display: none; }
  .hero-badge { position: static; margin-top: 16px; }
}
