/* ==========================================================================
   ORIGO — PREMIUM HERO & MODERN ENTERPRISE DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root {
  /* Cores Principais */
  --primary-blue: #0972d3;
  --primary-blue-hover: #03539e;
  --primary-blue-glow: rgba(9, 114, 211, 0.25);
  --primary-blue-subtle: #f0f7fd;

  --navy-950: #000716;
  --navy-900: #0f1b2a;
  --navy-800: #162438;
  --navy-700: #23344d;
  --navy-600: #415169;
  --navy-500: #5f6b7a;
  --navy-400: #879596;
  --navy-300: #d1d5db;
  --navy-200: #e9ebed;
  --navy-100: #f2f3f3;
  --navy-50:  #f8f9fa;
  --white:    #ffffff;

  /* Status */
  --status-success: #037f0c;
  --status-success-bg: #f2f8f0;
  --status-success-border: #9adca3;

  --status-danger: #d91515;
  --status-danger-bg: #fdf3f3;
  --status-danger-border: #f7a8a8;

  --status-warning: #8d6605;
  --status-warning-bg: #fff9e6;
  --status-warning-border: #f8db95;

  /* Fontes */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: 'JetBrains Mono', Monaco, Menlo, monospace;

  /* Sombras */
  --shadow-sm: 0 1px 2px rgba(0, 7, 22, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 7, 22, 0.08);
  --shadow-lg: 0 12px 32px -4px rgba(0, 7, 22, 0.12);
  --shadow-hero-mockup: 0 20px 48px -8px rgba(0, 7, 22, 0.16), 0 0 0 1px rgba(0, 7, 22, 0.08);
  --shadow-floating: 0 12px 28px -4px rgba(0, 7, 22, 0.14), 0 0 0 1px rgba(0, 7, 22, 0.06);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-pill: 9999px;

  --header-height: 64px;
  --max-w: 1240px;
}

/* --- Reset & Global --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background-color: var(--navy-50);
  color: var(--navy-950);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy-950);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

p {
  color: var(--navy-500);
  line-height: 1.65;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.15s;
}

a:hover {
  color: var(--primary-blue-hover);
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  position: relative;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(180deg, #0a84f4 0%, #0972d3 100%);
  color: #ffffff;
  border-color: #0866bd;
  box-shadow: 0 1px 3px rgba(9, 114, 211, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(180deg, #0b8efc 0%, #03539e 100%);
  box-shadow: 0 4px 14px rgba(9, 114, 211, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: translateY(-1px);
  color: #ffffff;
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--navy-950);
  border: 1px solid var(--navy-300);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--navy-50);
  border-color: var(--navy-400);
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.btn-dark {
  background-color: var(--navy-900);
  color: #ffffff;
  border: 1px solid var(--navy-700);
}

.btn-dark:hover {
  background-color: var(--navy-800);
  color: #ffffff;
}

.btn-lg {
  padding: 13px 24px;
  font-size: 1rem;
  border-radius: 8px;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   BADGES & LOZENGES
   ========================================================================== */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-pill.blue {
  background: var(--primary-blue-subtle);
  color: var(--primary-blue);
  border: 1px solid rgba(9, 114, 211, 0.2);
}

.badge-pill.green {
  background: var(--status-success-bg);
  color: var(--status-success);
  border: 1px solid var(--status-success-border);
}

.badge-pill.purple {
  background: #f5f0ff;
  color: #6929c4;
  border: 1px solid #d4bbff;
}

.pulse-circle {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--status-success);
  box-shadow: 0 0 0 3px rgba(3, 127, 12, 0.25);
}

