* { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --bg: #0f0f11;
      --bg-2: #17171b;
      --light: #f7f4ef;
      --text: #efebe5;
      --muted: #baafa3;
      --dark: #171717;
      --accent: #c77949;
      --accent-2: #e1af7c;
      --container: 1240px;
    }
    html { scroll-behavior: smooth; }
    body {
      font-family: "Plus Jakarta Sans", sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .14;
      background:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: radial-gradient(circle at center, black 32%, transparent 82%);
      z-index: 0;
    }
    .container {
      width: min(calc(100% - 40px), var(--container));
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      z-index: 100;
      background: rgba(255,255,255,.08);
    }
    .progress span {
      display: block;
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      box-shadow: 0 0 18px rgba(225,175,124,.45);
    }
    .cursor-aura {
      position: fixed;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: 1;
      mix-blend-mode: screen;
      background: radial-gradient(circle, rgba(225,175,124,.18), rgba(199,121,73,.08), transparent 70%);
    }

    .topbar {
      position: fixed;
      top: 14px;
      left: 50%;
      transform: translateX(-50%);
      width: min(calc(100% - 24px), 1240px);
      min-height: 68px;
      background: rgba(15,15,17,.74);
      backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      z-index: 90;
    }
    .brand img { height: 44px; width: auto; }
    .menu { display: flex; gap: 6px; align-items: center; }
    .menu a {
      font-size: .66rem;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      color: #c6bdb2;
      padding: 8px 10px;
      transition: color .25s ease, background .25s ease;
    }
    .menu a:hover,
    .menu a.active { color: #fff; background: rgba(255,255,255,.05); }
    .btn {
      min-height: 40px;
      padding: 0 15px;
      border: 1px solid transparent;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: .64rem;
      text-transform: uppercase;
      letter-spacing: 1.3px;
      font-weight: 600;
      cursor: pointer;
      transition: transform .28s ease, box-shadow .28s ease;
    }
    .btn:hover { transform: translateY(-2px); }
    .lucide {
      width: 16px;
      height: 16px;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .icon-whatsapp {
      width: 15px;
      height: 15px;
      display: inline-block;
      color: currentColor;
      flex-shrink: 0;
    }
    .icon-whatsapp-float {
      width: 24px;
      height: 24px;
    }

    .btn-accent {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      box-shadow: 0 12px 24px rgba(199,121,73,.3);
    }
    .btn-line {
      border-color: rgba(255,255,255,.24);
      color: #e8e1d7;
      background: rgba(255,255,255,.02);
    }

    .hero {
      min-height: 96vh;
      padding: 110px 0 62px;
      position: relative;
      overflow: hidden;
      display: grid;
      align-items: center;
      background:
        radial-gradient(circle at 14% 14%, rgba(199,121,73,.22), transparent 34%),
        radial-gradient(circle at 86% 10%, rgba(225,175,124,.15), transparent 28%),
        linear-gradient(180deg, #111116 0%, #17171c 100%);
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(8,8,9,.6), rgba(8,8,9,.84)),
        url("../images/Fotos/WLF_3521.jpg") center/cover no-repeat;
      opacity: .56;
      z-index: 1;
    }
    .hero-grid {
      position: relative;
      z-index: 2;
      min-height: calc(96vh - 170px);
      display: grid;
      place-items: center;
    }
    .hero-copy {
      display: grid;
      gap: 14px;
      justify-items: center;
      text-align: center;
      max-width: 900px;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 9px 12px;
      font-size: .7rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #f0d8bc;
      background: rgba(255,255,255,.04);
    }
    .eyebrow::before {
      content: "";
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--accent), var(--accent-2));
    }
    .hero h1 {
      font-size: clamp(1.8rem, 5vw, 4rem);
      line-height: .95;
      font-weight: 200;
      letter-spacing: -.03em;
      max-width: 860px;
      text-wrap: balance;
    }
    .hero h1 strong {
      font-weight: 500;
      background: linear-gradient(135deg, #f9efe3, var(--accent-2));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero p {
      color: #ded2c5;
      font-size: 1rem;
      line-height: 1.8;
      max-width: 760px;
      font-weight: 300;
    }

    .section { padding: 90px 0; position: relative; overflow: hidden; }
    .section.light {
      background:
        radial-gradient(circle at 80% 0%, rgba(225,175,124,.2), transparent 30%),
        linear-gradient(180deg, #f8f6f2, #f2eee8);
      color: var(--dark);
    }
    .section.dark {
      background: linear-gradient(180deg, #15151a, #101014);
      color: #f2eee7;
    }
    .head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      align-items: end;
      margin-bottom: 22px;
    }
    .head h2 {
      font-size: clamp(1.2rem, 2.5vw, 2.1rem);
      line-height: 1.08;
      font-weight: 300;
      letter-spacing: -.02em;
      max-width: 760px;
    }
    .head h2 strong { font-weight: 600; color: var(--accent); }
    .head p {
      max-width: 560px;
      font-size: .95rem;
      line-height: 1.75;
      font-weight: 300;
      color: #605a54;
    }
    .section.dark .head p { color: #b8afa4; }

    .manifesto {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .manifesto-card {
      background: rgba(255,255,255,.78);
      padding: 22px;
      min-height: 220px;
      display: grid;
      align-content: start;
      gap: 10px;
    }
    .manifesto-card h3 { font-size: 1.02rem; font-weight: 600; }
    .manifesto-card p { color: #5f5851; line-height: 1.72; font-weight: 300; font-size: .9rem; }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 10px;
    }
    .step {
      background: rgba(255,255,255,.03);
      padding: 18px;
      min-height: 170px;
      display: grid;
      align-content: start;
      gap: 10px;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .step:hover { transform: translateY(-4px); box-shadow: 0 18px 48px rgba(0,0,0,.28); }
    .step small {
      font-size: .66rem;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      color: #d9c5af;
    }
    .step h3 { font-size: .95rem; font-weight: 600; }
    .step p { color: #bdb4a9; font-size: .86rem; line-height: 1.65; font-weight: 300; }

    .founder-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 12px;
      align-items: stretch;
    }
    .founder-photo {
      min-height: 390px;
      background: url("../images/Fotos/WLF_0799.JPG") center/cover;
      position: relative;
      box-shadow: 0 18px 46px rgba(0,0,0,.16);
    }
    .founder-photo::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.35));
    }
    .founder-note {
      position: absolute;
      left: 14px;
      bottom: 14px;
      background: rgba(255,255,255,.88);
      color: #242424;
      padding: 10px 12px;
      font-size: .76rem;
      letter-spacing: 1.3px;
      text-transform: uppercase;
    }
    .founder-stack {
      display: grid;
      gap: 12px;
    }
    .founder-quote {
      min-height: 190px;
      background: rgba(255,255,255,.08);
      padding: 22px;
      display: grid;
      align-content: center;
      box-shadow: 0 16px 38px rgba(0,0,0,.14);
    }
    .founder-quote p {
      color: #2d2d2d;
      font-size: 1.02rem;
      line-height: 1.6;
      font-weight: 300;
      max-width: 430px;
    }
    .founder-text {
      background: #fff;
      padding: 20px;
      min-height: 188px;
      display: grid;
      align-content: center;
      gap: 8px;
    }
    .founder-text h3 { font-size: 1rem; font-weight: 600; }
    .founder-text p { color: #605a54; font-size: .9rem; line-height: 1.7; font-weight: 300; }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 10px;
    }
    .stat {
      background: rgba(255,255,255,.04);
      padding: 18px;
      text-align: center;
      min-height: 130px;
      display: grid;
      align-content: center;
      gap: 6px;
    }
    .stat strong {
      font-size: 1.7rem;
      color: #f2dcc3;
      font-weight: 600;
    }
    .stat span {
      font-size: .7rem;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: #c4b8aa;
    }

    .stats-diferenciais {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .stats-diferenciais .stat strong {
      font-size: 1.05rem;
      line-height: 1.35;
      text-transform: none;
    }
    .stats-diferenciais .stat span {
      text-transform: none;
      letter-spacing: 0.04em;
      font-size: 0.78rem;
      line-height: 1.55;
    }

    .cta {
      background: linear-gradient(145deg, rgba(199,121,73,.24), rgba(225,175,124,.12), rgba(255,255,255,.02));
      padding: 26px;
      display: grid;
      gap: 14px;
    }
    .cta h3 {
      font-size: clamp(1.2rem, 2.8vw, 2.1rem);
      line-height: 1.08;
      font-weight: 300;
      max-width: 720px;
    }
    .cta h3 strong { font-weight: 600; }
    .cta p { color: #f0e4d8; max-width: 640px; line-height: 1.75; font-size: .95rem; }
    .cta .actions { display: flex; gap: 10px; flex-wrap: wrap; }


    .whats-float-wrap {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 96;
      display: grid;
      justify-items: end;
      gap: 10px;
    }
    .whats-float-btn {
      width: 56px;
      height: 56px;
      border: none;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: #fff;
      box-shadow: 0 14px 28px rgba(199,121,73,.34);
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .whats-float-btn:hover {
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 18px 34px rgba(199,121,73,.4);
    }
    .whats-float-btn i { width: 24px; height: 24px; }
    .whats-float-panel {
      width: min(320px, calc(100vw - 28px));
      background: rgba(17,17,22,.96);
      color: #f0e7dc;
      border: 1px solid rgba(255,255,255,.12);
      padding: 14px;
      display: grid;
      gap: 8px;
      opacity: 0;
      transform: translateY(8px) scale(.98);
      pointer-events: none;
      transition: opacity .2s ease, transform .2s ease;
    }
    .whats-float-panel.open {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }
    .whats-float-panel strong {
      font-size: .8rem;
      letter-spacing: 1.1px;
      text-transform: uppercase;
      color: #f0d6b8;
    }
    .whats-float-panel p {
      font-size: .85rem;
      line-height: 1.6;
      color: #d8cfc2;
    }

    .footer {
      background: #111116;
      padding: 24px 0;
    }
    .footer-wrap {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      color: #c8beb1;
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: 1.2px;
    }
    .footer img { height: 34px; width: auto; opacity: .92; }

    .reveal { opacity: 0; transform: translateY(18px); }
    .tilt { transform-style: preserve-3d; will-change: transform; }

    @media (max-width: 1040px) {
      .menu {
        display: flex;
        width: 100%;
        order: 3;
        overflow-x: auto;
        white-space: nowrap;
        gap: 4px;
        padding-bottom: 2px;
      }
      .menu::-webkit-scrollbar { display: none; }
      .topbar {
        top: 10px;
        padding: 10px 12px;
        row-gap: 8px;
        flex-wrap: wrap;
        min-height: auto;
      }
      .topbar .btn {
        order: 2;
        margin-left: auto;
      }
      .menu a {
        font-size: .62rem;
        letter-spacing: 1.2px;
        padding: 7px 8px;
      }
      .hero-grid,
      .manifesto,
      .founder-grid,
      .process-grid,
      .stats { grid-template-columns: 1fr; }
      .hero { padding-top: 96px; }
    }
    @media (max-width: 680px) {
      .topbar {
        top: 8px;
        width: min(calc(100% - 12px), 1240px);
        padding: 8px 9px;
      }
      .menu { gap: 2px; }
      .menu a {
        font-size: .58rem;
        letter-spacing: 1px;
        padding: 6px 7px;
      }
      .section { padding: 74px 0; }
      .head { margin-bottom: 18px; }
      .head h2 { font-size: clamp(1.02rem, 5.5vw, 1.5rem); line-height: 1.12; }
      .hero p { font-size: .92rem; line-height: 1.72; }
      .hero-actions { gap: 8px; }
      .btn { min-height: 34px; padding: 0 12px; }

      .container { width: min(calc(100% - 24px), var(--container)); }
      .brand img { height: 38px; }
      .btn { min-height: 36px; font-size: .6rem; }
      .hero h1 { font-size: clamp(1.35rem, 8vw, 2.05rem); line-height: 1.02; }
    }
