﻿:root {
  --bg: #edf4fa;
  --surface: #ffffff;
  --surface-soft: #eef4fb;
  --ink: #102337;
  --ink-soft: #475f78;
  --line: #c8d8e8;
  --brand: #1f6ea0;
  --brand-dark: #17557b;
  --radius: 16px;
  --shadow-soft: 0 16px 34px rgba(9, 25, 43, 0.1);
  --shadow-card: 0 22px 44px rgba(9, 25, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  background: #f7fbff;
}

a {
  color: inherit;
  text-decoration: none;
}

.text-nowrap {
  white-space: nowrap;
}

.page-shell {
  position: relative;
  overflow: clip;
  min-height: 100vh;
  background: #f7fbff;
}

.ambient {
  display: none;
  position: absolute;
  border-radius: 999px;
  opacity: 0.07;
  pointer-events: none;
}

.ambient-a {
  width: 520px;
  height: 380px;
  left: -220px;
  top: 140px;
  background: #b8ddec;
}

.ambient-b {
  width: 580px;
  height: 420px;
  right: -260px;
  top: 420px;
  background: #cbd8f0;
}

.container {
  width: min(1240px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(184, 208, 226, 0.72);
  background: rgba(247, 251, 255, 0.86);
  box-shadow: 0 10px 24px rgba(9, 25, 43, 0.07);
  backdrop-filter: blur(16px) saturate(1.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
}

.nav-wrap {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 0;
  box-shadow: 0 10px 22px rgba(4, 18, 31, 0.24);
}

.brand span {
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #102337;
  letter-spacing: 0;
  text-shadow: none;
}

.header-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.header-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(31, 110, 160, 0.46);
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  background: linear-gradient(180deg, #2c78aa 0%, #23698f 100%);
  box-shadow: 0 8px 18px rgba(16, 72, 110, 0.18);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(31, 110, 160, 0.62);
  background: linear-gradient(180deg, #286f9d 0%, #205f82 100%);
  box-shadow: 0 10px 20px rgba(16, 72, 110, 0.22);
  outline: none;
}

.header-actions .theme-toggle {
  margin-left: 0;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  font-size: 1.12rem;
  font-weight: 500;
  color: #24465f;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: #1f6ea0;
}

.main-nav a[href*='camus'],
.main-nav a.camus-tab {
  color: #1f6ea0;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #39516b;
  transition: transform 0.2s ease;
}

.btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.005em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  border-color: rgba(31, 110, 160, 0.68);
  background: linear-gradient(180deg, #2e7eb0 0%, var(--brand) 100%);
  box-shadow: 0 12px 24px rgba(24, 95, 142, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #2772a0 0%, var(--brand-dark) 100%);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 16px rgba(12, 30, 52, 0.08);
}

.hero {
  padding: 94px 0 72px;
  background: transparent;
  background-color: transparent;
  border-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-kicker,
.product-tag {
  margin: 0;
  color: #2e6f98;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-copy h1 {
  margin: 16px 0 0;
  max-width: 16ch;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 5vw, 3.22rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 56ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.68;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-panel {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(31, 110, 160, 0.22);
  background:
    radial-gradient(92% 90% at 100% 0%, rgba(124, 187, 232, 0.2) 0%, transparent 68%),
    linear-gradient(180deg, #ffffff 0%, #f2f8ff 100%);
  box-shadow: var(--shadow-card);
}

.hero-chip {
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(31, 110, 160, 0.3);
  background: rgba(233, 245, 253, 0.88);
  color: #1f5f87;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 15px 0 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-panel p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.hero-panel ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.hero-panel li {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid #d7e4f3;
  background: #ffffff;
  color: #345069;
  font-size: 0.9rem;
  font-weight: 600;
}

.section {
  position: relative;
  padding: 84px 0;
  background: transparent;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1240px, calc(100% - 56px));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(88, 143, 178, 0.2), transparent);
  pointer-events: none;
}

.section-narrow {
  max-width: 760px;
}

.section h2,
.section-title,
.camus-copy h3 {
  margin: 14px 0 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: clamp(1.55rem, 3.5vw, 2.38rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.028em;
}

.section p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.72;
}

.section p a {
  color: #1f6ea0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.section-soft {
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.section-intro {
  max-width: 70ch;
}

#produtos {
  padding: 68px 0 88px;
}

#produtos .container {
  width: min(1240px, calc(100% - 64px));
}

#produtos .section-kicker,
#produtos .section-title {
  text-align: center;
}

#produtos .section-title {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

#produtos .section-support {
  max-width: 820px;
  margin: 16px auto 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.68;
  text-align: center;
}

.camus-showcase {
  width: 100%;
  max-width: 1180px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 720px);
  justify-content: center;
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
  min-width: 0;
}

.camus-showcase-clean {
  margin-top: 42px;
}

.camus-copy {
  display: grid;
  align-content: start;
  justify-items: stretch;
  gap: 22px;
  max-width: none;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.camus-summary {
  margin: 0;
  color: #2d4f6d;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  font-weight: 650;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.camus-badge-list,
.camus-benefit-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.camus-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.camus-badge-list li {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(71, 123, 162, 0.26);
  background: rgba(238, 246, 253, 0.9);
  color: #2d6388;
  font-size: 0.8rem;
  font-weight: 700;
}

.camus-benefit-list {
  display: grid;
  gap: 12px;
}

.camus-benefit-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px;
  color: #385b77;
  font-size: 0.95rem;
  line-height: 1.48;
}

.camus-benefit-list li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  margin-top: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #d9f1ed;
  color: #0d6d66;
  font-size: 0.78rem;
  font-weight: 800;
}

.camus-showcase-shot {
  align-self: center;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(157, 187, 211, 0.72);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(17, 44, 68, 0.14);
}

.camus-carousel-frame {
  position: relative;
  aspect-ratio: 16 / 9.6;
  min-height: 410px;
  overflow: hidden;
  background: #eef5fb;
  border-radius: 14px 14px 0 0;
}

.camus-carousel .camus-carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.01);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s ease;
}