/* ==========================================================================
   HEADER PRINCIPAL
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--navy-200);
  transition: all 0.2s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-area {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.brand-area:hover {
  opacity: 0.9;
}

.brand-logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.brand-logo-img.footer-logo {
  height: 44px;
}

.brand-icon-box {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #0a84f4 0%, #0972d3 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(9, 114, 211, 0.3);
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy-950);
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-tag {
  font-size: 0.7rem;
  color: var(--navy-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-anchor {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-700);
  text-decoration: none;
  transition: color 0.15s ease;
  position: relative;
  padding: 4px 0;
}

.nav-anchor:hover {
  color: var(--primary-blue);
}

.header-btns {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-login-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy-800);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.nav-login-link:hover {
  color: var(--primary-blue);
  background-color: var(--navy-100);
}

/* ==========================================================================
   HERO SECTION MODERNA (EFEITOS, TRANSIÇÕES & AMBIENT GLOW)
   ========================================================================== */
.hero-wrapper {
  position: relative;
  padding: 80px 0 90px;
  background: 
    radial-gradient(ellipse 70% 60% at 85% 15%, rgba(9, 114, 211, 0.12) 0%, transparent 65%),
    radial-gradient(circle at 15% 85%, rgba(0, 210, 255, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, var(--navy-50) 100%);
  border-bottom: 1px solid var(--navy-200);
  overflow: hidden;
  perspective: 1000px;
}

/* Malha geométrica de fundo */
.hero-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(0, 7, 22, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 7, 22, 0.03) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 40%, transparent 95%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, black 40%, transparent 95%);
  pointer-events: none;
}

/* Orbs de Brilho Ambiental Flutuantes */
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.65;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.hero-glow-orb.orb-1 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(9, 114, 211, 0.25) 0%, rgba(9, 114, 211, 0) 70%);
  top: -60px;
  right: 5%;
}

.hero-glow-orb.orb-2 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(0, 210, 255, 0) 70%);
  bottom: 20px;
  left: 2%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-25px, 25px) scale(1.12); }
}

.hero-2col-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-2col-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Badge com efeito Shimmer */
.hero-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(9, 114, 211, 0.08);
  border: 1px solid rgba(9, 114, 211, 0.25);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(9, 114, 211, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.25s ease;
}

.hero-badge-modern::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  animation: badgeShimmer 3.5s infinite;
}

@keyframes badgeShimmer {
  0% { left: -100%; }
  35%, 100% { left: 160%; }
}

.hero-badge-modern:hover {
  background: rgba(9, 114, 211, 0.12);
  border-color: var(--primary-blue);
  transform: translateY(-1px);
}

.hero-title {
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--navy-950);
  margin-bottom: 18px;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #0972d3 0%, #0284c7 45%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--navy-600);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 560px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Botão com efeito Sheen luminoso */
.btn-primary.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-primary.btn-shine::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 20%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 80%
  );
  transform: rotate(25deg);
  transition: all 0.6s ease;
}

.btn-primary.btn-shine:hover::after {
  left: 140%;
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
  color: var(--navy-500);
  font-weight: 600;
  flex-wrap: wrap;
}

.hero-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trust-row svg {
  color: var(--status-success);
}

/* --- MOCKUP INTERATIVO COM 3D TILT & TRANSIÇÕES --- */
.hero-right-col {
  position: relative;
  perspective: 1200px;
}

.compact-mockup-frame {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--navy-300);
  box-shadow: 
    0 24px 56px -12px rgba(0, 7, 22, 0.14),
    0 0 0 1px rgba(9, 114, 211, 0.08);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  position: relative;
  z-index: 3;
}

.compact-mockup-frame:hover {
  transform: translateY(-4px) rotateX(2deg) rotateY(-2deg);
  box-shadow: 
    0 32px 72px -16px rgba(9, 114, 211, 0.22),
    0 0 0 1px rgba(9, 114, 211, 0.25);
  border-color: rgba(9, 114, 211, 0.4);
}

.compact-topbar {
  background: #091322;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.live-pulse-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  color: #8ce69b;
  background: rgba(46, 133, 64, 0.2);
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(46, 133, 64, 0.35);
}

