:root {
  --sc-bg: #f5f8fc;
  --sc-bg-alt: #ffffff;
  --sc-primary: #2f80ed;
  --sc-primary-soft: #e4f0ff;
  --sc-primary-dark: #1b5bb8;
  --sc-text: #1f2933;
  --sc-text-muted: #6b7280;
  --sc-border: #d0d7e2;
  --sc-radius-lg: 18px;
  --sc-radius-md: 12px;
  --sc-radius-sm: 999px;
  --sc-shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: linear-gradient(180deg, #f1f5ff 0%, #f9fbff 40%, #ffffff 100%);
  color: var(--sc-text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

main {
  padding-top: 88px;
}

.sc-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */

.sc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(209, 213, 219, 0.4);
  transition: background 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.sc-header.sc-header-scrolled {
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-bottom-color: transparent;
}

.sc-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
  position: relative;
}

.sc-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sc-logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  background: radial-gradient(circle at 0% 0%, #56ccf2 0%, #2f80ed 42%, #1b5bb8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.22s ease-out, box-shadow 0.22s ease-out;
}

.sc-logo:hover .sc-logo-mark {
  transform: translateY(-1px) scale(1.04) rotate(-3deg);
  box-shadow: 0 12px 26px rgba(59, 130, 246, 0.55);
}

.sc-logo-text {
  display: flex;
  flex-direction: column;
}

.sc-logo-title {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 13px;
}

.sc-logo-subtitle {
  font-size: 11px;
  color: var(--sc-text-muted);
}

.sc-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
}

.sc-nav a {
  color: var(--sc-text-muted);
  padding: 6px 0;
  position: relative;
}

.sc-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--sc-primary);
  border-radius: 999px;
  transition: width 0.18s ease-out;
}

.sc-nav a:hover {
  color: var(--sc-text);
}

.sc-nav a:hover::after {
  width: 100%;
}

.sc-header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sc-header-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  flex-direction: column;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(255, 255, 255, 0.96);
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.sc-header-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--sc-text);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out, width 0.2s ease-out;
}

.sc-header-toggle span + span {
  margin-top: 4px;
}

.sc-header-toggle:hover span {
  background: var(--sc-primary);
}

.sc-header-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sc-header-toggle.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.sc-header-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Buttons */

.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--sc-radius-sm);
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.sc-btn-lg {
  padding: 12px 22px;
  font-size: 15px;
}

.sc-btn-primary {
  background: var(--sc-primary);
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(47, 128, 237, 0.25);
}

.sc-btn-primary:hover {
  background: var(--sc-primary-dark);
  box-shadow: 0 16px 40px rgba(43, 108, 176, 0.3);
  transform: translateY(-1px);
}

.sc-btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--sc-primary);
  border-color: rgba(47, 128, 237, 0.3);
}

.sc-btn-outline:hover {
  background: var(--sc-primary-soft);
  border-color: var(--sc-primary);
}

.sc-btn-ghost {
  background: transparent;
  color: var(--sc-text);
}

.sc-btn-ghost:hover {
  background: rgba(15, 23, 42, 0.03);
}

.sc-btn-light {
  background: #ffffff;
  color: var(--sc-primary);
  border-color: rgba(148, 163, 184, 0.4);
}

.sc-btn-light:hover {
  background: var(--sc-primary-soft);
  border-color: var(--sc-primary);
}

/* Sections */

