/* ============================================================
   vertOS · CSS Principal - MOBILE FIRST
   ============================================================ */

:root {
  /* ===== PALETA DE CORES ===== */
  --navy-dark: #0A1428;
  --navy-deep: #122447;
  --blue-primary: #1662D6;
  --cyan-primary: #38C6F0;
  --bg-light: #F5F7FB;
  
  --bg: var(--bg-light);
  --surface: #ffffff;
  --surface-2: #eef2f7;
  --text: #0A1428;
  --muted: #5a6f8a;
  --line: #dce3ed;
  --primary: var(--navy-dark);
  --primary-2: var(--navy-deep);
  --accent: var(--blue-primary);
  --accent-soft: #e6edf9;
  --accent-glow: rgba(22, 98, 214, 0.15);
  --success: #0f973d;
  --shadow: 0 18px 60px rgba(10, 20, 40, 0.08);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid #d5dee8;
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy-deep);
  text-transform: uppercase;
}

.badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan-primary);
}

.badge-white {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #b8c9e6;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

/* Botões responsivos - nunca quebram */
.btn .btn-text {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .btn {
    min-height: 44px;
    padding: 0 18px;
    font-size: 13px;
    white-space: nowrap;
  }
}

.btn-primary {
  background: var(--blue-primary);
  color: #fff;
  box-shadow: 0 10px 28px rgba(22, 98, 214, 0.30);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #0f4eb3;
  box-shadow: 0 14px 36px rgba(22, 98, 214, 0.40);
}

.btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--navy-deep);
}

.btn-secondary:hover {
  border-color: #b8c8dc;
  background: #fafcff;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-success {
  background: #0f973d;
  color: #fff;
  box-shadow: 0 10px 28px rgba(15, 151, 61, 0.30);
}

.btn-success:hover {
  transform: translateY(-2px);
  background: #0d7e33;
  box-shadow: 0 14px 36px rgba(15, 151, 61, 0.40);
}

/* === HEADER === */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(245, 247, 251, 0.85);
  border-bottom: 1px solid rgba(220, 227, 237, 0.7);
}

.nav {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.brand img {
  height: 34px;
  width: auto;
  display: block;
}

.brand span {
  color: var(--blue-primary);
}

@media (max-width: 480px) {
  .brand img {
    height: 28px;
  }
  .nav {
    height: 60px;
  }
}

/* === NAV DESKTOP === */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  transition: color 0.2s;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-primary);
  transition: width 0.25s ease;
}

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

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

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  z-index: 60;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: var(--surface);
  box-shadow: -20px 0 60px rgba(10, 20, 40, 0.12);
  padding: 80px 28px 40px;
  z-index: 55;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  border-left: 1px solid var(--line);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}

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

.mobile-menu .btn {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.3);
  z-index: 54;
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mobile-overlay.open {
  opacity: 1;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-overlay {
    display: block;
  }
}

/* ============================================================
   CINEMATIC HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(22, 98, 214, 0.08), transparent 35%),
    radial-gradient(circle at 20% 80%, rgba(56, 198, 240, 0.06), transparent 40%),
    var(--bg-light);
  padding: 16px 0 30px;
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.03;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

.hero-gridline {
  position: absolute;
  inset: -15%;
  z-index: 0;
  opacity: 0.20;
  pointer-events: none;
  background-size: 52px 52px;
  background-image:
    linear-gradient(to right, rgba(10, 20, 40, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 20, 40, 0.04) 1px, transparent 1px);
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 72%);
}

.hero-divider {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d5dee8, transparent);
}

.hero-inner {
  position: relative;
  z-index: 5;
  width: min(calc(100% - 24px), 1240px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 10px 0;
}

.hero-copy {
  padding: 10px 0;
}

.hero-copy h1 {
  font-size: clamp(32px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  max-width: 680px;
  margin: 14px 0 16px;
}

.hero-copy h1 .highlight {
  background: linear-gradient(180deg, var(--navy-dark) 20%, var(--blue-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-copy .tagline {
  font-size: clamp(15px, 1.2vw, 18px);
  color: var(--muted);
  max-width: 580px;
  font-weight: 450;
  line-height: 1.6;
}

.hero-copy .tagline strong {
  color: var(--text);
  font-weight: 600;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}

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

.check-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dcfce7;
  color: #0f7a3a;
  font-size: 10px;
  font-weight: 900;
}

/* === HERO STAGE === */
.hero-stage {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1600px;
  padding: 10px 0;
  width: 100%;
}

.hero-card {
  position: relative;
  width: min(100%, 730px);
  height: 480px;
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(145deg, var(--navy-deep) 0%, var(--navy-dark) 100%);
  box-shadow: 0 45px 100px rgba(10, 20, 40, 0.25), 0 25px 45px rgba(10, 20, 40, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transform-style: preserve-3d;
  will-change: transform;
  overflow: visible;
}

.hero-sheen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(650px circle at var(--mx, 50%) var(--my, 50%), rgba(56, 198, 240, 0.08), transparent 40%);
  mix-blend-mode: screen;
}

