
    :root {
      --black: #08080A;
      --black-rich: #0C0C0F;
      --surface-dark: #131316;
      --surface-card: #1A1A1F;
      --surface-elevated: #222228;
      --gold: #FFC107;
      --gold-light: #FFD54F;
      --gold-muted: #E5AC00;
      --gold-glow: rgba(255, 193, 7, 0.12);
      --gold-glow-strong: rgba(255, 193, 7, 0.25);
      --cream: #FAF8F0;
      --cream-dark: #F0EDE3;
      --white: #FFFFFF;
      --text-primary: #FAFAFA;
      --text-secondary: #A8A8B3;
      --text-muted: #6B6B78;
      --text-dark: #1A1A1F;
      --text-dark-secondary: #55555F;
      --border-subtle: rgba(255, 255, 255, 0.06);
      --border-gold: rgba(255, 193, 7, 0.2);
      --font-display: 'Montserrat', sans-serif;
      --font-body: 'Open Sans', sans-serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--black);
      color: var(--text-primary);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }

    /* Grain overlay */
    body::after {
      content: '';
      position: fixed;
      inset: 0;
      z-index: 9999;
      pointer-events: none;
      opacity: 0.022;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
      background-repeat: repeat;
      background-size: 200px;
    }

    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    .section-label {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
    }
    .section-label::before {
      content: '';
      width: 32px;
      height: 2px;
      background: var(--gold);
      border-radius: 1px;
    }
    .section-label.centered { justify-content: center; }
    .section-label.centered::before { display: none; }
    .section-label.dark { color: var(--gold-muted); }

    .section-heading {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.85rem, 4.2vw, 2.8rem);
      line-height: 1.15;
      letter-spacing: -0.01em;
    }
    .section-heading.centered { text-align: center; }
    .section-desc {
      font-size: 1.05rem;
      line-height: 1.75;
      max-width: 580px;
    }
    .section-desc.centered { text-align: center; margin-left: auto; margin-right: auto; }

    /* Animations */
    @keyframes gentleFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    [data-animate] {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    [data-animate].in-view { opacity: 1; transform: translateY(0); }
    [data-animate][data-delay="1"] { transition-delay: 0.1s; }
    [data-animate][data-delay="2"] { transition-delay: 0.2s; }
    [data-animate][data-delay="3"] { transition-delay: 0.3s; }
    [data-animate][data-delay="4"] { transition-delay: 0.4s; }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 16px 36px;
      border-radius: 60px;
      border: none;
      cursor: pointer;
      transition: all 0.4s var(--ease-out);
      letter-spacing: 0.01em;
    }
    .btn svg { width: 20px; height: 20px; flex-shrink: 0; }
    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      color: var(--black);
      box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
    }
    .btn-gold:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 36px rgba(255, 193, 7, 0.4);
    }
    .btn-ghost {
      background: rgba(255, 193, 7, 0.08);
      color: var(--gold);
      border: 1.5px solid rgba(255, 193, 7, 0.25);
    }
    .btn-ghost:hover {
      background: var(--gold);
      color: var(--black);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(255, 193, 7, 0.3);
    }
    .btn-dark-fill {
      background: var(--text-dark);
      color: var(--gold);
    }
    .btn-dark-fill:hover {
      background: var(--gold);
      color: var(--black);
      transform: translateY(-3px);
      box-shadow: 0 8px 32px rgba(255, 193, 7, 0.25);
    }
    .btn-arrow { transition: transform 0.3s var(--ease-out); }
    .btn:hover .btn-arrow { transform: translateX(4px); }

    /* ═══ NAVBAR ═══ */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 20px 0;
      transition: all 0.5s var(--ease-out);
    }
    .nav.scrolled {
      padding: 14px 0;
      background: rgba(8, 8, 10, 0.92);
      backdrop-filter: blur(24px) saturate(1.4);
      -webkit-backdrop-filter: blur(24px) saturate(1.4);
      border-bottom: 1px solid var(--border-subtle);
    }
    .nav .container { display: flex; align-items: center; justify-content: space-between; }
    
    .nav-logo {
      display: inline-flex;
      align-items: center;
      max-width: 196px;
      width: 100%;
    }
    .nav-logo img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      background: transparent;
      filter: drop-shadow(0 10px 24px rgba(0,0,0,0.34));
    }

    .nav-cta {
      font-weight: 600; font-size: 0.85rem; padding: 10px 24px;
      border-radius: 60px; background: var(--gold); color: var(--black);
      display: flex; align-items: center; gap: 8px;
      transition: all 0.3s var(--ease-out);
      box-shadow: 0 2px 12px rgba(255, 193, 7, 0.2);
    }
    .nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255, 193, 7, 0.35); }
    .nav-cta svg { width: 15px; height: 15px; }

    /* ═══ 1. HERO ═══ */
    
    .hero {
      min-height: 100vh; min-height: 100dvh;
      display: flex; align-items: center;
      position: relative;
      padding: 132px 0 120px;
      overflow: hidden;
      isolation: isolate;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background:
        radial-gradient(circle at 14% 42%, rgba(255, 193, 7, 0.12), transparent 38%),
        linear-gradient(
          180deg,
          rgba(8, 8, 10, 0.10) 0%,
          rgba(8, 8, 10, 0.16) 58%,
          rgba(8, 8, 10, 0.42) 82%,
          rgba(8, 8, 10, 0.78) 100%
        );
      pointer-events: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 160px;
      z-index: 1;
      pointer-events: none;
      background: linear-gradient(
        180deg,
        rgba(8, 8, 10, 0) 0%,
        rgba(8, 8, 10, 0.18) 30%,
        rgba(20, 20, 22, 0.55) 62%,
        #FAF8F0 100%
      );
    }
    .hero-bg {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(90deg, rgba(8, 8, 10, 0.96) 0%, rgba(8, 8, 10, 0.88) 28%, rgba(8, 8, 10, 0.54) 56%, rgba(8, 8, 10, 0.18) 78%, rgba(8, 8, 10, 0.06) 100%),
        linear-gradient(180deg, rgba(8, 8, 10, 0.3) 0%, rgba(8, 8, 10, 0.08) 32%, rgba(8, 8, 10, 0.36) 100%),
        url('../img/hero/hero-bg.png');
      background-size: cover;
      background-position: right center;
      background-repeat: no-repeat;
      transform: scale(1.01);
    }
    .hero-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 12% 28%, rgba(255, 193, 7, 0.16) 0%, rgba(255, 193, 7, 0.06) 18%, transparent 46%),
        radial-gradient(circle at 24% 82%, rgba(255, 193, 7, 0.10) 0%, transparent 34%);
      pointer-events: none;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 193, 7, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 193, 7, 0.022) 1px, transparent 1px);
      background-size: 78px 78px;
      mask-image: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 48%, transparent 86%);
      -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 48%, transparent 86%);
      opacity: 0.75;
      pointer-events: none;
    }
    .hero .container {
      display: block;
      position: relative; z-index: 2;
    }

    .hero-content {
      max-width: 640px;
      opacity: 0;
      animation: heroFadeIn 1s var(--ease-out) 0.1s forwards;
      position: relative;
      z-index: 2;
    }
    @keyframes heroFadeIn {
      from { opacity: 0; transform: translateX(-40px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(255, 193, 7, 0.08);
      border: 1px solid rgba(255, 193, 7, 0.18);
      padding: 8px 18px; border-radius: 60px;
      font-weight: 600; font-size: 0.72rem;
      color: var(--gold); margin-bottom: 28px;
      letter-spacing: 0.12em; text-transform: uppercase;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.16);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }
    .hero-badge-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--gold); box-shadow: 0 0 8px var(--gold);
      animation: gentleFloat 2.5s ease-in-out infinite;
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 5.5vw, 4rem);
      font-weight: 800; line-height: 1.05;
      margin-bottom: 24px; letter-spacing: -0.03em;
      max-width: 11ch;
      text-wrap: balance;
      text-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
    }
    .hero-title .em {
      color: var(--gold); position: relative; white-space: nowrap;
    }
    .hero-title .em::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--gold), transparent);
      border-radius: 2px; opacity: 0.5;
    }
    .hero-sub {
      font-size: 1.08rem; color: rgba(250, 250, 250, 0.82);
      margin-bottom: 32px; line-height: 1.75; max-width: 540px;
      text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
    }
    .hero-checks {
      list-style: none; display: flex; flex-direction: column;
      gap: 14px; margin-bottom: 40px;
      max-width: 520px;
    }
    .hero-checks li {
      display: flex; align-items: center; gap: 14px;
      font-size: 0.95rem; color: rgba(250, 250, 250, 0.78);
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
    }
    .chk {
      width: 26px; height: 26px; border-radius: 50%;
      background: var(--gold-glow); border: 1px solid rgba(255, 193, 7, 0.2);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.05), 0 8px 20px rgba(0,0,0,0.2);
    }
    .chk svg { width: 13px; height: 13px; color: var(--gold); }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 8px;
    }

    
    .hero .btn {
      min-width: 228px;
      justify-content: center;
      font-size: 1rem;
      font-weight: 700;
      padding: 16px 30px;
      border-radius: 18px;
      box-shadow:
        0 10px 28px rgba(255, 193, 7, 0.22),
        inset 0 1px 0 rgba(255,255,255,0.18);
      transition:
        transform 0.28s var(--ease-out),
        box-shadow 0.28s var(--ease-out),
        filter 0.28s var(--ease-out);
    }
    
    .hero .btn:hover {
      transform: translateY(-2px);
      box-shadow:
        0 16px 36px rgba(255, 193, 7, 0.28),
        inset 0 1px 0 rgba(255,255,255,0.18);
      filter: brightness(1.02);
    }
    .hero .btn svg {
      width: 19px;
      height: 19px;
      flex-shrink: 0;
    }
    .hero .btn span {
      position: relative;
      top: 1px;
    }

    .hero-visual { display: none; }
    /* ═══ 2. QUEM SOMOS (CREAM) ═══ */
    
    .about {
      position: relative;
      margin-top: -34px;
      padding: 118px 0 100px;
      background: var(--cream);
      color: var(--text-dark);
      border-top-left-radius: 36px;
      border-top-right-radius: 36px;
      box-shadow: 0 -18px 50px rgba(0, 0, 0, 0.10);
      z-index: 3;
    }
    .about::before {
      content: '';
      position: absolute;
      top: 0;
      left: 50%;
      width: min(180px, 28vw);
      height: 3px;
      transform: translateX(-50%);
      border-radius: 999px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      opacity: 0.7;
    }
    .about .section-desc { color: var(--text-dark-secondary); }
    .about-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 48px; }
    .about-card {
      background: var(--white); border-radius: 16px; padding: 36px 28px;
      text-align: center; border: 1px solid rgba(0,0,0,0.06);
      box-shadow: 0 2px 12px rgba(0,0,0,0.04);
      transition: all 0.5s var(--ease-out); position: relative; overflow: hidden;
    }
    .about-card::after {
      content: ''; position: absolute; bottom: 0; left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 60px; height: 3px; background: var(--gold);
      border-radius: 3px 3px 0 0; transition: transform 0.5s var(--ease-out);
    }
    .about-card:hover::after { transform: translateX(-50%) scaleX(1); }
    .about-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
    .about-icon {
      width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,193,7,0.12), rgba(255,193,7,0.04));
      display: flex; align-items: center; justify-content: center;
      transition: all 0.5s var(--ease-out);
    }
    .about-card:hover .about-icon { background: linear-gradient(135deg, rgba(255,193,7,0.25), rgba(255,193,7,0.1)); transform: scale(1.08); }
    .about-icon svg { width: 28px; height: 28px; color: var(--gold-muted); }
    .about-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--text-dark); }

    /* ═══ 3. PARA QUEM É (DARK) ═══ */
    .audience { padding: 100px 0; background: var(--black-rich); }
    .audience-cards { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
    .aud-card {
      background: var(--surface-dark); border-radius: 20px;
      overflow: hidden; border: 1px solid var(--border-subtle);
      transition: all 0.5s var(--ease-out);
    }
    .aud-card:hover {
      border-color: rgba(255, 193, 7, 0.15);
      box-shadow: 0 16px 56px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,193,7,0.08);
      transform: translateY(-4px);
    }
    .aud-card-top {
      padding: 28px 32px;
      background: linear-gradient(135deg, var(--surface-card) 0%, var(--surface-dark) 100%);
      border-bottom: 1px solid var(--border-subtle);
      display: flex; align-items: center; gap: 18px; position: relative;
    }
    .aud-card-top::after {
      content: ''; position: absolute; bottom: -1px; left: 32px; right: 32px;
      height: 2px; background: linear-gradient(90deg, var(--gold), transparent); opacity: 0.5;
    }
    .aud-icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: var(--gold-glow); border: 1px solid rgba(255, 193, 7, 0.15);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .aud-icon svg { width: 24px; height: 24px; color: var(--gold); }
    .aud-card-top h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
    .aud-card-body { padding: 32px; }
    .aud-card-body ul { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
    .aud-card-body li {
      display: flex; align-items: flex-start; gap: 14px;
      font-size: 0.95rem; color: var(--text-secondary); line-height: 1.55;
    }
    .li-chk {
      width: 22px; height: 22px; border-radius: 6px;
      background: var(--gold-glow); display: flex;
      align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
    }
    .li-chk svg { width: 12px; height: 12px; color: var(--gold); }

    /* ═══ 4. SERVIÇOS (CREAM) ═══ */
    .services {
      padding: 100px 0; background: var(--cream); color: var(--text-dark); position: relative;
    }
    .services::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%); opacity: 0.4;
    }
    .services .section-desc { color: var(--text-dark-secondary); }
    .services-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
    .srv-col {
      background: var(--white); border-radius: 20px; padding: 40px 32px;
      border: 1px solid rgba(0,0,0,0.06); box-shadow: 0 2px 12px rgba(0,0,0,0.03);
      transition: all 0.5s var(--ease-out);
    }
    .srv-col:hover { box-shadow: 0 12px 48px rgba(0,0,0,0.08); transform: translateY(-4px); }
    .srv-label {
      font-weight: 700; font-size: 0.7rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--gold-muted); margin-bottom: 8px;
    }
    .srv-col h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--text-dark); margin-bottom: 28px; }
    .srv-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
    .srv-list li {
      display: flex; align-items: center; gap: 16px; padding: 18px 0;
      border-bottom: 1px solid rgba(0,0,0,0.05); transition: all 0.3s var(--ease-out);
    }
    .srv-list li:last-child { border-bottom: none; }
    .srv-list li:hover { padding-left: 8px; }
    .srv-num {
      font-family: var(--font-display); font-weight: 800; font-size: 0.85rem;
      color: var(--gold-muted); width: 32px; height: 32px; border-radius: 50%;
      border: 1.5px solid rgba(229, 172, 0, 0.3);
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
      transition: all 0.3s var(--ease-out);
    }
    .srv-list li:hover .srv-num { background: var(--gold); color: var(--black); border-color: var(--gold); }
    .srv-name { font-weight: 600; font-size: 0.95rem; color: var(--text-dark); }
    .srv-desc-text { font-size: 0.82rem; color: var(--text-dark-secondary); margin-top: 2px; }

    /* ═══ 5. DIFERENCIAIS (DARK) ═══ */
    .diff { padding: 100px 0; background: var(--black-rich); }
    .diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
    .diff-card {
      padding: 32px 24px; border-radius: 16px; border: 1px solid var(--border-subtle);
      text-align: center; transition: all 0.5s var(--ease-out); position: relative; overflow: hidden;
    }
    .diff-card::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 50% 0%, rgba(255,193,7,0.06) 0%, transparent 60%);
      opacity: 0; transition: opacity 0.5s var(--ease-out);
    }
    .diff-card:hover::before { opacity: 1; }
    .diff-card:hover { border-color: rgba(255, 193, 7, 0.15); transform: translateY(-5px); }
    .diff-card-ic {
      width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 14px;
      background: var(--gold-glow); display: flex; align-items: center; justify-content: center;
      transition: all 0.5s var(--ease-out); position: relative; z-index: 1;
    }
    .diff-card:hover .diff-card-ic { background: var(--gold-glow-strong); transform: scale(1.08) rotate(-3deg); }
    .diff-card-ic svg { width: 24px; height: 24px; color: var(--gold); }
    .diff-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 8px; position: relative; z-index: 1; }
    .diff-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; position: relative; z-index: 1; }

    /* ═══ 6. DEPOIMENTOS (CREAM) ═══ */
    .reviews {
      padding: 100px 0; background: var(--cream); color: var(--text-dark); position: relative;
    }
    .reviews::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent 10%, var(--gold) 50%, transparent 90%); opacity: 0.4;
    }
    .reviews-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 48px; }
    .rev-card {
      background: var(--white); border-radius: 20px; padding: 40px 32px;
      border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 12px rgba(0,0,0,0.03);
      transition: all 0.5s var(--ease-out);
    }
    .rev-card:hover { transform: translateY(-4px); box-shadow: 0 12px 44px rgba(0,0,0,0.07); }
    .rev-stars { display: flex; gap: 3px; margin-bottom: 20px; }
    .rev-stars svg { width: 16px; height: 16px; fill: var(--gold); color: var(--gold); }
    .rev-mark { font-family: var(--font-display); font-size: 4rem; line-height: 0.8; color: var(--gold); opacity: 0.25; margin-bottom: 8px; }
    .rev-text { font-size: 1.05rem; line-height: 1.75; color: var(--text-dark-secondary); margin-bottom: 28px; font-style: italic; }
    .rev-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid rgba(0,0,0,0.06); }
    .rev-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-muted) 100%);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--black);
    }
    .rev-author h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
    .rev-author span { font-size: 0.78rem; color: var(--text-dark-secondary); }

    /* ═══ 7. CTA FINAL (DARK) ═══ */
    .cta {
      padding: 120px 0; background: var(--black); position: relative; overflow: hidden;
    }
    .cta-glow {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 193, 7, 0.07) 0%, transparent 50%);
      pointer-events: none;
    }
    .cta-inner { text-align: center; position: relative; z-index: 2; }
    .cta-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(1.85rem, 4.5vw, 3rem);
      font-weight: 800; margin-bottom: 16px; line-height: 1.15;
    }
    .cta-inner h2 .em { color: var(--gold); }
    .cta-inner p { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 40px; }
    .btn-cta-final { font-size: 1.05rem; padding: 20px 44px; }

    /* ═══ 8. FOOTER ═══ */
    .footer {
      padding: 56px 0 32px; background: var(--surface-dark);
      border-top: 1px solid var(--border-subtle);
    }
    .footer-top {
      display: grid; grid-template-columns: 1fr; gap: 36px;
      padding-bottom: 32px; border-bottom: 1px solid var(--border-subtle); text-align: center;
    }
    
    .footer-brand-name {
      display: inline-flex;
      align-items: center;
      max-width: 166px;
      margin-bottom: 12px;
    }
    .footer-brand-name img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }

    .footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
    .footer-links { display: flex; flex-direction: column; gap: 14px; align-items: center; }
    .footer-link {
      display: flex; align-items: center; gap: 10px;
      font-size: 0.88rem; color: var(--text-secondary); transition: color 0.3s;
    }
    .footer-link:hover { color: var(--gold); }
    .footer-link svg { width: 16px; height: 16px; color: var(--gold); flex-shrink: 0; }
    .footer-copy { text-align: center; padding-top: 24px; font-size: 0.75rem; color: var(--text-muted); }

    /* ═══ WHATSAPP FLOAT ═══ */
    .wa-float {
      position: fixed; bottom: 24px; right: 24px; z-index: 90;
      width: 62px; height: 62px; border-radius: 50%; background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
      transition: all 0.4s var(--ease-out);
      animation: gentleFloat 3s ease-in-out infinite;
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5); animation-play-state: paused; }
    .wa-float svg { width: 30px; height: 30px; color: white; }
    .wa-float::before {
      content: 'Fale conosco'; position: absolute; right: 74px;
      background: white; color: var(--black); font-weight: 600; font-size: 0.78rem;
      padding: 8px 16px; border-radius: 10px; white-space: nowrap;
      opacity: 0; pointer-events: none; transition: all 0.3s var(--ease-out);
      box-shadow: 0 4px 16px rgba(0,0,0,0.12); transform: translateX(8px);
    }
    .wa-float:hover::before { opacity: 1; transform: translateX(0); }

    /* ═══ 7. CLIENTES E PARCEIROS — MARQUEE ═══ */
    .clients {
      padding: 100px 0 96px;
      background: var(--black-rich);
      position: relative;
      overflow: hidden;
    }
    .clients::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent 10%, var(--border-subtle) 50%, transparent 90%);
    }
    .clients-header {
      margin-bottom: 52px;
    }
    .clients-header .section-desc {
      margin-top: 20px;
    }

    /* ── Wrapper: clip + fade nas bordas ── */
    .clients-track-wrapper {
      overflow: hidden;
      position: relative;
      mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0,0,0,1) 7%,
        rgba(0,0,0,1) 93%,
        transparent 100%
      );
      -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0,0,0,1) 7%,
        rgba(0,0,0,1) 93%,
        transparent 100%
      );
    }

    /* ── Track: flex + animação contínua ── */
    .clients-track {
      display: flex;
      gap: 18px;
      width: max-content;
      animation: logoScroll 34s linear infinite;
      will-change: transform;
    }
    .clients-track-wrapper:hover .clients-track {
      animation-play-state: paused;
    }

    /* translateX(-50%) desloca exatamente 1 set (metade dos 12 cards) */
    @keyframes logoScroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ── Cards ── */
    .clients-logo-card {
      flex: 0 0 210px;
      height: 126px;
      background: var(--surface-card);
      border: 1px solid var(--border-subtle);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px 24px;
      transition:
        border-color 0.45s var(--ease-out),
        background   0.45s var(--ease-out),
        box-shadow   0.45s var(--ease-out);
      cursor: default;
    }
    .clients-logo-card:hover {
      border-color: rgba(255, 193, 7, 0.16);
      background: var(--surface-elevated);
      box-shadow: 0 8px 36px rgba(0, 0, 0, 0.3);
    }
    .clients-logo-card--white {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(255, 255, 255, 0.10);
    }
    .clients-logo-card--white:hover {
      background: rgba(255, 255, 255, 0.10);
      border-color: rgba(255, 255, 255, 0.16);
      box-shadow: 0 8px 36px rgba(0, 0, 0, 0.28);
    }

    /* ── Imagens base ── */
    .clients-logo-card img {
      max-width: 100%;
      max-height: 64px;
      width: auto;
      height: auto;
      object-fit: contain;
      display: block;
      margin: 0 auto;
      pointer-events: none;
      filter: grayscale(22%) brightness(0.86) opacity(0.82);
      transition: filter 0.45s var(--ease-out);
    }
    .clients-logo-card:hover img {
      filter: grayscale(0%) brightness(1.06) opacity(1);
    }
    .clients-logo-card--white img {
      filter: grayscale(0%) brightness(1.08) opacity(0.9);
    }
    .clients-logo-card--white:hover img {
      filter: grayscale(0%) brightness(1.15) opacity(1);
    }

    /* ── Ajuste fino por logo ── */
    .logo-aceba     { max-width: 94px;  max-height: 94px;  }
    .logo-ijcpm     { max-width: 174px; max-height: 58px;  }
    .logo-rhema     { max-width: 80px;  max-height: 80px;  }
    .logo-djoana    { max-width: 98px;  max-height: 98px;  }
    .logo-plan      { max-width: 168px; max-height: 54px;  }
    .logo-petrobras { max-width: 76px;  max-height: 76px;  }

    /* ═══ RESPONSIVE — MOBILE FIRST (360-430px) ═══ */
    @media (max-width: 767px) {
      .container { padding: 0 16px; }

      /* Nav mobile */
      .nav { padding: 14px 0; }
      .nav.scrolled { padding: 10px 0; }
      .nav-logo { max-width: 128px; }
      .nav-cta { font-size: 0.78rem; padding: 8px 16px; gap: 6px; }
      .nav-cta svg { width: 13px; height: 13px; }

      /* Hero mobile */
      .hero { padding: 104px 0 56px; min-height: auto; }
      .hero-bg { background-position: 68% center; }
      .hero .container { display: block; }
      .hero-content { max-width: 100%; }
      .hero-badge { font-size: 0.65rem; padding: 6px 14px; margin-bottom: 20px; }
      .hero-title { font-size: 1.85rem; margin-bottom: 16px; line-height: 1.08; max-width: 12ch; }
      .hero-sub { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.65; max-width: 100%; }
      .hero-checks { gap: 10px; margin-bottom: 28px; max-width: 100%; }
      .hero-checks li { font-size: 0.88rem; gap: 10px; }
      .chk { width: 22px; height: 22px; }
      .chk svg { width: 11px; height: 11px; }

      /* CTA buttons mobile — full width */
      .hero-actions { display: block; }
      .hero-content .btn { width: 100%; justify-content: center; padding: 16px 24px; font-size: 0.92rem; }
      .aud-card-body .btn { width: 100%; justify-content: center; padding: 14px 20px; font-size: 0.88rem; }

      /* Sections padding mobile */
      .audience, .services, .diff, .reviews { padding: 64px 0; }
      .cta { padding: 72px 0; }

      /* Section headings mobile */
      .section-heading { font-size: 1.5rem; }
      .section-desc { font-size: 0.95rem; }
      .section-label { font-size: 0.65rem; margin-bottom: 12px; }

      /* About cards mobile */
      .about-grid { gap: 14px; margin-top: 36px; }
      .about-card { padding: 28px 20px; }
      .about-icon { width: 56px; height: 56px; margin-bottom: 14px; }
      .about-icon svg { width: 24px; height: 24px; }
      .about-card h3 { font-size: 1rem; }

      /* Audience cards mobile */
      .audience-cards { gap: 20px; margin-top: 36px; }
      .aud-card-top { padding: 20px 20px; gap: 14px; }
      .aud-card-top h3 { font-size: 1.05rem; }
      .aud-icon { width: 44px; height: 44px; border-radius: 12px; }
      .aud-icon svg { width: 20px; height: 20px; }
      .aud-card-body { padding: 24px 20px; }
      .aud-card-body ul { gap: 14px; margin-bottom: 24px; }
      .aud-card-body li { font-size: 0.88rem; gap: 12px; }

      /* Services mobile */
      .services-grid { gap: 20px; margin-top: 36px; }
      .srv-col { padding: 28px 20px; }
      .srv-col h3 { font-size: 1.15rem; margin-bottom: 20px; }
      .srv-list li { padding: 14px 0; gap: 12px; }
      .srv-num { width: 28px; height: 28px; font-size: 0.75rem; }
      .srv-name { font-size: 0.9rem; }
      .srv-desc-text { font-size: 0.78rem; }

      /* Differentials mobile — 2 columns maintained but smaller */
      .diff-grid { gap: 12px; margin-top: 36px; }
      .diff-card { padding: 24px 14px; border-radius: 14px; }
      .diff-card-ic { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 12px; }
      .diff-card-ic svg { width: 20px; height: 20px; }
      .diff-card h3 { font-size: 0.82rem; margin-bottom: 6px; }
      .diff-card p { font-size: 0.72rem; line-height: 1.45; }

      /* Reviews mobile */
      .reviews-grid { margin-top: 36px; gap: 20px; }
      .rev-card { padding: 28px 20px; border-radius: 16px; }
      .rev-mark { font-size: 3rem; }
      .rev-text { font-size: 0.95rem; margin-bottom: 20px; }
      .rev-author { padding-top: 16px; gap: 12px; }
      .rev-avatar { width: 40px; height: 40px; font-size: 0.85rem; }
      .rev-author h4 { font-size: 0.88rem; }

      /* CTA final mobile */
      .cta-inner h2 { font-size: 1.5rem; }
      .cta-inner p { font-size: 0.95rem; margin-bottom: 28px; }
      .cta-inner .btn { width: 100%; justify-content: center; }

      /* Footer mobile */
      .footer { padding: 40px 0 24px; }
      .footer-top { gap: 28px; padding-bottom: 24px; }
      .footer-brand-name { max-width: 118px; }
      .footer-brand p { font-size: 0.8rem; }
      .footer-links { gap: 12px; }
      .footer-link { font-size: 0.82rem; }
      .footer-copy { font-size: 0.7rem; }

      /* WhatsApp float mobile */
      .wa-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
      .wa-float svg { width: 26px; height: 26px; }
      .wa-float::before { display: none; }
    }

    /* Extra small: 360px specific tweaks */
    @media (max-width: 374px) {
      .container { padding: 0 14px; }
      .hero-title { font-size: 1.6rem; max-width: 11ch; }
      .hero-checks li { font-size: 0.82rem; }
      .hero-content .btn { font-size: 0.85rem; padding: 13px 20px; }
      .section-heading { font-size: 1.35rem; }
      .diff-card { padding: 20px 10px; }
      .diff-card h3 { font-size: 0.78rem; }
      .diff-card p { font-size: 0.68rem; }
      .aud-card-top h3 { font-size: 0.95rem; }
      .aud-card-body .btn { font-size: 0.82rem; padding: 13px 16px; }
      .footer-link { font-size: 0.78rem; }
    }

    /* ═══ RESPONSIVE — TABLET (768px+) ═══ */
    @media (min-width: 768px) {
      .hero { padding: 132px 0 92px; }
      .hero-bg { background-position: 72% center; }
      .about-grid { grid-template-columns: repeat(3, 1fr); }
      .audience-cards { grid-template-columns: 1fr 1fr; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .reviews-grid { grid-template-columns: 1fr 1fr; }
      .diff-grid { grid-template-columns: repeat(4, 1fr); }
      /* clients carousel: sem alteração de grid no tablet */
      .footer-top { grid-template-columns: 1fr 1fr; text-align: left; }
      .footer-links { align-items: flex-end; }
    }

    /* ═══ RESPONSIVE — DESKTOP (1024px+) ═══ */
    @media (min-width: 1024px) {
      .hero { padding: 132px 0 120px; }
      .hero-bg { background-position: right center; }
      .container { padding: 0 40px; }
      /* clients carousel: desktop usa track flex, sem grid */
    }
  
    /* ── Clients carousel — mobile ── */
    @media (max-width: 560px) {
      .clients { padding: 72px 0; }
      .clients-logo-card {
        flex: 0 0 170px;
        height: 106px;
        padding: 16px 18px;
        border-radius: 12px;
      }
      .clients-track {
        gap: 14px;
        /* Mantém velocidade percebida proporcional à largura menor */
        animation-duration: 27s;
      }
      .clients-track-wrapper {
        mask-image: linear-gradient(
          90deg,
          transparent 0%,
          rgba(0,0,0,1) 5%,
          rgba(0,0,0,1) 95%,
          transparent 100%
        );
        -webkit-mask-image: linear-gradient(
          90deg,
          transparent 0%,
          rgba(0,0,0,1) 5%,
          rgba(0,0,0,1) 95%,
          transparent 100%
        );
      }
      .clients-logo-card img { max-height: 52px; }
      .logo-aceba     { max-width: 76px;  max-height: 76px;  }
      .logo-ijcpm     { max-width: 142px; max-height: 46px;  }
      .logo-rhema     { max-width: 66px;  max-height: 66px;  }
      .logo-djoana    { max-width: 80px;  max-height: 80px;  }
      .logo-plan      { max-width: 138px; max-height: 44px;  }
      .logo-petrobras { max-width: 62px;  max-height: 62px;  }
    }
