/* =========================================================
   Muiito — estilos do site
   Cores extraídas do logotipo (logoMuiito.jpeg)
   ========================================================= */
:root {
  --blue: #024AD2;
  --blue-600: #0340B5;
  --blue-700: #06338C;
  --navy: #071E4F;
  --navy-2: #0B2A66;
  --orange: #FF6203;
  --orange-600: #E55600;
  --orange-soft: #FFF1E8;
  --blue-soft: #EEF3FD;
  --ink: #0B1633;
  --text: #33405E;
  --muted: #647091;
  --line: #E2E8F5;
  --bg: #FFFFFF;
  --bg-soft: #F6F8FD;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(7, 30, 79, .06), 0 12px 32px -12px rgba(7, 30, 79, .18);
  --shadow-lg: 0 30px 60px -20px rgba(7, 30, 79, .35);
  --container: 1200px;
  --font-head: "Nunito", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 150px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-600); }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 900; }
h3 { font-size: 1.3rem; font-weight: 800; }
p { margin: 0 0 1em; }
.hl { color: var(--orange); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 800; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ""; width: 18px; height: 9px;
  border: 3px solid currentColor; border-top: 0;
  border-radius: 0 0 18px 18px;
}
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 1rem;
  padding: 15px 28px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, background .15s ease, box-shadow .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px -10px rgba(255, 98, 3, .7); }
.btn--primary:hover { background: var(--orange-600); color: #fff; }
.btn--blue { background: var(--blue); color: #fff; box-shadow: 0 10px 24px -10px rgba(2, 74, 210, .7); }
.btn--blue:hover { background: var(--blue-600); color: #fff; }
.btn--ghost { border-color: var(--blue); color: var(--blue); background: transparent; }
.btn--ghost:hover { background: var(--blue); color: #fff; }
.btn--light { background: #fff; color: var(--blue); }
.btn--light:hover { color: var(--blue-700); }
.btn--outline-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--blue); }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.link-arrow { font-family: var(--font-head); font-weight: 800; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow::after { content: "→"; transition: transform .15s; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 6px 24px -18px rgba(7,30,79,.5); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }
.brand img { height: 34px; width: auto; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav > ul { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  color: var(--ink); padding: 10px 14px; border-radius: 999px;
  background: none; border: 0; cursor: pointer;
}
.nav-link:hover, .nav-item:focus-within > .nav-link { color: var(--blue); background: var(--blue-soft); }
.nav-link.active { color: var(--blue); }
.nav-link .caret { width: 10px; height: 10px; transition: transform .2s; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translate(-50%, 6px);
  min-width: 250px; background: #fff; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow-lg); padding: 10px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transition: opacity .18s, transform .18s, visibility .18s;
}
.dropdown::before { content: ""; position: absolute; inset: -12px 0 auto; height: 12px; }
.nav-item:hover > .dropdown, .nav-item:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-item:hover .caret { transform: rotate(180deg); }
.dropdown a {
  display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 10px;
  color: var(--ink); font-weight: 600; font-size: .95rem;
}
.dropdown a:hover { background: var(--blue-soft); color: var(--blue); }
.dropdown .ico-sm { width: 32px; height: 32px; border-radius: 9px; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; flex: none; }
.dropdown a:hover .ico-sm { background: var(--blue); color: #fff; }
.dropdown .ico-sm svg { width: 17px; height: 17px; }
.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 11px 22px; font-size: .95rem; }
.menu-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; border-radius: 12px; cursor: pointer; color: var(--ink); }
.menu-toggle svg { width: 26px; height: 26px; margin: auto; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 72px 0 110px; overflow: hidden; background:
  radial-gradient(900px 500px at 85% -10%, rgba(2,74,210,.10), transparent 60%),
  radial-gradient(700px 400px at -10% 110%, rgba(255,98,3,.08), transparent 60%); }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 14px; }
.hero p.sub { color: var(--muted); margin-bottom: 34px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
  font-size: .88rem; font-weight: 600; color: var(--ink);
}
.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

/* Hero visual: painel de módulos */
.hero-visual { position: relative; }
.hero-visual .smile-bg {
  position: absolute; width: 120%; left: -10%; bottom: -60px; color: var(--orange); opacity: .12; z-index: 0;
}
.panel {
  position: relative; z-index: 1; background: #fff; border-radius: 24px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg); padding: 22px;
}
.panel-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.panel-dots { display: flex; gap: 6px; }
.panel-dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); }
.panel-dots i:first-child { background: var(--orange); }
.panel-title { font-family: var(--font-head); font-weight: 800; font-size: .85rem; color: var(--muted); }
.status { display: inline-flex; align-items: center; gap: 6px; font-size: .78rem; font-weight: 700; color: #0A8F55; background: #E6F7EF; padding: 4px 10px; border-radius: 999px; }
.status::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: .3; } }
.modules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.module {
  border: 1px solid var(--line); border-radius: 14px; padding: 14px 12px; background: var(--bg-soft);
  display: flex; flex-direction: column; gap: 10px; font-family: var(--font-head); font-weight: 800; font-size: .92rem; color: var(--ink);
  transition: transform .2s, border-color .2s, background .2s;
}
.module .ico-sm { width: 34px; height: 34px; border-radius: 10px; background: #fff; color: var(--blue); display: grid; place-items: center; box-shadow: 0 2px 6px rgba(7,30,79,.08); }
.module .ico-sm svg { width: 18px; height: 18px; }
.module.on { background: var(--blue); border-color: var(--blue); color: #fff; }
.module.on .ico-sm { color: var(--orange); }
.code {
  margin-top: 14px; background: var(--navy); color: #C8D6F5; border-radius: 14px; padding: 16px 18px;
  font-family: "JetBrains Mono", Consolas, monospace; font-size: .8rem; line-height: 1.7; overflow: hidden;
}
.code .k { color: #FF9A5C; } .code .s { color: #8FD3A8; } .code .c { color: #6F82B0; }
.float-card {
  position: absolute; z-index: 2; background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg);
  padding: 12px 16px; display: flex; align-items: center; gap: 12px; font-size: .85rem; border: 1px solid var(--line);
}
.float-card strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: .95rem; }
.float-card .ico-sm { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange); }
.float-card .ico-sm svg { width: 20px; height: 20px; }
.float-card.fc1 { left: -38px; bottom: 70px; animation: float 6s ease-in-out infinite; }
.float-card.fc2 { right: -26px; top: -24px; animation: float 7s ease-in-out infinite reverse; }
@keyframes float { 50% { transform: translateY(-10px); } }