.live-pulse-badge .pulse-dot {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulseGreen 1.8s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.compact-body {
  background: #f8fafc;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Barra de Abas Interativa com Indicador */
.compact-tabs-wrapper {
  position: relative;
}

.compact-tabs-nav {
  display: flex;
  gap: 6px;
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-md);
  padding: 4px;
  box-shadow: var(--shadow-sm);
}

.compact-tab-btn {
  flex: 1;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy-600);
  background: transparent;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.compact-tab-btn:hover {
  background: var(--navy-100);
  color: var(--navy-950);
}

.compact-tab-btn.active {
  background: var(--primary-blue);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(9, 114, 211, 0.35);
}

/* Indicador de progresso automático sutil */
.tab-progress-line {
  height: 2px;
  background: var(--navy-200);
  border-radius: 99px;
  margin-top: 6px;
  overflow: hidden;
}

.tab-progress-bar {
  height: 100%;
  background: var(--primary-blue);
  width: 0%;
  transition: width 0.1s linear;
}

.compact-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.compact-kpi-box {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.compact-kpi-box:hover {
  border-color: var(--primary-blue);
  transform: translateY(-1px);
}

.compact-kpi-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-500);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

.compact-kpi-num {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--navy-950);
}

.compact-table-card {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow-sm);
  min-height: 165px;
}

.data-table-compact {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.data-table-compact th {
  text-align: left;
  padding: 6px 8px;
  background: var(--navy-100);
  color: var(--navy-600);
  font-weight: 700;
  border-bottom: 1px solid var(--navy-200);
  font-size: 0.7rem;
}

.data-table-compact td {
  padding: 7px 8px;
  border-bottom: 1px solid var(--navy-100);
  color: var(--navy-950);
}

.tab-fade-in {
  animation: tabSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes tabSlideIn {
  0% { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Badges Flutuantes com Animação Fluida */
.mini-floating-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  box-shadow: 0 14px 32px -4px rgba(0, 7, 22, 0.16), 0 0 0 1px rgba(0, 7, 22, 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  transition: transform 0.3s ease;
}

.mini-floating-badge:hover {
  transform: scale(1.05) !important;
}

.mini-floating-badge.bottom-left {
  left: -20px;
  bottom: -18px;
  animation: floatMiniA 6s ease-in-out infinite;
}

.mini-floating-badge.top-right {
  right: -16px;
  top: -16px;
  animation: floatMiniB 6s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes floatMiniA {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes floatMiniB {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(-1deg); }
}

@media (max-width: 1100px) {
  .mini-floating-badge {
    display: none;
  }
}

/* ==========================================================================
   SEÇÃO 3: NOSSAS SOLUÇÕES (LAYOUT 2-COLUNAS CONFORME DESIGN OFICIAL)
   ========================================================================== */
.solutions-section {
  background: #ffffff;
  border-bottom: 1px solid var(--navy-200);
  padding: 88px 0;
}

.solutions-2col-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: flex-start;
}

/* Coluna da Esquerda */
.solutions-left-col {
  max-width: 520px;
}

.solutions-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary-blue);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.solutions-eyebrow::before {
  content: '●';
  font-size: 0.7rem;
}

.solutions-heading {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.8vw, 3.2rem);
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
}

.solutions-subtext {
  font-size: 1.15rem;
  color: var(--navy-600);
  line-height: 1.6;
  margin-bottom: 36px;
}

.solutions-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Coluna da Direita (Card & Banner) */
.solutions-right-col {
  display: flex;
  flex-direction: column;
}

.solution-box-card {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: 18px;
  padding: 36px 36px 26px;
  box-shadow: 0 4px 24px rgba(11, 26, 48, 0.04);
}

.solution-box-topbar {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}

.solution-box-icon {
  width: 48px;
  height: 48px;
  background: #0B192C;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.solution-box-icon svg {
  width: 26px;
  height: 26px;
}

.solution-box-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.solution-box-brand-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1.2;
}

.solution-badge-tag {
  color: #10B981;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.solution-box-sub {
  font-size: 0.9rem;
  color: var(--navy-500);
  font-weight: 500;
  margin-top: 2px;
}

.solution-box-body {
  font-size: 1rem;
  color: var(--navy-600);
  line-height: 1.65;
  margin-bottom: 24px;
}

.solution-checks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 26px;
}