.hero-window {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.hero-window-top {
  height: 38px;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  flex-shrink: 0;
}

.hero-window-top span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d5dd;
}

.hero-app {
  display: grid;
  grid-template-columns: 150px 1fr;
  height: calc(100% - 38px);
  overflow: hidden;
}

.hero-app-side {
  background: var(--navy-dark);
  color: #cbd5e1;
  padding: 14px 10px;
  overflow-y: auto;
}

.hero-app-brand {
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  margin: 0 6px 16px;
  letter-spacing: -0.02em;
}

.hero-app-brand span {
  color: var(--cyan-primary);
}

.hero-nav {
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 3px;
  color: #94a3b8;
  transition: all 0.15s;
}

.hero-nav.active {
  background: var(--navy-deep);
  color: #fff;
}

.hero-app-main {
  padding: 14px;
  overflow-y: auto;
}

.hero-app-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 6px;
}

.hero-app-title {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-app-button {
  background: var(--blue-primary);
  color: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.hero-app-button:hover {
  background: #0f4eb3;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.hero-stat {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
}

.hero-stat small {
  display: block;
  color: #98a2b3;
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.hero-stat strong {
  font-size: 17px;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
}

.hero-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px;
}

.hero-panel-top {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #98a2b3;
  margin-bottom: 8px;
}

.hero-panel-top span:last-child {
  color: var(--blue-primary);
  cursor: pointer;
}

.hero-table-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.7fr 0.6fr;
  gap: 6px;
  align-items: center;
  padding: 7px 8px;
  background: #f9fafb;
  border-radius: 6px;
  font-size: 9px;
  margin-bottom: 4px;
  font-weight: 500;
}

.hero-table-row strong {
  font-weight: 700;
  color: var(--text);
}

.hero-badge {
  display: inline-flex;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  background: #ecfdf3;
  color: #067647;
}

.hero-badge.orange {
  background: #fff7ed;
  color: #c2410c;
}

.hero-badge.blue {
  background: #eff6ff;
  color: var(--blue-primary);
}

/* === FLOATING PHONE === */
.hero-phone {
  position: absolute;
  width: 180px;
  height: 350px;
  border-radius: 30px;
  background: #0a0a0a;
  right: -20px;
  bottom: -20px;
  padding: 6px;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.40);
  transform: rotate(5deg);
  z-index: 10;
  will-change: transform;
}

.hero-phone-screen {
  height: 100%;
  background: var(--navy-dark);
  border-radius: 24px;
  overflow: hidden;
  color: #fff;
  position: relative;
}

.hero-notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 18px;
  border-radius: 99px;
  background: #000;
  z-index: 5;
}

.hero-phone-body {
  padding: 28px 12px 10px;
}

.hero-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.hero-phone-header small {
  font-size: 7px;
  color: #94a3b8;
  display: block;
  font-weight: 500;
}

.hero-phone-header strong {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan-primary);
}

.hero-phone-header .avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--navy-deep);
  display: grid;
  place-items: center;
  font-size: 8px;
  font-weight: 700;
  color: var(--cyan-primary);
}

.hero-phone-widget {
  padding: 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  margin-bottom: 8px;
}

.hero-phone-label {
  font-size: 7px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 3px;
}

.hero-phone-value {
  font-size: 9px;
  font-weight: 700;
  color: #fff;
}

.hero-phone-photo {
  height: 65px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy-dark));
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 8px;
  color: #94a3b8;
  font-weight: 500;
  border: 1px dashed rgba(255, 255, 255, 0.06);
}

.hero-phone-button {
  background: var(--cyan-primary);
  color: var(--navy-dark);
  text-align: center;
  border-radius: 8px;
  padding: 8px;
  font-size: 8px;
  font-weight: 900;
  margin-top: 8px;
  border: none;
  width: 100%;
  transition: all 0.2s;
}

.hero-phone-button:hover {
  background: #2ab0d8;
}

/* === FLOATING BADGES === */
.float-badge {
  position: absolute;
  z-index: 15;
  padding: 10px 14px;
  border-radius: 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.26);
  font-size: 9px;
  line-height: 1.4;
  font-weight: 500;
}

.float-badge strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  margin-bottom: 2px;
}

.float-badge span {
  color: #b9c8e6;
}

.float-badge.one {
  left: -16px;
  top: 60px;
}
.float-badge.two {
  right: -20px;
  top: 100px;
}
.float-badge.three {
  left: 6px;
  bottom: 30px;
}

/* === SCROLL HINT === */
.scroll-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #98a2b3;
  z-index: 6;
  font-weight: 600;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section {
  padding: 72px 0;
}

@media (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  section {
    padding: 40px 0;
  }
}

.section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 14px 0 10px;
  color: var(--navy-dark);
}

.section-head p {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--muted);
}

