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

  :root {
    --black: #090909;
    --white: #f5f4f0;
    --cream: #f0ede6;
    --accent: #c8ff00;
    --accent-dim: rgba(200,255,0,.5);
    --green-dark: #0d1500;
    --green-mid: #111e00;
    --green-card: #131f00;
    --green-light: #d6f566;
    --green-pale: #e8faa0;
    --green-border: rgba(200,255,0,0.1);
    --border: rgba(255,255,255,0.07);
    --text-muted: rgba(245,244,240,0.42);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
  }

  /* CURSOR */
  .cursor {
    position: fixed; width: 10px; height: 10px;
    background: var(--accent); border-radius: 50%;
    pointer-events: none; z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .3s, height .3s, transform .15s;
  }
  .cursor-ring {
    position: fixed; width: 36px; height: 36px;
    border: 1.5px solid rgba(200,255,0,.4);
    border-radius: 50%; pointer-events: none; z-index: 9998;
    transform: translate(-50%,-50%);
    transition: width .3s, height .3s;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 52px;
    border-bottom: 1px solid transparent;
    background: transparent;
    transition: all .4s cubic-bezier(.4,0,.2,1);
  }
  nav.scrolled {
    top: 16px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    min-width: 560px;
    max-width: 820px;
    padding: 12px 20px 12px 28px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(24px);
    background: rgba(9,9,9,.82);
    box-shadow: 0 8px 40px rgba(0,0,0,.5);
  }
  .nav-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 26px; letter-spacing: -1px;
    color: var(--white); text-decoration: none;
    transition: font-size .3s;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 28px; align-items: center; list-style: none; }
  nav.scrolled .nav-links { gap: 18px; }
  .nav-links a {
    color: var(--text-muted); text-decoration: none;
    font-size: 14px; font-weight: 400; transition: color .2s;
  }
  nav.scrolled .nav-links a { font-size: 11px; letter-spacing: .01em; }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    background: var(--accent) !important; color: var(--black) !important;
    padding: 10px 24px; border-radius: 100px;
    font-weight: 600 !important; font-size: 13px !important;
    transition: transform .2s, box-shadow .2s, padding .3s !important;
    white-space: nowrap;
  }
  nav.scrolled .nav-cta { padding: 7px 16px !important; font-size: 11px !important; }
  .nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 28px rgba(200,255,0,.28) !important;
  }

  /* HERO */
  .hero {
    min-height: 100vh; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 160px 52px 100px;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 72% 22%, rgba(200,255,0,.06) 0%, transparent 58%),
      radial-gradient(ellipse 35% 35% at 12% 80%, rgba(200,255,0,.04) 0%, transparent 55%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
  }
  .hero-label {
    font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 32px;
    display: flex; align-items: center; gap: 14px; position: relative;
  }
  .hero-label::before {
    content: ''; display: block; width: 36px; height: 1px;
    background: var(--accent);
    box-shadow: 0 0 4px var(--accent), 0 0 12px var(--accent), 0 0 24px rgba(200,255,0,.5);
  }
  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(46px, 6.8vw, 94px);
    line-height: 1.02; letter-spacing: -0.03em;
    max-width: 980px; position: relative;
  }
  .hero h1 em { font-style: italic; color: var(--accent); }
  .hero-sub {
    margin-top: 36px; max-width: 560px;
    color: var(--text-muted); font-size: 17px;
    line-height: 1.72; font-weight: 300; position: relative;
  }
  .hero-sub strong { color: rgba(255,255,255,.75); font-weight: 500; }
  .hero-actions {
    margin-top: 52px; display: flex; gap: 20px;
    align-items: center; position: relative;
  }
  .btn-primary {
    background: rgba(200,255,0,.18);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(200,255,0,.45);
    color: var(--accent);
    padding: 15px 36px; border-radius: 100px;
    font-weight: 600; font-size: 15px; text-decoration: none;
    transition: transform .2s, box-shadow .2s, background .2s;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: inset 0 1px 0 rgba(200,255,0,.3), 0 4px 20px rgba(200,255,0,.12);
    position: relative; overflow: hidden;
  }
  .btn-primary::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,255,0,.7), transparent);
  }
  .btn-primary:hover {
    transform: translateY(-3px);
    background: rgba(200,255,0,.28);
    box-shadow: inset 0 1px 0 rgba(200,255,0,.4), 0 8px 32px rgba(200,255,0,.25), 0 0 20px rgba(200,255,0,.15);
  }
  .btn-ghost {
    color: var(--text-muted); font-size: 15px; text-decoration: none;
    display: flex; align-items: center; gap: 10px; transition: color .2s;
  }
  .btn-ghost::after { content: '→'; transition: transform .2s; }
  .btn-ghost:hover { color: var(--white); }
  .btn-ghost:hover::after { transform: translateX(5px); }

  /* MARQUEE */
  .marquee-section {
    padding: 34px 0; overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .marquee-track {
    display: flex; gap: 56px;
    animation: marquee 24s linear infinite;
    width: max-content;
  }
  .marquee-item {
    font-size: 12px; color: rgba(255,255,255,.16);
    text-transform: uppercase; letter-spacing: .15em;
    white-space: nowrap; display: flex; align-items: center; gap: 18px; font-weight: 500;
  }
  .marquee-item span {
    display: inline-block; width: 5px; height: 5px;
    background: var(--accent); border-radius: 50%;
    box-shadow: 0 0 4px var(--accent), 0 0 10px var(--accent), 0 0 20px rgba(200,255,0,.6);
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* STATS */
  .stats-strip {
    padding: 72px 52px; border-bottom: 1px solid var(--border);
    display: grid; grid-template-columns: repeat(4, 1fr);
  }
  .stat-item { padding: 0 44px; border-right: 1px solid var(--border); }
  .stat-item:first-child { padding-left: 0; }
  .stat-item:last-child { border-right: none; }
  .stat-number {
    font-family: 'DM Serif Display', serif;
    font-size: 54px; line-height: 1; letter-spacing: -0.04em; color: var(--accent);
  }
  .stat-label { margin-top: 10px; font-size: 13px; color: var(--text-muted); line-height: 1.55; }

  /* SHARED */
  section { padding: 120px 52px; }
  .section-label {
    font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 22px; font-weight: 500;
    opacity: .7;
  }
  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1.1; letter-spacing: -0.025em; max-width: 740px;
  }
  .section-title em { font-style: italic; color: var(--accent); }
  .section-desc {
    margin-top: 24px; max-width: 520px;
    color: var(--text-muted); font-size: 16px; line-height: 1.72; font-weight: 300;
  }

  /* DOR — fundo preto, cards Apple + liquid glass */
  .pain-section { background: var(--black); }
  .pain-grid {
    margin-top: 72px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .pain-card {
    background: rgba(255,255,255,.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(200,255,0,.1);
    border-radius: 28px;
    padding: 64px 56px;
    min-height: 360px;
    display: flex; flex-direction: column; justify-content: flex-end;
    position: relative; overflow: hidden;
    transition: border-color .3s, transform .3s, background .3s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 4px 24px rgba(0,0,0,.4);
  }
  .pain-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,255,0,.15), transparent);
  }
  .pain-card:hover { border-color: rgba(200,255,0,.22); transform: translateY(-4px); background: rgba(255,255,255,.05); }
  .pain-card-label {
    font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
    color: var(--accent); opacity: .5; margin-bottom: 20px; font-weight: 600;
  }
  .pain-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 28px; line-height: 1.2; margin-bottom: 18px; color: var(--white);
  }
  .pain-card p { font-size: 15px; color: var(--text-muted); line-height: 1.72; }
  .pain-card.highlight {
    background: rgba(200,255,0,.07);
    border-color: rgba(200,255,0,.2);
    box-shadow: inset 0 1px 0 rgba(200,255,0,.15), 0 4px 24px rgba(0,0,0,.4);
  }
  .pain-card.highlight::before {
    background: linear-gradient(90deg, transparent, rgba(200,255,0,.35), transparent);
  }
  .pain-card.highlight h3 { color: var(--accent); }
  .pain-card.highlight p { color: rgba(200,255,0,.5); }
  .pain-divider {
    grid-column: 1 / -1;
    background: rgba(255,255,255,.02);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(200,255,0,.08);
    border-radius: 28px;
    padding: 48px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  }
  .pain-divider p {
    font-family: 'DM Serif Display', serif;
    font-size: 22px; font-style: italic;
    color: rgba(255,255,255,.3); text-align: center; max-width: 640px;
  }
  .pain-divider strong { color: var(--accent); font-style: normal; opacity: .8; }

  /* TRAJETÓRIA — 3 colunas verticais, liquid glass intenso, sem emoji */
  .trajectory-section { background: var(--black); }
  .trajectory-grid {
    margin-top: 72px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .traj-card {
    background: rgba(200,255,0,.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(200,255,0,.3);
    border-radius: 28px;
    padding: 52px 44px 48px;
    position: relative; overflow: hidden;
    transition: transform .3s, box-shadow .3s, background .3s;
    display: flex; flex-direction: column;
    box-shadow:
      inset 0 1.5px 0 rgba(200,255,0,.35),
      inset 0 -1px 0 rgba(200,255,0,.08),
      0 8px 32px rgba(0,0,0,.4),
      0 0 0 1px rgba(200,255,0,.05);
  }
  .traj-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,255,0,.7), transparent);
  }
  .traj-card::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(200,255,0,.1) 0%, transparent 45%, rgba(200,255,0,.04) 100%);
    pointer-events: none;
  }
  .traj-card.wide { grid-column: auto; min-height: auto; flex-direction: column; }
  .traj-card:hover {
    transform: translateY(-6px);
    background: rgba(200,255,0,.16);
    box-shadow:
      inset 0 1.5px 0 rgba(200,255,0,.45),
      inset 0 -1px 0 rgba(200,255,0,.1),
      0 20px 56px rgba(0,0,0,.5),
      0 0 40px rgba(200,255,0,.1);
  }
  .traj-content { flex: 1; position: relative; z-index: 1; }
  .traj-card.wide .traj-content { flex: 1; }
  .traj-sector {
    font-family: 'DM Serif Display', serif;
    font-size: 32px; font-style: italic;
    color: var(--accent);
    text-shadow: 0 0 10px rgba(200,255,0,.5), 0 0 24px rgba(200,255,0,.3);
    margin-bottom: 16px; line-height: 1.1;
    letter-spacing: -0.02em;
  }
  .traj-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; line-height: 1.55; margin-bottom: 14px;
    color: rgba(245,244,240,.55); font-weight: 400;
  }
  .traj-card.wide .traj-title { font-size: 14px; }
  .traj-desc {
    font-size: 14px; color: rgba(245,244,240,.55); line-height: 1.68;
    margin-top: 16px;
  }
  .traj-accent {
    margin-top: 28px; height: 1px; width: 40px;
    background: var(--accent);
    border-radius: 2px;
    box-shadow: 0 0 4px var(--accent), 0 0 12px var(--accent), 0 0 24px rgba(200,255,0,.5);
  }

  /* SERVIÇOS — tema escuro + liquid glass */
  .services-section { background: var(--black); color: var(--white); }
  .services-section .section-label { color: var(--accent); opacity: .7; }
  .services-section .section-title { color: var(--white); }
  .services-section .section-title em { color: var(--accent); font-style: italic; }
  .services-section .section-desc { color: var(--text-muted); }
  .services-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
  }
  .service-card {
    background: rgba(200,255,0,.06);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 28px;
    padding: 52px 48px;
    text-decoration: none; color: var(--white);
    border: 1px solid rgba(200,255,0,.12);
    transition: background .25s, transform .3s, box-shadow .3s;
    display: flex; flex-direction: column; justify-content: space-between;
    min-height: 300px;
    position: relative; overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(200,255,0,.15), 0 4px 24px rgba(0,0,0,.3);
  }
  .service-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,255,0,.3), transparent);
  }
  .service-card:hover {
    background: rgba(200,255,0,.1);
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(200,255,0,.25), 0 16px 48px rgba(0,0,0,.4), 0 0 32px rgba(200,255,0,.06);
  }
  .service-inner { flex: 1; }
  .service-num {
    font-family: 'DM Serif Display', serif;
    font-size: 13px; color: rgba(200,255,0,.35); font-style: italic;
    margin-bottom: 20px;
  }
  .service-name {
    font-family: 'DM Serif Display', serif;
    font-size: 28px; line-height: 1.15; margin-bottom: 14px; color: var(--white);
  }
  .service-desc { font-size: 14px; color: var(--text-muted); line-height: 1.68; margin-bottom: 28px; }
  .service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
  .service-tag {
    font-size: 11px; font-weight: 600; letter-spacing: .06em;
    padding: 5px 14px; border-radius: 100px;
    background: rgba(200,255,0,.08); color: rgba(200,255,0,.6);
    border: 1px solid rgba(200,255,0,.12);
  }
  .service-arrow {
    font-size: 18px; color: rgba(200,255,0,.4);
    flex-shrink: 0; align-self: flex-end;
    width: 48px; height: 48px;
    border: 1px solid rgba(200,255,0,.2); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all .25s; margin-top: 24px;
  }
  .service-card:hover .service-arrow {
    background: var(--accent); color: var(--black);
    border-color: var(--accent);
    box-shadow: 0 0 12px rgba(200,255,0,.4);
  }

  /* METODOLOGIA */
  .method-section { background: var(--green-dark); }
  .method-inner {
    margin-top: 72px;
    max-width: 720px;
  }
  .method-text p {
    font-size: 22px; color: rgba(255,255,255,.6);
    line-height: 1.8; font-weight: 300;
  }
  .method-text p strong { color: var(--white); font-weight: 500; }
  .method-cta { margin-top: 48px; }

  /* DEPOIMENTOS */
  .testimonials-section { background: var(--black); }
  .testimonials-grid {
    margin-top: 64px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  }
  .testimonial-card {
    background: var(--green-card); border: 1px solid var(--green-border);
    border-radius: 18px; padding: 40px;
    transition: border-color .3s;
  }
  .testimonial-card:hover { border-color: rgba(200,255,0,.2); }
  .testimonial-quote-mark {
    font-family: 'DM Serif Display', serif;
    font-size: 48px; color: var(--accent); opacity: .3;
    line-height: .8; margin-bottom: 16px;
  }
  .testimonial-quote {
    font-family: 'DM Serif Display', serif;
    font-size: 15px; color: rgba(255,255,255,.62);
    line-height: 1.75; margin-bottom: 30px; font-style: italic;
  }
  .testimonial-author { display: flex; align-items: center; gap: 14px; }
  .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border: 1px solid var(--green-border);
    display: flex; align-items: center; justify-content: center;
    font-family: 'DM Serif Display', serif; font-size: 17px; color: var(--accent);
  }
  .author-name { font-weight: 600; font-size: 14px; margin-bottom: 3px; }
  .author-role { font-size: 12px; color: var(--text-muted); }

  /* CTA */
  .cta-section {
    background: var(--accent); color: var(--black);
    padding: 120px 52px; text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(200,255,0,.15) 0%, transparent 70%);
  }
  .cta-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(0,0,0,.4); margin-bottom: 20px; font-weight: 600; }
  .cta-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 4.5vw, 58px);
    line-height: 1.1; letter-spacing: -0.025em;
    color: var(--black); max-width: 680px; margin: 0 auto;
  }
  .cta-title em { font-style: italic; color: rgba(0,0,0,.45); }
  .cta-desc {
    margin: 24px auto 0; max-width: 480px;
    color: rgba(0,0,0,.55); font-size: 16px; line-height: 1.7; font-weight: 300;
  }
  .btn-dark {
    display: inline-flex; align-items: center; gap: 12px;
    background: rgba(0,0,0,.35);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(0,0,0,.5);
    color: var(--accent);
    padding: 17px 44px; border-radius: 100px;
    font-weight: 600; font-size: 15px; text-decoration: none; margin-top: 52px;
    transition: transform .2s, box-shadow .2s, background .2s;
    position: relative; overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 4px 20px rgba(0,0,0,.3);
  }
  .btn-dark::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  }
  .btn-dark:hover {
    transform: translateY(-3px);
    background: rgba(0,0,0,.5);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 16px 44px rgba(0,0,0,.4);
  }
  .whatsapp-icon { font-size: 18px; }

  /* FOOTER */
  footer { padding: 88px 52px 52px; border-top: 1px solid var(--border); }
  .footer-top {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; padding-bottom: 64px; border-bottom: 1px solid var(--border);
  }
  .footer-logo { font-family: 'DM Serif Display', serif; font-size: 26px; margin-bottom: 18px; letter-spacing: -1px; }
  .footer-logo span { color: var(--accent); }
  .footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.65; max-width: 260px; margin-bottom: 28px; }
  .footer-address { font-size: 13px; color: rgba(255,255,255,.2); line-height: 1.8; }
  .footer-col-title { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.25); margin-bottom: 20px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
  .footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color .2s; }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom { margin-top: 52px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,.18); }

  /* REVEAL */
  .reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: .1s; }
  .reveal-delay-2 { transition-delay: .2s; }
  .reveal-delay-3 { transition-delay: .3s; }

  @media (max-width: 960px) {
    nav { padding: 18px 24px; }
    .nav-links { display: none; }
    .hero, section, .cta-section, footer { padding-left: 24px; padding-right: 24px; }
    .hero { padding-top: 140px; padding-bottom: 64px; }
    .stats-strip { grid-template-columns: 1fr 1fr; padding: 40px 24px; }
    .stat-item { padding: 20px; }
    .pain-grid { grid-template-columns: 1fr; }
    .trajectory-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .trajectory-grid { grid-template-columns: 1fr; }
    .traj-card.wide { flex-direction: column; }
    .method-inner { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