/* ---------- Page hero (interno) ---------- */
.page-hero {
  position: relative; overflow: hidden; color: #fff; padding: 88px 0 96px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-700) 55%, var(--blue) 100%);
}
.page-hero h1 { color: #fff; max-width: 860px; }
.page-hero .lead { color: rgba(255,255,255,.82); max-width: 720px; }
.page-hero .eyebrow { color: #FFB27F; }
.page-hero .smile-deco { position: absolute; right: -80px; bottom: -120px; width: 520px; color: var(--orange); opacity: .9; }
.page-hero .ring-deco { position: absolute; right: 120px; top: -140px; width: 360px; height: 360px; border-radius: 50%; border: 60px solid rgba(255,255,255,.05); }
.breadcrumb { font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.9); }
.subnav { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 80px; z-index: 40; }
.subnav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 6px; overflow-x: auto; scrollbar-width: none; }
.subnav ul::-webkit-scrollbar { display: none; }
.subnav a { display: block; padding: 16px 14px; font-family: var(--font-head); font-weight: 700; color: var(--muted); white-space: nowrap; border-bottom: 3px solid transparent; }
.subnav a:hover, .subnav a.active { color: var(--blue); border-color: var(--orange); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 24px; }
.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: 30px;
  transition: transform .2s, box-shadow .2s, border-color .2s; position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.ico {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center;
  background: var(--blue-soft); color: var(--blue); margin-bottom: 20px;
}
.ico svg { width: 26px; height: 26px; }
.ico--orange { background: var(--orange-soft); color: var(--orange); }
.card--link { display: flex; flex-direction: column; color: inherit; }
.card--link .link-arrow { margin-top: auto; padding-top: 20px; color: var(--blue); }
.card--link:hover { color: inherit; }
.card--link:hover .ico { background: var(--blue); color: #fff; }

.value-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: start; }
.value-intro .question {
  font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--blue);
  padding: 22px 26px; background: var(--blue-soft); border-radius: var(--radius); border-left: 5px solid var(--orange);
  margin: 26px 0;
}