.solution-check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.4;
}

.solution-check-item i {
  color: #10B981;
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
}

.solution-box-divider {
  border-top: 1px solid var(--navy-200);
  margin-bottom: 18px;
}

.solution-box-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.solution-box-footer-label {
  color: var(--navy-500);
  font-size: 0.9rem;
  font-weight: 500;
}

.solution-box-explore-link {
  color: var(--navy-950);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.solution-box-explore-link:hover {
  gap: 10px;
  color: var(--primary-blue);
}

.solution-ecosystem-note {
  margin-top: 14px;
  padding: 14px 20px;
  border: 1px dashed var(--navy-200);
  border-radius: 12px;
  background: #f8fafc;
  font-size: 0.86rem;
  color: var(--navy-500);
  line-height: 1.5;
}

@media (max-width: 980px) {
  .solutions-2col-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .solutions-left-col {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .solution-checks-grid {
    grid-template-columns: 1fr;
  }
  .solution-box-card {
    padding: 24px 20px;
  }
}

/* ==========================================================================
   SEÇÃO: O JEITO ORIGO (PRINCÍPIOS)
   ========================================================================== */
.jeito-origo-section {
  background: #ffffff;
  border-bottom: 1px solid var(--navy-200);
  padding: 64px 0 56px;
}

.jeito-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.jeito-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-top: 8px;
  margin-bottom: 8px;
}

.jeito-subtitle {
  font-size: 1.05rem;
  color: var(--navy-500);
}

.principios-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .principios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .principios-grid {
    grid-template-columns: 1fr;
  }
}

.principio-card {
  background: var(--navy-50);
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.principio-card:hover {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.principio-num {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 12px;
  display: inline-block;
}

.principio-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.principio-desc {
  font-size: 0.875rem;
  color: var(--navy-600);
  line-height: 1.5;
}

.metrics-banner {
  background: var(--navy-50);
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 820px) {
  .metrics-banner {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
}

.metric-card-box {
  text-align: center;
  position: relative;
}

.metric-card-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--navy-300);
}

@media (max-width: 820px) {
  .metric-card-box:not(:last-child)::after {
    display: none;
  }
}

.metric-huge {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--primary-blue);
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label-text {
  font-size: 0.95rem;
  color: var(--navy-600);
  font-weight: 600;
  line-height: 1.5;
  max-width: 280px;
  margin: 0 auto;
}

/* ==========================================================================
   PROBLEM VS SOLUTION (O CAOS VS ORIGO SQG)
   ========================================================================== */
.comparison-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--navy-200);
}

.section-headline-area {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin: 12px 0 16px;
}

.compare-matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

@media (max-width: 860px) {
  .compare-matrix-grid {
    grid-template-columns: 1fr;
  }
}

.compare-col-card {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.compare-col-card.bad {
  border-top: 5px solid var(--status-danger);
}

.compare-col-card.good {
  border-top: 5px solid var(--status-success);
  box-shadow: var(--shadow-md);
  border-color: rgba(3, 127, 12, 0.25);
}

.col-header-bar {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--navy-200);
}