@media (max-width: 768px) {
  .section-head {
    margin-bottom: 32px;
  }
}

/* === PROBLEM GRID === */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 28px;
  box-shadow: 0 8px 30px rgba(10, 20, 40, 0.04);
}

.problem-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--navy-dark);
}

.problem-list {
  display: grid;
  gap: 10px;
}

.problem-list div {
  display: flex;
  gap: 10px;
  color: #475467;
  font-size: 14px;
}

.problem-list b {
  color: var(--text);
}

.problem-list .x {
  color: #b91c1c;
  font-weight: 700;
}
.problem-list .check {
  color: #0f7a3a;
  font-weight: 700;
}

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .problem-card {
    padding: 22px 20px;
  }
  .problem-card h3 {
    font-size: 17px;
  }
  .problem-list div {
    font-size: 13px;
  }
}

/* === SEÇÃO: CONTROLE DE ACESSO E SEGURANÇA === */
.security-section {
  background: var(--navy-dark);
  color: #fff;
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.security-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 198, 240, 0.06), transparent 70%);
  pointer-events: none;
}

.security-section .badge-white {
  position: relative;
  z-index: 1;
}

.security-section h2 {
  font-size: clamp(24px, 3.8vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 14px 0;
  position: relative;
  z-index: 1;
}

.security-section .subtitle {
  font-size: clamp(15px, 1.1vw, 17px);
  color: #aab2bf;
  max-width: 640px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .security-section {
    padding: 32px 24px;
    border-radius: 18px;
  }
  .security-section h2 {
    font-size: 22px;
  }
  .security-section .subtitle {
    font-size: 14px;
  }
}

.permissions-table-wrap {
  overflow-x: auto;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}

.permissions-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  overflow: hidden;
  min-width: 480px;
}

.permissions-table thead {
  background: rgba(255, 255, 255, 0.06);
}

.permissions-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
}

.permissions-table th:not(:first-child) {
  text-align: center;
}

.permissions-table td {
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
}

.permissions-table td:not(:first-child) {
  text-align: center;
}

.permissions-table td:first-child {
  font-weight: 600;
}

.permissions-table tbody tr:last-child td {
  border-bottom: none;
}

.permissions-table .sim {
  color: var(--cyan-primary);
  font-weight: 700;
}

.permissions-table .nao {
  color: #64748b;
}

.permissions-table .highlight-row {
  background: rgba(56, 198, 240, 0.04);
}

@media (max-width: 768px) {
  .permissions-table {
    font-size: 12px;
    min-width: 380px;
  }
  .permissions-table th,
  .permissions-table td {
    padding: 8px 12px;
  }
  .permissions-table td:first-child {
    font-size: 11px;
  }
}

.security-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.security-pillar {
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: all 0.25s;
}

.security-pillar:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(56, 198, 240, 0.15);
}

.security-pillar .num {
  display: inline-block;
  font-size: 18px;
  font-weight: 900;
  color: var(--cyan-primary);
  margin-bottom: 6px;
}

.security-pillar h4 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
  color: #fff;
}

.security-pillar p {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .security-pillars {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .security-pillar {
    padding: 14px 14px;
  }
  .security-pillar .num {
    font-size: 16px;
  }
  .security-pillar h4 {
    font-size: 13px;
  }
  .security-pillar p {
    font-size: 12px;
  }
}

/* === FLOW SWITCH === */
.switch-row {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.flow-card {
  padding: 24px 28px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(10, 20, 40, 0.04);
}

.flow-card .label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #98a2b3;
  text-transform: uppercase;
}

.flow-card h3 {
  font-size: 20px;
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
}

.flow-card p {
  color: var(--muted);
  font-size: 14px;
}

.flow-arrow {
  font-size: 24px;
  color: #98a2b3;
}

@media (max-width: 768px) {
  .switch-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flow-arrow {
    display: none;
  }
  .flow-card {
    padding: 20px;
  }
  .flow-card h3 {
    font-size: 18px;
  }
}

/* === STEPS === */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(10, 20, 40, 0.04);
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--blue-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
}

.step h3 {
  font-size: 17px;
  margin: 16px 0 6px;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
}

.step p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

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

@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .step {
    padding: 18px 20px;
  }
  .step h3 {
    font-size: 16px;
  }
}

/* === PROOF SECTION === */
.proof {
  background: var(--navy-dark);
  color: #fff;
  border-radius: 24px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}

.proof::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 198, 240, 0.06), transparent 70%);
  pointer-events: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.proof h2 {
  font-size: clamp(24px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 14px 0;
}

.proof p {
  color: #aab2bf;
  max-width: 540px;
  font-size: clamp(14px, 1vw, 17px);
}

.proof-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.proof-point {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.proof-point strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--cyan-primary);
}

.proof-point span {
  font-size: 12px;
  color: #98a2b3;
}

.proof-visual {
  display: grid;
  place-items: center;
  min-height: 220px;
}