.camus-carousel .camus-carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.camus-carousel-meta {
  min-height: 48px;
  padding: 10px 13px 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(197, 215, 231, 0.78);
  background: rgba(255, 255, 255, 0.94);
}

.camus-carousel .camus-carousel-meta figcaption {
  padding: 0;
}

.camus-carousel-indicators {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 6px;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(179, 203, 224, 0.82);
  background: rgba(248, 252, 255, 0.88);
}

.camus-carousel-indicators button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 1px solid rgba(42, 95, 133, 0.48);
  border-radius: 999px;
  background: #d7e8f5;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.camus-carousel-indicators button:hover,
.camus-carousel-indicators button:focus-visible {
  border-color: #1f6ea0;
  background: #b7d9ef;
  outline: none;
}

.camus-carousel-indicators button.is-active {
  border-color: #1f6ea0;
  background: #1f6ea0;
  box-shadow: 0 0 0 3px rgba(31, 110, 160, 0.14);
}

.camus-carousel .camus-carousel-meta figcaption {
  min-height: 0;
}

.camus-actions {
  margin-top: 2px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.camus-actions .btn {
  min-width: 148px;
  min-height: 44px;
  justify-content: center;
}

.camus-legacy-note {
  margin: 12px 0 0;
  color: #2f5578;
  font-size: 0.93rem;
  font-weight: 700;
}

.camus-legacy-note a {
  color: #1f6ea0;
  font-weight: 700;
}

.camus-facts {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
}

.camus-facts div {
  min-height: 86px;
  padding: 12px;
  border-radius: 11px;
  border: 1px solid #d2dfec;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
  box-shadow: var(--shadow-soft);
}

.camus-facts dt {
  color: #5a6f86;
  font-size: 0.8rem;
  font-weight: 700;
}

.camus-facts dd {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.34;
}

.camus-mockup {
  min-height: 574px;
  display: grid;
  grid-template-columns: 230px 1fr;
  border-radius: 10px;
  border: 1px solid rgba(53, 107, 150, 0.34);
  overflow: hidden;
  background: #c8d9ea;
  box-shadow: var(--shadow-card);
}

.camus-mockup-sidebar {
  padding: 12px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  gap: 10px;
  background: linear-gradient(180deg, #0e2d49 0%, #123c5e 100%);
}

.camus-mockup-brand {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 9px;
  border: 1px solid rgba(166, 204, 234, 0.24);
  background: rgba(7, 24, 40, 0.35);
}

.camus-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #2583c0;
  color: #ffffff;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-weight: 700;
}

.camus-mockup-brand strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
}

