/* ─── CSS Variables ─────────────────────────────────────── */
    :root {
      --primary: #6366f1;
      --primary-hover: #4f46e5;
      --primary-glow: rgba(99, 102, 241, 0.35);
      --secondary: #0ea5e9;
      --secondary-glow: rgba(14, 165, 233, 0.3);
      --accent: #f43f5e;
      --accent-glow: rgba(244, 63, 94, 0.3);
      --success: #10b981;
      --bg: #060c1a;
      --surface: rgba(15, 23, 42, 0.7);
      --card: rgba(22, 33, 55, 0.65);
      --border: rgba(255, 255, 255, 0.08);
      --border-hover: rgba(255, 255, 255, 0.18);
      --text: #f1f5f9;
      --text-muted: #64748b;
      --text-light: #94a3b8;
      --radius-lg: 24px;
      --radius-xl: 32px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      background-color: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ─── Animated background ────────────────────────────────── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 10% -10%, rgba(99, 102, 241, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 110%, rgba(14, 165, 233, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(244, 63, 94, 0.05) 0%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    /* ─── Grid dots background ───────────────────────────────── */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 44px 44px;
      pointer-events: none;
      z-index: 0;
    }

    /* ─── Shared container ───────────────────────────────────── */
    .container {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
      position: relative;
      z-index: 1;
    }

    /* ─── NAVBAR ─────────────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 20px 0;
      transition: all 0.4s ease;
    }

    nav.scrolled {
      background: rgba(6, 12, 26, 0.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 14px 0;
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .logo-icon {
      width: 36px;
      height: 36px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .logo-text {
      font-weight: 800;
      font-size: 1.25rem;
      letter-spacing: -0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text-light);
      font-size: 0.9rem;
      font-weight: 500;
      transition: color 0.3s;
    }

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

    .btn-nav {
      background: var(--primary);
      color: #fff !important;
      padding: 10px 22px;
      border-radius: 12px;
      font-weight: 700 !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 4px 15px var(--primary-glow);
    }

    .btn-nav:hover {
      background: var(--primary-hover) !important;
      transform: translateY(-1px);
      box-shadow: 0 8px 25px var(--primary-glow) !important;
    }

    .btn-nav-ghost {
      color: var(--text-light) !important;
      padding: 10px 22px;
      border-radius: 12px;
      font-weight: 600 !important;
      border: 1px solid var(--border) !important;
      transition: all 0.3s ease !important;
    }

    .btn-nav-ghost:hover {
      border-color: var(--border-hover) !important;
      color: var(--text) !important;
      background: rgba(255, 255, 255, 0.05) !important;
    }

    /* ─── Hamburger ─────────────────────────────────── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border);
      border-radius: 10px;
      width: 40px;
      height: 40px;
      z-index: 200;
      transition: background 0.2s;
    }

    .hamburger:hover {
      background: rgba(255, 255, 255, 0.1);
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .hamburger.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ─── Mobile nav overlay ─────────────────────────── */
    .mobile-menu {
      display: none;
      flex-direction: column;
      position: fixed;
      top: 68px;
      left: 0;
      right: 0;
      background: rgba(6, 12, 26, 0.97);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
      z-index: 150;
      padding: 16px 24px 28px;
      gap: 8px;
      transform: translateY(-12px);
      opacity: 0;
      pointer-events: none;
      transition: transform 0.35s ease, opacity 0.3s ease;
    }

    .mobile-menu.open {
      transform: translateY(0);
      opacity: 1;
      pointer-events: auto;
      min-height: auto;
    }

    /* ── Theme Toggle Button (FAB) ── */
    #theme-toggle {
      position: fixed;
      bottom: 24px;
      right: 24px;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: #cbd5e1;
      font-size: 1.3rem;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    #theme-toggle:hover {
      transform: translateY(-4px) scale(1.05);
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(99, 102, 241, 0.4);
      color: #fff;
      box-shadow: 0 12px 40px rgba(99, 102, 241, 0.4);
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      padding: 14px 18px;
      border-radius: 14px;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-light);
      text-decoration: none;
      border: 1px solid transparent;
      transition: all 0.2s;
    }

    .mobile-menu a:hover,
    .mobile-menu a:active {
      background: rgba(255, 255, 255, 0.06);
      border-color: var(--border);
      color: var(--text);
    }

    .mobile-menu .m-divider {
      height: 1px;
      background: var(--border);
      margin: 8px 0;
    }

    .mobile-menu .m-btn-login {
      background: rgba(99, 102, 241, 0.08);
      border-color: rgba(99, 102, 241, 0.25);
      color: #818cf8;
    }

    .mobile-menu .m-btn-cta {
      background: linear-gradient(135deg, var(--primary), var(--primary-hover));
      color: #fff !important;
      border-color: transparent;
      box-shadow: 0 4px 16px var(--primary-glow);
      font-weight: 700;
      justify-content: center;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    /* ─── HERO ───────────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 80px;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      max-width: 780px;
      padding: 80px 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(99, 102, 241, 0.12);
      border: 1px solid rgba(99, 102, 241, 0.3);
      padding: 8px 18px;
      border-radius: 9999px;
      font-size: 0.8rem;
      font-weight: 700;
      color: #818cf8;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 28px;
      animation: fadeUp 0.8s ease both;
    }

    .hero-badge::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #818cf8;
      border-radius: 50%;
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.4;
        transform: scale(1.5);
      }
    }

    .hero h1 {
      font-size: clamp(2.8rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.08;
      letter-spacing: -0.04em;
      margin-bottom: 24px;
      animation: fadeUp 0.8s 0.1s ease both;
    }

    .gradient-text {
      background: linear-gradient(135deg, #818cf8 0%, #38bdf8 50%, #34d399 100%);
      background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% 200%;
      animation: gradientShift 4s ease infinite;
    }

    @keyframes gradientShift {

      0%,
      100% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }
    }

    .hero p {
      font-size: 1.15rem;
      color: var(--text-light);
      max-width: 580px;
      margin-bottom: 44px;
      line-height: 1.75;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      animation: fadeUp 0.8s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, var(--primary), var(--primary-hover));
      color: #fff;
      padding: 16px 36px;
      border-radius: 14px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 8px 30px var(--primary-glow);
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px var(--primary-glow);
      filter: brightness(1.1);
    }

    .btn-primary svg {
      transition: transform 0.3s;
    }

    .btn-primary:hover svg {
      transform: translateX(4px);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text-light);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      transition: all 0.3s;
      border: none;
      background: none;
      cursor: pointer;
    }

    .btn-secondary:hover {
      color: var(--text);
    }

    .btn-secondary:hover .arrow-circle {
      background: var(--border-hover);
    }

    .arrow-circle {
      width: 36px;
      height: 36px;
      background: var(--border);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
    }

    /* ─── Hero floating stats ────────────────────────────────── */
    .hero-stats {
      display: flex;
      gap: 40px;
      margin-top: 64px;
      padding-top: 40px;
      border-top: 1px solid var(--border);
      animation: fadeUp 0.8s 0.4s ease both;
      flex-wrap: wrap;
    }

    .stat-value {
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(to right, #818cf8, #38bdf8);
      background-clip: text;
      -webkit-text-fill-color: transparent;
      letter-spacing: -0.03em;
      line-height: 1;
    }

    .stat-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 4px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    /* ─── Floating visual (hero right) ──────────────────────── */
    .hero-visual {
      position: absolute;
      right: -60px;
      top: 50%;
      transform: translateY(-50%);
      width: 500px;
      height: 500px;
      display: none;
      animation: float 6s ease-in-out infinite;
    }

    @media (min-width: 1200px) {
      .hero-visual {
        display: block;
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(-50%) translateY(0px);
      }

      50% {
        transform: translateY(-50%) translateY(-18px);
      }
    }

    .hero-card-mock {
      background: var(--card);
      backdrop-filter: blur(16px);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 28px;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
      position: absolute;
      animation: fadeUp 1s 0.5s ease both;
    }

    .mock-main {
      width: 360px;
      top: 50px;
      left: 30px;
    }

    .mock-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .mock-avatar {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .mock-name {
      font-weight: 700;
      font-size: 0.95rem;
    }

    .mock-sub {
      font-size: 0.75rem;
      color: var(--text-muted);
    }

    .mock-tag {
      margin-left: auto;
      background: rgba(16, 185, 129, 0.12);
      color: var(--success);
      border: 1px solid rgba(16, 185, 129, 0.25);
      padding: 4px 12px;
      border-radius: 9999px;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .mock-phones {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .mock-phone-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 10px 14px;
    }

    .mock-phone-number {
      font-weight: 700;
      font-size: 0.9rem;
    }

    .mock-btns {
      display: flex;
      gap: 8px;
    }

    .mock-btn {
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 0.7rem;
      font-weight: 700;
      color: #fff;
    }

    .mock-btn-call {
      background: var(--secondary);
    }

    .mock-btn-wa {
      background: var(--success);
    }

    .mock-floating {
      position: absolute;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 16px 20px;
      font-size: 0.8rem;
      backdrop-filter: blur(10px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .mock-badge-1 {
      bottom: 60px;
      left: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      animation: fadeUp 1s 0.7s ease both;
    }

    .mock-badge-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .icon-blue {
      background: rgba(14, 165, 233, 0.15);
    }

    .icon-green {
      background: rgba(16, 185, 129, 0.15);
    }

    .icon-purple {
      background: rgba(99, 102, 241, 0.15);
    }

    .mock-badge-text {
      font-weight: 600;
      font-size: 0.8rem;
    }

    .mock-badge-sub {
      font-size: 0.7rem;
      color: var(--text-muted);
    }

    /* ─── Animations ─────────────────────────────────────────── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* ─── Section commons ────────────────────────────────────── */
    section {
      padding: 100px 0;
      position: relative;
      z-index: 1;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.25);
      padding: 6px 16px;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 700;
      color: #818cf8;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .section-label.litecrm {
      text-wrap: nowrap;
    }

    .section-title {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 560px;
      line-height: 1.75;
    }

    .section-header {
      margin-bottom: 64px;
    }

    .section-header.center {
      text-align: center;
    }

    .section-header.center .section-desc {
      margin: 0 auto;
    }

    /* ─── Features ───────────────────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
    }

    .feature-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.4s;
      border-radius: inherit;
    }

    .feature-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-6px);
      box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    }

    .feature-card:hover::before {
      opacity: 1;
    }

    .feature-card.purple::before {
      background: radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    }

    .feature-card.blue::before {
      background: radial-gradient(ellipse at top left, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    }

    .feature-card.green::before {
      background: radial-gradient(ellipse at top left, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    }

    .feature-card.pink::before {
      background: radial-gradient(ellipse at top left, rgba(244, 63, 94, 0.08) 0%, transparent 70%);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 20px;
    }

    .feature-icon.purple {
      background: rgba(99, 102, 241, 0.15);
    }

    .feature-icon.blue {
      background: rgba(14, 165, 233, 0.15);
    }

    .feature-icon.green {
      background: rgba(16, 185, 129, 0.15);
    }

    .feature-icon.pink {
      background: rgba(244, 63, 94, 0.15);
    }

    .feature-title {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feature-desc {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ─── How it works ───────────────────────────────────────── */
    #como-funciona {
      background: none;
    }

    .steps-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 0;
      position: relative;
    }

    .steps-wrapper::before {
      content: '';
      position: absolute;
      top: 40px;
      left: 10%;
      right: 10%;
      height: 1px;
      background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
    }

    .step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 24px 20px;
      position: relative;
    }

    .step-number {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: var(--card);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
      margin-bottom: 24px;
      position: relative;
      z-index: 1;
      transition: all 0.3s;
    }

    .step:hover .step-number {
      border-color: var(--primary);
      box-shadow: 0 0 0 6px var(--primary-glow);
    }

    .step-badge {
      position: absolute;
      top: -4px;
      right: -4px;
      width: 24px;
      height: 24px;
      background: var(--primary);
      border-radius: 50%;
      font-size: 0.65rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .step-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step-desc {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    /* ─── Data sources ───────────────────────────────────────── */
    .data-section {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 64px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    .data-section::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    }

    @media (max-width: 900px) {
      .data-section {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
      }
    }

    .data-source-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .data-source-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s;
    }

    .data-source-item:hover {
      border-color: var(--border-hover);
      background: rgba(255, 255, 255, 0.05);
    }

    .data-source-icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
      box-shadow: 0 6px 20px var(--primary-glow);
    }

    .data-source-title {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 4px;
    }

    .data-source-desc {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.6;
    }

    /* ─── Search preview section ─────────────────────────────── */
    .search-preview {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 64px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .search-preview::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 0%, rgba(99, 102, 241, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 100%, rgba(14, 165, 233, 0.1) 0%, transparent 60%);
      pointer-events: none;
    }

    .search-preview h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
    }

    .search-preview p {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 500px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    /* ─── Testimonials / trust ───────────────────────────────── */
    .trust-bar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
      padding: 40px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text-muted);
      font-size: 0.85rem;
      font-weight: 600;
    }

    .trust-item span {
      font-size: 20px;
    }

    /* ─── CTA section ────────────────────────────────────────── */
    .cta-section {
      padding: 120px 0;
    }

    .cta-box {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(14, 165, 233, 0.12) 100%);
      border: 1px solid rgba(99, 102, 241, 0.25);
      border-radius: var(--radius-xl);
      padding: 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle at center, rgba(99, 102, 241, 0.06) 0%, transparent 60%);
      animation: rotateSlow 20s linear infinite;
    }

    @keyframes rotateSlow {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .cta-box h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      letter-spacing: -0.03em;
      margin-bottom: 16px;
      position: relative;
    }

    .cta-box p {
      font-size: 1.05rem;
      color: var(--text-light);
      max-width: 500px;
      margin: 0 auto 40px;
      line-height: 1.7;
      position: relative;
    }

    .cta-box .btn-primary {
      position: relative;
      font-size: 1.05rem;
      padding: 18px 44px;
    }

    /* ─── Footer ─────────────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 40px 0;
      position: relative;
      z-index: 1;
    }

    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-copy {
      color: var(--text-muted);
      font-size: 0.82rem;
    }

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

    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.82rem;
      transition: color 0.3s;
    }

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

    /* ─── Scroll reveal ──────────────────────────────────────── */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    .reveal-delay-5 {
      transition-delay: 0.5s;
    }

    /* ─── Glowing orbs ───────────────────────────────────────── */
    .orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      pointer-events: none;
      opacity: 0.4;
    }

    /* ─── Responsive tweaks ──────────────────────────────────── */
    @media (max-width: 640px) {
      .steps-wrapper::before {
        display: none;
      }

      .cta-box {
        padding: 40px 24px;
      }

      .data-section {
        padding: 32px 24px;
      }

      .search-preview {
        padding: 40px 24px;
      }
    }

    @media (max-width: 480px) {
      .hero-stats {
        gap: 24px;
      }

      .trust-bar {
        gap: 24px;
      }
    }

    /* ── Leads Ultra Qualificados Section ── */
    .leads-section {
      position: relative;
      overflow: hidden;
    }

    .leads-highlight-box {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.07) 0%, rgba(14, 165, 233, 0.07) 100%);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: var(--radius-xl);
      padding: 64px;
      position: relative;
      overflow: hidden;
    }

    .leads-highlight-box::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    }

    .leads-highlight-box::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: -60px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    }

    .leads-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    @media (max-width: 860px) {
      .leads-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .leads-highlight-box {
        padding: 36px 24px;
      }
    }

    .leads-use-cases {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .leads-use-case {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 20px;
      transition: all 0.3s;
      position: relative;
      z-index: 1;
    }

    .leads-use-case:hover {
      border-color: var(--border-hover);
      background: rgba(255, 255, 255, 0.06);
      transform: translateX(4px);
    }

    .leads-use-case-icon {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      flex-shrink: 0;
    }

    .leads-use-case-icon.gold {
      background: rgba(245, 158, 11, 0.15);
    }

    .leads-use-case-icon.emerald {
      background: rgba(16, 185, 129, 0.15);
    }

    .leads-use-case-icon.sky {
      background: rgba(14, 165, 233, 0.15);
    }

    .leads-use-case-title {
      font-weight: 700;
      font-size: 0.95rem;
      margin-bottom: 4px;
    }

    .leads-use-case-desc {
      font-size: 0.85rem;
      color: var(--text-light);
      line-height: 1.65;
    }

    .leads-example-card {
      background: var(--card);
      border: 1px solid rgba(245, 158, 11, 0.25);
      border-radius: 20px;
      padding: 32px;
      position: relative;
      z-index: 1;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .leads-example-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(245, 158, 11, 0.1);
      border: 1px solid rgba(245, 158, 11, 0.3);
      border-radius: 9999px;
      padding: 4px 14px;
      font-size: 0.7rem;
      font-weight: 700;
      color: #fbbf24;
      text-transform: uppercase;
      letter-spacing: 0.07em;
      margin-bottom: 20px;
    }

    .leads-example-title {
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .leads-example-scenario {
      background: rgba(245, 158, 11, 0.05);
      border: 1px solid rgba(245, 158, 11, 0.15);
      border-radius: 12px;
      padding: 16px;
      margin-bottom: 16px;
    }

    .leads-example-scenario p {
      font-size: 0.88rem;
      color: var(--text-light);
      line-height: 1.7;
      margin: 0;
    }

    .leads-example-scenario strong {
      color: #fbbf24;
    }

    .leads-result {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 16px;
    }

    .leads-result-dot {
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      flex-shrink: 0;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    }

    .leads-result-text {
      font-size: 0.85rem;
      font-weight: 600;
      color: #34d399;
    }

    .leads-tag-row {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .leads-tag {
      background: rgba(99, 102, 241, 0.1);
      border: 1px solid rgba(99, 102, 241, 0.2);
      border-radius: 9999px;
      padding: 4px 12px;
      font-size: 0.72rem;
      font-weight: 600;
      color: #818cf8;
    }

    /* ── LiteCRM Ad Banner ── */
    .litecrm-ad {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(14, 165, 233, 0.06);
      border: 1px solid rgba(14, 165, 233, 0.18);
      border-radius: 14px;
      padding: 12px 18px;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s;
      flex-wrap: wrap;
    }

    .litecrm-ad:hover {
      background: rgba(14, 165, 233, 0.11);
      border-color: rgba(14, 165, 233, 0.32);
    }

    .litecrm-ad-badge {
      font-size: 0.6rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: #38bdf8;
      background: rgba(14, 165, 233, 0.1);
      border: 1px solid rgba(14, 165, 233, 0.25);
      border-radius: 6px;
      padding: 2px 7px;
      flex-shrink: 0;
      white-space: nowrap;
    }

    .litecrm-ad-icon {
      font-size: 1rem;
      flex-shrink: 0;
    }

    .litecrm-ad-text {
      flex: 1;
      min-width: 0;
      font-size: 0.85rem;
    }

    .litecrm-ad-text strong {
      color: #606266;
      font-size: 0.9rem;
    }

    .litecrm-ad-text span {
      color: var(--text-muted);
      margin-left: 5px;
    }

    .litecrm-ad-cta {
      color: #38bdf8;
      font-size: 0.8rem;
      font-weight: 600;
      white-space: nowrap;
      flex-shrink: 0;
    }

    @media (max-width: 600px) {
      .litecrm-ad {
        padding: 11px 13px;
        gap: 8px;
        align-items: center;
      }

      .litecrm-ad-text span {
        display: none;
      }

      .litecrm-ad-cta {
        font-size: 0.78rem;
        margin-left: auto;
      }
    }

    /* ── Theme Toggle Button ────────────────────────────── */
    #theme-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      cursor: pointer;
      font-size: 17px;
      transition: all 0.2s;
      flex-shrink: 0;
    }

    #theme-toggle:hover {
      background: rgba(99, 102, 241, 0.12);
      border-color: rgba(99, 102, 241, 0.3);
    }

    /* ── Light Theme ─────────────────────────────────────── */
    [data-theme="light"] {
      --bg: #f0f4fb;
      --surface: rgba(240, 244, 251, 0.9);
      --card: rgba(255, 255, 255, 0.97);
      --border: rgba(0, 0, 0, 0.09);
      --border-hover: rgba(0, 0, 0, 0.2);
      --text: #0f172a;
      --text-light: #475569;
      --text-muted: #94a3b8;
    }

    [data-theme="light"] body {
      background-color: #f0f4fb;
    }

    [data-theme="light"] body::before {
      background:
        radial-gradient(ellipse 80% 60% at 10% -10%, rgba(99, 102, 241, 0.07) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 110%, rgba(14, 165, 233, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(244, 63, 94, 0.02) 0%, transparent 70%);
    }

    [data-theme="light"] body::after {
      background-image: radial-gradient(circle, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    }

    [data-theme="light"] nav.scrolled {
      background: rgba(255, 255, 255, 0.92);
      border-bottom-color: rgba(0, 0, 0, 0.08);
    }

    [data-theme="light"] .hamburger {
      background: rgba(0, 0, 0, 0.04);
      border-color: rgba(0, 0, 0, 0.1);
    }

    [data-theme="light"] .hamburger span {
      background: #0f172a;
    }

    [data-theme="light"] .mobile-menu {
      background: rgba(255, 255, 255, 0.97);
      border-bottom-color: rgba(0, 0, 0, 0.07);
    }

    [data-theme="light"] .mobile-menu a {
      color: #475569;
    }

    [data-theme="light"] .mobile-menu a:hover {
      background: rgba(0, 0, 0, 0.04);
      color: #0f172a;
      border-color: rgba(0, 0, 0, 0.08);
    }

    [data-theme="light"] .m-divider {
      background: rgba(0, 0, 0, 0.06);
    }

    [data-theme="light"] .feature-card {
      background: rgba(255, 255, 255, 0.9);
    }

    [data-theme="light"] .hero-card-mock {
      background: rgba(255, 255, 255, 0.95);
    }

    [data-theme="light"] .mock-phone-row {
      background: rgba(240, 244, 251, 0.8);
    }

    [data-theme="light"] #theme-toggle {
      background: rgba(255, 255, 255, 0.9) !important;
      border-color: rgba(0, 0, 0, 0.08) !important;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
    }

    [data-theme="light"] #theme-toggle:hover {
      background: #fff !important;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15) !important;
      border-color: rgba(99, 102, 241, 0.3) !important;
    }
  


        .swiper-reviews {
          width: 100%;
          padding-top: 20px;
          padding-bottom: 60px;
        }

        .swiper-reviews .swiper-slide {
          background-position: center;
          background-size: cover;
          width: 340px;
          opacity: 0.5;
          transition: opacity 0.3s;
        }

        .swiper-reviews .swiper-slide-active {
          opacity: 1;
        }

        .swiper-pagination-bullet {
          background: var(--text-muted);
        }

        .swiper-pagination-bullet-active {
          background: var(--primary);
        }

        @media (max-width: 600px) {
          .swiper-reviews .swiper-slide {
            width: 280px;
          }
        }
      


    .logo-imob {
      color: #eee;
    }

    [data-theme="light"] .logo-imob {
      color: #1e293b !important;
    }

    [data-theme="light"] .logo-text span:last-child {
      color: #4f46e5 !important;
    }

    [data-theme="light"] body {
      background: #f0f4fb !important;
    }

    [data-theme="light"] body::before {
      background: radial-gradient(ellipse 80% 60% at 10% -10%, rgba(99, 102, 241, 0.07) 0%, transparent 60%), radial-gradient(ellipse 60% 50% at 90% 110%, rgba(14, 165, 233, 0.05) 0%, transparent 60%) !important;
    }

    [data-theme="light"] body::after {
      background-image: radial-gradient(circle, rgba(0, 0, 0, 0.035) 1px, transparent 1px) !important;
    }

    /* Nav */
    [data-theme="light"] nav.scrolled {
      background: rgba(255, 255, 255, 0.96) !important;
      border-bottom-color: rgba(0, 0, 0, 0.07) !important;
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    }

    [data-theme="light"] .nav-links a {
      color: #475569 !important;
    }

    [data-theme="light"] .nav-links a:hover {
      color: #0f172a !important;
    }

    [data-theme="light"] .btn-nav-ghost {
      color: #0f172a !important;
      border-color: rgba(0, 0, 0, 0.15) !important;
      background: rgba(255, 255, 255, 0.5) !important;
    }

    [data-theme="light"] .btn-nav-ghost:hover {
      background: rgba(0, 0, 0, 0.04) !important;
      border-color: rgba(0, 0, 0, 0.2) !important;
    }

    [data-theme="light"] .nav-links .btn-nav {
      background: linear-gradient(135deg, var(--primary), var(--primary-hover)) !important;
      color: #fff !important;
    }

    [data-theme="light"] .hamburger {
      background: rgba(0, 0, 0, 0.04) !important;
      border-color: rgba(0, 0, 0, 0.1) !important;
    }

    [data-theme="light"] .hamburger span {
      background: #0f172a !important;
    }

    [data-theme="light"] .mobile-menu {
      background: rgba(255, 255, 255, 0.99) !important;
      border-bottom-color: rgba(0, 0, 0, 0.07) !important;
    }

    [data-theme="light"] .m-link {
      color: #475569 !important;
    }

    [data-theme="light"] .m-link:hover {
      background: rgba(0, 0, 0, 0.03) !important;
      color: #0f172a !important;
    }

    [data-theme="light"] .mobile-menu .m-btn-login {
      background: rgba(0, 0, 0, 0.03) !important;
      border-color: rgba(0, 0, 0, 0.08) !important;
      color: #0f172a !important;
    }

    [data-theme="light"] .mobile-menu .m-btn-login:hover {
      background: rgba(0, 0, 0, 0.06) !important;
      border-color: rgba(0, 0, 0, 0.15) !important;
    }

    [data-theme="light"] .mock-btn-call {
      background: rgba(14, 165, 233, 0.1) !important;
      color: #0ea5e9 !important;
    }

    [data-theme="light"] .mock-btn-wa {
      background: rgba(16, 185, 129, 0.1) !important;
      color: #10b981 !important;
    }

    [data-theme="light"] .btn-secondary {
      color: #4f46e5 !important;
    }

    [data-theme="light"] .btn-secondary:hover .arrow-circle {
      background: rgba(99, 102, 241, 0.1) !important;
      color: #4f46e5 !important;
    }

    [data-theme="light"] .m-divider {
      background: rgba(0, 0, 0, 0.06) !important;
    }

    /* Hero */
    [data-theme="light"] h1 {
      color: #0f172a !important;
    }

    [data-theme="light"] h2 {
      color: #0f172a !important;
    }

    [data-theme="light"] h3 {
      color: #0f172a !important;
    }

    [data-theme="light"] .hero-badge {
      background: rgba(99, 102, 241, 0.08) !important;
      border-color: rgba(99, 102, 241, 0.2) !important;
      color: #4f46e5 !important;
    }

    [data-theme="light"] .hero-card-mock {
      background: rgba(255, 255, 255, 0.97) !important;
      border-color: rgba(0, 0, 0, 0.08) !important;
    }

    [data-theme="light"] .mock-phone-row {
      background: rgba(240, 244, 251, 0.8) !important;
    }

    [data-theme="light"] .trust-pill {
      background: rgba(255, 255, 255, 0.85) !important;
      border-color: rgba(0, 0, 0, 0.07) !important;
      color: #475569 !important;
    }

    /* Sections */
    [data-theme="light"] section {
      color: #475569 !important;
    }

    [data-theme="light"] .section-label {
      color: #4f46e5 !important;
    }

    [data-theme="light"] .section-title {
      color: #0f172a !important;
    }

    [data-theme="light"] .section-sub {
      color: #475569 !important;
    }

    [data-theme="light"] .feature-card {
      background: rgba(255, 255, 255, 0.9) !important;
      border-color: rgba(0, 0, 0, 0.07) !important;
    }

    [data-theme="light"] .feature-icon {
      background: rgba(99, 102, 241, 0.08) !important;
    }

    [data-theme="light"] .feature-title {
      color: #0f172a !important;
    }

    [data-theme="light"] .feature-desc {
      color: #475569 !important;
    }

    [data-theme="light"] .step-card {
      background: rgba(255, 255, 255, 0.9) !important;
      border-color: rgba(0, 0, 0, 0.07) !important;
    }

    [data-theme="light"] .step-num {
      color: #0f172a !important;
    }

    [data-theme="light"] .step-title {
      color: #0f172a !important;
    }

    [data-theme="light"] .step-desc {
      color: #475569 !important;
    }

    [data-theme="light"] .data-section {
      background: rgba(255, 255, 255, 0.7) !important;
    }

    [data-theme="light"] .cta-box {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.06), rgba(14, 165, 233, 0.04)) !important;
      border-color: rgba(99, 102, 241, 0.12) !important;
    }

    /* LiteCRM ad */
    [data-theme="light"] .litecrm-ad {
      background: rgba(255, 255, 255, 0.9) !important;
      border-color: rgba(0, 0, 0, 0.07) !important;
    }

    /* Footer */
    [data-theme="light"] footer {
      background: rgba(255, 255, 255, 0.4) !important;
      border-top-color: rgba(0, 0, 0, 0.05) !important;
    }

    [data-theme="light"] footer a {
      color: #94a3b8 !important;
    }

    [data-theme="light"] footer a:hover {
      color: #475569 !important;
    }

    [data-theme="light"] #theme-toggle {
      background: #f1f5f9 !important;
      border-color: rgba(0, 0, 0, 0.09) !important;
    }

    [data-theme="light"] #theme-toggle:hover {
      background: rgba(99, 102, 241, 0.08) !important;
    }

    /* ── Missing section overrides ── */
    [data-theme="light"] nav.scrolled {
      background: rgba(255, 255, 255, 0.96) !important;
      border-bottom-color: rgba(0, 0, 0, 0.07) !important;
    }

    [data-theme="light"] p {
      color: #475569 !important;
    }

    [data-theme="light"] .section-desc {
      color: #475569 !important;
    }

    [data-theme="light"] .hero p {
      color: #475569 !important;
    }

    [data-theme="light"] .stat-label {
      color: #64748b !important;
    }

    [data-theme="light"] .hero-stats {
      border-top-color: rgba(0, 0, 0, 0.08) !important;
    }

    [data-theme="light"] .trust-bar {
      border-color: rgba(0, 0, 0, 0.07) !important;
    }

    [data-theme="light"] .trust-item {
      color: #475569 !important;
    }

    [data-theme="light"] .step-number {
      background: rgba(255, 255, 255, 0.97) !important;
      border-color: rgba(0, 0, 0, 0.08) !important;
    }

    [data-theme="light"] .step-title {
      color: #0f172a !important;
    }

    [data-theme="light"] .step-desc {
      color: #475569 !important;
    }

    [data-theme="light"] .steps-wrapper::before {
      background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.1) 80%, transparent) !important;
    }

    [data-theme="light"] .data-section {
      background: rgba(255, 255, 255, 0.92) !important;
      border-color: rgba(0, 0, 0, 0.07) !important;
    }

    [data-theme="light"] .data-source-item {
      background: rgba(240, 244, 251, 0.8) !important;
      border-color: rgba(0, 0, 0, 0.07) !important;
    }

    [data-theme="light"] .data-source-item:hover {
      background: #f1f5f9 !important;
      border-color: rgba(0, 0, 0, 0.12) !important;
    }

    [data-theme="light"] .data-source-title {
      color: #0f172a !important;
    }

    [data-theme="light"] .data-source-desc {
      color: #475569 !important;
    }

    [data-theme="light"] .search-preview {
      background: rgba(255, 255, 255, 0.92) !important;
      border-color: rgba(0, 0, 0, 0.07) !important;
    }

    [data-theme="light"] .search-preview h2 {
      color: #0f172a !important;
    }

    [data-theme="light"] .search-preview p {
      color: #475569 !important;
    }

    [data-theme="light"] .leads-highlight-box {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(14, 165, 233, 0.04)) !important;
      border-color: rgba(99, 102, 241, 0.12) !important;
    }

    [data-theme="light"] .leads-use-case {
      background: rgba(240, 244, 251, 0.8) !important;
      border-color: rgba(0, 0, 0, 0.07) !important;
    }

    [data-theme="light"] .leads-use-case:hover {
      background: #f1f5f9 !important;
      border-color: rgba(0, 0, 0, 0.12) !important;
    }

    [data-theme="light"] .leads-use-case-title {
      color: #0f172a !important;
    }

    [data-theme="light"] .leads-use-case-desc {
      color: #475569 !important;
    }

    [data-theme="light"] .mock-floating {
      background: rgba(255, 255, 255, 0.97) !important;
      border-color: rgba(0, 0, 0, 0.07) !important;
      color: #0f172a !important;
    }

    [data-theme="light"] .mock-badge-text {
      color: #0f172a !important;
    }

    [data-theme="light"] .mock-badge-sub {
      color: #64748b !important;
    }

    [data-theme="light"] .mock-name {
      color: #0f172a !important;
    }

    [data-theme="light"] .mock-sub {
      color: #64748b !important;
    }

    [data-theme="light"] .section-label {
      background: rgba(99, 102, 241, 0.06) !important;
      border-color: rgba(99, 102, 241, 0.15) !important;
      color: #4f46e5 !important;
    }

    [data-theme="light"] .mobile-menu .m-btn-login {
      background: rgba(99, 102, 241, 0.06) !important;
      border-color: rgba(99, 102, 241, 0.15) !important;
      color: #4f46e5 !important;
    }

    [data-theme="light"] .mobile-menu a {
      color: #475569 !important;
    }

    [data-theme="light"] .mobile-menu a:hover {
      background: rgba(0, 0, 0, 0.03) !important;
      color: #0f172a !important;
    }

    /* ── Inline-style section bg overrides (rgba(15,23,42) hardcoded on HTML elements) ── */
    [data-theme="light"] #como-funciona {
      background: rgba(240, 244, 251, 0.6) !important;
      border-top-color: rgba(0, 0, 0, 0.06) !important;
      border-bottom-color: rgba(0, 0, 0, 0.06) !important;
    }

    [data-theme="light"] #mapa {
      background: rgba(240, 244, 251, 0.6) !important;
      border-top-color: rgba(0, 0, 0, 0.06) !important;
      border-bottom-color: rgba(0, 0, 0, 0.06) !important;
    }

    [data-theme="light"] #depoimentos {
      background: rgba(240, 244, 251, 0.6) !important;
      border-top-color: rgba(0, 0, 0, 0.06) !important;
      border-bottom-color: rgba(0, 0, 0, 0.06) !important;
    }

    [data-theme="light"] #m-crm {
      background: rgba(255, 255, 255, 0.6) !important;
      border-top-color: rgba(0, 0, 0, 0.06) !important;
      border-bottom-color: rgba(0, 0, 0, 0.06) !important;
    }

    [data-theme="light"] #review-form-wrap {
      background: rgba(255, 255, 255, 0.99) !important;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    }

    [data-theme="light"] .lgpd-section {
      background: rgba(240, 244, 251, 0.6) !important;
      border-top-color: rgba(0, 0, 0, 0.06) !important;
      border-bottom-color: rgba(0, 0, 0, 0.06) !important;
    }

    [data-theme="light"] .lgpd-section h2 {
      color: #0f172a !important;
    }

    [data-theme="light"] .lgpd-section p {
      color: #475569 !important;
    }

    [data-theme="light"] .lgpd-section strong {
      color: #0f172a !important;
    }

    /* ── Shadow Overrides ── */
    [data-theme="light"] .modal-content {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }

    [data-theme="light"] .dropdown-content {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
    }

    [data-theme="light"] .feature-card {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
    }

    [data-theme="light"] .feature-card:hover {
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1) !important;
    }

    [data-theme="light"] .leads-example-card {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    }

    [data-theme="light"] .swiper-reviews .swiper-slide>div {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    }

    [data-theme="light"] .data-source-icon {
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15) !important;
    }

    [data-theme="light"] .step-badge {
      box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.1) !important;
    }

    [data-theme="light"] .btn-primary {
      box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15) !important;
    }

    [data-theme="light"] .btn-primary:hover {
      box-shadow: 0 6px 18px rgba(99, 102, 241, 0.2) !important;
    }

    [data-theme="light"] .hero-visual {
      box-shadow: 0 4px 16px rgba(99, 102, 241, 0.12) !important;
    }

    [data-theme="light"] .hero-visual:hover {
      box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15) !important;
    }

    [data-theme="light"] .hero-visual.active {
      box-shadow: 0 12px 30px rgba(99, 102, 241, 0.18) !important;
    }

    /* ── Input Overrides ── */
    [data-theme="light"] input,
    [data-theme="light"] textarea,
    [data-theme="light"] select {
      background: #f8fafc !important;
      border-color: rgba(0, 0, 0, 0.1) !important;
      color: #0f172a !important;
    }

    [data-theme="light"] input:focus,
    [data-theme="light"] textarea:focus,
    [data-theme="light"] select:focus {
      background: #fff !important;
      border-color: rgba(99, 102, 241, 0.5) !important;
      box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1) !important;
    }

    [data-theme="light"] input::placeholder,
    [data-theme="light"] textarea::placeholder {
      color: #94a3b8 !important;
    }