.proof-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #fff 0 14%, #dbeafe 15% 26%, #93c5fd 27% 38%, rgba(22, 98, 214, 0.15) 39% 58%, transparent 59%);
  position: relative;
}

.proof-chip {
  position: absolute;
  background: #fff;
  color: var(--text);
  padding: 8px 12px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  font-size: 10px;
  font-weight: 800;
}
.proof-chip.p1 { top: 8px; left: 6px; }
.proof-chip.p2 { right: 0px; top: 56px; }
.proof-chip.p3 { left: 2px; bottom: 30px; }
.proof-chip.p4 { right: 18px; bottom: 6px; }

@media (max-width: 1024px) {
  .proof-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .proof {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .proof h2 {
    font-size: 22px;
  }
  .proof p {
    font-size: 14px;
  }
  .proof-points {
    grid-template-columns: 1fr 1fr;
  }
  .proof-point {
    padding: 12px 14px;
  }
  .proof-point strong {
    font-size: 13px;
  }
  .proof-point span {
    font-size: 11px;
  }
  .proof-visual {
    min-height: 180px;
  }
  .proof-circle {
    width: 180px;
    height: 180px;
  }
  .proof-chip {
    padding: 6px 10px;
    font-size: 9px;
    border-radius: 8px;
  }
  .proof-chip.p1 { top: 4px; left: 4px; }
  .proof-chip.p2 { right: 0px; top: 40px; }
  .proof-chip.p3 { left: 0px; bottom: 20px; }
  .proof-chip.p4 { right: 10px; bottom: 4px; }
}

@media (max-width: 480px) {
  .proof-points {
    grid-template-columns: 1fr 1fr;
  }
}

/* === FEATURES === */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  min-height: 170px;
  box-shadow: 0 4px 16px rgba(10, 20, 40, 0.04);
  transition: all 0.2s;
}

.feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(10, 20, 40, 0.06);
}

.icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--blue-primary);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 14px;
}

.feature h3 {
  font-size: 17px;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  color: var(--navy-dark);
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .feature {
    padding: 22px 20px;
    min-height: auto;
  }
  .feature h3 {
    font-size: 16px;
  }
  .feature p {
    font-size: 13px;
  }
}

/* === HISTORY === */
.history {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 30px;
  align-items: center;
}

.history-copy h2 {
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 14px 0;
  color: var(--navy-dark);
}

.history-copy p {
  color: var(--muted);
  font-size: clamp(15px, 1vw, 17px);
}

.history-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.history-list div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: #475467;
}

.history-ui {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: var(--shadow);
}

.h-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.h-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--navy-dark);
}

.h-search {
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  padding: 6px 10px;
  border-radius: 8px;
  color: #98a2b3;
  font-size: 10px;
  font-weight: 500;
}

.h-building {
  padding: 14px 16px;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 10px;
}

.h-building strong {
  font-size: 14px;
  color: var(--navy-dark);
}

.h-building small {
  display: block;
  color: #98a2b3;
  margin-top: 2px;
  font-size: 12px;
}

.h-row {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.7fr;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid #eef2f6;
  font-size: 12px;
  font-weight: 500;
}

.h-row span {
  color: #667085;
}

@media (max-width: 1024px) {
  .history {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .history-ui {
    padding: 16px 18px;
  }
  .h-top {
    flex-wrap: wrap;
    gap: 8px;
  }
  .h-row {
    font-size: 10px;
    grid-template-columns: 1.2fr 0.7fr 0.6fr;
    gap: 6px;
  }
  .h-building strong {
    font-size: 13px;
  }
}

/* === MOCKUP SECTION === */
.mockup-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.desktop-card {
  background: var(--navy-dark);
  border-radius: 24px;
  padding: 10px;
  box-shadow: var(--shadow);
}

.desktop-inner {
  background: #f8fafc;
  border-radius: 18px;
  padding: 18px;
}

.desktop-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
}

.metric small {
  display: block;
  color: #98a2b3;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.metric strong {
  font-size: 22px;
  letter-spacing: -0.03em;
  display: block;
  margin-top: 4px;
  color: var(--navy-dark);
}

.bars {
  height: 100px;
  display: flex;
  align-items: end;
  gap: 6px;
  margin-top: 10px;
}

.bar {
  flex: 1;
  background: #cbd5e1;
  border-radius: 6px 6px 2px 2px;
}
.bar:nth-child(1) { height: 42%; }
.bar:nth-child(2) { height: 65%; }
.bar:nth-child(3) { height: 52%; }
.bar:nth-child(4) { height: 78%; }
.bar:nth-child(5) { height: 62%; }
.bar:nth-child(6) { height: 89%; }
.bar:nth-child(7) { height: 73%; }

