  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html, body { max-width: 100%; overflow-x: hidden; }

  :root {
    --green: #33D298;
    --green-dark: #25b882;
    --green-light: #e0f9f0;
    --navy: #0a0f1a;
    --navy-mid: #0d1525;
    --navy-card: #131c2e;
    --white: #ffffff;
    --gray: #6b7280;
    --gray-light: #f4f8f6;
    --text-dark: #061a14;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --font: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
  }

  /* Screen-reader only (acessibilidade + SEO) */
  .sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  html { scroll-behavior: smooth; }

  /* ── REVEAL / FADE SYSTEM ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    to { opacity: 1; }
  }
  /* Reveal ao rolar a página */
  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }
  @media (prefers-reduced-motion: reduce) {
    .reveal,
    .hero-badge, .hero-title, .hero-sub, .hero-actions, .scroll-hint {
      opacity: 1 !important;
      transform: none !important;
      animation: none !important;
      transition: none !important;
    }
  }

  body {
    font-family: var(--font-body);
    color: #fff;
    background: #000;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
  }
  /* Global background image wrapper — sits behind all non-hero sections */
  /* ── GLOBAL BACKGROUND ──
     FIXED: The background image scrolls naturally with the page.
     backdrop-filter on cards will correctly blur the image behind them
     as the user scrolls — making the green waves "pass through" the glass cards.
  */
  html {
    background: #000;
    position: relative;
  }
  body {
    position: relative;
    min-height: 100vh;
  }
  /* Page background — positioned on html so bottom:0 = end of full document */
  .page-bg {
    position: absolute;
    top: 100vh;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
    background: #000;
    filter: brightness(1.4) contrast(1.15);
    overflow: visible;
  }
  .page-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    min-height: 6977px;
    background: url('/backgroundv3.png') top center / auto 6977px no-repeat;
    opacity: 0.5;
  }
  /* Fallback radial glow */
  .page-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 50% 20%, rgba(0,255,150,0.05) 0%, transparent 55%),
      radial-gradient(ellipse at 50% 70%, rgba(0,255,150,0.03) 0%, transparent 50%);
    pointer-events: none;
  }


  /* ── SECTION PARTICLES OVERLAY ── */
  #sectionParticles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 2;
  }
  /* ── NAVBAR ── */
  nav {
    position: fixed;
    top: 16px; left: 50%; transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 48px);
    max-width: 1100px;
    background: rgba(8, 14, 22, 0.78);
    border: 1px solid rgba(120,255,210,0.4);
    border-radius: 999px;
    height: 51px;
    display: flex;
    align-items: center;
    padding: 0 6px 0 20px;
    backdrop-filter: blur(20px) saturate(160%) brightness(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(160%) brightness(1.1);
    box-shadow: 0 4px 32px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .nav-logo {
    width: 32px; height: 32px;
    background: var(--green);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .nav-logo-img {
    display: block;
    width: 32px; height: 32px;
    border-radius: 8px;
  }
  .nav-brand {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; flex-shrink: 0;
  }
  .nav-wordmark {
    font-family: var(--font);
    font-size: 16px; font-weight: 800;
    color: #fff; letter-spacing: -0.02em;
  }
  .nav-links {
    display: flex; gap: 28px;
    list-style: none;
    margin: 0 auto;
  }
  .nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-family: var(--font);
    font-size: 14px; font-weight: 500;
    transition: color .2s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: #fff; }
  .nav-actions {
    display: flex; align-items: center; gap: 8px;
    flex-shrink: 0;
  }
  .btn-ghost {
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,0.7);
    font-family: var(--font);
    font-size: 14px; font-weight: 500;
    padding: 8px 14px;
    transition: color .2s;
  }
  .btn-ghost:hover { color: #fff; }
  @keyframes btnGlowPulse {
    0%, 100% { box-shadow: 0 0 18px rgba(38,209,143,0.4), inset 0 1px 0 rgba(255,255,255,0.22); }
    50%       { box-shadow: 0 0 34px rgba(38,209,143,0.65), inset 0 1px 0 rgba(255,255,255,0.32); }
  }
  /* CTA buttons — Skeuomorphic Glass (Gemini spec) */
  @keyframes ctaGlow {
    0%, 100% { box-shadow: inset 0 1px 0 rgba(180,255,220,0.35), inset 0 -2px 4px rgba(0,0,0,0.25), 0 4px 18px rgba(0,0,0,0.4), 0 0 0 1px rgba(60,220,140,0.22), 0 0 14px rgba(60,220,140,0.18); }
    50%       { box-shadow: inset 0 1px 0 rgba(180,255,220,0.35), inset 0 -2px 4px rgba(0,0,0,0.25), 0 4px 18px rgba(0,0,0,0.4), 0 0 0 1px rgba(60,220,140,0.42), 0 0 26px rgba(60,220,140,0.35); }
  }
  .btn-primary {
    /* Gemini: vertical gradient simulating curvature from top light source */
    background: linear-gradient(180deg,
      #3dd99a 0%,     /* light green top — light source */
      #28bc82 35%,    /* mid green */
      #1ea06c 70%,    /* darker base */
      #187d56 100%    /* deepest edge */
    );
    color: #f0fff8;               /* off-white with green tint */
    text-shadow: 0 1px 2px rgba(0,0,0,0.2); /* Gemini: text drop shadow */
    border: none;
    border-radius: 10px;
    padding: 8px 20px;
    font-family: var(--font);
    font-size: 13px; font-weight: 800;
    cursor: pointer;
    transition: transform .15s, filter .15s;
    text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center;
    white-space: nowrap;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
    animation: ctaGlow 3.5s ease-in-out infinite;
  }
  /* Gemini: inner bevel — bright 1px line at top (light reflection on edge) */
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(180,255,220,0.65) 30%, rgba(255,255,255,0.55) 50%, rgba(180,255,220,0.65) 70%, transparent 100%);
    pointer-events: none;
    border-radius: 12px 12px 0 0;
  }
  /* Gemini: satin/glass overlay — central light reflection */
  .btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 52%;
    background: linear-gradient(180deg, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.03) 60%, transparent 100%);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
  }
  .btn-primary:hover {
    filter: brightness(1.08) saturate(1.1);
    transform: translateY(-2px);
    animation: none;
    box-shadow:
      inset 0 1px 0 rgba(180,255,220,0.4),
      inset 0 -2px 4px rgba(0,0,0,0.2),
      0 0 0 1px rgba(60,220,140,0.6),
      0 0 32px rgba(60,220,140,0.45),
      0 6px 20px rgba(0,0,0,0.45);
  }

  /* ── SECTIONS ── */
  section { scroll-margin-top: 96px; }

  /* ── HERO ── */
  #hero {
    position: relative;
    z-index: 1;
    background: #010e0b;
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 120px 24px 60px;
  }
  /* Dark scrim over hero canvas to increase contrast */
  #hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
    pointer-events: none;
    z-index: 1;
  }

  /* Fluid abstract background */
  .hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  /* Deep radial glow blobs */
  .hero-bg::before {
    content: '';
    position: absolute;
    width: 900px; height: 600px;
    left: -200px; top: -100px;
    background: radial-gradient(ellipse at 40% 50%, rgba(0,255,170,0.06) 0%, rgba(0,255,170,0.02) 45%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    animation: blobDrift1 14s ease-in-out infinite alternate;
  }
  .hero-bg::after {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    right: -150px; bottom: -100px;
    background: radial-gradient(ellipse at 60% 50%, rgba(0,255,170,0.05) 0%, transparent 65%);
    filter: blur(100px);
    border-radius: 50%;
    animation: blobDrift2 18s ease-in-out infinite alternate;
  }
  .hero-blob-mid {
    position: absolute;
    width: 500px; height: 400px;
    left: 55%; top: 30%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(0,255,170,0.04) 0%, transparent 65%);
    filter: blur(70px);
    animation: blobDrift3 20s ease-in-out infinite alternate;
  }
  @keyframes blobDrift1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 60px) scale(1.15); }
  }
  @keyframes blobDrift2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-70px, -50px) scale(1.2); }
  }
  @keyframes blobDrift3 {
    0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
    100% { transform: translate(-45%, -55%) scale(1.3); opacity: 1; }
  }

  /* SVG wave lines overlay */
  .hero-wave-svg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    opacity: 0.55;
  }

  /* Canvas for animated glow lines — new bgCanvas */
  #bgCanvas {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
  }

  /* Floating wave-line rings */
  .hero-wave-line {
    position: absolute;
    left: -10%;
    width: 120%;
    height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(0,255,170,0.18);
    filter: blur(1px);
    animation: floatWaveRing 9s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
  }
  .hero-wave-line.wave1 { top: 42%; transform: rotate(-6deg); }
  .hero-wave-line.wave2 { top: 50%; border-color: rgba(0,255,170,0.09); animation-duration: 13s; transform: rotate(3deg); }
  @keyframes floatWaveRing {
    0% { transform: translateX(-2%) translateY(0px) rotate(-4deg); }
    100% { transform: translateX(2%) translateY(-12px) rotate(4deg); }
  }

  /* Hero ambient glow blobs */
  .hero-waves-div {
    position: absolute; inset: 0; opacity: 0.9;
    background:
      radial-gradient(circle at 20% 40%, rgba(0,255,170,0.1), transparent 25%),
      radial-gradient(circle at 80% 65%, rgba(0,255,170,0.08), transparent 30%);
    filter: blur(4px);
    pointer-events: none; z-index: 0;
  }

  .hero-particles-div {
    position: absolute; inset: 0; overflow: hidden;
    pointer-events: none; z-index: 0;
  }
  .hero-particle {
    position: absolute;
    width: 4px; height: 4px;
    border-radius: 50%;
    background: rgba(100,255,210,0.8);
    box-shadow: 0 0 12px rgba(0,255,170,0.8);
    animation: particleFloat linear infinite;
  }
  @keyframes particleFloat {
    from { transform: translateY(0px); opacity: 0; }
    10% { opacity: 1; }
    to { transform: translateY(-120px); opacity: 0; }
  }

  .hero-wave {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
  }
  .wave-svg {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(3, 14, 10, 0.88);
    border: 1px solid rgba(99,255,198,0.28);
    border-radius: 999px;
    padding: 8px 17px;
    font-family: var(--font);
    font-size: 9px; font-weight: 700;
    color: #a7ffd7;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0;
    position: relative; z-index: 2;
    white-space: nowrap;
    max-width: 90vw;
    overflow: hidden;
    text-overflow: ellipsis;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.2s forwards;
  }
  @media (max-width: 480px) {
    .hero-badge { font-size: 9px; padding: 5px 12px; letter-spacing: 0.05em; }
  }
  .hero-badge::before {
    content: '';
    width: 10px; height: 10px;
    border-radius: 50%;
    background: #63ffc8;
    box-shadow: 0 0 14px #63ffc8;
    flex-shrink: 0;
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }
  .hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 4.6vw, 52px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    position: relative; z-index: 1;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
  }
  .hero-title .white-line { display: block; line-height: 1.2; padding-bottom: 0.05em; }
  .hero-title .green {
    display: block; line-height: 1.15;
    color: #63ffc8;
    -webkit-text-fill-color: #63ffc8;
    filter: drop-shadow(0 0 26px rgba(0,255,170,0.34));
    animation: glowPulseTitle 4s ease-in-out infinite alternate;
    padding-bottom: 0.08em;
    overflow: visible;
  }
  @keyframes glowPulseTitle {
    0% { filter: drop-shadow(0 0 18px rgba(0,255,170,0.25)); }
    100% { filter: drop-shadow(0 0 40px rgba(0,255,170,0.65)); }
  }
  .hero-sub {
    color: rgba(255,255,255,0.72);
    font-size: clamp(11px, 1.07vw, 13px);
    max-width: 504px;
    margin: 20px auto 30px;
    position: relative; z-index: 1;
    line-height: 1.8;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.6s forwards;
  }
  .hero-actions {
    display: flex; gap: 16px; justify-content: center;
    position: relative; z-index: 1;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
  }
  .btn-hero-primary {
    background: linear-gradient(180deg, #63ffc6 0%, #26d18f 100%);
    color: #032216; border: none; border-radius: 15px;
    padding: 11px 22px;
    font-family: var(--font);
    font-size: 13px; font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .25s, box-shadow .25s;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 36px rgba(0,255,170,0.28);
  }
  .btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 60px rgba(0,255,170,0.48);
  }
  .btn-hero-outline {
    background: rgba(255,255,255,0.04);
    color: #fff;
    border: 1px solid rgba(120,255,210,0.4);
    border-radius: 15px;
    padding: 11px 22px;
    font-family: var(--font);
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: border-color .25s, background .25s, transform .25s;
    backdrop-filter: blur(12px);
  }
  .btn-hero-outline:hover {
    border-color: rgba(120,255,210,0.7);
    background: rgba(255,255,255,0.08);
    transform: translateY(-4px);
  }
  .scroll-hint {
    position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
    color: rgba(255,255,255,0.35);
    font-size: 12px; font-weight: 500;
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    z-index: 15;
    letter-spacing: 0.05em;
    pointer-events: none;
    opacity: 0;
    animation: fadeIn 1s ease 1.2s forwards;
  }
  @media (max-height: 700px) { .scroll-hint { display: none; } }
  .scroll-arrow {
    width: 18px; height: 18px;
    border-right: 2px solid rgba(255,255,255,0.3);
    border-bottom: 2px solid rgba(255,255,255,0.3);
    transform: rotate(45deg);
    animation: bounce 1.8s infinite;
    margin-top: -4px;
  }
  @keyframes bounce {
    0%,100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(5px); }
  }


  /* ── HERO GLASS CARD ── */
  .hero-glass-card {
    position: relative;
    z-index: 15;
    width: 688px;
    max-width: 88%;
    padding: 0 42px 34px;
    padding-top: 0;
    border-radius: 22px;
    background: rgba(255,255,255,0.035);
    border: 1px solid rgba(255,255,255,0.13);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    text-align: center;
    box-shadow:
      0 0 80px rgba(0,0,0,0.28),
      inset 0 1px 0 rgba(255,255,255,0.07),
      inset 0 -1px 0 rgba(0,0,0,0.12);
    /* Badge straddles the top border — it sits at the very top */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  /* Top shimmer line — only on sides, stops at badge center to not cross pill text */
  .hero-glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    /* Fade to transparent in the center 30% so it hides behind the badge */
    background: linear-gradient(90deg,
      transparent 0%,
      rgba(255,255,255,0.2) 15%,
      rgba(255,255,255,0.18) 34%,
      transparent 40%,
      transparent 60%,
      rgba(255,255,255,0.18) 66%,
      rgba(255,255,255,0.2) 85%,
      transparent 100%
    );
    border-radius: 1px;
    pointer-events: none;
  }
  @media (max-width: 768px) {
    .hero-glass-card { padding: 0 17px 24px; max-width: 94%; }
  }
  /* Badge sits half above the card border */
  .hero-glass-card .hero-badge {
    margin-top: -19px;   /* pulls badge up so center aligns with card top border */
    margin-bottom: 32px;
  }
  /* Content area below badge gets top padding */
  .hero-glass-card .hero-title {
    margin-top: 0;
  }

  /* ── RECURSOS ── */
  #recursos {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 100px 24px 120px;
    position: relative;
  }
  #recursos > * { position: relative; z-index: 1; }
  .section-inner {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
  }
  .section-label {
    font-family: var(--font);
    font-size: 12px; font-weight: 700;
    color: #63ffc8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .section-title {
    font-family: var(--font);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .section-sub {
    color: rgba(255,255,255,0.55);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.65;
  }
  .section-head { text-align: center; margin-bottom: 48px; }
  .features-grid-wrap {
    position: relative;
    padding-bottom: 48px;
  }
  .features-grid-wrap::before {
    content: '';
    position: absolute;
    left: -10%; right: -10%;
    top: 55%; bottom: -5%;
    background: 
      radial-gradient(ellipse at 50% 50%, rgba(0,255,170,0.06) 0%, transparent 60%),
      radial-gradient(ellipse at 20% 50%, rgba(0,255,170,0.03) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 50%, rgba(0,255,170,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    filter: blur(30px);
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
  }
  .features-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }
  @media (max-width: 600px) { .features-grid-2col { grid-template-columns: 1fr; } }
  .feature-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(120,255,210,0.65);
    border-radius: 20px;
    padding: 30px 26px 28px;
    transition: box-shadow .35s, transform .28s, border-color .3s, background .3s;
    backdrop-filter: blur(18px) saturate(200%) brightness(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(200%) brightness(1.15);
    position: relative;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.06),
      inset 0 1px 0 rgba(255,255,255,0.09),
      0 4px 24px rgba(0,0,0,0.35);
  }
  /* Gradiente radial no topo — reflexo de vidro */
  .feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 55%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
    z-index: 0;
  }
  .feature-card > * { position: relative; z-index: 1; }
  #recursos { background: transparent; }
  #recursos .feature-card {
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(120,255,210,0.65);
    backdrop-filter: blur(18px) saturate(200%) brightness(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(200%) brightness(1.15);
  }
  .feature-card:hover {
    box-shadow: 0 0 0 1px rgba(255,255,255,0.14), 0 16px 48px rgba(0,0,0,0.45), 0 0 40px rgba(0,255,170,0.1);
    transform: translateY(-5px);
    border-color: rgba(120,255,210,0.9);
    background: rgba(0, 0, 0, 0.65);
  }
  .feature-icon {
    width: 48px; height: 48px;
    background: rgba(99,255,198,0.16);
    border: 1px solid rgba(99,255,198,0.45);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
    font-size: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      0 0 24px rgba(0,255,170,0.18),
      inset 0 1px 0 rgba(99,255,198,0.4),
      inset 0 -1px 0 rgba(0,0,0,0.15);
    position: relative;
  }
  /* inner glow on icon */
  .feature-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 13px;
    background: radial-gradient(circle at 50% 0%, rgba(99,255,198,0.28) 0%, transparent 70%);
    pointer-events: none;
  }
  .feature-card h3 {
    font-family: var(--font);
    font-size: 15px; font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .feature-card p {
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }


  /* ── SPLIT FEATURE ROWS (image 2 style) ── */
  .split-section {
    padding: 64px 0;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-top: 0;
  }
  .split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 88px;
    align-items: center;
    max-width: 1380px;
    margin: 0 auto;
    overflow: visible;
    padding: 0 24px;
  }
  .split-row.reverse { direction: rtl; }
  .split-row.reverse > * { direction: ltr; }
  @media (max-width: 768px) {
    .split-row { grid-template-columns: 1fr; gap: 32px; direction: ltr; padding: 0 16px; overflow: hidden; }
    .split-row.reverse { direction: ltr; }
  }
  .split-text { display: flex; flex-direction: column; gap: 16px; overflow: visible; }
  @media (max-width: 768px) {
    .split-text { overflow: hidden; }
  }
  .split-label {
    font-family: var(--font);
    font-size: 11px; font-weight: 700;
    color: #63ffc8;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }
  .split-title {
    font-family: var(--font);
    font-size: clamp(24px, 3.2vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.4;
    letter-spacing: -0.02em;
    overflow: visible;
    word-break: normal;
    padding-bottom: 0;
    clip-path: none;
    -webkit-mask: none;
    mask: none;
  }
  @media (max-width: 768px) {
    .split-title { overflow: hidden; word-break: break-word; }
  }
  .split-title em {
    font-style: italic;
    /* Use color instead of bg-clip to avoid any clipping artifacts */
    color: #63ffc8;
    display: inline;
    overflow: visible;
    -webkit-text-fill-color: #63ffc8;
    background: none;
    background-clip: unset;
    -webkit-background-clip: unset;
  }
  .split-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
  }
  .split-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: #63ffc8;
    font-family: var(--font);
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    margin-top: 8px;
    transition: gap .2s, opacity .2s;
    width: fit-content;
  }
  .split-link:hover { gap: 10px; opacity: 0.85; }
  .split-visual {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    width: 780px;
    max-width: 100%;
    height: 510px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    z-index: 3;
    isolation: isolate;
  }
  @media (max-width: 768px) {
    .split-visual { width: 100%; height: 300px; min-height: 300px; }
    .split-visual img { width: 100%; height: 100%; object-fit: cover; }
    .split-visual picture { display: block; width: 100%; height: 100%; }
    .split-visual picture img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
  }
  .split-visual img,
  .split-visual picture,
  .split-visual picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .split-visual picture {
    display: block;
    width: 100%;
    height: 100%;
  }
  /* Dark glass mock when no real image */
  .split-visual-mock {
    width: 100%;
    height: 100%;
    min-height: 260px;
    background: rgba(255,255,255,0.03);
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .split-visual-mock::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(0,255,170,0.07) 0%, transparent 65%);
  }
  /* AI assistant mock card */
  .ai-mock {
    background: rgba(10,20,30,0.85);
    border: 1px solid rgba(100,255,210,0.18);
    border-radius: 16px;
    padding: 20px 24px;
    width: 85%;
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .ai-mock-label {
    font-size: 9px; font-weight: 700; letter-spacing: 0.1em;
    color: #63ffc8; text-transform: uppercase; margin-bottom: 14px;
  }
  .ai-mock-msg {
    background: rgba(255,255,255,0.06);
    border-radius: 10px; padding: 12px 14px;
    font-size: 13px; color: rgba(255,255,255,0.8);
    line-height: 1.5; margin-bottom: 10px;
  }
  .ai-mock-msg strong { color: #63ffc8; }
  .ai-mock-reply {
    background: rgba(99,255,198,0.08);
    border: 1px solid rgba(99,255,198,0.2);
    border-radius: 10px; padding: 10px 14px;
    font-size: 13px; color: rgba(255,255,255,0.65);
    line-height: 1.5;
  }


  /* WhatsApp chat mock */
  .wa-visual {
    background: rgba(224,245,235,0.07) !important;
    border-color: rgba(100,255,180,0.15) !important;
  }
  .wa-chat-mock {
    width: 85%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 8px 0;
  }
  .wa-msg-you, .wa-msg-finnly {
    border-radius: 16px;
    padding: 12px 16px;
    font-size: 14px;
    line-height: 1.5;
  }
  .wa-msg-you {
    background: rgba(255,255,255,0.9);
    color: #1a2e22;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    max-width: 78%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }
  .wa-msg-finnly {
    background: linear-gradient(135deg, #25d366 0%, #1aad76 100%);
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    max-width: 88%;
    box-shadow: 0 2px 8px rgba(37,211,102,0.3);
    font-weight: 500;
  }
  .wa-who {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
    opacity: 0.6;
  }
  /* CTA row with link + badge button */
  .split-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 8px;
  }
  .split-badge-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99,255,198,0.08);
    border: 1px solid rgba(99,255,198,0.3);
    border-radius: 12px;
    padding: 10px 18px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: background .2s, border-color .2s;
    backdrop-filter: blur(8px);
  }
  .split-badge-btn:hover {
    background: rgba(99,255,198,0.14);
    border-color: rgba(99,255,198,0.5);
  }
  .split-badge-btn svg { color: #63ffc8; }


  .split-check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 4px 0 8px;
  }
  .split-check-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .split-check-list .check { color: #63ffc8; font-weight: 700; flex-shrink: 0; }

  /* ── DASHBOARD CAROUSEL ── */
  .dashboard-carousel-wrap {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    background: none;
    border: none;
    overflow: visible;
    height: auto !important;
  }
  .dash-carousel {
    position: relative;
    width: 100%;
    height: 510px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
  }
  .dash-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
  }
  .dash-slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  .dash-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 0;
    flex-shrink: 0;
  }
  .dash-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .dash-dot.active {
    background: #63ffc8;
    transform: scale(1.2);
  }

  /* ── DARF CAROUSEL ── */
  .darf-carousel-wrap {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    background: none;
    border: none;
    overflow: visible;
    height: auto !important;
  }
  .darf-carousel {
    position: relative;
    width: 100%;
    height: 510px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    flex-shrink: 0;
  }
  .darf-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
  }
  .darf-slide.active {
    opacity: 1;
    pointer-events: auto;
  }
  .darf-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 8px 0 0;
    flex-shrink: 0;
  }
  .darf-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    cursor: pointer;
    transition: background .2s, transform .2s;
  }
  .darf-dot.active {
    background: #63ffc8;
    transform: scale(1.2);
  }
  /* WhatsApp carousel — imagens horizontais, não cortar laterais */
  /* WhatsApp carousel — proporção corrigida nas imagens */
  #waCarousel .dash-slide {
    object-fit: cover;
    object-position: center center;
  }

  /* Mobile adjustments for new carousels */
  @media (max-width: 768px) {
    .dashboard-carousel-wrap,
    .darf-carousel-wrap {
      width: 100%;
    }
    .dash-carousel,
    .darf-carousel {
      height: 300px;
    }
  }

  /* Desktop carousel height */
  @media (min-width: 769px) {
    .dash-carousel,
    .darf-carousel {
      height: 510px;
    }
  }
  .wa-carousel-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    background: none;
    border: none;
    overflow: visible;
    height: auto !important;
  }
  .wa-carousel { position: relative; width: 100%; overflow: hidden; border-radius: 16px; }
  .wa-slide { width: 100%; display: none; border-radius: 16px; }
  .wa-slide.active { display: block; animation: fadeSlide .4s ease; }
  .wa-slide img { width: 100%; object-fit: cover; border-radius: 16px; display: block; }
  @keyframes fadeSlide { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: translateX(0); } }
  .wa-dots { display: flex; justify-content: center; gap: 8px; }
  .wa-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.25); cursor: pointer; transition: background .2s; }
  .wa-dot.active { background: #63ffc8; }
  /* ── PREÇOS ── */

  /* ─── PRICING: GLASSMORPHISM NEON (Gemini spec) ─── */

  /* Wrapper container for head + grid overlap */
  .pricing-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    position: relative;
    padding: 0 16px;
  }

  /* Header glass — wide card, overlaps into the pricing grid */
  .pricing-head-glass {
    background: rgba(8, 16, 12, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: none;
    border-radius: 20px 20px 0 0;
    padding: 52px 80px 100px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: -60px;
    margin-left: 48px;
    margin-right: 48px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    max-width: calc(100% - 96px);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,0.15),
      0 0 0 1px rgba(255,255,255,0.04);
  }
  @media (max-width: 768px) {
    .pricing-head-glass { padding: 36px 24px 80px; }
  }
  /* Reflexo de vidro no topo do header */
  .pricing-head-glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.25) 30%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.25) 70%, transparent 95%);
    pointer-events: none;
  }
  .pricing-head-glass::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.06) 0%, transparent 65%);
    pointer-events: none;
    border-radius: 20px 20px 0 0;
  }
  .pricing-head-glass > * { position: relative; z-index: 1; }
  .pricing-head-glass .section-title { margin-bottom: 14px; font-size: clamp(28px, 4vw, 48px); color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }

  #preco {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 100px 24px;
  }
  #preco .section-label { text-align: center; }
  #preco .section-title { color: #fff; text-align: center; }
  #preco .section-sub { color: #ccc; text-align: center; max-width: 520px; margin: 0 auto; text-shadow: 0 2px 4px rgba(0,0,0,0.9); }

  .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
    align-items: stretch;
  }
  @media (max-width: 800px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

  /* BASE CARD — fundo escuro sólido, bordas luminosas nítidas */
  .pricing-card {
    background: rgba(8, 16, 12, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 42px 28px 32px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 520px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color .3s, box-shadow .3s, transform .25s;
    overflow: visible;
    box-shadow:
      inset 0 1px 0px rgba(255, 255, 255, 0.22),
      0 4px 30px rgba(0,0,0,0.5);
  }
  /* Linha de luz nítida no topo — quina de vidro */
  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    pointer-events: none;
    z-index: 2;
  }
  /* Gradiente radial interno — reflexo de vidro sutil */
  .pricing-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 18px 18px 0 0;
    z-index: 0;
  }
  .pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
    box-shadow:
      inset 0 1px 0px rgba(255, 255, 255, 0.35),
      0 8px 48px rgba(0,0,0,0.55);
    transform: translateY(-5px);
  }

  /* POPULAR CARD — borda esmeralda viva, glow verde forte */
  .pricing-card.popular {
    background: rgba(4, 20, 12, 0.9);
    border: 1px solid rgba(0, 255, 170, 0.45);
    border-radius: 18px;
    padding-top: 42px;
    overflow: visible;
    backdrop-filter: blur(10px) brightness(1.15);
    -webkit-backdrop-filter: blur(10px) brightness(1.15);
    box-shadow:
      inset 0 1px 0px rgba(0, 255, 170, 0.5),
      inset 0 0 40px rgba(0, 255, 130, 0.04),
      0 0 40px rgba(0, 255, 170, 0.15),
      0 4px 30px rgba(0,0,0,0.5);
  }
  /* Linha de luz esmeralda no topo do Popular */
  .pricing-card.popular::before {
    background: linear-gradient(90deg, transparent, rgba(0,255,170,0.6), transparent);
  }
  /* Reflexo verde no topo do Popular */
  .pricing-card.popular::after {
    background: radial-gradient(ellipse at 50% 0%, rgba(0,255,170,0.06) 0%, transparent 65%);
  }
  @keyframes popularGlow {
    0%, 100% {
      box-shadow:
        inset 0 1px 0px rgba(0, 255, 170, 0.5),
        inset 0 0 40px rgba(0, 255, 130, 0.04),
        0 0 40px rgba(0, 255, 170, 0.15),
        0 4px 30px rgba(0,0,0,0.5);
      border-color: rgba(0, 255, 170, 0.45);
    }
    50% {
      box-shadow:
        inset 0 1px 0px rgba(0, 255, 170, 0.7),
        inset 0 0 50px rgba(0, 255, 130, 0.07),
        0 0 65px rgba(0, 255, 170, 0.25),
        0 4px 30px rgba(0,0,0,0.5);
      border-color: rgba(0, 255, 170, 0.65);
    }
  }
  .pricing-card.popular { animation: popularGlow 4.5s ease-in-out infinite; }
  .pricing-card.popular:hover {
    transform: translateY(-6px);
    animation: none;
    border-color: rgba(0, 255, 170, 0.75);
    box-shadow:
      inset 0 1px 0px rgba(0, 255, 170, 0.75),
      inset 0 0 50px rgba(0, 255, 130, 0.08),
      0 0 70px rgba(0, 255, 170, 0.3),
      0 8px 48px rgba(0,0,0,0.55);
  }

  /* POPULAR BADGE — centred exactly on top border line */
  .popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);   /* -50% vertical = half badge height, sits on border */
    background: #ffffff;
    color: #0a1a12;
    font-family: var(--font);
    font-size: 10px; font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 16px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,255,150,0.25);
    z-index: 20;
    width: max-content;
  }

  .pricing-card > * { position: relative; z-index: 1; }
  .pricing-name {
    font-family: var(--font);
    font-size: 20px; font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
  }
  .pricing-price {
    font-family: var(--font);
    font-size: 44px; font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
  }
  .pricing-price span {
    font-size: 16px; font-weight: 500;
    color: rgba(255,255,255,0.5);
  }
  .pricing-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin: 14px 0 24px;
    line-height: 1.6;
  }

  /* FEATURES LIST */
  .pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex: 1;
  }
  .pricing-features li {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    padding: 7px 0;
    display: flex; align-items: flex-start; gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .pricing-features li:last-child { border-bottom: none; }
  .pricing-features li.off { color: rgba(255,255,255,0.35); }
  .check { color: #00ff96; font-weight: 700; font-size: 14px; flex-shrink: 0; }
  .pricing-card.popular .check { color: #00ff96; }
  .cross { color: rgba(255,255,255,0.3); font-size: 14px; flex-shrink: 0; }

  /* BUTTONS */
  .btn-pricing {
    display: block;
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 12px; font-weight: 700;
    cursor: pointer;
    transition: border-color .25s, background .25s, box-shadow .25s, transform .15s;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: #fff;
    text-decoration: none;
    text-align: center;
  }
  .btn-pricing:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-1px);
    box-shadow: 0 0 16px rgba(99,255,198,0.12);
  }
  /* PRO button */
  .btn-pricing.cta {
    background: rgba(0, 255, 170, 0.08);
    color: #fff;
    border: 1px solid rgba(0, 255, 170, 0.5);
    font-weight: 700;
    text-decoration: none;
  }
  .btn-pricing.cta:hover {
    background: rgba(0, 255, 170, 0.15);
    border-color: rgba(0, 255, 170, 0.8);
    box-shadow: 0 0 22px rgba(0, 255, 170, 0.3);
    transform: translateY(-2px);
  }

  /* ── FAQ ── */
  #faq {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 100px 24px;
    position: relative;
  }
  #faq > * { position: relative; z-index: 1; }
  #faq .section-head { margin-bottom: 48px; }
  .faq-list {
    max-width: 720px;
    margin: 0 auto 40px;
  }
  .faq-item {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .2s;
    background: rgba(255,255,255,0.03);
  }
  .faq-item.open { border-color: rgba(100,255,210,0.35); }
  .faq-question {
    width: 100%;
    background: none; border: none;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    font-family: var(--font);
    font-size: 15px; font-weight: 600;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    text-align: left;
    gap: 16px;
  }
  .faq-icon {
    width: 24px; height: 24px;
    flex-shrink: 0;
    color: rgba(255,255,255,0.4);
    font-size: 20px;
    line-height: 1;
    transition: transform .25s;
    display: flex; align-items: center; justify-content: center;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); color: #63ffc8; }
  .faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease, padding .3s;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    padding: 0 24px;
  }
  .faq-item.open .faq-answer { max-height: 600px; padding: 0 24px 20px; }
  .faq-footer {
    text-align: center;
    font-size: 15px;
    color: rgba(255,255,255,0.45);
  }
  .faq-footer a { color: #63ffc8; font-weight: 600; text-decoration: none; }
  .faq-footer a:hover { text-decoration: underline; }

  /* ── BLOG ── */
  #blog {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 100px 24px;
    position: relative;
  }
  #blog > * { position: relative; z-index: 1; }
  .blog-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 48px;
    gap: 16px;
    flex-wrap: wrap;
  }
  .blog-head .left .section-label { margin-bottom: 10px; }
  .blog-head .left .section-title { text-align: left; margin-bottom: 0; }
  .blog-more {
    color: #63ffc8;
    font-family: var(--font);
    font-size: 14px; font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    display: flex; align-items: center; gap: 6px;
    margin-top: 8px;
    transition: gap .2s;
  }
  .blog-more:hover { gap: 10px; }
  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1380px;
    margin: 0 auto;
    align-items: stretch;
  }
  @media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }
  .blog-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(100,255,210,0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    display: flex;
    flex-direction: column;
  }
  .blog-content {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .blog-card p {
    flex: 1;
  }
  .blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,255,170,0.1);
    border-color: rgba(100,255,210,0.25);
  }
  .blog-img {
    width: 100%; height: 200px;
    object-fit: cover;
    background: rgba(100,255,210,0.05);
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
  }
  .blog-content { padding: 24px; display: flex; flex-direction: column; flex: 1; }
  .blog-cat {
    font-family: var(--font);
    font-size: 11px; font-weight: 700;
    color: #63ffc8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .blog-card h3 {
    font-family: var(--font);
    font-size: 16px; font-weight: 700;
    color: rgba(255,255,255,0.9);
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .blog-card p {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
  }

  /* ── CONTATO ── */
  #contato {
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 100px 24px;
    position: relative;
  }
  #contato > * { position: relative; z-index: 1; }
  .contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 64px;
    align-items: stretch;
    padding: 0 24px;
  }
  @media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; padding: 0 16px; } }
  .contact-info .section-label { margin-bottom: 14px; }
  .contact-info h2 {
    font-family: var(--font);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
  }
  .contact-info p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 36px;
  }
  .contact-detail {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 24px;
  }
  .contact-icon {
    width: 40px; height: 40px;
    background: rgba(100,255,210,0.08);
    border: 1px solid rgba(100,255,210,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-detail-text label {
    font-family: var(--font);
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 2px;
  }
  .contact-detail-text span {
    font-family: var(--font);
    font-size: 15px; font-weight: 600;
    color: rgba(255,255,255,0.85);
  }
  /* Form */
  .contact-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(100,255,210,0.12);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  @media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
  .form-group { display: flex; flex-direction: column; gap: 6px; }
  .form-group label {
    font-family: var(--font);
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .form-group input, .form-group textarea {
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    outline: none;
    transition: border-color .2s;
    resize: none;
    background: rgba(255,255,255,0.05);
  }
  .form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
  .form-group input:focus, .form-group textarea:focus { border-color: rgba(100,255,210,0.5); }
  .form-group.full { margin-bottom: 16px; }
  .char-count {
    text-align: right;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 20px;
  }
  .btn-send {
    width: 100%;
    background: linear-gradient(180deg, #63ffc6 0%, #26d18f 100%);
    color: #032216; border: none;
    border-radius: 10px;
    padding: 16px;
    font-family: var(--font);
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    transition: opacity .2s, transform .15s;
  }
  .btn-send:hover { opacity: 0.9; transform: translateY(-1px); }

  /* ── CTA BANNER ── */
  .cta-banner {
    position: relative;
    z-index: 1;
    background: rgba(6,10,16,0.92);
    padding: 60px 40px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    overflow: hidden;
  }
  @media (max-width: 768px) {
    .cta-banner { padding: 48px 24px; flex-direction: column; align-items: flex-start; }
    .cta-banner .btn-primary { width: 100%; justify-content: center; padding: 14px; font-size: 15px; }
  }
  .cta-banner h2,
  .cta-banner-title {
    font-family: var(--font);
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
  }
  .cta-banner p {
    color: rgba(255,255,255,0.5);
    font-size: 15px;
  }
  .cta-banner .btn-primary { padding: 14px 28px; font-size: 15px; white-space: nowrap; }

  /* ── FOOTER ── */
  footer {
    position: relative;
    z-index: 1;
    background: #090f18;
    padding: 60px 40px 36px;
    border-top: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
  }
  @media (max-width: 768px) {
    footer { padding: 48px 20px 32px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: 1 / -1; }
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
  }
  @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

  @media (max-width: 768px) { .wa-grid { grid-template-columns: 1fr !important; } }
  @media (max-width: 900px) and (min-width: 769px) { .wa-grid { grid-template-columns: repeat(2,1fr) !important; } }

  /* ── MOBILE (768px e abaixo) ── */
  @media (max-width: 768px) {
    /* Nav — hide all links on very small screens, keep logo + cta */
    nav { padding: 0 8px 0 12px; top: 10px; width: calc(100% - 24px); max-width: calc(100% - 24px); }
    .nav-glow-wrap { top: 10px; width: calc(100% - 24px); max-width: calc(100% - 24px); }
    .nav-inner { gap: 0; justify-content: space-between; }
    .nav-wordmark { display: none; }
    .nav-links { display: flex; gap: 12px; margin: 0; }
    .nav-links a { font-size: 12px; }
    .nav-links li { display: none; }
    .nav-links li:nth-child(1),
    .nav-links li:nth-child(2) { display: list-item; }
    .nav-actions { gap: 8px; }
    .btn-ghost { padding: 6px 8px; font-size: 12px; }
    .btn-primary { padding: 8px 14px; font-size: 12px; white-space: nowrap; }

    /* Hero */
    #hero { padding: 110px 20px 50px; overflow: hidden; }
    .hero-title { font-size: clamp(30px, 9vw, 48px); }
    .hero-sub { font-size: 14px; margin: 18px auto 28px; max-width: 100%; }
    .hero-glass-card { padding: 0 16px 24px; max-width: 96%; }
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      padding: 0 4px;
    }
    .btn-hero-primary, .btn-hero-outline {
      width: 100%;
      justify-content: center;
      padding: 13px 20px;
      font-size: 14px;
    }

    /* Sections */
    #recursos, #preco, #faq, #blog, #contato { padding: 72px 0; }
    .section-inner { padding: 0 16px; }
    .split-section { padding: 56px 0; }

    /* Pricing */
    .pricing-head-glass { padding: 36px 24px 80px; max-width: 96%; }
    .pricing-wrapper { padding: 0 8px; }

    /* Blog */
    .blog-head { padding: 0 4px; }
    .blog-grid { padding: 0 4px; }

    /* Feature cards */
    .feature-card { padding: 24px 20px 22px; }

    /* Split check list */
    .split-check-list li { font-size: 13px; }
    .split-cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  }
  .footer-brand .nav-logo { margin-bottom: 16px; }
  .footer-brand p {
    color: rgba(255,255,255,0.45);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 200px;
  }
  .footer-social {
    width: 36px; height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 16px;
    transition: border-color .2s, color .2s;
  }
  .footer-social:hover { border-color: #63ffc8; color: #63ffc8; }
  .footer-col h4 {
    font-family: var(--font);
    font-size: 11px; font-weight: 700;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
  }
  .footer-col ul li a:hover { color: #fff; }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 24px;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
  }
  .footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 13px;
  }
  .status-dot {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.4);
    font-size: 13px;
  }
  .status-dot::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
  }

  .btn-ver-artigos {
    display: inline-flex; align-items: center; gap: 8px;
    /* Same Skeuomorphic Glass as btn-primary */
    background: linear-gradient(180deg, #3dd99a 0%, #28bc82 35%, #1ea06c 70%, #187d56 100%);
    color: #f0fff8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    font-family: var(--font);
    font-size: 14px; font-weight: 800;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 12px;
    transition: filter .15s, transform .15s, gap .2s;
    white-space: nowrap;
    margin-top: 4px;
    position: relative;
    overflow: hidden;
    animation: ctaGlow 3.5s ease-in-out infinite;
  }
  .btn-ver-artigos:hover { filter: brightness(1.08); transform: translateY(-2px); gap: 12px; animation: none; box-shadow: inset 0 1px 0 rgba(180,255,220,0.4), 0 0 0 1px rgba(60,220,140,0.6), 0 0 32px rgba(60,220,140,0.45), 0 6px 20px rgba(0,0,0,0.45); }
  .btn-ver-artigos::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(180,255,220,0.65) 30%, rgba(255,255,255,0.55) 50%, rgba(180,255,220,0.65) 70%, transparent);
    pointer-events: none;
    border-radius: 12px 12px 0 0;
  }
  .btn-ver-artigos::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 52%;
    background: linear-gradient(180deg, rgba(255,255,255,0.13) 0%, transparent 100%);
    border-radius: 12px 12px 0 0;
    pointer-events: none;
  }

  /* ── SCREENSHOTS ── */
  .screenshots-wrap {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .screenshots-label {
    text-align: center;
    font-family: var(--font);
    font-size: 12px; font-weight: 700;
    color: #63ffc8;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .screenshots-title {
    text-align: center;
    font-family: var(--font);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 48px;
    line-height: 1.2;
  }
  .screenshots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  @media (max-width: 768px) { .screenshots-grid { grid-template-columns: 1fr; } }
  .screenshot-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(100,255,210,0.12);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow .25s, transform .2s;
  }
  .screenshot-card:hover { box-shadow: 0 8px 32px rgba(0,255,170,0.1); transform: translateY(-3px); }
  .screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  .screenshot-caption {
    padding: 16px 20px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
  }
  .screenshot-caption span {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
  }


  /* ── DESKTOP 80% VISUAL SCALE ──
     Reduces fonts, paddings and max-widths across all sections EXCEPT hero.
     Does NOT use zoom or transform — no animation breakage.
  */
  @media (min-width: 769px) {
    /* Section spacing */
    #recursos, #preco, #faq, #blog, #contato { padding: 56px 20px; }
    .split-section { padding: 56px 0; }

    /* Max-widths tighter */
    .section-inner { max-width: 1380px; }
    .pricing-wrapper { max-width: 880px; }

    /* Section headings */
    .section-title { font-size: clamp(24px, 3.2vw, 36px); }
    .section-sub { font-size: 14px; max-width: 440px; }
    .section-label { font-size: 10px; }

    /* Feature cards */
    .features-grid { gap: 16px; }
    .feature-card { padding: 24px 22px 22px; }
    .feature-card h3 { font-size: 13px; }
    .feature-card p { font-size: 12px; }
    .feature-icon { width: 40px; height: 40px; border-radius: 12px; margin-bottom: 18px; font-size: 17px; }

    /* Split rows */
    .split-row { gap: 80px; max-width: 1380px; }
    .split-label { font-size: 11px; }
    .split-title { font-size: clamp(28px, 3.2vw, 44px); }
    .split-desc { font-size: 15px; }
    .split-link { font-size: 14px; }
    .split-check-list li { font-size: 14px; }
    .split-visual { width: 780px; height: 510px; }

    /* Pricing */
    .pricing-card { padding: 34px 22px 26px; min-height: 440px; }
    .pricing-name { font-size: 17px; }
    .pricing-price { font-size: 36px; }
    .pricing-price span { font-size: 14px; }
    .pricing-desc { font-size: 12px; }
    .pricing-features li { font-size: 12px; padding: 6px 0; }
    .btn-pricing { padding: 10px; font-size: 12px; }
    .pricing-head-glass { padding: 40px 64px 80px; }

    /* FAQ */
    .faq-list { max-width: 620px; }
    .faq-question { font-size: 13px; padding: 16px 20px; }
    .faq-answer { font-size: 12px; }

    /* Blog */
    .blog-grid { gap: 20px; }
    .blog-card h3 { font-size: 14px; }
    .blog-card p { font-size: 12px; }
    .blog-cat { font-size: 10px; }
    .blog-img { height: 170px; }

    /* Contact */
    .contact-grid { max-width: 840px; gap: 48px; }
    .contact-info h2 { font-size: clamp(24px, 3.2vw, 34px); }
    .contact-info p { font-size: 13px; }
    .contact-form-card { padding: 32px; }
    .form-group label { font-size: 10px; }
    .form-group input, .form-group textarea { font-size: 12px; padding: 10px 12px; }
    .btn-send { padding: 13px; font-size: 13px; }

    /* CTA banner */
    .cta-banner { padding: 48px 32px; }
    .cta-banner h2, .cta-banner-title { font-size: clamp(20px, 2.6vw, 30px); }
    .cta-banner p { font-size: 13px; }
    .cta-banner .btn-primary { padding: 11px 22px; font-size: 13px; }

    /* Footer */
    footer { padding: 48px 32px 28px; }
    .footer-grid { gap: 36px; margin-bottom: 44px; }
    .footer-col h4 { font-size: 10px; }
    .footer-col ul li a { font-size: 12px; }
    .footer-brand p { font-size: 12px; }
    .footer-bottom p { font-size: 12px; }

    /* Navbar */
    nav { height: 46px; }
    .nav-links a { font-size: 12px; }
    .nav-links { gap: 22px; }
    .nav-wordmark { font-size: 14px; }
    .btn-primary { padding: 7px 16px; font-size: 12px; }
  }