.sc-section {
  padding: 72px 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.sc-section.is-visible {
  opacity: 1;
  transform: none;
}

.sc-section-alt {
  background: var(--sc-bg);
}

.sc-section-header {
  max-width: 640px;
  margin-bottom: 34px;
}

.sc-section-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.sc-section-header p {
  color: var(--sc-text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Fluxo visual dos módulos */

.sc-modulos-flow {
  position: relative;
  margin-bottom: 22px;
  padding: 10px 12px 8px;
  border-radius: 14px;
  background: radial-gradient(circle at 0% 0%, #e0edff 0%, #ffffff 60%);
  border: 1px solid rgba(148, 163, 184, 0.45);
  overflow: hidden;
}

.sc-modulos-flow-line {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 26px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ed, #56ccf2, #2f80ed);
  background-size: 200% 100%;
  animation: flowLine 6s linear infinite;
  opacity: 0.7;
}

.sc-modulos-flow-steps {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.sc-modulos-flow-steps .step {
  flex: 1;
  text-align: center;
  min-width: 0;
}

.sc-modulos-dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  margin: 0 auto 6px;
  background: #ffffff;
  border: 3px solid #2f80ed;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  animation: pulseDot 3s ease-in-out infinite;
}

.sc-modulos-flow-steps .step:nth-child(1) .sc-modulos-dot {
  animation-delay: 0s;
}
.sc-modulos-flow-steps .step:nth-child(2) .sc-modulos-dot {
  animation-delay: 0.3s;
}
.sc-modulos-flow-steps .step:nth-child(3) .sc-modulos-dot {
  animation-delay: 0.6s;
}
.sc-modulos-flow-steps .step:nth-child(4) .sc-modulos-dot {
  animation-delay: 0.9s;
}

.sc-modulos-flow-steps .label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--sc-text);
}

/* Experiências - métricas animadas */

.sc-experiencias-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.sc-experiencias-stats .stat {
  font-size: 12px;
  color: var(--sc-text-muted);
}

.sc-experiencias-stats .label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.sc-experiencias-stats .value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--sc-text);
  margin-bottom: 4px;
}

.sc-experiencias-stats .bar {
  position: relative;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
  overflow: hidden;
}

.sc-experiencias-stats .fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ed, #56ccf2);
  transform-origin: left;
  animation: expBar 3.4s ease-in-out infinite;
}

.sc-experiencias-stats .fill-1 {
  width: 100%;
  animation-delay: 0s;
}
.sc-experiencias-stats .fill-2 {
  width: 80%;
  animation-delay: 0.3s;
}
.sc-experiencias-stats .fill-3 {
  width: 90%;
  animation-delay: 0.6s;
}

/* Hero */

.sc-hero {
  padding-top: 92px;
  padding-bottom: 64px;
}