.mockup-copy h2 {
  font-size: clamp(26px, 3.8vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 14px 0;
  color: var(--navy-dark);
}

.mockup-copy p {
  font-size: clamp(15px, 1vw, 17px);
  color: var(--muted);
}

@media (max-width: 1024px) {
  .mockup-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .desktop-card {
    border-radius: 18px;
    padding: 8px;
  }
  .desktop-inner {
    padding: 14px;
    border-radius: 14px;
  }
  .metric {
    padding: 12px;
  }
  .metric strong {
    font-size: 18px;
  }
  .bars {
    height: 80px;
    gap: 4px;
  }
  .mockup-copy h2 {
    font-size: 22px;
  }
  .mockup-copy p {
    font-size: 14px;
  }
}

/* === CUSTOMIZATION === */
.custom {
  background: var(--bg-light);
  border: 1px solid #dce3ed;
  border-radius: 24px;
  padding: 48px 44px;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.custom h2 {
  font-size: clamp(26px, 3.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 14px 0;
  color: var(--navy-dark);
}

.custom p {
  font-size: clamp(15px, 1vw, 17px);
  color: var(--muted);
  max-width: 600px;
}

.custom-card {
  background: #fff;
  border: 1px solid #dce3ed;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(10, 20, 40, 0.06);
}

.custom-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.pill {
  padding: 6px 10px;
  border-radius: 8px;
  background: #f3f4f6;
  font-size: 11px;
  font-weight: 700;
  color: #475467;
}

.pill.active {
  background: var(--blue-primary);
  color: #fff;
}

.custom-row {
  height: 38px;
  background: #f8fafc;
  border: 1px dashed #cfd8e3;
  border-radius: 10px;
  margin-bottom: 8px;
}

.custom-footnote {
  font-size: 10px;
  color: #667085;
  margin-top: 10px;
}

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

@media (max-width: 768px) {
  .custom {
    padding: 28px 20px;
    border-radius: 18px;
  }
  .custom h2 {
    font-size: 22px;
  }
  .custom p {
    font-size: 14px;
  }
  .custom-card {
    padding: 16px;
  }
  .custom-row {
    height: 32px;
  }
  .pill {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* === AUDIENCE === */
.audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.aud-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 4px 16px rgba(10, 20, 40, 0.04);
}

.aud-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--navy-dark);
}

.aud-card p {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .audience {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .aud-card {
    padding: 20px;
  }
  .aud-card h3 {
    font-size: 16px;
  }
}

/* ============================================================
   PLANOS - MOBILE FRIENDLY
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  box-shadow: 0 4px 16px rgba(10, 20, 40, 0.04);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 20, 40, 0.08);
}

.pricing-card.recommended {
  border: 2px solid var(--blue-primary);
  box-shadow: 0 18px 55px rgba(22, 98, 214, 0.12);
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.pricing-card .plan-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  align-self: flex-start;
}

.pricing-card .plan-badge.basic {
  background: #eef2f6;
  color: #475467;
}

.pricing-card .plan-badge.popular {
  background: var(--blue-primary);
  color: #fff;
}

.pricing-card .plan-badge.custom {
  background: var(--navy-dark);
  color: #fff;
}

.pricing-card .plan-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy-dark);
}

.pricing-card .plan-sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 12px;
  min-height: 36px;
  font-weight: 450;
  line-height: 1.4;
}

.pricing-card .price {
  font-size: 36px;
  letter-spacing: -0.045em;
  font-weight: 900;
  color: var(--navy-dark);
  margin: 2px 0 2px;
}

.pricing-card .price span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.pricing-card .period {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 16px;
}

.pricing-card .divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0 16px;
}

.pricing-card .feature-list {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  flex: 1;
}

.pricing-card .feature-list .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #475467;
  line-height: 1.4;
}

.pricing-card .feature-list .feature-item .icon-check {
  color: var(--blue-primary);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .feature-list .feature-item .icon-check.cyan {
  color: var(--cyan-primary);
}

.pricing-card .feature-list .feature-item strong {
  color: var(--text);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
  min-height: 46px;
  font-size: 13px;
  padding: 0 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
    gap: 16px;
  }
  .pricing-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .pricing-grid {
    max-width: 100%;
  }
  .pricing-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .pricing-card .plan-name {
    font-size: 18px;
  }
  .pricing-card .price {
    font-size: 30px;
  }
  .pricing-card .plan-sub {
    font-size: 12px;
    min-height: auto;
  }
  .pricing-card .feature-list .feature-item {
    font-size: 12px;
    gap: 8px;
  }
  .pricing-card .btn {
    font-size: 12px;
    min-height: 42px;
    padding: 0 12px;
    white-space: normal;
    word-break: break-word;
  }
}

/* === PLAN INCLUDE ALL === */
.plan-include-all {
  margin-top: 32px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 16px rgba(10, 20, 40, 0.04);
}

.plan-include-all h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.plan-include-all .include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.plan-include-all .include-grid .include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475467;
}

.plan-include-all .include-grid .include-item .icon-check {
  color: var(--blue-primary);
  font-weight: 900;
}

@media (max-width: 768px) {
  .plan-include-all {
    padding: 18px 16px;
    margin-top: 24px;
  }
  .plan-include-all .include-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .plan-include-all .include-grid .include-item {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .plan-include-all .include-grid {
    grid-template-columns: 1fr;
  }
}

/* Upgrade info */
.upgrade-info {
  margin-top: 18px;
  text-align: center;
  font-size: 14px;
  color: var(--muted);
}

.upgrade-info p {
  margin-bottom: 2px;
}

.upgrade-info strong {
  color: var(--text);
}

@media (max-width: 768px) {
  .upgrade-info {
    font-size: 13px;
  }
}

/* === FAQ === */
.faq {
  max-width: 860px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(10, 20, 40, 0.03);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: 0;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy-dark);
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 240px;
  padding: 0 20px 18px;
}

.plus {
  font-size: 20px;
  color: #98a2b3;
  transition: 0.2s;
  font-weight: 300;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .faq-q {
    font-size: 13px;
    padding: 14px 16px;
  }
  .faq-a {
    font-size: 13px;
  }
}

/* === FINAL CTA === */
.final-cta {
  padding: 64px 0 80px;
}

.cta-box {
  background: var(--navy-dark);
  color: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56, 198, 240, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(26px, 4vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.04em;
  max-width: 820px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}

.cta-box p {
  max-width: 670px;
  margin: 0 auto;
  color: #aab2bf;
  font-size: clamp(15px, 1vw, 17px);
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.cta-box .btn-secondary {
  background: #fff;
  border-color: #fff;
  color: var(--navy-dark);
}

.cta-box .btn-secondary:hover {
  background: #eef2f7;
  border-color: #eef2f7;
}

@media (max-width: 768px) {
  .final-cta {
    padding: 48px 0 60px;
  }
  .cta-box {
    padding: 32px 24px;
    border-radius: 18px;
  }
  .cta-box h2 {
    font-size: 22px;
  }
  .cta-box p {
    font-size: 14px;
  }
  .cta-actions {
    gap: 10px;
  }
}

/* === FOOTER === */
footer {
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
  color: #667085;
  font-size: 13px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #667085;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* === MOBILE CTA === */
.mobile-only-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-only-cta {
    display: flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 40;
  }
  .mobile-only-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* === MODAL === */
#modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(10, 20, 40, 0.55);
  padding: 16px;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

#modal .modal-box {
  background: #fff;
  max-width: 510px;
  width: 100%;
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 25px 80px rgba(10, 20, 40, 0.25);
  position: relative;
}

#modal .close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: #98a2b3;
}

#modal h3 {
  font-size: 24px;
  line-height: 1.1;
  margin: 12px 0 8px;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
}

#modal p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

#modal input,
#modal select,
#modal textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d0d5dd;
  border-radius: 10px;
  font-size: 14px;
  background: #fff;
  transition: border 0.2s;
}

#modal input:focus,
#modal select:focus,
#modal textarea:focus {
  border-color: var(--blue-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(22, 98, 214, 0.08);
}

.form-group {
  display: grid;
  gap: 10px;
}

#success {
  display: none;
  padding: 14px;
  background: #ecfdf3;
  color: #067647;
  border-radius: 10px;
  font-size: 14px;
  margin-top: 12px;
}