.camus-mockup-brand small {
  display: block;
  margin-top: 3px;
  color: #b7d7f3;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.camus-mockup-report-btn {
  width: 100%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 9px;
  border-radius: 8px;
  border: 1px solid rgba(166, 204, 234, 0.34);
  background: linear-gradient(180deg, rgba(241, 247, 252, 0.98) 0%, rgba(225, 236, 246, 0.95) 100%);
  color: #123450;
  font-size: 0.78rem;
  font-weight: 700;
}

.camus-mockup-report-btn span {
  min-width: 34px;
  min-height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #1b4263;
  color: #f2f9ff;
  font-size: 0.62rem;
  font-weight: 700;
}

.camus-mockup-search {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid rgba(166, 204, 234, 0.24);
  background: rgba(224, 238, 250, 0.1);
  color: #c8e0f6;
  font-size: 0.76rem;
}

.camus-mockup-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.camus-mockup-meta strong {
  color: #f0f8ff;
  font-size: 0.84rem;
}

.camus-mockup-meta span {
  color: #b7d7f3;
  font-size: 0.74rem;
  font-weight: 700;
}

.camus-mockup-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  align-content: start;
  gap: 8px;
}

.camus-mockup-list li {
  min-height: 48px;
  display: grid;
  grid-template-columns: 24px 1fr 8px;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(166, 204, 234, 0.22);
  background: rgba(17, 50, 77, 0.55);
}

.camus-mockup-list span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 31, 50, 0.74);
  color: #e7f3ff;
  font-size: 0.72rem;
  font-weight: 700;
}

.camus-mockup-list strong {
  display: block;
  color: #ffffff;
  font-size: 0.8rem;
  line-height: 1.2;
}

.camus-mockup-list small {
  display: block;
  margin-top: 2px;
  color: #c4dbef;
  font-size: 0.68rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.camus-mockup-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #23cb78;
}

.camus-mockup-main {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background:
    radial-gradient(92% 86% at 22% 0%, rgba(233, 243, 251, 0.54) 0%, transparent 72%),
    linear-gradient(180deg, #d5e3f1 0%, #b9cde0 100%);
}

.camus-mockup-main header {
  min-height: 56px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(132, 156, 178, 0.52);
  background: rgba(232, 241, 250, 0.72);
}

.camus-user-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.camus-user-head > span {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dce8f3;
  border: 1px solid #afc5d8;
  color: #1d3e59;
  font-size: 0.78rem;
  font-weight: 700;
}

.camus-user-head strong {
  display: block;
  color: #15334a;
  font-size: 1rem;
}

.camus-user-head small {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  color: #40617f;
  font-size: 0.76rem;
  font-weight: 700;
}

.camus-user-head small::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #23cb78;
}

.camus-tools {
  display: inline-flex;
  gap: 7px;
}

.camus-tools span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(141, 164, 185, 0.82);
  background: rgba(241, 247, 252, 0.82);
}