.sc-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.sc-hero-content h1 {
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.sc-hero-title-letters {
  display: inline-flex;
  gap: 0.04em;
}

.sc-hero-title-letters span {
  display: inline-block;
  animation: floatLetter 4s ease-in-out infinite;
}

.sc-hero-title-letters span:nth-child(1) {
  animation-delay: 0s;
}
.sc-hero-title-letters span:nth-child(2) {
  animation-delay: 0.15s;
}
.sc-hero-title-letters span:nth-child(3) {
  animation-delay: 0.3s;
}
.sc-hero-title-letters span:nth-child(4) {
  animation-delay: 0.45s;
}
.sc-hero-title-letters span:nth-child(5) {
  animation-delay: 0.6s;
}
.sc-hero-title-letters span:nth-child(6) {
  animation-delay: 0.75s;
}
.sc-hero-title-letters span:nth-child(7) {
  animation-delay: 0.9s;
}
.sc-hero-title-letters span:nth-child(8) {
  animation-delay: 1.05s;
}

.sc-hero-content .highlight {
  display: inline-block;
  font-weight: 600;
  background: linear-gradient(90deg, #2f80ed, #56ccf2);
  -webkit-background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: heroGradient 8s ease-in-out infinite;
}

.sc-hero-subtitle {
  color: var(--sc-text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* Scanner para Expositores – página dedicada */

.scanner-hero {
  padding-top: 96px;
}

.scanner-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 38px;
  align-items: center;
}

.scanner-hero-left h1 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.scanner-hero-subtitle {
  font-size: 15px;
  color: var(--sc-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.scanner-hero-list {
  list-style: none;
  font-size: 14px;
  color: var(--sc-text);
}

.scanner-hero-list li + li {
  margin-top: 6px;
}

.scanner-hero-right {
  display: flex;
  justify-content: center;
}

.scanner-hero-card {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  padding: 16px 16px 14px;
  background: radial-gradient(circle at 0% 0%, #0f172a 0%, #020617 70%);
  border: 1px solid rgba(56, 189, 248, 0.7);
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
}

.scanner-hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  margin-bottom: 10px;
}

.scanner-hero-card-header .badge {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #bae6fd;
}

.scanner-hero-card-header .status {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.14);
  color: #bbf7d0;
  border: 1px solid rgba(22, 163, 74, 0.5);
  font-size: 10px;
}

.scanner-hero-metrics {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 12px;
}

.scanner-hero-metrics .label {
  display: block;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.scanner-hero-metrics .value {
  display: block;
  font-size: 18px;
  font-weight: 600;
}

.scanner-hero-graph {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 68px;
  margin-bottom: 8px;
}

.scanner-hero-graph .bar {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #2f80ed 0%, #56ccf2 100%);
  opacity: 0.9;
  transform-origin: bottom;
  animation: barWave 3.2s ease-in-out infinite;
}

.scanner-hero-graph .bar-1 {
  height: 40%;
  animation-delay: 0s;
}
.scanner-hero-graph .bar-2 {
  height: 65%;
  animation-delay: 0.15s;
}
.scanner-hero-graph .bar-3 {
  height: 90%;
  animation-delay: 0.3s;
}
.scanner-hero-graph .bar-4 {
  height: 70%;
  animation-delay: 0.45s;
}
.scanner-hero-graph .bar-5 {
  height: 80%;
  animation-delay: 0.6s;
}

.scanner-hero-foot {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #9ca3af;
}

.scanner-funnel {
  border-radius: 18px;
  padding: 16px 18px 14px;
  background: #ffffff;
  border: 1px solid var(--sc-border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  font-size: 13px;
}

.scanner-funnel h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.scanner-funnel-steps {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}

.scanner-funnel-steps .step {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, #eff6ff 0%, #ffffff 70%);
  border: 1px solid rgba(191, 219, 254, 0.8);
}

.scanner-funnel-steps .title {
  font-size: 12px;
  color: var(--sc-text-muted);
}

.scanner-funnel-steps .number {
  font-size: 13px;
  font-weight: 600;
  color: var(--sc-primary-dark);
}

.sc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.sc-hero-metas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

.sc-hero-metas .meta-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sc-text-muted);
}

.sc-hero-metas .meta-value {
  font-weight: 500;
}

.sc-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sc-hero-card {
  background: #ffffff;
  border-radius: var(--sc-radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--sc-shadow-soft);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out;
}

.sc-hero-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.sc-hero-card p {
  font-size: 13px;
  color: var(--sc-text-muted);
  margin-bottom: 10px;
}

.sc-hero-card ul {
  list-style: none;
  font-size: 12px;
  color: var(--sc-text);
}

.sc-hero-card li + li {
  margin-top: 4px;
}

.sc-hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mini-card {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out, background 0.2s ease-out;
  animation: floatCard 6s ease-in-out infinite;
}

.mini-label {
  display: block;
  font-size: 11px;
  color: var(--sc-text-muted);
  margin-bottom: 2px;
}

.mini-value {
  font-size: 12px;
  font-weight: 500;
}

@keyframes floatLetter {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes heroGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes flowLine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.45);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    transform: scale(1.06);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    transform: scale(1);
  }
}

@keyframes expBar {
  0%,
  100% {
    transform: scaleX(0.92);
  }
  50% {
    transform: scaleX(1);
  }
}

@keyframes segurancaGlow {
  0% {
    opacity: 0.7;
    transform: translate3d(-4px, 4px, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1.03);
  }
  100% {
    opacity: 0.8;
    transform: translate3d(4px, -4px, 0) scale(1.02);
  }
}

.sc-hero-mini-grid .mini-card:nth-child(1) {
  animation-delay: 0s;
}
.sc-hero-mini-grid .mini-card:nth-child(2) {
  animation-delay: 0.4s;
}
.sc-hero-mini-grid .mini-card:nth-child(3) {
  animation-delay: 0.8s;
}
.sc-hero-mini-grid .mini-card:nth-child(4) {
  animation-delay: 1.2s;
}

/* Grid & cards */

.sc-grid {
  display: grid;
  gap: 20px;
}

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

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

.sc-grid-mt {
  margin-top: 24px;
}

.sc-grid-seguranca {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.sc-grid-modulos .sc-card {
  transform: translateY(10px);
  animation: moduleIn 0.6s ease-out forwards;
}

.sc-grid-modulos .sc-card:nth-child(1) {
  animation-delay: 0.05s;
}
.sc-grid-modulos .sc-card:nth-child(2) {
  animation-delay: 0.12s;
}
.sc-grid-modulos .sc-card:nth-child(3) {
  animation-delay: 0.19s;
}
.sc-grid-modulos.sc-grid-mt .sc-card:nth-child(1) {
  animation-delay: 0.26s;
}
.sc-grid-modulos.sc-grid-mt .sc-card:nth-child(2) {
  animation-delay: 0.33s;
}
.sc-grid-modulos.sc-grid-mt .sc-card:nth-child(3) {
  animation-delay: 0.4s;
}

.sc-card {
  background: #ffffff;
  border-radius: var(--sc-radius-md);
  padding: 18px 18px 16px;
  border: 1px solid var(--sc-border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.03);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, border-color 0.2s ease-out, background 0.2s ease-out;
}

.sc-card.ghost {
  background: linear-gradient(135deg, #f5f8ff 0%, #ffffff 100%);
}

.sc-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.sc-card p {
  font-size: 14px;
  color: var(--sc-text-muted);
  margin-bottom: 10px;
}

.sc-card-list {
  list-style: none;
  font-size: 13px;
  color: var(--sc-text);
}

.sc-card-list li + li {
  margin-top: 4px;
}

.sc-layout-two {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 22px;
}

.sc-seguranca-layout {
  align-items: center;
}

.sc-seguranca-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: radial-gradient(circle at 0% 0%, #0f172a 0%, #020617 60%);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(56, 189, 248, 0.5);
}

.sc-seguranca-glow {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0%, rgba(56, 189, 248, 0.2), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(59, 130, 246, 0.28), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
  animation: segurancaGlow 8s ease-in-out infinite alternate;
}

.sc-seguranca-img {
  position: relative;
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  filter: saturate(1.2);
}

.sc-seguranca-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  padding: 10px 12px;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95), rgba(15, 23, 42, 0.86));
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #e5e7eb;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sc-seguranca-caption .tag {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 10px;
  color: #a5b4fc;
}

.sc-seguranca-caption p {
  font-size: 12px;
  line-height: 1.5;
}

.sc-card-highlight {
  border-color: rgba(47, 128, 237, 0.4);
  background: radial-gradient(circle at 0% 0%, #eff5ff 0%, #ffffff 60%);
}

.sc-note {
  margin-top: 8px;
  font-size: 12px;
  color: var(--sc-text-muted);
}

.sc-card-inline {
  margin-top: 26px;
}

.sc-card:hover,
.sc-hero-card:hover,
.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sc-shadow-soft);
  border-color: rgba(37, 99, 235, 0.28);
}