@media (max-width: 768px) {
  #modal .modal-box {
    padding: 24px 18px;
    border-radius: 18px;
  }
  #modal h3 {
    font-size: 20px;
  }
}

/* ============================================================
   RESPONSIVIDADE DO HERO (MOBILE)
   ============================================================ */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .hero-section {
    min-height: auto;
    padding: 24px 0 16px;
  }

  .hero-copy {
    order: 1;
    padding: 0;
  }

  .hero-stage {
    order: 2;
    height: auto;
    min-height: 380px;
    padding: 0 0 30px;
    perspective: none;
  }

  .hero-card {
    width: 100%;
    max-width: 540px;
    height: 360px;
    margin: 0 auto;
    padding: 8px;
    border-radius: 22px;
    transform: none !important;
  }

  .hero-window {
    border-radius: 16px;
  }

  .hero-window-top {
    height: 34px;
    padding: 0 10px;
  }
  .hero-window-top span {
    width: 6px;
    height: 6px;
  }

  .hero-app {
    grid-template-columns: 110px 1fr;
    height: calc(100% - 34px);
  }

  .hero-app-side {
    padding: 10px 8px;
  }

  .hero-app-brand {
    font-size: 10px;
    margin-bottom: 12px;
  }

  .hero-nav {
    font-size: 9px;
    padding: 6px 8px;
    border-radius: 6px;
  }

  .hero-app-main {
    padding: 10px;
  }

  .hero-app-title {
    font-size: 14px;
  }

  .hero-app-button {
    font-size: 9px;
    padding: 5px 10px;
    border-radius: 6px;
  }

  .hero-stat-row {
    gap: 6px;
    margin-bottom: 8px;
  }

  .hero-stat {
    padding: 8px 10px;
    border-radius: 8px;
  }
  .hero-stat small {
    font-size: 7px;
  }
  .hero-stat strong {
    font-size: 14px;
  }

  .hero-panel {
    padding: 8px;
    border-radius: 8px;
  }
  .hero-panel-top {
    font-size: 8px;
    margin-bottom: 6px;
  }
  .hero-table-row {
    font-size: 8px;
    padding: 5px 6px;
    gap: 4px;
    border-radius: 5px;
    margin-bottom: 3px;
    grid-template-columns: 1.1fr 0.7fr 0.6fr 0.5fr;
  }
  .hero-badge {
    font-size: 6px;
    padding: 2px 5px;
  }

  .hero-phone {
    width: 140px;
    height: 280px;
    right: -8px;
    bottom: -14px;
    padding: 5px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  }

  .hero-phone-screen {
    border-radius: 18px;
  }
  .hero-phone-body {
    padding: 22px 8px 8px;
  }
  .hero-notch {
    width: 48px;
    height: 14px;
    top: 5px;
  }
  .hero-phone-header {
    margin-bottom: 10px;
  }
  .hero-phone-header strong {
    font-size: 9px;
  }
  .hero-phone-header small {
    font-size: 6px;
  }
  .hero-phone-header .avatar {
    width: 20px;
    height: 20px;
    font-size: 7px;
  }
  .hero-phone-widget {
    padding: 6px 8px;
    border-radius: 8px;
    margin-bottom: 6px;
  }
  .hero-phone-label {
    font-size: 6px;
  }
  .hero-phone-value {
    font-size: 8px;
  }
  .hero-phone-photo {
    height: 48px;
    font-size: 7px;
    border-radius: 6px;
  }
  .hero-phone-button {
    padding: 6px;
    font-size: 7px;
    margin-top: 6px;
    border-radius: 6px;
  }

  .float-badge.one,
  .float-badge.two,
  .float-badge.three {
    display: none;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-copy h1 {
    font-size: 30px;
    margin: 10px 0 12px;
  }

  .hero-copy .tagline {
    font-size: 14px;
  }

  .hero-actions {
    gap: 10px;
  }
  .hero-actions .btn {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero-stage {
    min-height: 300px;
    padding: 0 0 20px;
  }

  .hero-card {
    height: 270px;
    max-width: 100%;
    padding: 6px;
    border-radius: 16px;
  }

  .hero-window {
    border-radius: 12px;
  }

  .hero-window-top {
    height: 28px;
    padding: 0 8px;
  }
  .hero-window-top span {
    width: 5px;
    height: 5px;
  }

  .hero-app {
    grid-template-columns: 70px 1fr;
    height: calc(100% - 28px);
  }

  .hero-app-side {
    padding: 6px 5px;
  }

  .hero-app-brand {
    font-size: 8px;
    margin: 0 2px 8px;
  }

  .hero-nav {
    font-size: 7px;
    padding: 4px 6px;
    border-radius: 4px;
    margin-bottom: 2px;
  }

  .hero-app-main {
    padding: 8px;
  }

  .hero-app-head {
    margin-bottom: 6px;
  }

  .hero-app-title {
    font-size: 11px;
  }

  .hero-app-button {
    font-size: 7px;
    padding: 4px 8px;
    border-radius: 4px;
  }

  .hero-stat-row {
    gap: 4px;
    margin-bottom: 6px;
  }

  .hero-stat {
    padding: 4px 6px;
    border-radius: 5px;
  }
  .hero-stat small {
    font-size: 5px;
  }
  .hero-stat strong {
    font-size: 10px;
  }

  .hero-panel {
    padding: 5px;
    border-radius: 5px;
  }
  .hero-panel-top {
    font-size: 6px;
    margin-bottom: 4px;
  }
  .hero-table-row {
    font-size: 6px;
    padding: 3px 4px;
    gap: 2px;
    border-radius: 3px;
    margin-bottom: 2px;
    grid-template-columns: 1fr 0.5fr 0.4fr 0.3fr;
  }
  .hero-badge {
    font-size: 5px;
    padding: 1px 4px;
  }

  .hero-phone {
    width: 100px;
    height: 200px;
    right: -2px;
    bottom: -8px;
    padding: 4px;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  }

  .hero-phone-screen {
    border-radius: 14px;
  }
  .hero-phone-body {
    padding: 16px 6px 6px;
  }
  .hero-notch {
    width: 36px;
    height: 10px;
    top: 4px;
  }
  .hero-phone-header {
    margin-bottom: 6px;
  }
  .hero-phone-header strong {
    font-size: 7px;
  }
  .hero-phone-header small {
    font-size: 5px;
  }
  .hero-phone-header .avatar {
    width: 16px;
    height: 16px;
    font-size: 5px;
  }
  .hero-phone-widget {
    padding: 4px 6px;
    border-radius: 5px;
    margin-bottom: 4px;
  }
  .hero-phone-label {
    font-size: 5px;
  }
  .hero-phone-value {
    font-size: 6px;
  }
  .hero-phone-photo {
    height: 34px;
    font-size: 5px;
    border-radius: 4px;
  }
  .hero-phone-button {
    padding: 4px;
    font-size: 5px;
    margin-top: 4px;
    border-radius: 4px;
  }

  .container {
    width: min(calc(100% - 20px), var(--max));
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 26px;
  }

  .hero-stage {
    min-height: 260px;
  }

  .hero-card {
    height: 230px;
    padding: 5px;
    border-radius: 14px;
  }

  .hero-window {
    border-radius: 10px;
  }

  .hero-window-top {
    height: 24px;
    padding: 0 6px;
  }
  .hero-window-top span {
    width: 4px;
    height: 4px;
  }

  .hero-app {
    grid-template-columns: 55px 1fr;
    height: calc(100% - 24px);
  }

  .hero-app-side {
    padding: 4px 4px;
  }

  .hero-app-brand {
    font-size: 6px;
    margin: 0 2px 6px;
  }

  .hero-nav {
    font-size: 5px;
    padding: 3px 4px;
    border-radius: 3px;
    margin-bottom: 1px;
  }

  .hero-app-main {
    padding: 5px;
  }

  .hero-app-title {
    font-size: 9px;
  }

  .hero-app-button {
    font-size: 6px;
    padding: 3px 6px;
    border-radius: 3px;
  }

  .hero-stat-row {
    gap: 3px;
    margin-bottom: 4px;
  }

  .hero-stat {
    padding: 3px 4px;
    border-radius: 4px;
  }
  .hero-stat small {
    font-size: 4px;
  }
  .hero-stat strong {
    font-size: 8px;
  }

  .hero-panel {
    padding: 4px;
    border-radius: 4px;
  }
  .hero-panel-top {
    font-size: 5px;
    margin-bottom: 3px;
  }
  .hero-table-row {
    font-size: 5px;
    padding: 2px 3px;
    gap: 2px;
    border-radius: 2px;
    margin-bottom: 2px;
    grid-template-columns: 1fr 0.4fr 0.3fr 0.2fr;
  }
  .hero-badge {
    font-size: 4px;
    padding: 1px 3px;
  }

  .hero-phone {
    width: 72px;
    height: 145px;
    right: 0px;
    bottom: -4px;
    padding: 3px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }

  .hero-phone-screen {
    border-radius: 10px;
  }
  .hero-phone-body {
    padding: 12px 4px 4px;
  }
  .hero-notch {
    width: 26px;
    height: 8px;
    top: 3px;
  }
  .hero-phone-header {
    margin-bottom: 4px;
  }
  .hero-phone-header strong {
    font-size: 5px;
  }
  .hero-phone-header small {
    font-size: 4px;
  }
  .hero-phone-header .avatar {
    width: 12px;
    height: 12px;
    font-size: 4px;
  }
  .hero-phone-widget {
    padding: 3px 4px;
    border-radius: 4px;
    margin-bottom: 3px;
  }
  .hero-phone-label {
    font-size: 4px;
  }
  .hero-phone-value {
    font-size: 5px;
  }
  .hero-phone-photo {
    height: 24px;
    font-size: 4px;
    border-radius: 3px;
  }
  .hero-phone-button {
    padding: 3px;
    font-size: 4px;
    margin-top: 3px;
    border-radius: 3px;
  }
}

/* ============================================================
   PÁGINAS DE PRIVACIDADE E TERMOS
   ============================================================ */
.page-content {
  padding: 48px 0 80px;
}

.page-header {
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.page-header .badge {
  margin-bottom: 10px;
}

.page-header h1 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--navy-dark);
}