.camus-chat-body {
  padding: 14px 14px 18px;
  display: grid;
  align-content: start;
  gap: 10px;
}

.camus-chat-badge {
  width: fit-content;
  min-height: 20px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #92b8d4;
  background: #d2e3f0;
  color: #225372;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.camus-chat-bubble {
  max-width: 86%;
  padding: 10px 11px 7px;
  border-radius: 11px;
  border: 1px solid rgba(124, 152, 176, 0.58);
  background: rgba(238, 245, 251, 0.86);
  box-shadow: 0 8px 14px rgba(53, 86, 114, 0.1);
}

.camus-chat-bubble.is-right {
  justify-self: end;
  background: rgba(214, 230, 243, 0.88);
}

.camus-chat-bubble p {
  margin: 0;
  color: #375b79;
  font-size: 0.81rem;
  line-height: 1.42;
}

.camus-chat-bubble time {
  margin-top: 6px;
  display: block;
  text-align: right;
  color: #56728e;
  font-size: 0.67rem;
  font-weight: 700;
}

.camus-chat-typing {
  width: fit-content;
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(226, 237, 247, 0.94);
}

.camus-chat-typing i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7b9ab5;
  display: inline-block;
}

.capability-grid {
  margin-top: 34px;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.capability-card {
  min-height: 126px;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #d2dfec;
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fd 100%);
  box-shadow: 0 14px 30px rgba(9, 25, 43, 0.08);
}

.capability-card h3 {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.capability-card p {
  margin: 10px 0 0;
  color: #4f667e;
  font-size: 0.93rem;
  line-height: 1.58;
}

.camus-shot-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(260px, 0.92fr);
  gap: 12px;
  align-items: stretch;
}

.camus-shot {
  margin: 0;
  border-radius: 12px;
  border: 1px solid #ccdcec;
  background: #ffffff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.camus-shot img {
  width: 100%;
  height: auto;
  display: block;
}

.camus-shot figcaption {
  padding: 10px 12px 12px;
  color: #4b6279;
  font-size: 0.86rem;
  line-height: 1.45;
}

.camus-shot-stack {
  display: grid;
  gap: 12px;
}

.flow-grid {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.flow-card {
  min-height: 178px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #d2dfec;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.flow-card span {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid #bdd6ea;
  background: #edf5fc;
  color: #2c648d;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.flow-card h3 {
  margin: 10px 0 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 1rem;
  line-height: 1.24;
}

.flow-card p {
  margin: 8px 0 0;
  color: #4f667d;
  font-size: 0.9rem;
  line-height: 1.54;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid #d2dfec;
  border-radius: 11px;
  background: #ffffff;
  padding: 0 12px;
}

.faq-list summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  color: #214663;
  font-size: 0.95rem;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::marker {
  content: "";
  font-size: 0;
}

.faq-list summary::after {
  content: "";
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  border-radius: 10px;
  border: 1px solid rgba(39, 107, 152, 0.16);
  background-color: #eef5fb;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23166a9b' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 17px 17px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transform: rotate(0deg);
  transform-origin: center;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.faq-list summary:hover::after {
  border-color: rgba(39, 107, 152, 0.28);
  background-color: #e2eef8;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0 0 12px;
  color: #4f667e;
  font-size: 0.91rem;
  line-height: 1.58;
}

.camus-mockup-main footer {
  min-height: 44px;
  padding: 6px 10px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 8px;
  border-top: 1px solid rgba(132, 156, 178, 0.52);
  background: rgba(236, 244, 252, 0.86);
}

.camus-mockup-main footer .clip {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dce8f3;
  color: #3f5d78;
}

.camus-mockup-main footer > span:not(.clip) {
  color: #5f7790;
  font-size: 0.84rem;
}

.camus-mockup-main footer button {
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 110, 160, 0.5);
  background: linear-gradient(180deg, #2d7daf 0%, #1f6ea0 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
}

.contact-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: minmax(280px, 520px);
  justify-content: center;
  gap: 12px;
}

#contato .container {
  display: grid;
  justify-items: center;
  text-align: center;
}