/* Pills / selos */

.sc-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ed, #56ccf2);
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  animation: heroGradient 8s ease-in-out infinite;
}

.sc-pill.sc-pill-soft {
  background: rgba(37, 99, 235, 0.08);
  color: var(--sc-primary-dark);
  border: 1px solid rgba(37, 99, 235, 0.28);
}

/* Insights / gráficos */

.sc-insights-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sc-insights-visual {
  margin-top: 6px;
  padding-top: 14px;
  padding-bottom: 14px;
  background: radial-gradient(circle at 0% 0%, #e0edff 0%, #ffffff 65%);
}

.sc-insights-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 12px;
}

.sc-insights-header .label {
  display: block;
  color: var(--sc-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sc-insights-header .value {
  display: block;
  font-size: 15px;
  font-weight: 600;
}

.sc-insights-graph {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
  margin-bottom: 8px;
}

.sc-insights-bar {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #2f80ed 0%, #56ccf2 100%);
  opacity: 0.9;
  transform-origin: bottom;
  animation: barWave 3.2s ease-in-out infinite;
}

.sc-insights-bar.bar-1 {
  height: 30%;
  animation-delay: 0s;
}
.sc-insights-bar.bar-2 {
  height: 55%;
  animation-delay: 0.2s;
}
.sc-insights-bar.bar-3 {
  height: 80%;
  animation-delay: 0.4s;
}
.sc-insights-bar.bar-4 {
  height: 60%;
  animation-delay: 0.6s;
}
.sc-insights-bar.bar-5 {
  height: 75%;
  animation-delay: 0.8s;
}
.sc-insights-bar.bar-6 {
  height: 45%;
  animation-delay: 1s;
}

.sc-insights-legend {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--sc-text-muted);
}

.sc-insights-legend .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.sc-insights-legend .dot-blue {
  background: linear-gradient(180deg, #2f80ed 0%, #56ccf2 100%);
}

@keyframes barWave {
  0%,
  100% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(1.15);
  }
}

@keyframes moduleIn {
  0% {
    transform: translateY(14px);
  }
  100% {
    transform: translateY(0);
  }
}

/* CTA */

.sc-cta {
  background: radial-gradient(circle at 0% 0%, #e0edff 0%, #ffffff 45%, #e5f4ff 100%);
}

.sc-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.sc-cta-content h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.sc-cta-content p {
  font-size: 14px;
  color: var(--sc-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sc-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.sc-cta-hint {
  font-size: 12px;
  color: var(--sc-text-muted);
}

.sc-cta-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: var(--sc-radius-lg);
  padding: 18px 18px 16px;
  box-shadow: var(--sc-shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.5);
  position: relative;
  overflow: hidden;
}

.sc-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(37, 99, 235, 0.08), transparent 55%);
  pointer-events: none;
}

.sc-cta-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.sc-cta-card .sc-card-list {
  margin-top: 4px;
}

.sc-cta-card .sc-card-list li {
  position: relative;
  padding-left: 18px;
}

.sc-cta-card .sc-card-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2f80ed, #56ccf2);
}

