:root {
    --bg: #09090b;
    --card: #18181b;
    --card-glass: rgba(24,24,27,0.65);
    --border: #27272a;
    --border-light: #3f3f46;
    --text: #fafafa;
    --muted: #a1a1aa;
    --dimmed: #52525b;
    --orange: #f97316;
    --orange-dark: #ea580c;
    --orange-dim: rgba(249,115,22,0.12);
    --orange-glow: rgba(249,115,22,0.25);
    --orange-border: rgba(249,115,22,0.3);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  h1, h2, h3, h4 { font-family: 'Sora', sans-serif; }

  /* ─── NAVBAR ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 64px;
    background: rgba(9,9,11,0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  /* ─── SKIP LINK (accessibility + SEO) ─── */
  .skip-link {
    position: absolute; top: -40px; left: 0; background: var(--orange);
    color: #fff; padding: 0.5rem 1rem; border-radius: 0 0 8px 0;
    font-size: 0.85rem; font-weight: 700; text-decoration: none; z-index: 9999;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 0; }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
  }

  .nav-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease;
  }

  .nav-logo span {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem; font-weight: 700;
    background: linear-gradient(135deg, #fff 40%, var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
  }

  .nav-logo:hover img {
    transform: scale(1.05);
  }

  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    color: var(--muted); text-decoration: none; font-size: 0.875rem;
    font-weight: 500; transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--text); }

  .nav-actions { display: flex; gap: 0.75rem; align-items: center; }

  .btn-outline {
    padding: 0.5rem 1rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    border: 1px solid var(--border-light); background: transparent;
    color: var(--text); cursor: pointer; transition: all 0.2s;
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  }
  .btn-outline:hover { border-color: var(--orange); color: var(--orange); }

  .btn-primary {
    padding: 0.5rem 1.1rem; border-radius: 8px; font-size: 0.8rem; font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    background: var(--orange); border: none; color: #fff;
    cursor: pointer; transition: all 0.2s; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.4rem;
    box-shadow: 0 0 20px rgba(249,115,22,0.3);
  }
  .btn-primary:hover { background: var(--orange-dark); box-shadow: 0 0 30px rgba(249,115,22,0.5); transform: translateY(-1px); }

  /* ─── HERO ─── */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; padding: 120px 2rem 80px;
    overflow: hidden;
  }

  /* Perspective grid */
  .grid-bg {
    position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 30%, transparent 80%);
  }

  /* Hero glow */
  .hero-glow {
    position: absolute; top: 10%; left: 50%; transform: translateX(-50%);
    width: 700px; height: 400px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.18) 0%, transparent 70%);
    pointer-events: none; z-index: 0;
  }

  .hero-content { position: relative; z-index: 1; max-width: 800px; }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.35rem 1rem; border-radius: 100px;
    background: var(--orange-dim); border: 1px solid var(--orange-border);
    font-size: 0.78rem; font-weight: 600; color: var(--orange);
    margin-bottom: 1.5rem; letter-spacing: 0.02em;
    animation: fadeUp 0.6s ease both;
  }

  .hero-badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange); box-shadow: 0 0 8px var(--orange);
    animation: pulse 2s ease infinite;
  }

  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }

  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800;
    line-height: 1.1; letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.6s 0.1s ease both;
  }

  .hero h1 .accent { color: var(--orange); }

  .hero p {
    font-size: clamp(1rem, 2vw, 1.15rem); color: var(--muted);
    max-width: 560px; margin: 0 auto 2rem; line-height: 1.7;
    animation: fadeUp 0.6s 0.2s ease both;
  }

  .hero-ctas {
    display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
  }

  .btn-hero-primary {
    padding: 0.85rem 1.8rem; border-radius: 10px; font-size: 0.95rem; font-weight: 700;
    font-family: 'DM Sans', sans-serif;
    background: var(--orange); border: none; color: #fff;
    cursor: pointer; transition: all 0.25s; text-decoration: none;
    box-shadow: 0 0 30px rgba(249,115,22,0.4), 0 4px 20px rgba(0,0,0,0.3);
  }
  .btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(249,115,22,0.6), 0 8px 30px rgba(0,0,0,0.4); }

  .btn-hero-secondary {
    padding: 0.85rem 1.8rem; border-radius: 10px; font-size: 0.95rem; font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    background: transparent; border: 1px solid var(--border-light); color: var(--text);
    cursor: pointer; transition: all 0.25s; text-decoration: none;
  }
  .btn-hero-secondary:hover { border-color: var(--orange); background: var(--orange-dim); }

  /* Hero large mockup */
  .hero-previews {
    margin-top: 4rem;
    width: 100%;
    max-width: 900px;
    position: relative;
    z-index: 1;
    animation: fadeUp 0.8s 0.5s ease both;
  }

  .preview-card-large {
    width: 100%;
    perspective: 1000px;
  }

  .mockup-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 40px rgba(249,115,22,0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
  }

  .mockup-card:hover {
    border-color: var(--orange-border);
    transform: translateY(-8px) rotateX(2deg);
  }

  .mockup-card-header {
    padding: 0.75rem 1rem;
    background: #111113;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 0.5rem;
  }

  .mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
  .dot-red { background: #ff5f57; }
  .dot-yellow { background: #febc2e; }
  .dot-green { background: #28c840; }

  .mockup-url {
    flex: 1; background: #1a1a1e; border-radius: 6px;
    padding: 0.35rem 0.75rem; font-size: 0.7rem; color: var(--dimmed);
    text-align: center; font-family: 'DM Sans', sans-serif;
    max-width: 240px; margin: 0 auto;
  }

  .mockup-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
  }

  .mockup-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }

  .mockup-caption {
    padding: 0.75rem 1rem;
    background: #111113;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }

  .mockup-caption span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }

  .mockup-caption::before {
    content: '✦';
    font-size: 0.7rem;
    color: var(--orange);
  }

  /* ─── SECTION COMMONS ─── */
  section { padding: 100px 2rem; }
  .container { max-width: 1200px; margin: 0 auto; }

  .section-label {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-size: 0.78rem; font-weight: 600; color: var(--orange);
    letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 0.75rem;
  }

  .section-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800;
    letter-spacing: -0.025em; line-height: 1.15;
    margin-bottom: 1rem;
  }

  .section-subtitle {
    font-size: 1.05rem; color: var(--muted); max-width: 520px; line-height: 1.7;
  }

  /* ─── TRUST BADGE ─── */
  .hero-trust {
    display: inline-flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 1.1rem; border-radius: 100px;
    background: rgba(24,24,27,0.8); border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
    animation: fadeUp 0.6s 0.45s ease both;
  }

  .trust-google-logo { display: flex; align-items: center; }

  .trust-divider { width: 1px; height: 28px; background: var(--border-light); }

  .trust-rating { display: flex; flex-direction: column; align-items: center; gap: 0.1rem; }
  .trust-stars { color: #fbbc04; font-size: 0.75rem; letter-spacing: 1px; line-height: 1; }
  .trust-score { font-size: 0.85rem; font-weight: 700; line-height: 1; }

  .trust-label { display: flex; flex-direction: column; gap: 0.05rem; }
  .trust-label-main { font-size: 0.78rem; font-weight: 700; color: var(--text); line-height: 1.2; }
  .trust-label-sub { font-size: 0.68rem; color: var(--muted); line-height: 1.2; }

  /* ─── HERO TEMPLATE PREVIEWS ─── */
  .hero-previews {
    display: flex; gap: 1.25rem; justify-content: center;
    margin-top: 3rem; width: 100%; max-width: 900px;
    animation: fadeUp 0.8s 0.55s ease both;
  }

  .preview-card {
    flex: 1; max-width: 280px;
    display: flex; flex-direction: column; gap: 0.65rem;
  }

  .preview-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    transition: border-color 0.25s, transform 0.25s;
    /* placeholder — replace with <img> tag when ready */
    display: flex; align-items: center; justify-content: center;
    position: relative;
  }

  .preview-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .preview-placeholder-inner {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #1a1a1e 0%, #111113 100%);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 0.5rem;
  }

  .preview-placeholder-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--orange-dim); border: 1px solid var(--orange-border);
    display: flex; align-items: center; justify-content: center;
  }

  .preview-placeholder-text { font-size: 0.7rem; color: var(--dimmed); }

  .preview-title {
    font-family: 'Sora', sans-serif;
    font-size: 0.82rem; font-weight: 600;
    text-align: center; color: var(--muted);
  }

  /* ─── FEATURES GRID (replaces bento) ─── */
  #features { background: var(--bg); }

  .features-header { margin-bottom: 3.5rem; }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
  }

  .feature-item {
    background: var(--card);
    padding: 2rem 1.75rem;
    display: flex; flex-direction: column; gap: 1rem;
    position: relative; transition: background 0.25s;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .feature-item:nth-child(3n) { border-right: none; }
  .feature-item:nth-child(n+4) { border-bottom: none; }

  .feature-item:hover { background: #1c1c1f; }

  .feature-item::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0; transition: opacity 0.3s;
  }

  .feature-item:hover::after { opacity: 1; }

  .feature-svg-wrap {
    width: 46px; height: 46px; border-radius: 12px;
    background: var(--orange-dim); border: 1px solid var(--orange-border);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }

  .feature-svg-wrap svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  .feature-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.3rem;
  }

  .feature-desc { font-size: 0.86rem; color: var(--muted); line-height: 1.65; }

  /* ─── MARKET STATS ─── */
  #market { background: #0c0c0e; }

  .stats-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5px;
    border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden;
    margin-top: 3rem;
  }

  .stat-item {
    background: var(--card); padding: 2rem 1.5rem;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    border-right: 1px solid var(--border);
    position: relative; overflow: hidden;
  }

  .stat-item:last-child { border-right: none; }

  .stat-item::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange-border), transparent);
  }

  .stat-number {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800;
    letter-spacing: -0.04em; color: var(--orange);
    line-height: 1; margin-bottom: 0.4rem;
  }

  .stat-label {
    font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.25rem;
  }

  .stat-sub { font-size: 0.75rem; color: var(--dimmed); }

  .stats-source {
    text-align: center; margin-top: 1.25rem;
    font-size: 0.75rem; color: var(--dimmed);
  }

  /* ─── HOW IT WORKS (redesigned 4-col) ─── */
  #how-it-works { background: var(--bg); }

  .steps {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1px; margin-top: 3rem;
    border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden;
    position: relative;
  }

  .step {
    background: var(--card);
    display: flex; flex-direction: column; align-items: flex-start; text-align: left;
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--border);
    position: relative;
  }

  .step:last-child { border-right: none; }

  .step-svg-wrap {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--orange-dim); border: 1px solid var(--orange-border);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; flex-shrink: 0;
  }

  .step-svg-wrap svg { width: 22px; height: 22px; stroke: var(--orange); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

  .step-num {
    font-size: 0.72rem; font-weight: 700; color: var(--orange);
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.4rem;
  }

  .step-title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
  .step-text { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

  /* ─── EXAMPLES ─── */
  #examples { background: #0c0c0e; }

  .examples-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 3rem; }

  .example-card {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: all 0.3s; cursor: pointer;
    text-decoration: none; display: block; color: inherit;
  }

  .example-card:hover { border-color: var(--orange-border); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(249,115,22,0.1); }

  .example-screen {
    height: 200px; position: relative; overflow: hidden;
  }

  .example-screen-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Unique color themes per example */
  .ex-trabalhista .ex-hero-bg { background: linear-gradient(135deg, #1e3a5f 0%, #0c1a2e 100%); }
  .ex-familia .ex-hero-bg { background: linear-gradient(135deg, #1a2f20 0%, #0c1a10 100%); }
  .ex-imobiliario .ex-hero-bg { background: linear-gradient(135deg, #0c4a6e 0%, #082f49 100%); }

  .ex-fake-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.6rem 0.9rem;
    background: rgba(0,0,0,0.3);
  }
  .ex-fake-logo { width: 70px; height: 8px; background: rgba(255,255,255,0.7); border-radius: 4px; }
  .ex-fake-links { display: flex; gap: 0.4rem; }
  .ex-fake-link { width: 20px; height: 5px; background: rgba(255,255,255,0.3); border-radius: 2px; }

  .ex-hero-bg { height: 100%; display: flex; flex-direction: column; padding: 1rem; }
  .ex-hero-title { width: 65%; height: 9px; background: rgba(255,255,255,0.85); border-radius: 4px; margin-bottom: 0.4rem; }
  .ex-hero-sub { width: 45%; height: 6px; background: rgba(255,255,255,0.4); border-radius: 3px; margin-bottom: 0.75rem; }
  .ex-hero-btn { width: 70px; height: 22px; border-radius: 5px; }
  .ex-trabalhista .ex-hero-btn { background: #f97316; }
  .ex-familia .ex-hero-btn { background: #22c55e; }
  .ex-criminal .ex-hero-btn { background: #ef4444; }

  .example-info { padding: 1.1rem 1.25rem; }
  .example-category {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--orange); margin-bottom: 0.35rem;
  }
  .example-title {
    font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem;
  }
  .example-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

  /* ─── PRICING ─── */
  #pricing { background: #0c0c0e; }

  .pricing-wrapper { display: flex; justify-content: center; margin-top: 3rem; }

  .pricing-card {
    background: var(--card); border: 1px solid var(--orange-border);
    border-radius: 24px; padding: 2.5rem; max-width: 420px; width: 100%;
    position: relative; overflow: hidden;
    box-shadow: 0 0 60px rgba(249,115,22,0.12);
  }

  .pricing-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
  }

  .pricing-glow {
    position: absolute; top: -40px; left: 50%; transform: translateX(-50%);
    width: 300px; height: 200px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .pricing-plan { font-size: 0.78rem; font-weight: 700; color: var(--orange); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.5rem; }
  .pricing-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem; }
  .pricing-amount { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.35rem; }
  .pricing-currency { font-size: 1.2rem; font-weight: 700; color: var(--muted); }
  .pricing-value { font-family: 'Sora', sans-serif; font-size: 3.5rem; font-weight: 800; letter-spacing: -0.04em; }
  .pricing-period { font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }

  .pricing-divider { height: 1px; background: var(--border); margin-bottom: 1.5rem; }

  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
  .pricing-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; }
  .check-icon { width: 20px; height: 20px; border-radius: 50%; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.65rem; color: var(--orange); }

  .btn-pricing {
    width: 100%; padding: 0.9rem; border-radius: 10px;
    font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
    background: var(--orange); border: none; color: #fff; cursor: pointer;
    transition: all 0.25s; box-shadow: 0 0 30px rgba(249,115,22,0.35);
  }
  .btn-pricing:hover { background: var(--orange-dark); box-shadow: 0 0 50px rgba(249,115,22,0.5); transform: translateY(-1px); }

  /* ─── FAQ ─── */
  #faq { background: var(--bg); }

  .faq-list { margin-top: 3rem; max-width: 720px; display: flex; flex-direction: column; gap: 1px; }

  .faq-item {
    background: var(--card); border: 1px solid var(--border); border-radius: 12px;
    overflow: hidden; margin-bottom: 8px; transition: border-color 0.2s;
  }

  .faq-item:hover { border-color: var(--border-light); }
  .faq-item.open { border-color: var(--orange-border); }

  .faq-question {
    padding: 1.25rem 1.5rem; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 0.95rem;
  }

  .faq-chevron {
    width: 24px; height: 24px; border-radius: 6px;
    background: var(--orange-dim); border: 1px solid var(--orange-border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: transform 0.3s; font-size: 0.7rem; color: var(--orange);
  }

  .faq-item.open .faq-chevron { transform: rotate(180deg); }

  .faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s;
    font-size: 0.9rem; color: var(--muted); line-height: 1.7; padding: 0 1.5rem;
  }

  .faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.25rem; }

  /* ─── FINAL CTA ─── */
  #cta-final {
    background: var(--bg); padding: 100px 2rem;
    position: relative; overflow: hidden;
  }

  .cta-glow {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(249,115,22,0.2) 0%, transparent 65%);
    pointer-events: none;
  }

  .cta-inner {
    position: relative; z-index: 1;
    max-width: 640px; margin: 0 auto; text-align: center;
  }

  .cta-inner h2 {
    font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
    letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1.25rem;
  }

  .cta-inner p { color: var(--muted); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.7; }

  .cta-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.25rem; border-radius: 12px;
    font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 700;
    background: var(--orange); border: none; color: #fff; cursor: pointer;
    text-decoration: none; transition: all 0.25s;
    box-shadow: 0 0 50px rgba(249,115,22,0.5), 0 8px 30px rgba(0,0,0,0.3);
  }

  .cta-btn:hover { transform: translateY(-3px); box-shadow: 0 0 80px rgba(249,115,22,0.65), 0 12px 40px rgba(0,0,0,0.4); }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid var(--border);
    background: #080809;
  }

  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 3rem 2rem 2rem;
    display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: 3rem;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
  }

  .footer-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
  }

  .footer-logo span {
    font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.3rem;
    background: linear-gradient(135deg, #fff 40%, var(--orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
  }

  .footer-tagline { font-size: 0.85rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; max-width: 280px; }

  .footer-socials { display: flex; gap: 0.6rem; }

  .footer-social-link {
    width: 36px; height: 36px; border-radius: 8px;
    background: var(--card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); transition: all 0.2s; text-decoration: none;
  }

  .footer-social-link:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-dim); }

  .footer-col { display: flex; flex-direction: column; gap: 0.6rem; }

  .footer-col-title {
    font-family: 'Sora', sans-serif; font-size: 0.78rem; font-weight: 700;
    color: var(--text); letter-spacing: 0.06em; text-transform: uppercase;
    margin-bottom: 0.4rem;
  }

  .footer-link {
    font-size: 0.85rem; color: var(--muted); text-decoration: none;
    transition: color 0.2s;
  }

  .footer-link:hover { color: var(--orange); }

  .footer-contact-item {
    display: flex; align-items: center; gap: 0.5rem;
  }

  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding: 1.25rem 2rem;
    border-top: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 0.5rem;
    font-size: 0.78rem; color: var(--dimmed);
  }

  @media (max-width: 768px) {
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; padding: 1rem 1.5rem; }
  }

  /* ─── SOCIAL PROOF ─── */
  .sp-two-col {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    margin-bottom: 0;
  }

  .sp-map-col { position: relative; display: flex; flex-direction: column; align-items: center; }

  .brazil-map-img {
    width: 100%; max-width: 420px;
    border-radius: 16px;
    filter: drop-shadow(0 0 40px rgba(249,115,22,0.25));
  }

  @keyframes dot-pulse-anim {
    0% { r: 9; opacity: 0.4; }
    70% { r: 18; opacity: 0; }
    100% { r: 18; opacity: 0; }
  }

  .dot-pulse { animation: dot-pulse-anim 2.5s ease-out infinite; }

  .map-badge {
    margin-top: 1rem; display: flex; align-items: center; gap: 0.5rem;
    background: var(--orange-dim); border: 1px solid var(--orange-border);
    border-radius: 100px; padding: 0.4rem 1rem;
  }

  .map-badge-num {
    font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--orange);
  }

  .map-badge-label { font-size: 0.8rem; color: var(--muted); font-weight: 500; }

  .sp-copy-col { display: flex; flex-direction: column; gap: 0; }

  .sp-rating-block {
    background: var(--card); border: 1px solid var(--border);
    border-radius: 14px; padding: 1.25rem 1.5rem;
    display: flex; flex-direction: column; gap: 0.5rem;
  }

  .sp-rating-top {
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  }

  .sp-stars { color: #fbbc04; font-size: 1.1rem; letter-spacing: 2px; }

  .sp-score-text { font-size: 0.85rem; font-weight: 600; color: var(--muted); }
  .sp-score-text strong { color: var(--text); }

  .sp-rating-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
  .sp-rating-desc strong { color: var(--text); }

  /* ─── REVIEWS CAROUSEL ─── */
  .reviews-track-wrap {
    position: relative; overflow: hidden;
  }

  .reviews-track {
    display: flex; gap: 1.25rem;
    overflow-x: auto; scroll-behavior: smooth;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .reviews-track::-webkit-scrollbar { display: none; }

  .review-card {
    flex: 0 0 300px; min-width: 300px;
    background: #1c1c1f; border: 1px solid var(--border);
    border-radius: 16px; padding: 1.5rem;
    display: flex; flex-direction: column; gap: 0.75rem;
    transition: border-color 0.25s, transform 0.25s;
  }

  .review-card:hover { border-color: var(--border-light); transform: translateY(-2px); }

  .review-header { display: flex; align-items: center; justify-content: space-between; }

  .review-stars { color: #fbbc04; font-size: 0.88rem; letter-spacing: 1px; }

  .review-text {
    font-size: 0.9rem; color: var(--muted); line-height: 1.65;
    flex: 1;
  }

  .review-footer { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }

  .review-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--orange); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Sora', sans-serif; font-size: 0.85rem; font-weight: 700;
    flex-shrink: 0;
  }

  .review-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
  .review-date { font-size: 0.75rem; color: var(--dimmed); margin-top: 0.1rem; }

  .reviews-nav {
    display: flex; gap: 0.5rem; margin-top: 1.25rem; justify-content: flex-end;
  }

  .reviews-arrow {
    width: 38px; height: 38px; border-radius: 8px;
    background: var(--card); border: 1px solid var(--border);
    color: var(--text); cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
  }

  .reviews-arrow:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-dim); }

  @media (max-width: 768px) {
    .sp-two-col { grid-template-columns: 1fr; gap: 2.5rem; }
    .brazil-map-img { max-width: 280px; }
    .review-card { flex: 0 0 260px; min-width: 260px; }
  }

  /* ─── WHY SECTION ─── */
  .why-grid {
    display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px;
    border: 1.5px solid var(--border); border-radius: 20px; overflow: hidden;
  }
  .why-card {
    background: var(--card); padding: 2rem 1.75rem;
    border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    transition: background 0.2s;
  }
  .why-card:nth-child(3n) { border-right: none; }
  .why-card:nth-child(n+4) { border-bottom: none; }
  .why-card:hover { background: #1c1c1f; }
  .why-card--highlight { background: linear-gradient(135deg,#1a1a1e,#1e1a16); }
  .why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-dim); border: 1px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; flex-shrink: 0;
}
.why-icon svg { width: 22px; height: 22px; }
  .why-card h3 { font-family:'Sora',sans-serif; font-size:1rem; font-weight:700; margin-bottom:0.6rem; letter-spacing:-0.01em; }
  .why-card p { font-size:0.86rem; color:var(--muted); line-height:1.65; }

  /* ─── ESPECIALIDADES GRID ─── */
  .espec-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
  .espec-card {
    background:var(--card); border:1px solid var(--border); border-radius:16px; padding:1.75rem;
    display:flex; flex-direction:column; gap:0.6rem;
    text-decoration:none; color:var(--text); transition:all 0.25s;
  }
  .espec-card:hover { border-color:var(--orange-border); transform:translateY(-3px); box-shadow:0 12px 40px rgba(0,0,0,0.35),0 0 20px rgba(249,115,22,0.08); }
  .espec-card--cta { border-color:var(--orange-border); background:linear-gradient(135deg,#18181b,#1c1812); }
  .espec-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--orange-dim); border: 1px solid var(--orange-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.espec-icon svg { width: 20px; height: 20px; }
  .espec-card h3 { font-family:'Sora',sans-serif; font-size:0.95rem; font-weight:700; line-height:1.3; letter-spacing:-0.01em; }
  .espec-card p { font-size:0.82rem; color:var(--muted); line-height:1.6; flex:1; }
  .espec-cta { font-size:0.8rem; font-weight:700; color:var(--orange); margin-top:auto; }

  h3.example-title { font-family:'Sora',sans-serif; font-size:1rem; font-weight:700; margin-bottom:0.4rem; }

  @media (max-width:1024px) {
    .why-grid { grid-template-columns:repeat(2,1fr); }
    .why-card:nth-child(3n) { border-right:1px solid var(--border); }
    .why-card:nth-child(2n) { border-right:none; }
    .why-card:nth-child(n+5) { border-bottom:none; }
    .why-card:nth-child(3),.why-card:nth-child(4) { border-bottom:1px solid var(--border); }
    .espec-grid { grid-template-columns:repeat(2,1fr); }
  }
  @media (max-width:768px) {
    .why-grid { grid-template-columns:1fr; }
    .why-card { border-right:none !important; border-bottom:1px solid var(--border) !important; }
    .why-card:last-child { border-bottom:none !important; }
    .espec-grid { grid-template-columns:1fr; }
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* Fallback: if JS doesn't run or observer fails, show everything */
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .nav-links { display: none; }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .feature-item:nth-child(3n) { border-right: 1px solid var(--border); }
    .feature-item:nth-child(2n) { border-right: none; }
    .feature-item:nth-child(n+5) { border-bottom: none; }
    .feature-item:nth-child(3),
    .feature-item:nth-child(4) { border-bottom: 1px solid var(--border); }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .stat-item:nth-child(2) { border-right: none; }
    .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
    .stat-item:nth-child(3),
    .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
    .steps { grid-template-columns: repeat(2,1fr); }
    .step:nth-child(2) { border-right: none; }
    .step:nth-child(3) { border-right: 1px solid var(--border); border-top: 1px solid var(--border); }
    .step:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
    .hero-previews { flex-wrap: wrap; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 1rem; }
    .nav-actions .btn-outline { display: none; }
    .hero { padding: 100px 1.5rem 60px; }
    .examples-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .feature-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
    .feature-item:last-child { border-bottom: none !important; }
    .stats-grid { grid-template-columns: repeat(2,1fr); }
    .steps { grid-template-columns: 1fr; }
    .step { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
    .step:last-child { border-bottom: none !important; }
    .hero-previews { gap: 0.75rem; }
    .preview-card { max-width: 100%; flex: 0 0 calc(50% - 0.4rem); }
    section { padding: 70px 1.5rem; }
  }

  @media (max-width: 480px) {
    .preview-card { flex: 0 0 100%; }
    .stats-grid { grid-template-columns: 1fr; }
    .stat-item { border-right: none !important; border-bottom: 1px solid var(--border) !important; }
    .stat-item:last-child { border-bottom: none !important; }
  }