    /* ────────────── BASE ────────────── */
    *, *::before, *::after { box-sizing: border-box; }
    html { overflow-x: hidden; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #fbfaf6;
      color: #0a0a0a;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    img, video, svg, iframe { max-width: 100%; height: auto; }
    ::selection { background: #0FA896; color: #fff; }

    /* Performance: blobs leves no mobile */
    @media (max-width: 767px) {
      .hero-blob { display: none !important; }
      [style*="blur("] { filter: blur(40px) !important; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* Hero h1 — não estourar no mobile */
    #hero h1 {
      font-size: clamp(2.5rem, 13vw, 10rem) !important;
      word-break: break-word;
max-width: 100%;
    }
    @media (min-width: 1024px) {
      #hero h1 { font-size: clamp(4rem, 10vw, 150px) !important; }
    }
    #cta-final h2, footer .h-display {
      font-size: clamp(2.5rem, 10vw, 9rem);
      word-break: break-word;
    }

    /* ────────────── TIPOGRAFIA EDITORIAL ────────────── */
    .h-display {
      font-family: 'Manrope', Inter, sans-serif;
      font-weight: 700;
      letter-spacing: -0.04em;
      line-height: 0.95;
    }
    .h-display em, .h-display .serif {
      font-family: 'Fraunces', Georgia, serif;
      font-style: italic;
      font-weight: 500;
      letter-spacing: -0.025em;
    }
    .label-mono {
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 500;
    }

    /* ────────────── BOTÕES ────────────── */
    .btn-primary {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.95rem 1.6rem;
      background: #0FA896;
      color: #fff;
      font-weight: 600;
      border-radius: 999px;
      box-shadow: 0 6px 20px -6px rgba(15,168,150,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
      transition: all 300ms cubic-bezier(0.16,1,0.3,1);
      overflow: hidden;
    }
    .btn-primary::before {
      content: '';
      position: absolute; top: 0; left: -100%;
      width: 60%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.30), transparent);
      transition: left 800ms;
    }
    .btn-primary:hover { background: #0c8a7c; transform: translateY(-2px); box-shadow: 0 14px 32px -8px rgba(15,168,150,0.55), inset 0 1px 0 rgba(255,255,255,0.22); }
    .btn-primary:hover::before { left: 110%; }

    .btn-dark {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.95rem 1.6rem;
      background: #0a0a0a;
      color: #fff;
      font-weight: 600;
      border-radius: 999px;
      transition: all 300ms;
    }
    .btn-dark:hover { background: #262626; transform: translateY(-2px); }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.95rem 1.6rem;
      background: transparent;
      color: #0a0a0a;
      font-weight: 600;
      border-radius: 999px;
      border: 1px solid rgba(10,10,10,0.18);
      transition: all 300ms;
    }
    .btn-ghost:hover { border-color: #0FA896; color: #0FA896; transform: translateY(-2px); }

    /* ────────────── SECTION HEAD ────────────── */
    .section-head {
      display: flex;
      align-items: baseline;
      gap: 1.25rem;
      padding-bottom: 1.5rem;
      margin-bottom: 2.5rem;
      border-bottom: 1px solid rgba(10,10,10,0.10);
    }
    .section-head .num   { font-family: 'JetBrains Mono', monospace; font-size: 0.85rem; letter-spacing: 0.16em; color: #0FA896; font-weight: 600; }
    .section-head .label { font-family: 'JetBrains Mono', monospace; font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(10,10,10,0.65); font-weight: 500; }
    .section-head .line  { flex: 1; height: 1px; background: rgba(10,10,10,0.10); }
    .section-head .meta  { font-family: 'JetBrains Mono', monospace; font-size: 0.65rem; letter-spacing: 0.16em; color: rgba(10,10,10,0.40); }

    /* Variante para seções escuras */
    .section-head-dark { border-color: rgba(255,255,255,0.12); }
    .section-head-dark .num   { color: #26e2c7; }
    .section-head-dark .label { color: rgba(255,255,255,0.65); }
    .section-head-dark .line  { background: rgba(255,255,255,0.12); }
    .section-head-dark .meta  { color: rgba(255,255,255,0.40); }

    /* ────────────── NAVBAR ────────────── */
    .nav-scrolled {
      background: rgba(251,250,246,0.85);
      backdrop-filter: blur(14px) saturate(180%);
      -webkit-backdrop-filter: blur(14px) saturate(180%);
      border-bottom: 1px solid rgba(10,10,10,0.06);
    }

    /* ────────────── PILARES (3 cards) ────────────── */
    .pilar {
      padding: 2.5rem 2rem 2.25rem;
      background: #fff;
      border: 1px solid rgba(10,10,10,0.08);
      border-radius: 1.5rem;
      transition: all 350ms cubic-bezier(0.16,1,0.3,1);
      position: relative;
      overflow: hidden;
    }
    .pilar::before {
      content: '';
      position: absolute; left: 0; right: 0; top: 0;
      height: 3px;
      background: var(--c, #0FA896);
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 500ms cubic-bezier(0.16,1,0.3,1);
    }
    .pilar:hover::before { transform: scaleX(1); }
    .pilar:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -16px rgba(15,168,150,0.18); border-color: rgba(15,168,150,0.25); }

    /* ────────────── PRODUTOS ────────────── */
    .prod-card {
      position: relative;
      background: #fff;
      border: 1px solid rgba(10,10,10,0.08);
      border-radius: 1.5rem;
      overflow: hidden;
      transition: all 400ms cubic-bezier(0.16,1,0.3,1);
    }
    .prod-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 48px -16px rgba(0,0,0,0.15);
      border-color: rgba(15,168,150,0.30);
    }
    .prod-img {
      aspect-ratio: 1 / 1;
      overflow: hidden;
      position: relative;
      background: #f7f5ee;
    }
    .prod-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 600ms cubic-bezier(0.16,1,0.3,1);
    }
    .prod-card:hover .prod-img img { transform: scale(1.06); }
    .prod-badge {
      position: absolute; top: 0.9rem; left: 0.9rem;
      font-family: 'JetBrains Mono', monospace;
      font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
      background: rgba(255,255,255,0.96);
      color: #0a0a0a;
      padding: 0.4rem 0.7rem;
      border-radius: 999px;
      font-weight: 600;
    }
    .prod-cta {
      position: absolute; top: 0.9rem; right: 0.9rem;
      width: 38px; height: 38px;
      border-radius: 999px;
      background: #0a0a0a;
      color: #fff;
      display: flex; align-items: center; justify-content: center;
      opacity: 0; transform: translate(8px,-8px);
      transition: all 300ms cubic-bezier(0.16,1,0.3,1);
    }
    .prod-card:hover .prod-cta { opacity: 1; transform: translate(0,0); }
    .prod-cta:hover { background: #0FA896; }

    /* ────────────── FAQ ────────────── */
    .faq-item {
      border-bottom: 1px solid rgba(10,10,10,0.10);
    }
    .faq-button {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      padding: 1.75rem 0;
      text-align: left;
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      font-size: 1.15rem;
      letter-spacing: -0.02em;
      color: #0a0a0a;
      transition: color 250ms;
      cursor: pointer;
    }
    .faq-button:hover { color: #0FA896; }
    .faq-icon {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 999px;
      background: rgba(10,10,10,0.06);
      display: flex; align-items: center; justify-content: center;
      transition: all 300ms;
    }
    .faq-icon svg {
      width: 14px; height: 14px;
      transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
    }
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 500ms cubic-bezier(0.4,0,0.2,1);
    }
    .faq-content > div {
      padding: 0 0 1.75rem 0;
      color: #525252;
      line-height: 1.7;
      max-width: 60ch;
    }
    .faq-item.open .faq-button { color: #0FA896; }
    .faq-item.open .faq-icon   { background: #0FA896; color: #fff; }
    .faq-item.open .faq-icon svg { transform: rotate(45deg); }

    /* ────────────── MARQUEE ────────────── */
    .marquee-wrapper {
      mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
      -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
    }
    .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee 38s linear infinite;
      will-change: transform;
    }
    .marquee-track > .marq-item {
      flex: 0 0 auto;
      padding: 0 2.5rem;
      display: flex; align-items: center; gap: 1.25rem;
      font-family: 'Manrope', sans-serif;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    /* ────────────── REVEAL ────────────── */
    .reveal, .reveal-left, .reveal-right {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 800ms cubic-bezier(0.16,1,0.3,1), transform 800ms cubic-bezier(0.16,1,0.3,1);
    }
    .reveal-left  { transform: translateX(-40px); }
    .reveal-right { transform: translateX(40px); }
    .reveal.visible, .reveal-left.visible, .reveal-right.visible {
      opacity: 1; transform: translate(0,0);
    }

    /* ────────────── FLOATING WHATSAPP ────────────── */
    .wa-float {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
      width: 64px; height: 64px;
      border-radius: 999px;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 10px 30px -5px rgba(37,211,102,0.55);
      transition: all 300ms;
    }
    .wa-float::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: 999px;
      border: 3px solid #25D366;
      animation: pulseRing 2.5s cubic-bezier(.455, .03, .515, .955) infinite;
    }
    .wa-float:hover { transform: scale(1.08); }

    /* ────────────── MOBILE MENU ────────────── */
    .mobile-menu {
      transform: translateX(100%);
      transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
    }
    .mobile-menu.open { transform: translateX(0); }

    /* ────────────── UTILITIES ────────────── */
    .text-balance { text-wrap: balance; }
    .no-scrollbar::-webkit-scrollbar { display: none; }

    /* Hero — formas orgânicas */
    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.55;
    }

    /* Decorative dot grid */
    .dot-grid {
      background-image: radial-gradient(circle at 1px 1px, rgba(10,10,10,0.10) 1px, transparent 0);
      background-size: 18px 18px;
    }