.col-header-bar.bad { background: var(--status-danger-bg); color: #991b1b; }
.col-header-bar.good { background: var(--status-success-bg); color: #065f46; }

.compare-items-list {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.compare-item-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.compare-item-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.compare-item-icon.bad { background: #fee2e2; color: #dc2626; }
.compare-item-icon.good { background: #d1fae5; color: var(--status-success); }

.compare-item-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.compare-item-text p {
  font-size: 0.9375rem;
  color: var(--navy-600);
  line-height: 1.55;
}

/* ==========================================================================
   MÓDULOS DO ORIGO SQG & ECOSSISTEMA
   ========================================================================== */
.modules-section {
  padding: 88px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--navy-200);
}

.modules-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

@media (max-width: 1024px) {
  .modules-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .modules-grid-layout {
    grid-template-columns: 1fr;
  }
}

.module-feature-card {
  background: var(--navy-50);
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.module-feature-card:hover {
  background: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.module-card-icon {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.module-feature-card:hover .module-card-icon {
  background: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
}

.module-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.module-card-headline {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 12px;
  line-height: 1.4;
}

.module-card-body {
  font-size: 0.9375rem;
  color: var(--navy-600);
  line-height: 1.6;
}

/* Banner de Ecossistema em Expansão */
.ecosystem-expand-box {
  background: linear-gradient(135deg, #0f1b2a 0%, #162438 100%);
  border: 1px solid #23344d;
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  color: #ffffff;
  margin-top: 40px;
}

.ecosystem-expand-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.ecosystem-expand-text h4 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.ecosystem-expand-text p {
  font-size: 0.95rem;
  color: #d1d5db;
  max-width: 680px;
  line-height: 1.55;
}

.ecosystem-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.roadmap-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.roadmap-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

.roadmap-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.roadmap-card-badge.active {
  background: rgba(46, 133, 64, 0.25);
  color: #8ce69b;
  border: 1px solid rgba(46, 133, 64, 0.4);
}

.roadmap-card-badge.upcoming {
  background: rgba(142, 81, 245, 0.2);
  color: #c4b5fd;
  border: 1px solid rgba(142, 81, 245, 0.35);
}

.roadmap-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.roadmap-card-desc {
  font-size: 0.85rem;
  color: #9ca3af;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .ecosystem-roadmap-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   COMO FUNCIONA (3 PASSOS)
   ========================================================================== */
.workflow-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--navy-200);
}

.steps-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 860px) {
  .steps-cards-grid {
    grid-template-columns: 1fr;
  }
}

.step-flow-box {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-bubble {
  width: 48px;
  height: 48px;
  background: var(--navy-900);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 24px;
}

/* ==========================================================================
   PLANOS & PREÇOS (ORIGO SQG)
   ========================================================================== */
.pricing-section {
  padding: 88px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--navy-200);
}

.pricing-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

@media (max-width: 980px) {
  .pricing-grid-3 {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

.price-box-card {
  background: var(--navy-50);
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s;
}

.price-box-card.featured {
  background: #ffffff;
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
  z-index: 2;
}

@media (max-width: 980px) {
  .price-box-card.featured {
    transform: none;
  }
}

.featured-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 10px rgba(9, 114, 211, 0.3);
  white-space: nowrap;
}

.price-tag-big {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--navy-950);
  line-height: 1;
  margin: 12px 0 6px;
}

.price-features-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 32px 0;
  flex-grow: 1;
}

.price-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--navy-950);
}

.price-feature-row svg {
  color: var(--status-success);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-section {
  padding: 88px 0;
  border-bottom: 1px solid var(--navy-200);
}

.faq-accordion-box {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-entry {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.2s;
}

.faq-btn-trigger {
  width: 100%;
  padding: 22px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-950);
  cursor: pointer;
}

.faq-entry.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.faq-entry.active .faq-btn-trigger {
  color: var(--primary-blue);
}

.faq-collapse-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-out;
  padding: 0 24px;
}

.faq-inner-text {
  padding-bottom: 22px;
  font-size: 0.975rem;
  color: var(--navy-600);
  line-height: 1.7;
  border-top: 1px solid var(--navy-100);
  padding-top: 16px;
}

/* ==========================================================================
   FINAL CTA BANNER
   ========================================================================== */
.cta-banner-final {
  background: radial-gradient(circle at 50% 0%, #162438 0%, #0b131f 100%);
  color: #ffffff;
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #070d17;
  color: #879596;
  padding: 72px 0 36px;
  font-size: 0.9375rem;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}

@media (max-width: 900px) {
  .footer-nav-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 580px) {
  .footer-nav-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col-head {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col a {
  color: #879596;
  font-weight: 400;
}

.footer-links-col a:hover {
  color: #ffffff;
}

/* ==========================================================================
   MODAL & TOAST
   ========================================================================== */
.modal-layer {
  position: fixed;
  inset: 0;
  background: rgba(0, 7, 22, 0.7);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  padding: 20px;
}

.modal-layer.active {
  opacity: 1;
  visibility: visible;
}

.modal-content-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero-mockup);
  width: 100%;
  max-width: 520px;
  padding: 36px;
  position: relative;
}

.modal-close-button {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--navy-100);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-600);
}

.modal-close-button:hover {
  background: var(--navy-200);
  color: var(--navy-950);
}

.modal-content-box.modal-iframe {
  padding: 0;
  max-width: 480px;
  width: 100%;
  height: min(680px, 88vh);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-content-box.modal-iframe iframe {
  flex: 1;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--white);
}

.modal-content-box.modal-iframe .modal-close-button {
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.form-field-block {
  margin-bottom: 18px;
}

.form-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy-950);
  margin-bottom: 6px;
}

.form-input-text {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--navy-300);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.form-input-text:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px var(--primary-blue-glow);
}