/* ---------- Solução (bloco detalhado) ---------- */
.solution { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 88px 0; border-bottom: 1px solid var(--line); }
.solution:last-child { border-bottom: 0; }
.solution.reverse .solution-media { order: -1; }
.solution h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.solution-tag { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 16px; font-family: var(--font-head); font-weight: 900; color: var(--blue); letter-spacing: .08em; text-transform: uppercase; font-size: .85rem; }
.solution-tag .ico { width: 40px; height: 40px; margin: 0; border-radius: 12px; }
.solution-tag .ico svg { width: 20px; height: 20px; }
.feature-box { background: var(--bg-soft); border-radius: 24px; padding: 32px; border: 1px solid var(--line); position: relative; overflow: hidden; }
.feature-box h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-weight: 600; color: var(--ink); font-size: .97rem; line-height: 1.4; }
.checklist li::before {
  content: ""; flex: none; width: 20px; height: 20px; margin-top: 1px; border-radius: 50%;
  background: var(--orange) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checklist.single { grid-template-columns: 1fr; }
.note {
  margin-top: 22px; padding: 16px 18px; border-radius: 14px; background: #fff; border: 1px dashed #C6D2EE;
  font-size: .9rem; color: var(--muted); display: flex; gap: 12px;
}
.note svg { flex: none; width: 20px; height: 20px; color: var(--blue); margin-top: 2px; }
.note strong { color: var(--ink); }

/* ---------- Segmentos ---------- */
.segment-card { padding: 34px; display: flex; flex-direction: column; }
.segment-card .kicker { font-family: var(--font-head); font-weight: 900; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 8px; }
.segment-card h3 { font-size: 1.4rem; }

/* ---------- Como funciona ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s; }
.step { background: #fff; border-radius: var(--radius); padding: 30px; border: 1px solid var(--line); position: relative; overflow: hidden; }
.step-num {
  font-family: var(--font-head); font-weight: 900; font-size: 3rem; line-height: 1; color: var(--blue);
  margin-bottom: 14px; display: flex; align-items: baseline; gap: 10px;
}
.step-num::after { content: ""; flex: 1; height: 2px; background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px); }
.step:nth-child(6) .step-num { color: var(--orange); }
.step h3 { font-size: 1.2rem; }
.step p { color: var(--muted); margin: 0; font-size: .97rem; }

/* ---------- Arquitetura ---------- */
.arch { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.flow { display: flex; flex-direction: column; align-items: stretch; gap: 0; max-width: 460px; margin: 0 auto; width: 100%; }
.flow-node {
  display: flex; align-items: center; gap: 14px; padding: 16px 20px; border-radius: 16px; background: #fff;
  border: 1px solid var(--line); font-family: var(--font-head); font-weight: 800; color: var(--ink); box-shadow: 0 2px 8px rgba(7,30,79,.05);
}
.flow-node .n { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: .8rem; background: var(--blue-soft); color: var(--blue); flex: none; }
.flow-node.brand { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: 0 16px 30px -14px rgba(2,74,210,.8); }
.flow-node.brand .n { background: var(--orange); color: #fff; }
.flow-node.end { background: var(--orange-soft); border-color: #FFD2B5; }
.flow-node.end .n { background: var(--orange); color: #fff; }
.flow-arrow { height: 30px; display: grid; place-items: center; color: var(--orange); }
.flow-arrow svg { width: 18px; height: 30px; }

/* ---------- Lista de tags / ecossistema ---------- */
.tags { display: flex; flex-wrap: wrap; gap: 12px; }
.tag {
  display: inline-flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line); font-weight: 600; color: var(--ink); font-size: .96rem;
}
.tag svg { width: 18px; height: 18px; color: var(--blue); }
.eco { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: center; }
.eco-col { display: flex; flex-direction: column; gap: 12px; }
.eco-col .tag { justify-content: flex-start; border-radius: 14px; }
.eco-hub {
  width: 220px; height: 220px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: radial-gradient(circle at 30% 30%, var(--blue) 0%, var(--blue-700) 100%); color: #fff;
  box-shadow: 0 0 0 16px rgba(2,74,210,.08), 0 0 0 34px rgba(2,74,210,.04), var(--shadow-lg);
  padding: 24px;
}
.eco-hub img { width: 140px; margin: 0 auto 6px; }
.eco-hub span { font-size: .85rem; color: rgba(255,255,255,.8); font-weight: 600; }

/* ---------- Dark section ---------- */
.section--dark { background: var(--navy); color: rgba(255,255,255,.8); overflow: hidden; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark .lead { color: rgba(255,255,255,.75); }
.section--dark .card { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section--dark .card p { color: rgba(255,255,255,.7); }
.section--dark .card:hover { background: rgba(255,255,255,.07); box-shadow: none; }
.section--dark .ico { background: rgba(255,98,3,.14); color: #FF8A45; }

/* ---------- Stats / Missão ---------- */
.mission {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-700) 100%); color: #fff; border-radius: 32px;
  padding: 64px; position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.mission h2 { color: #fff; }
.mission p { color: rgba(255,255,255,.85); font-size: 1.12rem; margin: 0; }
.mission .smile-deco { position: absolute; right: -40px; bottom: -110px; width: 360px; color: var(--orange); opacity: .9; }

/* ---------- FAQ ---------- */
.faq { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 18px; transition: box-shadow .2s, border-color .2s; }
.faq details[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 26px; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-head); font-weight: 800; font-size: 1.12rem; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .pm { flex: none; width: 32px; height: 32px; border-radius: 50%; background: var(--blue-soft); color: var(--blue); display: grid; place-items: center; transition: transform .25s, background .2s, color .2s; }
.faq summary .pm svg { width: 16px; height: 16px; }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--orange); color: #fff; }
.faq .answer { padding: 0 26px 24px; color: var(--muted); }
.faq .answer p { margin: 0; }

/* ---------- CTA final ---------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: 32px; padding: 72px 64px; color: #fff; text-align: center;
  background: linear-gradient(120deg, var(--blue) 0%, var(--blue-700) 100%);
}
.cta-band h2 { color: #fff; max-width: 760px; margin: 0 auto 16px; }
.cta-band p { color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 620px; margin: 0 auto 34px; }
.cta-band .btn-row { justify-content: center; }
.cta-band .smile-deco { position: absolute; left: 50%; transform: translateX(-50%); bottom: -150px; width: 560px; color: var(--orange); opacity: .22; pointer-events: none; }

/* ---------- Conteúdos ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter {
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; padding: 10px 18px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff; color: var(--ink); cursor: pointer; transition: all .15s;
}
.filter:hover { border-color: var(--blue); color: var(--blue); }
.filter.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.cat-card { display: flex; flex-direction: column; padding: 28px; min-height: 200px; }
.cat-card .kicker { font-family: var(--font-head); font-weight: 900; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); }
.cat-card h3 { margin: 10px 0 8px; }
.cat-card .soon { margin-top: auto; padding-top: 18px; font-size: .85rem; color: var(--muted); font-weight: 600; }
.cat-card[hidden] { display: none; }

/* ---------- Contato ---------- */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.form { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 36px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-family: var(--font-head); font-weight: 800; font-size: .92rem; color: var(--ink); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 1rem; color: var(--ink); padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line);
  background: var(--bg-soft); transition: border-color .15s, background .15s, box-shadow .15s; width: 100%;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(2,74,210,.12); }
.interest { display: flex; flex-wrap: wrap; gap: 8px; }
.interest label { font-family: var(--font-body); font-weight: 600; font-size: .9rem; }
.interest input { position: absolute; opacity: 0; pointer-events: none; }
.interest span { display: inline-block; padding: 8px 14px; border-radius: 999px; border: 1.5px solid var(--line); cursor: pointer; transition: all .15s; }
.interest input:checked + span { background: var(--blue); border-color: var(--blue); color: #fff; }
.interest input:focus-visible + span { box-shadow: 0 0 0 4px rgba(2,74,210,.2); }
.form-msg { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: #E6F7EF; color: #0A6B41; font-weight: 600; }
.form-msg.show { display: block; }
.contact-list { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: center; gap: 14px; font-weight: 600; color: var(--ink); }
.contact-list .ico { margin: 0; width: 46px; height: 46px; border-radius: 14px; }
.contact-list .ico svg { width: 22px; height: 22px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 80px 0 0; font-size: .95rem; position: relative; overflow: hidden; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; padding-bottom: 56px; }
.footer-brand img { height: 36px; width: auto; margin-bottom: 18px; }
.footer-brand p { max-width: 280px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 16px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: #FF8A45; }
.social { display: flex; gap: 10px; margin-top: 22px; }
.social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #fff; }
.social a:hover { background: var(--orange); color: #fff; }
.social svg { width: 18px; height: 18px; }
.transparency {
  border-top: 1px solid rgba(255,255,255,.1); padding: 32px 0; font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.6;
}
.transparency strong { color: rgba(255,255,255,.85); display: block; margin-bottom: 6px; font-family: var(--font-head); font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; }
.transparency p { margin: 0 0 8px; max-width: 980px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- Animações de entrada ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .float-card, .status::before { animation: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 980px) {
  .menu-toggle { display: grid; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed; inset: 80px 0 0 0; background: #fff; flex-direction: column; align-items: stretch;
    padding: 16px 20px 40px; overflow-y: auto; transform: translateX(100%); transition: transform .3s ease;
  }
  .nav.open { transform: none; }
  .nav > ul { flex-direction: column; gap: 0; }
  .nav-link { width: 100%; justify-content: space-between; padding: 16px 12px; font-size: 1.1rem; border-radius: 12px; }
  .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: 0; padding: 0 0 8px 8px; display: none; min-width: 0; }
  .nav-item.expanded > .dropdown { display: block; transform: none; }
  .nav-item:hover > .dropdown { transform: none; }
  .nav-item.expanded .caret { transform: rotate(180deg); }
  .nav .mobile-cta { display: flex !important; margin-top: 20px; }
  body.menu-open { overflow: hidden; }
  .hero-grid, .value-intro, .solution, .arch, .mission, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .solution.reverse .solution-media { order: 0; }
  .grid-3, .steps { grid-template-columns: repeat(2, 1fr); }
  .eco { grid-template-columns: 1fr; justify-items: center; }
  .eco-col { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .eco-hub { order: -1; }
  .float-card.fc1 { left: -8px; }
  .float-card.fc2 { right: -8px; }
  .subnav { top: 80px; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .hero { padding: 40px 0 72px; }
  .grid-2, .grid-3, .grid-4, .steps, .checklist, .form-row { grid-template-columns: 1fr; }
  .modules { grid-template-columns: repeat(2, 1fr); }
  .card, .step { padding: 24px; }
  .solution { padding: 56px 0; }
  .feature-box, .form { padding: 24px; }
  .mission, .cta-band { padding: 44px 24px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .btn-row .btn { width: 100%; }
  .float-card { display: none; }
  .page-hero { padding: 56px 0 72px; }
  .page-hero .smile-deco { width: 300px; right: -90px; bottom: -80px; }
  .eco-hub { width: 180px; height: 180px; }
  .eco-hub img { width: 110px; }
}
.mobile-cta { display: none !important; }