#contato .section-kicker,
#contato .section-title {
  text-align: center;
}

#contato .contact-grid {
  width: min(520px, 100%);
}

.contact-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.contact-card strong {
  display: block;
  font-size: 0.9rem;
}

.contact-card small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1f5f86;
  background: #e5f1fa;
  border: 1px solid rgba(31, 110, 160, 0.24);
}

.contact-icon svg {
  width: 19px;
  height: 19px;
}

.institutional-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.institutional-card {
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #d2dfec;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.institutional-card h3 {
  margin: 0;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 1rem;
}

.institutional-card p {
  margin: 10px 0 0;
  color: #4f667e;
  font-size: 0.9rem;
  line-height: 1.56;
}

.site-footer {
  margin-top: 28px;
  padding: 24px 0 18px;
  border-top: 1px solid rgba(147, 197, 253, 0.18);
  background: #06131f;
}

.footer-extended {
  display: grid;
  gap: 18px;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1fr) minmax(260px, 1.1fr);
  gap: clamp(34px, 8vw, 112px);
  align-items: start;
}

.footer-col h4 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-col a,
.footer-col span {
  color: #c8d9e8;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-col a {
  font-weight: 500;
}

.footer-col a.is-muted {
  color: #91a8ba;
}

.footer-bottom {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(147, 197, 253, 0.16);
}

.footer-bottom span {
  color: #91a8ba;
  font-size: 0.84rem;
}