.toast-box {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--navy-950);
  color: #ffffff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1100;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.25s;
}

.toast-box.show {
  transform: translateY(0);
  opacity: 1;
}

/* Mobile Navigation */
.mobile-nav-drawer {
  display: none;
}

@media (max-width: 860px) {
  .main-nav, .header-btns {
    display: none;
  }
  .mobile-menu-trigger {
    display: block !important;
  }
  .mobile-nav-drawer.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 28px 24px;
    gap: 16px;
    z-index: 99;
  }
}

/* ==========================================================================
   ORIGO SGQ — ESTILOS APRIMORADOS PREMIUM (DESIGN SYSTEM SGQ)
   ========================================================================== */

/* Eyebrows / Section Badges com Ponto */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.section-eyebrow.red { color: #dc2626; }
.section-eyebrow.red::before { background: #dc2626; }

.section-eyebrow.blue { color: #0972d3; }
.section-eyebrow.blue::before { background: #0972d3; }

.section-eyebrow.green { color: #037f0c; }
.section-eyebrow.green::before { background: #037f0c; }

.section-eyebrow.cyan { color: #0284c7; }
.section-eyebrow.cyan::before { background: #0284c7; }

/* --------------------------------------------------------------------------
   1. HERO DARK BLUEPRINT (ORIGO SGQ)
   -------------------------------------------------------------------------- */
.hero-dark-sgq {
  position: relative;
  background: 
    radial-gradient(ellipse 65% 55% at 75% 25%, rgba(9, 114, 211, 0.22) 0%, transparent 70%),
    radial-gradient(circle at 10% 80%, rgba(2, 132, 199, 0.15) 0%, transparent 50%),
    linear-gradient(180deg, #070e1b 0%, #0a1424 100%);
  padding: 64px 0 80px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  color: #ffffff;
}

.hero-dark-sgq::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(9, 114, 211, 0.18);
  border: 1px solid rgba(9, 114, 211, 0.35);
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #7dd3fc;
  margin-bottom: 16px;
}

.hero-dark-badge .dot {
  width: 7px;
  height: 7px;
  background: #38bdf8;
  border-radius: 50%;
  box-shadow: 0 0 10px #38bdf8;
}

.hero-brand-name {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 6px;
}

.hero-main-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-dark-desc {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 24px;
}

.hero-norm-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.norm-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: #e2e8f0;
}

.norm-pill i, .norm-pill svg {
  color: #38bdf8;
}

.btn-dark-glass {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.btn-dark-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mockup Executivo Dark-Glass */
.exec-mockup-window {
  background: #0f1b2a;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  box-shadow: 0 24px 64px -12px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(9, 114, 211, 0.2);
  overflow: hidden;
  position: relative;
}

.exec-mockup-topbar {
  background: #091322;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.exec-mockup-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.exec-dashboard-inner {
  background: #f8fafc;
  padding: 16px;
  color: #0f172a;
}

.exec-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 580px) {
  .exec-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

.exec-card-widget {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  box-shadow: var(--shadow-sm);
}

.widget-header-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.widget-header-title small {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 600;
}

/* Donut Mini */
.donut-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.donut-chart-svg {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.donut-legend-list {
  font-size: 0.68rem;
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #475569;
}

.donut-legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.legend-color-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

/* Trend Line SVG */
.trend-chart-box {
  width: 100%;
  height: 60px;
}

/* Module Progress Rows */
.mod-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 0.68rem;
}

.mod-progress-bar-bg {
  width: 55%;
  height: 6px;
  background: #f1f5f9;
  border-radius: 99px;
  overflow: hidden;
  margin-left: 8px;
}

.mod-progress-bar-fill {
  height: 100%;
  border-radius: 99px;
}

/* Recent items list */
.recent-activity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.68rem;
}

.recent-activity-row:last-child {
  border-bottom: none;
}

/* --------------------------------------------------------------------------
   2. SEÇÃO: O PROBLEMA
   -------------------------------------------------------------------------- */
.section-pain-sgq {
  padding: 80px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--navy-200);
}

.pain-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 980px) {
  .pain-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pain-grid-6 {
    grid-template-columns: 1fr;
  }
}

.pain-card-item {
  background: #ffffff;
  border: 1px solid #fee2e2;
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 1px 3px rgba(220, 38, 38, 0.04);
}

.pain-card-item:hover {
  transform: translateY(-2px);
  border-color: #fca5a5;
  box-shadow: 0 6px 16px rgba(220, 38, 38, 0.08);
}

.pain-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: #fef2f2;
  border: 1px solid #fecdd3;
  color: #e11d48;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 4px;
}

.pain-card-text {
  font-size: 0.875rem;
  color: var(--navy-600);
  line-height: 1.5;
}

.pain-summary-banner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--primary-blue);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

.pain-summary-text {
  font-size: 1.05rem;
  color: #1e293b;
  line-height: 1.55;
}

.pain-summary-text strong {
  color: var(--navy-950);
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   3. SEÇÃO: A SOLUÇÃO (4 PILARES DO SGQ)
   -------------------------------------------------------------------------- */
.section-solution-sgq {
  padding: 88px 0;
  background: var(--navy-50);
  border-bottom: 1px solid var(--navy-200);
}

.solution-pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

@media (max-width: 860px) {
  .solution-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.pillar-card:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.pillar-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--navy-100);
}

.pillar-num-badge {
  width: 36px;
  height: 36px;
  background: #0f172a;
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-display);
}

.pillar-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy-950);
}