.page-header p {
  font-size: clamp(15px, 1vw, 17px);
  color: var(--muted);
  margin-top: 6px;
}

.page-body {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 44px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(10, 20, 40, 0.04);
}

.page-body h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 28px;
  margin-bottom: 10px;
  color: var(--navy-dark);
}

.page-body h2:first-of-type {
  margin-top: 0;
}

.page-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-top: 18px;
  margin-bottom: 6px;
  color: var(--navy-deep);
}

.page-body p {
  color: #475467;
  margin-bottom: 12px;
}

.page-body ul {
  margin: 10px 0 16px 22px;
  color: #475467;
}

.page-body ul li {
  margin-bottom: 5px;
}

.page-body .highlight-box {
  background: var(--bg-light);
  border-left: 4px solid var(--blue-primary);
  padding: 14px 18px;
  border-radius: 8px;
  margin: 14px 0;
}

.page-body .highlight-box strong {
  color: var(--navy-dark);
}

.page-body .last-updated {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

@media (max-width: 768px) {
  .page-content {
    padding: 32px 0 56px;
  }
  .page-body {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .page-body h2 {
    font-size: 18px;
  }
  .page-header h1 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .page-body {
    padding: 18px 14px;
  }
  .page-body ul {
    margin-left: 16px;
  }
}