  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --lime: #A8CC2C;
    --lime-light: #C8E655;
    --lime-dark: #7A9A18;
    --lime-pale: #EEF5C8;
    --lime-xpale: #F6FAE5;
    --orange: #F4A24C;
    --orange-light: #F9C480;
    --orange-dark: #D4791A;
    --orange-pale: #FEF0DC;
    --dark: #1A1F0E;
    --dark-2: #2B3217;
    --mid: #4A5620;
    --text: #2C3318;
    --text-muted: #6B7A3A;
    --text-light: #9BAA5A;
    --white: #FFFFFF;
    --surface: #F8FBF0;
    --border: rgba(100, 130, 30, 0.15);
    --shadow-sm: 0 2px 8px rgba(40, 60, 10, 0.08);
    --shadow-md: 0 8px 32px rgba(40, 60, 10, 0.12);
    --shadow-lg: 0 24px 64px rgba(40, 60, 10, 0.15);
    --r-sm: 4px;
    --r-md: 6px;
    --r-lg: 8px;
    --r-xl: 10px;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    height: 68px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .nav-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--dark);
    letter-spacing: -0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .nav-logo .logo-accent { color: var(--lime-dark); }
  .logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
  }
  .nav-links {
    display: flex; gap: 32px; align-items: center;
    list-style: none;
  }
  .nav-links a {
    font-size: 14px; font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--lime-dark); }
  .nav-cta {
    background: var(--lime);
    color: var(--dark) !important;
    padding: 9px 20px;
    border-radius: var(--r-sm);
    font-weight: 600 !important;
    font-size: 13px !important;
    transition: background 0.2s, transform 0.15s !important;
  }
  .nav-cta:hover {
    background: var(--lime-light) !important;
    transform: translateY(-1px);
    color: var(--dark) !important;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    padding: 120px 5% 80px;
    background-image: 
      linear-gradient(90deg, rgba(26, 31, 14, 0.75) 10%, rgba(43, 50, 23, 0.40) 90%, rgba(234, 251, 193, 0.15) 100%),
      url('../assets/img/2funge-hero-img.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    display: flex; align-items: center;
  }
  .hero::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(244,162,76,0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-grid {
    max-width: 1180px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    position: relative; z-index: 1;
  }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(168,204,44,0.15);
    border: 1px solid rgba(168,204,44,0.3);
    border-radius: var(--r-sm);
    padding: 6px 16px;
    font-size: 12px; font-weight: 600;
    color: var(--lime-light);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
  }
  .hero-badge-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--lime-light);
    animation: pulse 2s ease-in-out infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  .hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--lime-light);
  }
  .hero-sub {
    font-size: 18px; font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 460px;
  }
  .hero-actions {
    display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  }
  .btn-primary {
    background: var(--lime);
    color: var(--dark);
    padding: 15px 32px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(168,204,44,0.35);
    white-space: nowrap;
  }
  .btn-primary:hover {
    background: var(--lime-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168,204,44,0.45);
  }
  .btn-secondary {
    color: rgba(255,255,255,0.8);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }
  .btn-secondary:hover { color: var(--lime-light); }
  .btn-arrow {
    width: 28px; height: 28px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: border-color 0.2s, transform 0.2s;
  }
  .btn-secondary:hover .btn-arrow { border-color: var(--lime-light); transform: translateX(3px); }

  /* Hero visual */
  .hero-visual {
    position: relative;
  }
  .hero-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-lg);
    padding: 28px;
    backdrop-filter: blur(12px);
  }
  .hero-card-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 20px;
  }
  .hero-card-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 15px;
    color: rgba(255,255,255,0.9);
  }
  .badge-live {
    background: rgba(168,204,44,0.2);
    border: 1px solid rgba(168,204,44,0.4);
    color: var(--lime-light);
    font-size: 11px; font-weight: 600;
    padding: 3px 10px; border-radius: var(--r-sm);
    letter-spacing: 0.5px;
  }
  .metric-row {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px;
    margin-bottom: 20px;
  }
  .metric-box {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-md);
    padding: 14px;
    text-align: center;
  }
  .metric-val {
    font-family: 'Sora', sans-serif;
    font-size: 22px; font-weight: 700;
    color: var(--lime-light);
    display: block;
  }
  .metric-label {
    font-size: 10px; font-weight: 500;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.3px;
    margin-top: 3px;
    display: block;
  }
  .hero-progress-section { margin-bottom: 20px; }
  .progress-label {
    display: flex; justify-content: space-between;
    font-size: 12px; color: rgba(255,255,255,0.55);
    margin-bottom: 6px;
  }
  .progress-bar {
    height: 6px; border-radius: 3px;
    background: rgba(255,255,255,0.1);
    overflow: hidden;
  }
  .progress-fill {
    height: 100%; border-radius: 3px;
    background: var(--lime);
    transition: width 1.2s ease;
  }
  .progress-fill.orange { background: var(--orange); }
  .item-list { display: flex; flex-direction: column; gap: 8px; }
  .item-row {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.04);
    border-radius: var(--r-sm);
    padding: 10px 14px;
  }
  .item-icon {
    width: 28px; height: 28px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .item-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.8); flex: 1; }
  .item-price {
    font-family: 'Sora', sans-serif;
    font-size: 13px; font-weight: 600;
    color: var(--lime-light);
  }
  .floating-tag {
    position: absolute;
    background: var(--orange);
    color: var(--dark);
    border-radius: var(--r-sm);
    padding: 8px 16px;
    font-size: 12px; font-weight: 700;
    box-shadow: 0 8px 24px rgba(244,162,76,0.4);
    white-space: nowrap;
    animation: float 3s ease-in-out infinite;
  }
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .floating-tag.tag-1 { top: -20px; right: 20px; animation-delay: 0s; }
  .floating-tag.tag-2 { bottom: 20px; left: -30px; animation-delay: 1.5s; }

  /* ── SECTIONS COMMON ── */
  section { padding: 100px 5%; }
  .section-inner { max-width: 1180px; margin: 0 auto; }
  .section-eyebrow {
    width: fit-content;
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--lime-dark);
    background: var(--lime-pale);
    padding: 5px 14px; border-radius: var(--r-sm);
    margin-bottom: 16px;
  }
  .section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 3.5vw, 46px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    color: var(--dark);
    margin-bottom: 16px;
  }
  .section-title em { font-style: normal; color: var(--lime-dark); }
  .section-lead {
    font-size: 17px; color: var(--text-muted); line-height: 1.7;
    max-width: 560px;
  }

  /* ── PROBLEM ── */
  .problem-section { background: var(--surface); }
  .problem-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
    align-items: center; margin-top: 64px;
  }
  .cycle-visual {
    position: relative; display: flex; align-items: center; justify-content: center;
    height: 340px;
  }
  .cycle-center {
    position: absolute;
    background: var(--dark);
    color: var(--lime-light);
    border-radius: var(--r-lg);
    padding: 16px 22px;
    text-align: center;
    z-index: 2;
  }
  .cycle-center-label { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; }
  .cycle-center-sub { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
  .cycle-item {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    min-width: 130px;
  }
  .cycle-item-icon { font-size: 22px; margin-bottom: 6px; }
  .cycle-item-label { font-size: 12px; font-weight: 600; color: var(--dark); }
  .cycle-item-sub { font-size: 10px; color: var(--text-muted); margin-top: 2px; }
  .cycle-item.accent { border-color: rgba(244,162,76,0.4); background: var(--orange-pale); }
  .cycle-item.top { top: 0; left: 50%; transform: translateX(-50%); }
  .cycle-item.right { right: 0; top: 50%; transform: translateY(-50%); }
  .cycle-item.bottom { bottom: 0; left: 50%; transform: translateX(-50%); }
  .cycle-item.left { left: 0; top: 50%; transform: translateY(-50%); }

  .problem-points { display: flex; flex-direction: column; gap: 24px; }
  .problem-point {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 20px; border-radius: var(--r-md);
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .problem-point:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
  .pp-icon {
    width: 44px; height: 44px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .pp-icon.red { background: #FEE8E8; }
  .pp-icon.orange { background: var(--orange-pale); }
  .pp-title { font-weight: 600; font-size: 15px; color: var(--dark); margin-bottom: 4px; }
  .pp-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

  /* ── SOLUTION ── */
  .solution-section { background: var(--white); position: relative; }
  .solution-section-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(360px, 45vw) minmax(420px, 1fr);
    min-height: 600px;
  }
  .solution-grid { display: contents; }
  .solution-media {
    grid-column: 1;
    grid-row: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 45vw;
    height: 100%;
    margin: 0;
  }
  .solution-media-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .solution-media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(26, 31, 14, 0.35) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
  }
  .solution-media-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
    transition: filter 0.3s ease;
    filter: brightness(0.75);
  }
  .solution-details {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* padding: 100px 0 100px 80px; */
    background: var(--white);
    position: relative;
    z-index: 2;
    min-height: 100%;
  }
  .solution-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .solution-heading .section-eyebrow {
    margin: 0;
  }
  .solution-heading .section-title {
    margin: 0;
    text-align: left;
    font-size: clamp(28px, 3vw, 38px);
  }
  .solution-lead-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: 0;
    text-align: left;
  }
  .solution-heading .section-title em { font-style: normal; color: var(--lime-dark); }
  .before-after {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 16px;
    align-items: stretch; margin-top: 0;
  }

  /* Antecipar a quebra dos cards (Sem / Com 2Funges) para telas menores */
  @media (max-width: 1000px) {
    .before-after { grid-template-columns: 1fr; gap: 16px; }
    .ba-arrow { display: none; }
    .ba-col { border-radius: var(--r-md); }
  }
  .ba-col {
    border-radius: var(--r-lg);
    overflow: hidden;
  }
  .ba-col.before { background: #FFF5F5; border: 1.5px solid #FFCFCF; }
  .ba-col.after { background: var(--lime-xpale); border: 1.5px solid rgba(168,204,44,0.35); }
  .ba-header {
    padding: 18px 24px;
    font-family: 'Sora', sans-serif;
    font-weight: 700; font-size: 15px;
  }
  .ba-col.before .ba-header { background: #FFE8E8; color: #C0392B; }
  .ba-col.after .ba-header { background: rgba(168,204,44,0.2); color: var(--lime-dark); }
  .ba-body { padding: 20px 24px; }
  .ba-item {
    display: flex; gap: 10px; align-items: flex-start;
    margin-bottom: 14px; font-size: 13.5px;
    color: var(--text);
  }
  .ba-item:last-child { margin-bottom: 0; }
  .ba-dot {
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0; margin-top: 2px;
  }
  .ba-col.before .ba-dot { background: #FFD5D5; color: #C0392B; }
  .ba-col.after .ba-dot { background: rgba(168,204,44,0.3); color: var(--lime-dark); }
  .ba-arrow {
    display: flex; align-items: center; justify-content: center;
    width: 48px;
  }
  .arrow-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    color: var(--lime-light); font-size: 18px;
    box-shadow: 0 4px 16px rgba(26,31,14,0.25);
  }

  /* ── HOW IT WORKS ── */
  .how-section { background: var(--dark); }
  .how-section .section-title { color: var(--white); }
  .how-section .section-eyebrow { background: rgba(168,204,44,0.15); color: var(--lime-light); }
  .how-section .section-lead { color: rgba(255,255,255,0.55); }
  .steps-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    margin-top: 56px;
  }
  .step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    transition: background 0.2s, border-color 0.2s;
  }
  .step-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(168,204,44,0.3);
  }
  .step-number {
    font-family: 'Sora', sans-serif;
    font-size: 48px; font-weight: 800;
    color: rgba(168,204,44,0.2);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
  }
  .step-icon-wrap {
    width: 52px; height: 52px; border-radius: var(--r-md);
    background: rgba(168,204,44,0.12);
    border: 1px solid rgba(168,204,44,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
  }
  .step-title {
    font-family: 'Sora', sans-serif;
    font-size: 17px; font-weight: 700;
    color: var(--white); margin-bottom: 10px;
  }
  .step-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
  .step-arrow {
    position: absolute; top: 50%; right: -13px;
    transform: translateY(-50%);
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--lime);
    display: flex; align-items: center; justify-content: center;
    color: var(--dark); font-size: 12px; font-weight: 700;
    z-index: 1;
  }
  .step-card:last-child .step-arrow { display: none; }

  /* ── FEATURES ── */
  .features-section { background: var(--surface); position: relative; }
  .features-header { display: grid; grid-template-columns: 1fr; align-items: end; margin-bottom: 60px; }
  .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 28px;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  }
  .feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: rgba(168,204,44,0.35);
  }
  .feature-icon {
    width: 52px; height: 52px; border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 18px;
  }
  .feature-icon.lime { background: var(--lime-pale); }
  .feature-icon.orange { background: var(--orange-pale); }
  .feature-title { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
  .feature-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.65; }

  /* Features extended layout: details left, image extended right */
  .features-section-inner {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(420px, 1fr) minmax(360px, 45vw);
    min-height: 520px;
  }
  .features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 20px; }
  .features-media {
    grid-column: 2;
    grid-row: 1;
    position: absolute;
    right: 0;
    top: 0;
    width: 45vw;
    height: 100%;
    margin: 0;
  }
  .features-media-card {
    background: var(--white);
    border: none;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .features-media-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(270deg, rgba(26, 31, 14, 0.35) 0%, transparent 60%);
    z-index: 1; pointer-events: none;
  }
  .features-media-img {
    width: 100%; height: 100%; display: block; object-fit: cover;
    border-radius: 0; transition: filter 0.3s ease; filter: brightness(0.78);
  }
  .features-details {
    grid-column: 1;
    grid-row: 1;
    display: flex; flex-direction: column; gap: 32px;
    background: var(--surface);
    position: relative; z-index: 2; min-height: 100%; 
    /* padding: 80px 5% 80px 80px; */
  }

  @media (max-width: 900px) {
    .features-section-inner { grid-template-columns: 1fr; }
    .features-media { display: none; }
    .features-details { padding: 40px 5%; }
  }

  /* ── AUDIENCE ── */
  .audience-section { background: var(--white); }
  .audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
  .audience-card {
    border-radius: var(--r-lg);
    padding: 36px;
    position: relative;
    overflow: hidden;
  }
  .audience-card.b2c { background: var(--lime-xpale); border: 1.5px solid rgba(168,204,44,0.3); }
  .audience-card.b2b { background: #1A1F0E; border: 1.5px solid rgba(168,204,44,0.2); }
  .aud-tag {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    padding: 4px 12px; border-radius: var(--r-sm); margin-bottom: 20px;
  }
  .b2c .aud-tag { background: rgba(168,204,44,0.2); color: var(--lime-dark); }
  .b2b .aud-tag { background: rgba(168,204,44,0.15); color: var(--lime-light); }
  .aud-title {
    font-family: 'Sora', sans-serif;
    font-size: 22px; font-weight: 700; margin-bottom: 12px; line-height: 1.25;
  }
  .b2c .aud-title { color: var(--dark); }
  .b2b .aud-title { color: var(--white); }
  .aud-desc { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
  .b2c .aud-desc { color: var(--text-muted); }
  .b2b .aud-desc { color: rgba(255,255,255,0.55); }
  .aud-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .aud-list li { display: flex; gap: 10px; font-size: 13.5px; align-items: flex-start; }
  .b2c .aud-list li { color: var(--text); }
  .b2b .aud-list li { color: rgba(255,255,255,0.75); }
  .check-icon {
    width: 18px; height: 18px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; flex-shrink: 0; margin-top: 2px; font-weight: 700;
  }
  .b2c .check-icon { background: var(--lime); color: var(--dark); }
  .b2b .check-icon { background: rgba(168,204,44,0.25); color: var(--lime-light); }

  /* ── PRICING ── */
  .pricing-section { background: var(--surface); }
  .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
  .pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px;
    position: relative;
    transition: box-shadow 0.2s;
  }
  .pricing-card.featured {
    background: var(--dark);
    border-color: rgba(168,204,44,0.3);
    box-shadow: var(--shadow-lg);
  }
  .pricing-card.essencial {
    background: rgba(167, 204, 44, 0.226);
    border-color: rgba(168,204,44,0.3);
  }
  .pricing-card.premium {
    background: #FFF9E6; /* Dourado muito leve */
    border: 2px solid #F4D03F; /* Dourado mais chamativo */
    box-shadow: 0 10px 30px rgba(244, 208, 63, 0.2);
  }
  .pricing-card.premium .pricing-name {
    color: #B8860B; /* Dark Golden Rod */
  }
  .pricing-card.premium .pricing-type {
    color: #D4AF37; /* Metallic Gold */
  }
  .pricing-card:hover { box-shadow: var(--shadow-md); }
  .pricing-badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--orange);
    color: var(--dark);
    font-size: 11px; font-weight: 700;
    padding: 4px 16px; border-radius: var(--r-sm);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(244,162,76,0.4);
  }
  .pricing-icon { font-size: 28px; margin-bottom: 16px; }
  .pricing-type { font-family: 'Sora', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 8px; }
  .pricing-card:not(.featured) .pricing-type { color: var(--text-muted); }
  .pricing-card.featured .pricing-type { color: rgba(255,255,255,0.5); }
  .pricing-name { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 12px; }
  .pricing-card:not(.featured) .pricing-name { color: var(--dark); }
  .pricing-card.featured .pricing-name { color: var(--white); }
  .pricing-desc { font-size: 13px; line-height: 1.65; margin-bottom: 24px; }
  .pricing-card:not(.featured) .pricing-desc { color: var(--text-muted); }
  .pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.5); }
  .pricing-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
  .pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }
  .pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .pricing-features li { display: flex; gap: 10px; font-size: 13px; align-items: flex-start; }
  .pricing-card:not(.featured) .pricing-features li { color: var(--text); }
  .pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.75); }

  /* ── STATS / PARTNERS ── */
  .stats-section {
    background: var(--lime-pale);
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .stats-inner { max-width: 100%; margin: 0 auto; }
  
  .stats-section .section-eyebrow {
    font-size: 14px;
    padding: 8px 20px;
    margin-bottom: 24px;
    background: var(--lime-xpale);
  }
  
  .stats-section .section-title {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 40px;
  }

  .partners-slider {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    position: relative;
  }

  .partners-slider::before,
  .partners-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }

  .partners-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--lime-pale) 0%, transparent 100%);
  }

  .partners-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--lime-pale) 0%, transparent 100%);
  }

  .partners-track {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
    gap: 80px;
    align-items: center;
    padding-left: 80px; /* Initial gap */
  }

  .partner-item { 
    width: 200px;
    filter: grayscale(1); 
    opacity: 0.6; 
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .partner-item:hover { 
    filter: grayscale(0); 
    opacity: 1; 
    transform: scale(1.1);
  }
  
  .partner-item img { 
    max-width: 160px; 
    height: auto; 
    max-height: 80px; /* Aumentado para acomodar logos locais melhor */
    object-fit: contain;
  }
  
  .partner-item span {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--dark);
    letter-spacing: -0.5px;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--dark);
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(168,204,44,0.12) 0%, transparent 60%);
    pointer-events: none;
  }
  .cta-inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 1; }
  .cta-section .section-title { color: var(--white); margin-bottom: 20px; }
  .cta-section .section-eyebrow { background: rgba(168,204,44,0.15); color: var(--lime-light); }
  .cta-desc { font-size: 17px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 40px; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.8);
    padding: 15px 32px;
    border-radius: var(--r-sm);
    font-weight: 600; font-size: 15px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }
  .cta-tags { margin-top: 32px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-tag { font-size: 13px; color: rgba(255,255,255,0.4); }

  /* ── FOOTER ── */
  footer {
    background: #111408;
    padding: 48px 5%;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    gap: 24px; flex-wrap: wrap;
  }
  .footer-logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800; font-size: 20px;
    color: var(--white);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .footer-logo .logo-accent { color: var(--lime-light); }
  .footer-tagline { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 4px; }
  .footer-links { display: flex; gap: 28px; }
  .footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: var(--lime-light); }
  .footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }
  .delay-5 { animation-delay: 0.5s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero {
      background-image: 
        linear-gradient(90deg, rgba(26, 31, 14, 0.85) 8%, rgba(43, 50, 23, 0.60) 90%),
        url('../assets/img/2funge-hero-img.png');
      background-attachment: scroll;
      background-position: right center;
    }
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { display: none; }
    .problem-grid { grid-template-columns: 1fr; }
    .solution-section-inner { grid-template-columns: 1fr; }
    .solution-media { display: none; }
    .solution-details { padding: 80px 5%; }
    .steps-grid { grid-template-columns: 1fr; }
    .features-header { grid-template-columns: 1fr; gap: 24px; }
    .features-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .partners-grid { gap: 32px; }
    .before-after { grid-template-columns: 1fr; }
    .ba-arrow { display: none; }
    .nav-links { display: none; }
    section { padding: 72px 5%; }
  }
  @media (max-width: 480px) {
    .hero {
      background-image: 
        linear-gradient(90deg, rgba(26, 31, 14, 0.90) 0%, rgba(43, 50, 23, 0.70) 75%),
        url('../assets/img/2funge-hero-img.png');
      background-size: cover;
      background-position: center right;
      min-height: 70vh;
      padding: 100px 5% 60px;
    }
    .hero h1 { font-size: clamp(28px, 6vw, 40px); }
  }

  /* Final override: stack before/after and hide arrow at <=1000px */
  @media (max-width: 1000px) {
    .before-after { grid-template-columns: 1fr !important; gap: 20px !important; }
    .ba-arrow { display: none !important; }
  }