.pillar-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
}

@media (max-width: 540px) {
  .pillar-items-grid {
    grid-template-columns: 1fr;
  }
}

.pillar-sub-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pillar-sub-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-950);
}

.pillar-sub-item-header::before {
  content: '•';
  color: #037f0c;
  font-weight: 800;
  font-size: 1.2rem;
  line-height: 1;
}

.pillar-sub-item-desc {
  font-size: 0.85rem;
  color: var(--navy-500);
  line-height: 1.45;
  padding-left: 14px;
}

/* --------------------------------------------------------------------------
   4. SEÇÃO: FUNCIONALIDADES (9 MÓDULOS DE OBRA)
   -------------------------------------------------------------------------- */
.section-features-sgq {
  padding: 88px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--navy-200);
}

.features-grid-9 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .features-grid-9 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .features-grid-9 {
    grid-template-columns: 1fr;
  }
}

.feature-box-9 {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.feature-box-9:hover {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-box-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: #0f172a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.2s;
}

.feature-box-9:hover .feature-box-icon {
  background: var(--primary-blue);
  transform: scale(1.05);
}

.feature-box-icon.accent-blue {
  background: var(--primary-blue);
}

.feature-box-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy-950);
  margin-bottom: 8px;
}

.feature-box-desc {
  font-size: 0.9rem;
  color: var(--navy-600);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   5. SEÇÃO: PBQP-H / ISO 9001
   -------------------------------------------------------------------------- */
.section-pbqph-sgq {
  padding: 88px 0;
  background: var(--navy-50);
  border-bottom: 1px solid var(--navy-200);
}

.pbqph-2col-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 900px) {
  .pbqph-2col-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.pbqph-disclaimer-card {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--navy-600);
  line-height: 1.6;
  box-shadow: var(--shadow-sm);
}