.footer-bottom a {
  color: #8dded9;
  font-size: 0.86rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.camus-page .hero {
  padding: 108px 0 54px;
}

.camus-page .hero-copy h1 {
  max-width: 18ch;
}

.camus-page .hero-panel h2 {
  font-size: 1.3rem;
}

@media (max-width: 1140px) {
  #produtos .container {
    width: min(1240px, calc(100% - 56px));
  }

  .camus-showcase {
    max-width: 920px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .camus-copy {
    width: min(720px, 100%);
    max-width: 720px;
    justify-self: center;
    justify-items: start;
    text-align: left;
  }

  .camus-actions {
    width: auto;
  }

  .camus-carousel-frame {
    min-height: clamp(360px, 54vw, 460px);
  }

  .camus-mockup {
    width: min(760px, 100%);
  }

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

  .camus-shot-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 640px;
  }

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

  .institutional-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(1240px, calc(100% - 34px));
  }

  .nav-wrap {
    min-height: 76px;
    justify-content: space-between;
  }

  .header-actions {
    gap: 12px;
  }

  .header-cta {
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.8rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 17px;
    right: 17px;
    top: 84px;
    margin-left: 0;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(67, 163, 210, 0.26);
    background:
      linear-gradient(135deg, rgba(247, 252, 255, 0.9) 0%, rgba(227, 245, 255, 0.84) 100%);
    box-shadow: 0 18px 30px rgba(12, 30, 52, 0.16);
    backdrop-filter: blur(16px) saturate(1.24);
    -webkit-backdrop-filter: blur(16px) saturate(1.24);
    display: grid;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav a {
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 1.03rem;
  }

  .main-nav a:hover {
    background: var(--surface-soft);
  }

  body.nav-open .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .hero {
    padding-top: 70px;
  }

  .camus-mockup {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .camus-mockup-main {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .brand span {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }
}

@media (max-width: 680px) {
  #produtos {
    padding: 60px 0 72px;
  }

  #produtos .container {
    width: min(1240px, calc(100% - 34px));
  }

  #produtos .section-title {
    max-width: 18ch;
    font-size: clamp(1.45rem, 6.2vw, 1.85rem);
  }

  #produtos .section-support {
    margin-top: 12px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .camus-showcase {
    margin-top: 30px;
    gap: 26px;
  }

  .camus-copy {
    gap: 18px;
  }

  .camus-summary {
    font-size: 1rem;
  }

  .camus-badge-list {
    gap: 7px;
  }

  .hero-actions .btn,
  .camus-actions .btn {
    width: 100%;
  }

  .camus-actions {
    width: 100%;
  }

  .camus-actions .btn {
    min-width: 0;
  }

  .camus-facts,
  .contact-grid,
  .capability-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 66px 0;
  }

  .camus-chat-bubble {
    max-width: 100%;
  }

  .camus-mockup-list {
    max-height: 260px;
    overflow: auto;
  }

  .camus-carousel-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .camus-carousel-frame {
    min-height: clamp(190px, 54vw, 250px);
  }

  .camus-carousel-indicators {
    align-self: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

p,
li,
dt,
dd,
small,
summary,
.hero-subtitle,
.section-lead,
.product-copy p,
.capability-card p,
.flow-card p,
.faq-item p,
.contact-card p,
.site-footer p,
.footer-links a,
.footer-bottom {
  font-weight: 400 !important;
}

.section-kicker,
.hero-kicker,
.product-tag,
.capability-card h3,
.flow-card h3,
.faq-item summary,
.contact-card h3 {
  font-weight: 600 !important;
}

.main-nav a {
  font-weight: 500 !important;
}

h1,
h2,
h3,
h4,
.brand strong,
.hero-stat strong,
.camus-fact strong {
  font-weight: 800;
}

.btn,
.header-cta {
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  filter: none !important;
}

.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.header-cta:hover {
  transform: none !important;
}

.btn-primary,
.header-cta {
  background: linear-gradient(180deg, #2c78aa 0%, #23698f 100%) !important;
  box-shadow: 0 7px 14px rgba(16, 72, 110, 0.18) !important;
}

.btn-primary:hover,
.header-cta:hover {
  background: linear-gradient(180deg, #286f9d 0%, #205f82 100%) !important;
  box-shadow: 0 8px 16px rgba(16, 72, 110, 0.2) !important;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 5px 12px rgba(12, 30, 52, 0.08) !important;
}

.btn-secondary:hover {
  background: #ffffff !important;
  box-shadow: 0 6px 14px rgba(12, 30, 52, 0.1) !important;
}

.theme-toggle {
  margin-left: auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(31, 110, 160, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 16px rgba(12, 30, 52, 0.08);
  color: #24465f;
  font-family: 'Manrope', 'Segoe UI', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.theme-toggle span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
}

.theme-toggle-light {
  color: #ffffff;
  background: #1f6ea0;
}

.theme-toggle-dark {
  color: #56708a;
}

html[data-theme="dark"] {
  background: #071522;
}

html[data-theme="dark"] body {
  color: #dbeafe;
  background: #071522;
}

html[data-theme="dark"] .page-shell {
  background:
    radial-gradient(86% 48% at 12% -10%, rgba(57, 124, 165, 0.22) 0%, transparent 64%),
    linear-gradient(180deg, #071522 0%, #0b2133 48%, #081827 100%);
}

html[data-theme="dark"] .site-header {
  border-bottom-color: rgba(147, 197, 253, 0.2);
  background: rgba(5, 17, 29, 0.9);
  box-shadow: 0 10px 24px rgba(0, 6, 12, 0.34);
}

html[data-theme="dark"] .nav-toggle {
  border-color: rgba(147, 197, 253, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .nav-toggle span {
  background: #dbeafe;
}

html[data-theme="dark"] .brand span,
html[data-theme="dark"] .section-title,
html[data-theme="dark"] .section h2,
html[data-theme="dark"] .hero-copy h1,
html[data-theme="dark"] .hero-panel h2,
html[data-theme="dark"] .camus-copy h3,
html[data-theme="dark"] .capability-card h3,
html[data-theme="dark"] .contact-card strong,
html[data-theme="dark"] .institutional-card h3 {
  color: #f8fbff;
}

html[data-theme="dark"] .main-nav a,
html[data-theme="dark"] .hero-copy p,
html[data-theme="dark"] .hero-panel p,
html[data-theme="dark"] .section p,
html[data-theme="dark"] .capability-card p,
html[data-theme="dark"] .contact-card small,
html[data-theme="dark"] .footer-col a,
html[data-theme="dark"] .footer-col span,
html[data-theme="dark"] .footer-bottom span {
  color: #c8d9e8;
}

html[data-theme="dark"] .eyebrow,
html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .product-tag {
  color: #8dded9;
}

html[data-theme="dark"] .hero-panel,
html[data-theme="dark"] .capability-card,
html[data-theme="dark"] .contact-card,
html[data-theme="dark"] .institutional-card,
html[data-theme="dark"] .flow-card,
html[data-theme="dark"] .faq-list details,
html[data-theme="dark"] .camus-shot,
html[data-theme="dark"] .section-narrow {
  border-color: rgba(147, 197, 253, 0.24);
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(62, 130, 171, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, rgba(12, 34, 52, 0.96), rgba(8, 27, 43, 0.96));
  box-shadow: 0 18px 38px rgba(0, 7, 14, 0.28);
}

html[data-theme="dark"] .hero-panel li {
  border-color: rgba(147, 197, 253, 0.24);
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .camus-carousel-meta,
html[data-theme="dark"] .site-footer {
  border-color: rgba(147, 197, 253, 0.18);
  background: #06131f;
}

html[data-theme="dark"] .camus-carousel .camus-carousel-meta figcaption,
html[data-theme="dark"] .section-narrow p,
html[data-theme="dark"] .faq-list p {
  color: #c8d9e8;
}

html[data-theme="dark"] #produtos .section-support,
html[data-theme="dark"] .camus-summary,
html[data-theme="dark"] .camus-benefit-list li {
  color: #c8d9e8;
}

html[data-theme="dark"] .camus-badge-list li {
  border-color: rgba(147, 197, 253, 0.24);
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .camus-benefit-list li::before {
  background: rgba(141, 222, 217, 0.18);
  color: #8dded9;
}

html[data-theme="dark"] .camus-showcase-shot {
  border-color: rgba(147, 197, 253, 0.24);
  background: #071827;
  box-shadow: 0 18px 42px rgba(0, 7, 14, 0.32);
}

html[data-theme="dark"] .camus-carousel-frame {
  background: #0b2133;
}

html[data-theme="dark"] .camus-actions .btn-secondary {
  border-color: rgba(147, 197, 253, 0.24) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #dbeafe !important;
  box-shadow: none !important;
}

html[data-theme="dark"] .contact-icon {
  color: #9ae6df;
  background: rgba(41, 183, 173, 0.12);
}

html[data-theme="dark"] .footer-col h4 {
  color: #ffffff;
}

html[data-theme="dark"] .theme-toggle {
  border-color: rgba(147, 197, 253, 0.24);
  background: rgba(7, 21, 34, 0.92);
  color: #dbeafe;
}

html[data-theme="dark"] .theme-toggle-light {
  color: #91a8ba;
  background: transparent;
}

html[data-theme="dark"] .theme-toggle-dark {
  color: #06131f;
  background: #8dded9;
}

@media (max-width: 820px) {
  .theme-toggle {
    margin-left: auto;
  }

  .theme-toggle span {
    padding-right: 8px;
    padding-left: 8px;
  }

  html[data-theme="dark"] .main-nav {
    border-color: rgba(147, 197, 253, 0.24);
    background: linear-gradient(135deg, rgba(7, 21, 34, 0.96) 0%, rgba(12, 34, 52, 0.92) 100%);
    box-shadow: 0 18px 30px rgba(0, 6, 12, 0.34);
  }

  html[data-theme="dark"] .main-nav a:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}

