    :root {
      --primary: #1a56db;
      --primary-dark: #1444b0;
      --primary-light: #e8effc;
      --accent: #f59e0b;
      --accent-dark: #d97706;
      --success: #10b981;
      --danger: #ef4444;
      --warning: #f59e0b;
      --dark: #111827;
      --gray-900: #1f2937;
      --gray-800: #374151;
      --gray-700: #4b5563;
      --gray-600: #6b7280;
      --gray-500: #9ca3af;
      --gray-400: #d1d5db;
      --gray-300: #e5e7eb;
      --gray-200: #f3f4f6;
      --gray-100: #f9fafb;
      --white: #ffffff;
      --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1a56db 100%);
      --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
      --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
      --shadow-md: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
      --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
      --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
      --radius: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --section-gap: 96px;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--gray-800);
      line-height: 1.6;
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    /* ====== LEAD CAPTURE OVERLAY ====== */
    .lead-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(8px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 1;
      transition: opacity 0.5s ease;
    }
    .lead-overlay.hidden {
      opacity: 0;
      pointer-events: none;
    }
    .lead-card {
      background: var(--white);
      border-radius: var(--radius-xl);
      max-width: 520px;
      width: 100%;
      padding: 48px 40px;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
      position: relative;
      animation: slideUp 0.6s ease;
    }
    @keyframes slideUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    .lead-close {
      position: absolute;
      top: 16px;
      right: 16px;
      background: none;
      border: none;
      font-size: 28px;
      line-height: 1;
      color: var(--gray-500);
      cursor: pointer;
      padding: 4px 8px;
      border-radius: 8px;
      transition: all 0.2s;
    }
    .lead-close:hover {
      background: var(--gray-200);
      color: var(--gray-800);
    }
    .lead-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
      letter-spacing: 0.02em;
    }
    .lead-badge svg { width: 14px; height: 14px; }
    .lead-card h2 {
      font-size: 26px;
      font-weight: 800;
      color: var(--dark);
      line-height: 1.2;
      margin-bottom: 10px;
      letter-spacing: -0.02em;
    }
    .lead-card h2 span { color: var(--primary); }
    .lead-card .lead-sub {
      color: var(--gray-600);
      font-size: 15px;
      margin-bottom: 28px;
      line-height: 1.5;
    }
    .lead-card .lead-sub strong { color: var(--gray-800); }
    .form-group {
      margin-bottom: 16px;
    }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-700);
      margin-bottom: 6px;
    }
    .form-group input, .form-group select {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--gray-300);
      border-radius: var(--radius);
      font-size: 15px;
      font-family: inherit;
      color: var(--dark);
      background: var(--gray-100);
      transition: all 0.2s;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus {
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(26,86,219,.12);
    }
    .form-group input::placeholder { color: var(--gray-500); }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .btn-primary {
      width: 100%;
      padding: 14px 24px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      font-size: 15px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.25s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 8px;
      letter-spacing: 0.01em;
    }
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(26, 86, 219, 0.25);
    }
    .lead-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 20px;
      font-size: 12px;
      color: var(--gray-500);
    }
    .lead-trust span {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    /* ====== NAVBAR ====== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255,255,255,.08);
      padding: 0 24px;
    }
    .navbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .navbar-logo {
      font-size: 18px;
      font-weight: 800;
      color: var(--white);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .navbar-logo svg { width: 28px; height: 28px; }
    .navbar-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .navbar-links a {
      color: rgba(255,255,255,.7);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      transition: color 0.2s;
    }
    .navbar-links a:hover { color: var(--white); }
    .navbar-cta {
      padding: 9px 20px;
      background: var(--accent);
      color: var(--dark);
      border: none;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.2s;
      letter-spacing: 0.01em;
    }
    .navbar-cta:hover {
      background: var(--accent-dark);
      transform: translateY(-1px);
    }
    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    /* ====== HERO ====== */
    .hero {
      background: var(--gradient-hero);
      padding: 160px 24px 120px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(245,158,11,.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(to top, var(--white), transparent);
      pointer-events: none;
    }
    .hero-inner {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245,158,11,.15);
      border: 1px solid rgba(245,158,11,.3);
      color: var(--accent);
      font-size: 13px;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 100px;
      margin-bottom: 24px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 54px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 24px;
      letter-spacing: -0.025em;
    }
    .hero h1 .highlight {
      background: var(--gradient-accent);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: 18px;
      color: rgba(255,255,255,.65);
      max-width: 580px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 56px;
      margin-top: 56px;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,.1);
    }
    .hero-stat {
      text-align: center;
    }
    .hero-stat .number {
      font-size: 36px;
      font-weight: 800;
      color: var(--accent);
      display: block;
      line-height: 1;
    }
    .hero-stat .label {
      font-size: 12px;
      color: rgba(255,255,255,.45);
      margin-top: 8px;
      display: block;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-weight: 500;
    }

    /* ====== SECTIONS ====== */
    .section {
      padding: var(--section-gap) 24px;
    }
    .section-dark {
      background: var(--gray-100);
    }
    .section-title {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-title .overline {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--primary);
      margin-bottom: 12px;
    }
    .section-title h2 {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 800;
      color: var(--dark);
      line-height: 1.15;
      margin-bottom: 16px;
      letter-spacing: -0.02em;
    }
    .section-title p {
      font-size: 16px;
      color: var(--gray-600);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.6;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ====== INFO CARDS ====== */
    .info-grid {
      display: grid;
      gap: 24px;
    }
    .info-grid-4 {
      grid-template-columns: repeat(4, 1fr);
    }
    .info-grid-2-center {
      grid-template-columns: repeat(2, 1fr);
      max-width: 620px;
      margin: 24px auto 0;
    }
    .info-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-lg);
      padding: 28px 24px;
      transition: all 0.3s;
    }
    .info-card:hover {
      border-color: var(--primary);
      box-shadow: 0 8px 24px rgba(26, 86, 219, 0.08);
      transform: translateY(-3px);
    }
    .info-card .icon {
      width: 44px;
      height: 44px;
      background: var(--primary-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 14px;
    }
    .info-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
    }
    .info-card p {
      font-size: 13.5px;
      color: var(--gray-600);
      line-height: 1.65;
    }

    /* ====== TIMELINE ====== */
    .timeline {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 24px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--gray-300);
    }
    .timeline-item {
      display: flex;
      gap: 24px;
      margin-bottom: 32px;
      position: relative;
    }
    .timeline-dot {
      width: 48px;
      min-width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      z-index: 1;
    }
    .timeline-dot.active {
      background: var(--accent);
      color: var(--dark);
      box-shadow: 0 0 0 6px rgba(245,158,11,.2);
    }
    .timeline-content {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius);
      padding: 20px 24px;
      flex: 1;
    }
    .timeline-content h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 6px;
    }
    .timeline-content p {
      font-size: 13.5px;
      color: var(--gray-600);
      line-height: 1.6;
    }

    /* ====== SIMULATOR ====== */
    #simulador { scroll-margin-top: 80px; }
    .simulator-wrap {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
    }
    .sim-tabs {
      display: flex;
      background: var(--gray-900);
      overflow-x: auto;
    }
    .sim-tab {
      flex: 1;
      padding: 16px 20px;
      background: none;
      border: none;
      color: rgba(255,255,255,.6);
      font-size: 13px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s;
      white-space: nowrap;
      border-bottom: 3px solid transparent;
    }
    .sim-tab:hover { color: var(--white); background: rgba(255,255,255,.05); }
    .sim-tab.active {
      color: var(--white);
      background: rgba(255,255,255,.08);
      border-bottom-color: var(--accent);
    }
    .sim-panel {
      display: none;
      padding: 36px 32px;
    }
    .sim-panel.active { display: block; }
    .sim-panel h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 4px;
    }
    .sim-panel .sim-desc {
      color: var(--gray-600);
      font-size: 14px;
      margin-bottom: 28px;
    }
    .sim-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .sim-form .full-width { grid-column: 1 / -1; }
    .sim-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--gray-700);
      margin-bottom: 6px;
    }
    .sim-form input, .sim-form select {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--gray-300);
      border-radius: 10px;
      font-size: 14px;
      font-family: inherit;
      color: var(--dark);
      background: var(--gray-100);
      transition: all 0.2s;
      outline: none;
    }
    .sim-form input:focus, .sim-form select:focus {
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(26,86,219,.1);
    }
    .sim-form .help-text {
      font-size: 12px;
      color: var(--gray-500);
      margin-top: 4px;
    }
    .btn-simulate {
      padding: 13px 32px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-size: 15px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 8px;
    }
    .btn-simulate:hover {
      background: var(--primary-dark);
      transform: translateY(-1px);
    }
    .result-box {
      display: none;
      margin-top: 28px;
      background: var(--gray-100);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius);
      padding: 28px;
    }
    .result-box.show { display: block; animation: slideUp 0.4s ease; }
    .result-box h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .result-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .result-item {
      background: var(--white);
      border-radius: 10px;
      padding: 16px;
      border: 1px solid var(--gray-300);
    }
    .result-item .rl {
      font-size: 12px;
      color: var(--gray-500);
      text-transform: uppercase;
      font-weight: 600;
      letter-spacing: 0.05em;
    }
    .result-item .rv {
      font-size: 22px;
      font-weight: 800;
      color: var(--dark);
      margin-top: 4px;
    }
    .result-item .rv.positive { color: var(--success); }
    .result-item .rv.negative { color: var(--danger); }
    .result-item .rv.neutral { color: var(--primary); }
    .result-compare {
      margin-top: 16px;
      background: var(--white);
      border-radius: 10px;
      padding: 20px;
      border: 1px solid var(--gray-300);
    }
    .result-compare h5 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--dark);
    }
    .compare-bar-wrap {
      margin-bottom: 12px;
    }
    .compare-bar-label {
      display: flex;
      justify-content: space-between;
      font-size: 13px;
      margin-bottom: 4px;
    }
    .compare-bar-label span:first-child { color: var(--gray-600); font-weight: 500; }
    .compare-bar-label span:last-child { font-weight: 700; color: var(--dark); }
    .compare-bar {
      height: 8px;
      background: var(--gray-200);
      border-radius: 4px;
      overflow: hidden;
    }
    .compare-bar-fill {
      height: 100%;
      border-radius: 4px;
      transition: width 0.8s ease;
    }
    .fill-before { background: var(--gray-500); }
    .fill-after-up { background: var(--danger); }
    .fill-after-down { background: var(--success); }
    .fill-neutral { background: var(--primary); }
    .result-alert {
      margin-top: 16px;
      padding: 14px 18px;
      border-radius: 10px;
      font-size: 13px;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .result-alert.alert-warning {
      background: #fef3c7;
      border: 1px solid #fde68a;
      color: #92400e;
    }
    .result-alert.alert-info {
      background: #dbeafe;
      border: 1px solid #bfdbfe;
      color: #1e40af;
    }
    .result-alert.alert-success {
      background: #d1fae5;
      border: 1px solid #a7f3d0;
      color: #065f46;
    }

    /* ====== CST/CCLASS LOOKUP ====== */
    .lookup-input-group {
      display: flex;
      gap: 12px;
      margin-bottom: 20px;
    }
    .lookup-input-group input {
      flex: 1;
      padding: 12px 16px;
      border: 1.5px solid var(--gray-300);
      border-radius: 10px;
      font-size: 15px;
      font-family: inherit;
      outline: none;
      background: var(--gray-100);
    }
    .lookup-input-group input:focus {
      border-color: var(--primary);
      background: var(--white);
    }
    .lookup-input-group button {
      padding: 12px 24px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 10px;
      font-weight: 700;
      font-family: inherit;
      cursor: pointer;
      white-space: nowrap;
    }
    .lookup-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0;
      font-size: 13px;
    }
    .lookup-table thead th {
      background: var(--gray-900);
      color: var(--white);
      padding: 12px 14px;
      text-align: left;
      font-weight: 600;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .lookup-table thead th:first-child { border-radius: 10px 0 0 0; }
    .lookup-table thead th:last-child { border-radius: 0 10px 0 0; }
    .lookup-table tbody td {
      padding: 11px 14px;
      border-bottom: 1px solid var(--gray-200);
      color: var(--gray-700);
    }
    .lookup-table tbody tr:hover td { background: var(--primary-light); }
    .lookup-table tbody tr:last-child td:first-child { border-radius: 0 0 0 10px; }
    .lookup-table tbody tr:last-child td:last-child { border-radius: 0 0 10px 0; }
    .tag {
      display: inline-block;
      padding: 2px 8px;
      border-radius: 6px;
      font-size: 11px;
      font-weight: 600;
    }
    .tag-blue { background: #dbeafe; color: #1e40af; }
    .tag-green { background: #d1fae5; color: #065f46; }
    .tag-orange { background: #fef3c7; color: #92400e; }
    .tag-red { background: #fee2e2; color: #991b1b; }
    .tag-purple { background: #ede9fe; color: #5b21b6; }
    .tag-gray { background: #f3f4f6; color: #374151; }

    /* ====== Filter Chips ====== */
    .filter-chip {
      padding: 6px 14px;
      border: 1.5px solid var(--gray-300);
      border-radius: 100px;
      background: var(--white);
      font-size: 12px;
      font-weight: 600;
      font-family: inherit;
      color: var(--gray-600);
      cursor: pointer;
      transition: all 0.2s;
    }
    .filter-chip:hover { border-color: var(--primary); color: var(--primary); }
    .filter-chip.active {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--white);
    }

    /* ====== B2B/B2C Toggle ====== */
    .toggle-group {
      display: flex;
      background: var(--gray-200);
      border-radius: 10px;
      padding: 4px;
      margin-bottom: 8px;
    }
    .toggle-btn {
      flex: 1;
      padding: 10px 16px;
      border: none;
      background: none;
      font-size: 14px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      border-radius: 8px;
      transition: all 0.2s;
      color: var(--gray-600);
    }
    .toggle-btn.active {
      background: var(--white);
      color: var(--primary);
      box-shadow: var(--shadow-sm);
    }

    /* ====== CTA SECTION ====== */
    .cta-section {
      background: var(--gradient-hero);
      padding: 88px 24px;
      text-align: center;
    }
    .cta-section h2 {
      font-size: clamp(26px, 3.5vw, 38px);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }
    .cta-section p {
      color: rgba(255,255,255,.6);
      font-size: 16px;
      max-width: 480px;
      margin: 0 auto 36px;
      line-height: 1.6;
    }
    .cta-section .btn-primary {
      display: inline-flex;
      width: auto;
      padding: 16px 32px;
      font-size: 16px;
      background: var(--accent);
      color: var(--dark);
      box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
    }
    .cta-section .btn-primary:hover {
      background: var(--accent-dark);
      box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
    }

    /* ====== FOOTER ====== */
    .footer {
      background: var(--gray-900);
      padding: 60px 40px 32px;
      color: var(--gray-500);
      font-size: 13px;
      max-width: 100%;
    }

    /* ====== FAQ ====== */
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
    }
    .faq-item {
      border: 1px solid var(--gray-300);
      border-radius: var(--radius);
      margin-bottom: 12px;
      overflow: hidden;
      background: var(--white);
    }
    .faq-question {
      width: 100%;
      padding: 18px 24px;
      background: none;
      border: none;
      text-align: left;
      font-size: 15px;
      font-weight: 600;
      color: var(--dark);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-family: inherit;
      transition: color 0.2s;
    }
    .faq-question:hover {
      color: var(--primary);
    }
    .faq-question::after {
      content: '+';
      font-size: 20px;
      color: var(--gray-500);
      transition: transform 0.2s;
    }
    .faq-item.open .faq-question::after {
      content: '−';
    }
    .faq-answer {
      display: none;
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--gray-600);
      line-height: 1.7;
    }
    .faq-item.open .faq-answer { display: block; }

    /* ====== MCO CONSULTORIA ====== */
    #consultoria { scroll-margin-top: 80px; }
    .mco-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 900px;
      margin: 0 auto;
    }
    .mco-card {
      background: var(--white);
      border: 1px solid var(--gray-300);
      border-radius: var(--radius-lg);
      padding: 36px 28px 32px;
      text-align: center;
      transition: all 0.3s;
    }
    .mco-card:hover {
      border-color: var(--primary);
      box-shadow: 0 8px 24px rgba(26, 86, 219, 0.08);
      transform: translateY(-3px);
    }
    .mco-icon {
      width: 52px;
      height: 52px;
      background: var(--primary-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      color: var(--primary);
    }
    .mco-card h3 {
      font-size: 17px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px;
    }
    .mco-card p {
      font-size: 13.5px;
      color: var(--gray-600);
      line-height: 1.65;
    }

    /* ====== BTN SECONDARY ====== */
    .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 16px 28px;
      background: rgba(255,255,255,.08);
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.25);
      border-radius: var(--radius);
      font-size: 16px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: all 0.25s ease;
      text-decoration: none;
      backdrop-filter: blur(4px);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,.15);
      border-color: rgba(255,255,255,.5);
      transform: translateY(-2px);
    }

    /* ====== SIMULATOR LOCK OVERLAY ====== */
    .sim-lock-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      z-index: 50;
      border-radius: var(--radius-xl);
    }
    .sim-lock-overlay.unlocked {
      display: none;
    }
    .sim-lock-content {
      width: 100%;
      max-width: 480px;
      text-align: center;
      padding: 36px 32px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.88);
      border: 1px solid rgba(255, 255, 255, 0.5);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    }
    .sim-lock-icon {
      width: 72px;
      height: 72px;
      background: rgba(26, 86, 219, 0.1);
      border-radius: 999px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      color: var(--primary);
    }
    .sim-lock-content h3 {
      font-size: 24px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 14px;
      line-height: 1.2;
    }
    .sim-lock-content > p {
      font-size: 15px;
      color: rgba(15, 23, 42, 0.68);
      line-height: 1.6;
      margin-bottom: 24px;
      max-width: 360px;
      margin-left: auto;
      margin-right: auto;
    }
    .sim-lock-content .btn-primary {
      min-height: 52px;
      padding: 0 28px;
      border-radius: 14px;
      font-size: 16px;
      font-weight: 600;
      display: inline-flex;
      width: auto;
      box-shadow: 0 4px 14px rgba(26, 86, 219, 0.25);
      transition: all 0.25s ease;
    }
    .sim-lock-content .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(26, 86, 219, 0.35);
    }
    .sim-lock-note {
      font-size: 14px !important;
      color: rgba(15, 23, 42, 0.42) !important;
      margin-top: 16px !important;
      margin-bottom: 0 !important;
    }

    /* ====== REPORT MODAL ====== */
    .report-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(8px);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .sim-limit-badge {
      display: inline-block;
      font-size: 12px;
      color: var(--gray-500);
      margin-bottom: 16px;
      padding: 4px 12px;
      background: var(--gray-100);
      border-radius: 100px;
      border: 1px solid var(--gray-300);
    }

    /* ====== WHATSAPP FLUTUANTE ====== */
    .wpp-float {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 56px;
      height: 56px;
      background: #25d366;
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
      z-index: 9000;
      transition: transform 0.2s, box-shadow 0.2s;
      animation: wppPulse 2s infinite;
    }
    .wpp-float svg {
      width: 28px;
      height: 28px;
    }
    .wpp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
      animation: none;
    }
    @keyframes wppPulse {
      0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
      70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
      100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
    }

    /* ====== FOCUS STATES (Acessibilidade) ====== */
    .btn-primary:focus-visible,
    .btn-simulate:focus-visible,
    .btn-secondary:focus-visible,
    .navbar-cta:focus-visible,
    .sim-tab:focus-visible,
    .filter-chip:focus-visible,
    .faq-question:focus-visible {
      outline: 3px solid var(--primary);
      outline-offset: 2px;
    }
    .btn-primary:active,
    .btn-simulate:active {
      transform: translateY(0);
      box-shadow: var(--shadow-sm);
    }

    /* ====== FOOTER ====== */
    .footer-inner {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 32px;
      margin-bottom: 40px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      text-decoration: none;
      margin-bottom: 12px;
    }
    .footer-logo svg {
      width: 22px;
      height: 22px;
    }
    .footer-brand p {
      font-size: 14px;
      color: var(--gray-500);
      line-height: 1.6;
      max-width: 320px;
    }
    .footer-links h4 {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.8);
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: var(--gray-500);
      text-decoration: none;
      font-size: 13.5px;
      transition: color 0.2s;
    }
    .footer-links a:hover {
      color: var(--white);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 24px;
      text-align: center;
      max-width: 1100px;
      margin-left: auto;
      margin-right: auto;
    }
    .footer-bottom p {
      font-size: 13px;
      color: var(--gray-600);
      margin-bottom: 4px;
    }

    /* ====== RESPONSIVE - TABLET ====== */
    @media (max-width: 1024px) {
      .hero h1 { font-size: 38px; }
      .info-grid-4 { grid-template-columns: 1fr 1fr; }
      .mco-grid { grid-template-columns: 1fr 1fr; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    /* ====== RESPONSIVE - MOBILE ====== */
    @media (max-width: 768px) {
      :root { --section-gap: 64px; }
      .hero { padding: 130px 20px 80px; }
      .hero h1 { font-size: 30px; line-height: 1.12; }
      .hero p { font-size: 15px; margin-bottom: 32px; }
      .hero-stats { gap: 24px; flex-wrap: wrap; padding-top: 28px; margin-top: 36px; }
      .hero-stat .number { font-size: 28px; }
      .hero-stat .label { font-size: 11px; }
      .navbar-links { display: none; }
      .mobile-toggle { display: block; }
      .section-title { margin-bottom: 36px; }
      .section-title h2 { font-size: 24px; }
      .section-title p { font-size: 14.5px; }
      .sim-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
      .sim-tab { font-size: 12px; padding: 14px 14px; }
      .sim-form { grid-template-columns: 1fr; }
      .sim-panel { padding: 24px 20px; }
      .sim-panel h3 { font-size: 19px; }
      .result-grid { grid-template-columns: 1fr; }
      .lead-card { padding: 32px 24px; }
      .lead-card h2 { font-size: 22px; }
      .form-row { grid-template-columns: 1fr; }
      .info-grid-4 { grid-template-columns: 1fr; }
      .info-grid-2-center { grid-template-columns: 1fr; max-width: 100%; }
      .info-card { padding: 24px 20px; }
      .lookup-input-group { flex-direction: column; }
      .timeline-item { gap: 16px; }
      .timeline-dot { width: 42px; min-width: 42px; height: 42px; font-size: 12px; }
      .mco-grid { grid-template-columns: 1fr; }
      .mco-card { padding: 28px 20px 24px; }
      .sim-lock-overlay { padding: 16px; }
      .sim-lock-content { max-width: 100%; padding: 28px 20px; border-radius: 20px; }
      .sim-lock-content h3 { font-size: 20px; }
      .sim-lock-content > p { font-size: 14px; line-height: 1.5; }
      .sim-lock-content .btn-primary { width: 100%; }
      .footer { padding: 48px 24px 28px; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .footer-brand p { max-width: 100%; }
      .cta-section { padding: 64px 20px; }
      .cta-section h2 { font-size: 24px; }
      .cta-section p { font-size: 14.5px; }
      .btn-secondary { width: 100%; justify-content: center; }
      .faq-question { font-size: 14px; padding: 16px 20px; }
      .wpp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
      .wpp-float svg { width: 26px; height: 26px; }
    }