.pbqph-disclaimer-card strong {
  color: var(--navy-950);
}

.norm-grid-8 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (max-width: 500px) {
  .norm-grid-8 {
    grid-template-columns: 1fr;
  }
}

.norm-card-pill {
  background: #ffffff;
  border: 1px solid var(--navy-200);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.norm-card-pill:hover {
  border-color: #037f0c;
  box-shadow: 0 4px 12px rgba(3, 127, 12, 0.08);
  transform: translateY(-1px);
}

.norm-card-pill .green-dot {
  width: 9px;
  height: 9px;
  background: #037f0c;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================================================
   PÁGINAS LEGAIS (Termos de Uso, Política de Privacidade, LGPD)
   ========================================================================== */
.legal-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--navy-200);
  background: var(--navy-50);
}

.legal-hero .container {
  max-width: 820px;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--navy-400);
  margin-bottom: 20px;
}

.legal-breadcrumb a {
  color: var(--navy-500);
  font-weight: 600;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.legal-updated {
  font-size: 0.875rem;
  color: var(--navy-400);
  font-weight: 600;
}

.legal-body-section {
  padding: 56px 0 100px;
}

.legal-layout {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.85rem;
}

.legal-toc-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy-400);
  margin-bottom: 10px;
}

.legal-toc a {
  color: var(--navy-500);
  font-weight: 500;
  padding: 5px 0 5px 12px;
  border-left: 2px solid var(--navy-200);
}

.legal-toc a:hover {
  color: var(--primary-blue);
  border-left-color: var(--primary-blue);
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 36px;
  margin-bottom: 12px;
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.02rem;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--navy-900);
}

.legal-content p {
  margin-bottom: 14px;
  color: var(--navy-600);
}

.legal-content ul, .legal-content ol {
  margin: 0 0 14px 20px;
  color: var(--navy-600);
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.65;
}

.legal-content strong {
  color: var(--navy-950);
}

.legal-callout {
  background: var(--primary-blue-subtle);
  border: 1px solid rgba(9, 114, 211, 0.2);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.875rem;
  color: var(--navy-700);
}

.legal-fill-flag {
  background: var(--status-warning-bg);
  border: 1px solid var(--status-warning-border);
  color: var(--status-warning);
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-size: 0.8em;
  font-weight: 700;
  white-space: nowrap;
}

.legal-contact-box {
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 40px;
}

.legal-contact-box h3 {
  color: var(--white);
  margin-top: 0;
}

.legal-contact-box p {
  color: var(--navy-300);
}

.legal-contact-box a {
  color: #7cc0ff;
}

@media (max-width: 860px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 18px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--navy-200);
    margin-bottom: 24px;
  }
  .legal-toc a {
    border-left: none;
    padding-left: 0;
  }
}