/* Destaque em botões principais */

.sc-hero-actions .sc-btn-primary,
.sc-cta-actions .sc-btn-primary {
  animation: pulseBtn 3.2s ease-in-out infinite;
}

.sc-hero-actions .sc-btn-primary:hover,
.sc-cta-actions .sc-btn-primary:hover {
  animation: none;
}

@keyframes pulseBtn {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 30px rgba(47, 128, 237, 0.25);
  }
  50% {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
  }
}

/* Footer */

.sc-footer {
  background: #020617;
  color: #e5e7eb;
  padding-top: 36px;
}

.sc-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(55, 65, 81, 0.9);
}

.sc-footer-brand {
  max-width: 320px;
}

.sc-footer .sc-logo-mark {
  background: radial-gradient(circle at 0% 0%, #38bdf8 0%, #0ea5e9 40%, #0369a1 100%);
}

.sc-footer-copy {
  margin-top: 10px;
  font-size: 13px;
  color: #9ca3af;
}

.sc-footer-cols {
  display: flex;
  gap: 40px;
}

.sc-footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.sc-footer-col ul {
  list-style: none;
  font-size: 13px;
  color: #9ca3af;
}

.sc-footer-col li + li {
  margin-top: 4px;
}

.sc-footer-col a:hover {
  color: #e5e7eb;
}

.sc-footer-col p {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 8px;
}

.sc-footer-bottom {
  padding: 10px 0 16px;
  font-size: 12px;
  color: #6b7280;
}

/* Responsive */

@media (max-width: 960px) {
  .sc-header-inner {
    align-items: center;
  }

  .sc-header-toggle {
    display: inline-flex;
  }

  .sc-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 10px 20px 14px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(209, 213, 219, 0.7);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.18s ease-out, transform 0.18s ease-out, visibility 0.18s ease-out;
  }

  .sc-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .sc-nav a {
    padding: 6px 0;
    width: 100%;
  }

  .sc-hero-inner,
  .sc-layout-two,
  .sc-cta-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .sc-hero-panel {
    max-width: 420px;
    margin: 0 auto;
  }

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

  .sc-seguranca-img {
    height: 280px;
  }

  .scanner-hero-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .scanner-hero-right {
    margin-top: 16px;
  }

  .sc-footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  main {
    padding-top: 82px;
  }

  .sc-section {
    padding: 52px 0;
  }

  .sc-hero-content h1 {
    font-size: 30px;
  }

  .sc-hero {
    padding-top: 52px;
  }

  .sc-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .sc-hero-actions .sc-btn {
    width: 100%;
    justify-content: center;
  }

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

  .sc-header-inner {
    padding: 10px 12px;
  }

  .sc-header-cta {
    display: none;
  }

  .sc-footer-cols {
    flex-direction: column;
    gap: 20px;
  }

  .sc-modulos-flow-steps {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
  }

  .sc-modulos-flow-steps .label {
    font-size: 10px;
  }

  .sc-modulos-flow-steps .step {
    flex: 1 1 46%;
  }

  .sc-modulos-flow-line {
    display: none;
  }

  .sc-experiencias-stats {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
    gap: 10px;
  }
}


