    /* Fallback com metricas casadas p/ 'Inter' — elimina CLS de font-swap ('Inter' vem do Google Fonts) */
    @font-face{font-family:'Inter Fallback';src:local('Arial'),local('Helvetica Neue'),local('Roboto');ascent-override:90.47%;descent-override:22.53%;line-gap-override:0%;size-adjust:107.08%}

﻿
    /* ══════════════════════════════════════════════
       TOKENS — Prolpet brand
    ══════════════════════════════════════════════ */
    :root {
      --red:        #C1030B;
      --red-dark:   #8f0207;
      --red-light:  #e8050f;
      --red-glow:   rgba(193,3,11,0.30);
      --blue:       #243746;
      --blue-deep:  #1a2b38;

      --bg-page:    #ffffff;
      --bg-panel:   rgba(255,255,255,0.52); /* glass panel */
      --border-panel: rgba(255,255,255,0.55);

      --text-head:  #18222b;
      --text-sub:   #5a6472;
      --text-muted: #6f7782;
      --divider:    rgba(36,55,70,0.12);

      --font: 'Inter', 'Inter Fallback', system-ui, -apple-system, sans-serif;
      --r-panel: 2.5rem;   /* 40px — matches GenLabs */
      --r-card:  2rem;     /* 32px — right card */
      --r-pill:  9999px;
    }

    /* ══════════════════════════════════════════════
       BASE
    ══════════════════════════════════════════════ */
    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { font-size:16px; -webkit-font-smoothing:antialiased; scroll-behavior:smooth; overflow-x: clip; }
    body {
      font-family: var(--font);
      background: var(--bg-page);
      min-height: 100svh;
      display: flex;
      flex-direction: column;
      align-items: stretch;
      padding: 0;
      color: var(--text-head);
      overflow-x: hidden; /* fallback (Safari antigo) */
      overflow-x: clip;   /* trava rolagem lateral no mobile sem virar scroll-container */
    }

    /* ══════════════════════════════════════════════
       ACESSIBILIDADE — skip link + foco visível
    ══════════════════════════════════════════════ */
    .skip-link {
      position: absolute;
      left: 8px; top: -56px;
      z-index: 200;
      background: var(--blue);
      color: #fff;
      padding: 10px 16px;
      border-radius: 8px;
      font-size: 14px; font-weight: 600;
      text-decoration: none;
      transition: top .2s ease;
    }
    .skip-link:focus { top: 8px; }
    :focus-visible {
      outline: 3px solid var(--blue);
      outline-offset: 2px;
    }
    [tabindex="-1"]:focus { outline: none; }

    /* [ui-ux-pro-max] cursor de mão em elementos clicáveis (button não tem por padrão) */
    button:not(:disabled), [role="button"] { cursor: pointer; }

    /* ══════════════════════════════════════════════
       CONTAINER — reusable max-width wrapper
    ══════════════════════════════════════════════ */
    .container {
      width: 100%;
      max-width: 1400px;
      margin-inline: auto;
      padding-inline: 24px;
    }
    @media (max-width: 768px) {
      .container { padding-inline: 16px; }
    }

    /* ══════════════════════════════════════════════
       MAIN PANEL — the glass card (GenLabs exact)
    ══════════════════════════════════════════════ */
    #panel {
      position: relative;
      width: 100%;
      max-width: 100%;
      background: var(--bg-panel);
      backdrop-filter: blur(24px) saturate(1.6);
      -webkit-backdrop-filter: blur(24px) saturate(1.6);
      border: none;
      border-radius: 0;
      box-shadow: none;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      padding: 1.5rem max(24px, calc((100vw - 1400px) / 2 + 24px));
      gap: 0;
    }

    /* ── Vertical grid lines (exact GenLabs pattern) ── */
    #grid-lines {
      position: absolute;
      inset: 0;
      display: flex;
      justify-content: space-between;
      padding: 0 max(3rem, 8vw);
      pointer-events: none;
      z-index: 0;
    }
    #grid-lines span {
      display: block;
      width: 1px;
      height: 100%;
      background: rgba(36,55,70,0.055);
    }

    /* ══════════════════════════════════════════════
       HEADER
    ══════════════════════════════════════════════ */
    #site-header {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2.44rem;
      gap: 1rem;
    }

    /* Logo — left */
    .logo {
      display: flex;
      align-items: center;
      gap: 9px;
      text-decoration: none;
      flex-shrink: 0;
    }
    .logo-circle {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: linear-gradient(160deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.2) 100%);
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(255,255,255,0.18);
      flex-shrink: 0;
    }
    .logo-word {
      font-size: 14px;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--text-head);
    }
    .logo-word em {
      font-style: normal;
      color: var(--text-muted);
    }

    /* Pill nav — center */
    #nav-pill {
      position: absolute;
      left: 50%; transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 2rem;
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.65);
      border-radius: var(--r-pill);
      padding: 0.5rem 1.75rem;
      box-shadow: 0 2px 10px rgba(36,55,70,0.07), 0 1px 0 rgba(25,28,33,0.02);
    }
    #nav-pill a {
      text-decoration: none;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      transition: color .22s;
    }
    #nav-pill a:hover { color: var(--text-head); }

    /* Header CTA — right */
    #btn-header {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(36,55,70,0.65);
      background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.08) 100%);
      border: none;
      border-radius: 8px;
      padding: 0.65rem 1.4rem;
      cursor: pointer;
      text-decoration: none;
      transition: transform .22s, box-shadow .22s;
      box-shadow:
        0 18px 35px rgba(31,41,55,0.22),
        0 0 0 1px rgba(209,213,219,0.28);
      position: relative;
    }
    #btn-header::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(0,0,0,0.35), rgba(255,255,255,0.75));
      padding: 1px;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }
    #btn-header:hover { transform: translateY(-1px); }
    #btn-header svg { transition: transform .22s; }
    #btn-header:hover svg { transform: translateX(3px); }

    /* ══════════════════════════════════════════════
       HERO GRID — 7 / 5 columns (GenLabs exact)
    ══════════════════════════════════════════════ */
    #hero {
      flex: 1;
      display: grid;
      grid-template-columns: 6fr 5fr;
      grid-template-rows: auto auto 1fr;
      grid-template-areas:
        "top  card"
        "bot  card"
        ".    card";
      column-gap: 1.5rem;
      row-gap: 0;
      position: relative;
      z-index: 2;
      padding: 1rem 0;
    }

    #hero-text-top {
      grid-area: top;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding-bottom: 1.5rem;
    }
    #hero-text-bottom {
      grid-area: bot;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }


    .hero-badge-spacer { height: 39px; margin-bottom: 1rem; }

    /* Headline — mixed weights (GenLabs exact pattern) */
    #hero-heading {
      font-size: clamp(38px, 5.2vw, 86px);
      line-height: 0.95;
      letter-spacing: -0.035em;
      color: var(--text-head);
      margin-bottom: 1.25rem;
    }
    #hero-heading .bold   { font-weight: 700; }
    #hero-heading .light  {
      font-weight: 300;
      color: transparent;
      background: linear-gradient(90deg, #b0bec8 0%, #cdd5da 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }
    #hero-heading .accent {
      font-weight: 700;
      color: transparent;
      background: linear-gradient(130deg, var(--red) 0%, var(--red-light) 60%, #ff4d52 100%);
      -webkit-background-clip: text;
      background-clip: text;
    }

    /* Subtitle — left border line (GenLabs pattern) */
    #hero-sub {
      font-size: 17px;
      font-weight: 400;
      line-height: 1.68;
      color: var(--text-sub);
      max-width: 480px;
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
      border-left: 2px solid rgba(36,55,70,0.15);
    }

    /* Buttons row */
    #hero-btns {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-wrap: wrap;
      margin-bottom: 2rem;
    }

    /* Primary button — red gradient (GenLabs style with glow) */
    .btn-p {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: -0.01em;
      color: white;
      background: var(--red);
      border: none;
      border-radius: var(--r-pill);
      padding: 0.75rem 1.5rem;
      cursor: pointer;
      text-decoration: none;
      position: relative;
      overflow: hidden;
      transition: transform .28s cubic-bezier(.2,.7,.2,1.08), box-shadow .28s;
      box-shadow:
        0 15px 28px -10px rgba(193,3,11,0.65),
        inset 0 4px 8px rgba(255,120,120,0.45),
        inset 0 -4px 8px rgba(150,2,8,0.5);
    }
    .btn-p::after {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 50%;
      background: linear-gradient(to bottom, rgba(255,255,255,0.14), transparent);
      pointer-events: none;
    }
    .btn-p:hover {
      transform: translateY(-2px) scale(1.01);
      box-shadow:
        0 20px 36px -8px rgba(193,3,11,0.72),
        inset 0 4px 8px rgba(255,120,120,0.5),
        inset 0 -4px 8px rgba(150,2,8,0.55);
    }
    .btn-p .btn-badge {
      display: flex; align-items: center; justify-content: center;
      background: rgba(0,0,0,0.12);
      border-radius: 50%;
      width: 26px; height: 26px;
      transition: transform .22s;
    }
    .btn-p:hover .btn-badge { transform: translateX(3px); }

    /* Secondary button — ghost (GenLabs style) */
    .btn-s {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      font-family: var(--font);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: -0.01em;
      color: rgba(36,55,70,0.65);
      background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.08) 100%);
      border: none;
      border-radius: var(--r-pill);
      padding: 0.75rem 1.5rem;
      cursor: pointer;
      text-decoration: none;
      position: relative;
      transition: transform .22s, background .22s;
      box-shadow:
        0 18px 35px rgba(31,41,55,0.22),
        0 0 0 1px rgba(209,213,219,0.28);
    }
    .btn-s::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: var(--r-pill);
      background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(0,0,0,0.35), rgba(255,255,255,0.75));
      padding: 1px;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }
    .btn-s:hover {
      transform: translateY(-1px);
      color: rgba(36,55,70,0.85);
    }
    .btn-s svg { transition: transform .22s; }
    .btn-s:hover svg { transform: translateX(3px); }

    /* Stats strip — GenLabs exact */
    #hero-stats {
      display: flex;
      align-items: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      padding: 0 1.25rem;
      cursor: default;
    }
    .stat-item:first-child { padding-left: 0.25rem; }
    .stat-lbl {
      font-size: 10px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--text-muted);
      margin-bottom: 4px;
      transition: color .2s;
    }
    .stat-item:hover .stat-lbl { color: var(--text-sub); }
    .stat-val {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-head);
    }
    /* Curve separator (GenLabs design system) */
    .curve-sep {
      width: 1px;
      height: 38px;
      background: linear-gradient(to bottom, transparent, rgba(36,55,70,0.15), transparent);
      margin-left: 1rem;
      flex-shrink: 0;
    }

    /* ══════════════════════════════════════════════
       RIGHT — DARK CARD (GenLabs exact)
    ══════════════════════════════════════════════ */
    #hero-card {
      grid-area: card;
      position: relative;
      border-radius: var(--r-card);
      overflow: hidden;
      background: transparent;
      box-shadow: none;
      border: none;
      height: 100%;
      min-height: 560px;
      display: flex;
      flex-direction: column;
    }

    /* Inner image — multiply on light bg makes white transparent */
    #card-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: bottom center;
      mix-blend-mode: multiply;   /* fundo branco da PNG some sobre fundo claro */
    }

    /* Subtle bottom fade — transparent, very light */
    .card-grad-bot {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 35%;
      background: linear-gradient(to top, rgba(235,235,234,0.55) 0%, transparent 100%);
      pointer-events: none;
      z-index: 2;
    }

    /* ── Live badge (top-left of card) ── */
    #live-badge {
      position: absolute;
      top: 20px; left: 20px;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.72);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(255,255,255,0.85);
      border-radius: var(--r-pill);
      padding: 6px 14px;
      box-shadow: 0 2px 12px rgba(36,55,70,0.1);
    }
    .live-ring {
      position: relative; width: 8px; height: 8px; flex-shrink: 0;
    }
    .live-ring::before {
      content: ''; position: absolute; inset: 0; border-radius: 50%;
      background: #4ade80; opacity: .75;
      animation: ring-ping 1.6s ease-in-out infinite;
    }
    .live-ring::after {
      content: ''; position: absolute; inset: 1px; border-radius: 50%; background: #22c55e;
    }
    @keyframes ring-ping {
      0%        { transform: scale(1); opacity: .75; }
      75%, 100% { transform: scale(2.4); opacity: 0; }
    }
    #live-badge span {
      font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: .1em;
      color: var(--blue-deep);
    }

    /* ── Bell button top-right ── */
    #card-bell {
      position: absolute;
      top: 16px; right: 16px;
      z-index: 10;
      width: 62px; height: 62px;
      display: flex; align-items: center; justify-content: center;
    }

    /* ── Stats mini card bottom-left ── */
    #card-mini {
      position: absolute;
      bottom: 110px; left: 20px;
      z-index: 10;
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(20px) saturate(1.5);
      -webkit-backdrop-filter: blur(20px) saturate(1.5);
      border: 1px solid rgba(255,255,255,0.9);
      border-radius: 14px;
      padding: 14px 18px;
      min-width: 200px;
      box-shadow: 0 8px 28px rgba(36,55,70,0.12), 0 2px 8px rgba(36,55,70,0.07);
      transform: translateY(5px);
      transition: transform .5s ease;
    }
    #hero-card:hover #card-mini { transform: translateY(0); }
    .mini-header {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 10px;
    }
    .mini-logo {
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--red);
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 800; color: white;
    }
    .mini-name { font-size: 12px; font-weight: 600; color: var(--text-head); }
    .mini-delta { font-size: 11px; font-weight: 700; color: #16a34a; font-family: monospace; }
    /* Mini bar chart */
    .mini-bars {
      display: flex; align-items: flex-end; gap: 3px;
      height: 36px; margin-bottom: 8px;
    }
    .mini-bars .bar {
      flex: 1; border-radius: 2px 2px 0 0;
      background: rgba(36,55,70,0.12);
      transition: background .2s;
    }
    .mini-bars .bar.active { background: var(--red); box-shadow: 0 0 8px var(--red-glow); }
    #hero-card:hover .mini-bars .bar { background: rgba(36,55,70,0.18); }
    #hero-card:hover .mini-bars .bar.active { background: var(--red-light); }
    .mini-footer { display: flex; flex-direction: column; }
    .mini-label { font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
    .mini-value { font-size: 16px; font-weight: 700; color: var(--text-head); letter-spacing: -.03em; line-height: 1.1; }

    /* ── Reviewer strip at bottom ── */
    #card-review {
      position: absolute;
      bottom: 20px; left: 20px; right: 20px;
      z-index: 10;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(24px) saturate(1.8);
      -webkit-backdrop-filter: blur(24px) saturate(1.8);
      border: 1px solid rgba(255,255,255,0.35);
      border-radius: 16px;
      padding: 12px 16px;
      overflow: hidden;
      height: 60px;
      box-shadow:
        0 4px 24px rgba(36,55,70,0.1),
        inset 0 1px 0 rgba(255,255,255,0.55);
    }
    .rev-item {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 20px;
      opacity: 0;
      filter: blur(5px);
      transition: opacity 0.45s ease, filter 0.45s ease;
    }
    .rev-item.active { opacity: 1; filter: blur(0px); }
    .rev-av {
      width: 32px; height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #c8dde8, #7ea8c0);
      border: 1.5px solid rgba(255,255,255,0.6);
      flex-shrink: 0;
      overflow: hidden; display: flex; align-items: center; justify-content: center;
    }
    .rev-av img { width:100%; height:100%; object-fit:cover; border-radius:50%; display:block; }
    .rev-body { display: flex; flex-direction: column; }
    .rev-name { font-size: 12px; font-weight: 600; color: #18222b; }
    .rev-quote {
      font-size: 11px; color: rgba(24,34,43,0.75);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      max-width: 200px;
    }

    /* ══════════════════════════════════════════════
       ANIMATION INITIAL STATES
    ══════════════════════════════════════════════ */
    .will-blur,
    .will-blur-card {
      opacity: 1;
    }

    /* ══════════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════════ */
    @media (max-width:1024px) {
      body { padding: 0; }
      #panel { padding: 1.25rem 24px; border-radius: 0; }
      #site-header { margin-bottom: 1.25rem; }
      .hero-badge-spacer { display: none; }
      #hero {
        display: flex;
        flex-direction: column;
        gap: 1.8rem;
        padding: 0;
      }
      #hero-text-top {
        order: 1;
        padding-bottom: 0;
        justify-content: flex-start;
      }
      #hero-card {
        order: 2;
        min-height: 380px;
        width: 100%;
      }
      #hero-text-bottom {
        order: 3;
        width: 100%;
      }
      #nav-pill { display: none; }
      #hero-sub {
        border-left: 2px solid rgba(36,55,70,0.15);
        padding-left: 1.5rem;
        text-align: left;
        max-width: 100%;
      }
      #hero-btns { flex-direction: column; align-items: stretch; width: 100%; gap: 1.25rem; margin-bottom: 2rem; }
      .btn-p, .btn-s { width: 100%; justify-content: center; text-align: center; }
      #hero-stats { justify-content: center; flex-wrap: nowrap; width: 100%; }
      #hero-stats .stat-item { padding: 0 0.6rem; }
      #hero-stats .stat-item:first-child { padding-left: 0; }
      #hero-stats .stat-lbl { font-size: 7px; letter-spacing: 0.06em; margin-bottom: 2px; }
      #hero-stats .stat-val { font-size: 11px; }
      #hero-stats .curve-sep { height: 26px; }
    }

    @media (max-width:640px) {
      #panel { padding: 0.75rem; min-height: auto; }
      #site-header { margin-bottom: 4rem; }
      #hero-heading { font-size: clamp(28px, 8.5vw, 44px); margin-bottom: 0.9rem; }
      #hero-sub { font-size: 14px; margin-bottom: 1.08rem; }
      #hero { gap: 1.08rem; }
      #hero-card { min-height: 220px; }
      #live-badge { display: none; }
      #card-bell { width: 46px; height: 46px; top: 10px; right: 10px; }
      #card-img { object-position: 65% bottom; }
      #card-mini {
        transform: scale(0.65);
        transform-origin: bottom left;
        bottom: 84px;
        left: 8px;
        min-width: 160px;
      }
    }

    /* ══════════════════════════════════════════════
       SECTION 2 — AVALIAÇÕES GOOGLE
    ══════════════════════════════════════════════ */
    #avaliacoes {
      background: #ffffff;
      padding: 4rem 0 3rem;
    }

    /* Trust bar */
    #sp-trust {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 2.75rem;
    }
    #sp-avatars {
      display: flex;
      align-items: center;
    }
    .sp-av {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 3px solid #ffffff;
      overflow: hidden;
      flex-shrink: 0;
      background: #d1fae5;
      box-shadow: 0 0 0 2.5px #22c55e;
    }
    .sp-av + .sp-av { margin-left: -10px; }
    .sp-av img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .sp-av-plus {
      width: 48px; height: 48px;
      border-radius: 50%;
      border: 3px solid #ffffff;
      background: var(--blue-deep);
      color: white;
      font-size: 22px; font-weight: 700; line-height: 1;
      display: flex; align-items: center; justify-content: center;
      margin-left: -10px;
      flex-shrink: 0;
      box-shadow: 0 0 0 2.5px #22c55e;
    }
    #sp-rating-block {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    #sp-big-number {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--text-head);
      letter-spacing: -0.04em;
      line-height: 1;
    }
    #sp-trophy { font-size: 1.75rem; line-height: 1; }
    #sp-rating-detail {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .sp-stars-gold { color: #f59e0b; font-size: 14px; letter-spacing: 1px; }
    .sp-review-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }

    /* Marquee wrapper — breaks out of section padding */
    @keyframes sp-marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    #sp-marquee-outer {
      overflow: hidden;
      margin: 0 -24px;
      position: relative;
      -webkit-mask-image: linear-gradient(to right, transparent 0px, black 140px, black calc(100% - 140px), transparent 100%);
      mask-image: linear-gradient(to right, transparent 0px, black 140px, black calc(100% - 140px), transparent 100%);
    }
    #sp-marquee-outer:hover #sp-track,
    #sp-marquee-outer.paused #sp-track {
      animation-play-state: paused;
    }
    #sp-track {
      display: flex;
      gap: 1.25rem;
      width: max-content;
      padding: 0.5rem 0 1rem;
      animation: sp-marquee-scroll 55s linear infinite;
      will-change: transform;
    }

    /* Review card */
    .sp-card {
      width: 320px;
      flex-shrink: 0;
      background: #ffffff;
      border: 1px solid rgba(36,55,70,0.09);
      border-radius: 16px;
      padding: 1.25rem 1.25rem 1rem;
      box-shadow: 0 2px 14px rgba(36,55,70,0.06);
      display: flex;
      flex-direction: column;
    }
    .sp-card-head {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.875rem;
    }
    .sp-initials {
      width: 44px; height: 44px;
      border-radius: 50%;
      font-size: 13px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .sp-av-photo {
      width: 44px; height: 44px; border-radius: 50%;
      overflow: hidden; flex-shrink: 0; background: #e5e7eb;
    }
    .sp-av-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .sp-card-meta { flex: 1; min-width: 0; }
    .sp-name-row {
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 3px;
    }
    .sp-name {
      font-size: 13.5px; font-weight: 600;
      color: var(--text-head);
      white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    }
    .sp-g-icon { width: 16px; height: 16px; flex-shrink: 0; }
    .sp-card-stars { display: flex; gap: 1px; }
    .sp-card-stars span { color: #f59e0b; font-size: 13px; }
    .sp-card-text {
      font-size: 13px; line-height: 1.65;
      color: var(--text-sub);
      flex: 1;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      overflow: hidden;
      margin-bottom: 0.75rem;
    }
    .sp-continue {
      font-size: 12px; font-weight: 600;
      color: #16a34a;
      text-decoration: none;
      margin-bottom: 0.25rem;
      cursor: pointer;
      background: none; border: none; padding: 0;
      font-family: var(--font); text-align: left; display: block;
    }
    .sp-time { font-size: 12px; color: var(--text-muted); }
    .sp-card-text.expanded {
      display: block;
      -webkit-line-clamp: unset;
      overflow: visible;
    }

    /* ── Marquee Reclame Aqui — desliza para a direita (reusa o mesmo keyframe) ── */
    #sp-marquee-outer-ra {
      overflow: hidden;
      margin: 0 -24px;
      position: relative;
      -webkit-mask-image: linear-gradient(to right, transparent 0px, black 140px, black calc(100% - 140px), transparent 100%);
      mask-image: linear-gradient(to right, transparent 0px, black 140px, black calc(100% - 140px), transparent 100%);
    }
    #sp-marquee-outer-ra:hover #sp-track-ra,
    #sp-marquee-outer-ra.paused #sp-track-ra {
      animation-play-state: paused;
    }
    #sp-track-ra {
      display: flex;
      gap: 1.25rem;
      width: max-content;
      padding: 0.5rem 0 1rem;
      animation: sp-marquee-scroll 55s linear infinite reverse;
      will-change: transform;
    }
    .sp-ra-icon { width: 18px; height: 18px; flex-shrink: 0; }
    .sp-ra-recommend {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 12px; font-weight: 600; color: #00A868;
      margin-bottom: 0.625rem;
    }
    .sp-ra-recommend svg { width: 14px; height: 14px; fill: currentColor; }

    @media (max-width: 640px) {
      #avaliacoes { padding: 2.5rem 0 2rem; }
      #sp-trust { flex-wrap: wrap; gap: 1rem; }
      .sp-av, .sp-av-plus { width: 40px; height: 40px; }
      #sp-big-number { font-size: 1.75rem; }
      #sp-marquee-outer { margin: 0 -16px; }
      #sp-track { padding-left: 16px; padding-right: 16px; }
      #sp-marquee-outer-ra { margin: 0 -16px; }
      #sp-track-ra { padding-left: 16px; padding-right: 16px; }
    }

    /* ══════════════════════════════════════════════
       SECTION 3 — COMO FUNCIONA
    ══════════════════════════════════════════════ */
    #casos-reais {
      background-color: #f9f9f9;
      position: relative;
      overflow: hidden;
      padding: 5.5rem 0 6rem;
    }
    #casos-reais::before { display: none; }

    /* Two-column layout */
    #st-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    /* Left text */
    #st-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1.25rem;
    }
    #st-eyebrow::before, #st-eyebrow::after {
      content: '';
      display: block;
      width: 28px; height: 1px;
      background: currentColor;
      opacity: 0.45;
    }
    #st-title {
      font-size: clamp(26px, 3.4vw, 46px);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: -0.03em;
      color: var(--text-head);
      margin-bottom: 1rem;
    }
    #st-title em { font-style: normal; color: var(--red); }
    #st-bold-sub {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-head);
      margin-bottom: 1rem;
    }
    #st-desc {
      font-size: 15px;
      line-height: 1.75;
      color: var(--text-sub);
    }

    /* Right visual */
    #st-visual { position: relative; padding: 2rem 1rem; max-width: 336px; margin: 0 auto; }

    #st-video-wrap {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(36,55,70,0.18), 0 0 0 1px rgba(36,55,70,0.06);
      aspect-ratio: 1 / 1;
    }
    #st-video-wrap img {
      width: 100%; display: block;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.88);
      transition: filter 0.4s;
    }
    #st-video-wrap:hover img { filter: brightness(0.75); }

    @keyframes st-pulse {
      0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.55); }
      70%  { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
    }
    .st-play {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(255,255,255,0.95);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 32px rgba(0,0,0,0.28);
      animation: st-pulse 2.2s ease-out infinite;
      transition: transform 0.3s cubic-bezier(.2,.8,.2,1), background 0.25s, box-shadow 0.25s;
      color: var(--red);
      z-index: 4;
    }
    .st-play:hover {
      transform: translate(-50%, -50%) scale(1.12);
      background: #fff;
      box-shadow: 0 10px 40px rgba(193,3,11,0.35);
      animation: none;
    }
    .st-play svg { margin-left: 4px; transition: transform 0.2s; }
    .st-play:hover svg { transform: scale(1.15); }

    /* Floating review cards — glassmorphism */
    @keyframes float-bob-a {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-9px); }
    }
    @keyframes float-bob-b {
      0%, 100% { transform: translateY(0px); }
      50%       { transform: translateY(-9px); }
    }
    .st-float {
      position: absolute;
      background: rgba(255,255,255,0.60);
      backdrop-filter: blur(18px) saturate(1.8);
      -webkit-backdrop-filter: blur(18px) saturate(1.8);
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.85);
      padding: 0.45rem 0.85rem;
      box-shadow: 0 8px 32px rgba(36,55,70,0.18), inset 0 1px 0 rgba(255,255,255,0.9);
      max-width: 185px;
      z-index: 3;
    }
    .st-float-a {
      top: 0; right: -1.5rem;
      animation: float-bob-a 3.2s ease-in-out infinite;
    }
    .st-float-b {
      bottom: 0.5rem; left: -1.5rem;
      animation: float-bob-b 3.2s ease-in-out infinite;
      animation-delay: 1.6s;
    }
    .st-float-stars {
      color: #f59e0b;
      font-size: 10px;
      letter-spacing: 1px;
      margin-bottom: 0.2rem;
    }
    .st-float p {
      font-size: 11px;
      font-weight: 500;
      color: var(--text-sub);
      line-height: 1.45;
      margin-bottom: 0.25rem;
    }
    .st-float span {
      font-size: 9.5px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    @media (max-width: 900px) {
      #st-layout { grid-template-columns: 1fr; gap: 2.5rem; }
      #st-visual { padding: 1.5rem 2rem; }
      .st-float-a { right: 0; top: -0.5rem; }
      .st-float-b { left: 0; bottom: 0; }
    }
    @media (max-width: 640px) {
      #casos-reais { padding: 3.5rem 0 4rem; }
      #st-visual { padding: 1.5rem 0.5rem 0.5rem; }
      .st-float { max-width: 118px; padding: 0.35rem 0.55rem; border-radius: 12px; }
      .st-float p { font-size: 9px; margin-bottom: 0.15rem; }
      .st-float-stars { font-size: 8.5px; margin-bottom: 0.15rem; }
      .st-float span { font-size: 8px; }
      .st-float-a { right: 0.25rem; top: 0.25rem; }
      .st-float-b { left: 0.25rem; bottom: 0.25rem; }
    }

    /* ══════════════════════════════════════════════
       SECTION 4 — CARTAZ & ALCANCE
    ══════════════════════════════════════════════ */
    #como-funciona {
      background: #ffffff;
      padding: 5.5rem 0 6rem;
      position: relative;
    }
    #como-funciona::before { display: none; }
    #como-funciona > * { position: relative; z-index: 1; }

    /* Top label */
    #sf-top-label {
      text-align: center;
      font-size: 14px; font-weight: 600;
      color: var(--red); margin-bottom: 4rem;
    }
    #sf-top-label strong { font-weight: 800; }

    /* Two-column layout */
    #sf-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      column-gap: 5rem;
      row-gap: 2rem;
      align-items: start;
    }
    #sf-text   { grid-column: 1; grid-row: 1; }
    #sf-visual { grid-column: 2; grid-row: 1 / 3; align-self: center; }
    #sf-btns   { grid-column: 1; grid-row: 2; }

    /* Left text column */
    #sf-title-main {
      font-size: clamp(26px, 3.4vw, 46px);
      font-weight: 700; line-height: 1.15; letter-spacing: -0.03em;
      color: var(--text-head); margin-bottom: 1.25rem;
    }
    #sf-title-main em { font-style: normal; color: var(--red); }
    #sf-desc {
      font-family: var(--font);
      font-size: 15px; line-height: 1.75;
      color: var(--text-sub); margin-bottom: 2.5rem;
    }
    #sf-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }

    /* Right: device scene */
    #sf-visual { position: relative; }

    #sf-scene {
      background: transparent;
      border-radius: 0;
      padding: 3.5rem 2rem 3rem;
      position: relative;
      min-height: 400px;
      overflow: visible;
      box-shadow: none;
    }
    #sf-scene::before { display: none; }

    /* Background cartaz — depth layer (top-left, behind MacBook) */
    #sf-cartaz-bg {
      position: absolute;
      top: -24px; left: 10px;
      width: 38%;
      opacity: 0.55;
      filter: blur(2.5px) saturate(0.75) brightness(0.95);
      transform: rotate(-14deg);
      z-index: 0;
      pointer-events: none;
      border-radius: 5px;
      box-shadow: 0 6px 20px rgba(36,55,70,0.12);
    }

    /* MacBook device — center of scene */
    #sf-macbook {
      display: block;
      width: 78%;
      height: auto;
      margin: 0 auto;
      position: relative; z-index: 2;
      filter: drop-shadow(0 18px 36px rgba(36,55,70,0.15));
    }

    /* Main PROCURA-SE poster — floating right, prominent */
    #sf-cartaz-main {
      position: absolute;
      right: -1.25rem; top: 14px;
      width: 46%;
      z-index: 3;
      filter: drop-shadow(0 8px 24px rgba(36,55,70,0.22));
      transform: rotate(5deg);
      transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
    }
    #sf-cartaz-main:hover { transform: rotate(1.5deg) scale(1.03); }
    #sf-cartaz-main img { width: 100%; height: auto; display: block; border-radius: 6px; }

    /* Live badge */
    #sf-badge-float {
      position: absolute;
      bottom: 1.25rem; left: 1rem;
      background: #fff; border-radius: 11px;
      padding: 0.6rem 0.875rem;
      box-shadow: 0 4px 16px rgba(36,55,70,0.1), 0 0 0 1px rgba(36,55,70,0.05);
      display: flex; align-items: center; gap: 0.6rem;
      white-space: nowrap; z-index: 4;
    }
    .sf-badge-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #16a34a; flex-shrink: 0;
      animation: sf-pulse 2s ease infinite;
    }
    @keyframes sf-pulse {
      0%,100% { box-shadow: 0 0 0 3px rgba(22,163,74,0.2); }
      50%      { box-shadow: 0 0 0 7px rgba(22,163,74,0.07); }
    }
    .sf-badge-text { font-size: 12px; font-weight: 700; color: var(--text-head); }
    .sf-badge-sub  { font-size: 10.5px; color: var(--text-muted); }

    /* ══ Mecanismo — Cerco Geolocalizado × método comum ══ */
    #mech-block { margin-top: 6.5rem; }
    .mech-eyebrow {
      text-align: center;
      font-size: 13px; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--red); margin-bottom: 0.6rem;
    }
    .mech-title {
      text-align: center;
      font-size: clamp(20px, 2.5vw, 30px);
      font-weight: 700; letter-spacing: -0.02em; line-height: 1.2;
      color: var(--text-head);
      max-width: 620px; margin: 0 auto 2.5rem;
    }
    .mech-title em { font-style: normal; color: var(--red); }

    #mech-compare {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: stretch;
      column-gap: 1.25rem;
    }
    /* aurora atrás — dá ao vidro fosco algo para refratar */
    #mech-compare::before {
      content: "";
      position: absolute; inset: -12% -6%;
      background:
        radial-gradient(38% 60% at 12% 28%, rgba(193,3,11,0.10), transparent 70%),
        radial-gradient(46% 66% at 88% 72%, rgba(193,3,11,0.18), transparent 70%),
        radial-gradient(40% 50% at 58% 8%, rgba(36,55,70,0.07), transparent 70%);
      filter: blur(36px);
      z-index: 0; pointer-events: none;
    }
    .mech-col {
      position: relative; z-index: 1;
      border-radius: 20px;
      padding: 1.875rem 1.875rem 2rem;
      backdrop-filter: blur(22px) saturate(1.5);
      -webkit-backdrop-filter: blur(22px) saturate(1.5);
    }
    .mech-col-head {
      font-size: 12px; font-weight: 800;
      letter-spacing: 0.12em; text-transform: uppercase;
      margin: 0 0 1.375rem;
    }
    .mech-col ul {
      list-style: none; margin: 0; padding: 0;
      display: grid; gap: 0.9rem;
    }
    .mech-col li {
      position: relative;
      padding-left: 2.1rem;
      font-size: 14.5px; line-height: 1.35;
      min-height: 22px;
      display: flex; align-items: center;
    }
    .mech-col li::before {
      position: absolute; left: 0; top: 50%; transform: translateY(-50%);
      width: 22px; height: 22px; border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px; font-weight: 800;
    }

    /* método comum — vidro fosco apagado / inativo */
    .mech-old {
      background: rgba(255,255,255,0.42);
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow:
        0 10px 30px rgba(36,55,70,0.08),
        inset 0 1px 0 rgba(255,255,255,0.7);
    }
    .mech-old .mech-col-head { color: var(--text-muted); }
    .mech-old li { color: var(--text-muted); font-weight: 500; }
    .mech-old li::before {
      content: "✕";
      background: rgba(193,3,11,0.10);
      color: #C1030B;
    }

    /* Cerco Geolocalizado — vidro fosco em destaque com glow vermelho */
    .mech-new {
      overflow: hidden;
      background:
        radial-gradient(130% 90% at 85% 0%, rgba(193,3,11,0.14), transparent 55%),
        rgba(255,255,255,0.55);
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow:
        0 24px 55px rgba(193,3,11,0.16),
        inset 0 1px 0 rgba(255,255,255,0.7);
    }
    .mech-new ul, .mech-new-top { position: relative; z-index: 1; }
    .mech-new-top {
      display: flex; align-items: center; justify-content: space-between;
      gap: 10px; flex-wrap: wrap; margin-bottom: 1.375rem;
    }
    .mech-new .mech-col-head { color: var(--red); margin: 0; }
    .mech-new li { color: var(--text-head); font-weight: 600; }
    .mech-new li::before {
      content: "✓";
      background: rgba(22,163,74,0.12);
      color: #16a34a;
    }

    /* radar motif no canto */
    .mech-radar {
      position: absolute; right: -36px; bottom: -36px;
      width: 210px; height: 210px;
      opacity: 0.07; pointer-events: none; color: var(--red); z-index: 0;
    }
    .mech-radar circle { fill: none; stroke: currentColor; stroke-width: 1; }

    /* badge "cerco ativo" */
    .mech-badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 700;
      letter-spacing: 0.1em; text-transform: uppercase;
      color: #fff; white-space: nowrap;
      background: linear-gradient(135deg, var(--red-light), var(--red));
      border: none;
      border-radius: var(--r-pill);
      padding: 5px 11px 5px 9px;
      box-shadow: 0 4px 12px rgba(193,3,11,0.28);
    }
    .mech-badge-dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: #fff;
      animation: mech-ping 1.6s ease-in-out infinite;
    }
    @keyframes mech-ping {
      0%        { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
      70%, 100% { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
    }

    /* VS pill central */
    .mech-vs {
      align-self: center;
      display: flex; align-items: center; justify-content: center;
      width: 48px; height: 48px; border-radius: 50%;
      background: rgba(255,255,255,0.55);
      backdrop-filter: blur(16px) saturate(1.4);
      -webkit-backdrop-filter: blur(16px) saturate(1.4);
      border: 1px solid rgba(255,255,255,0.7);
      box-shadow: 0 8px 24px rgba(36,55,70,0.14), inset 0 1px 0 rgba(255,255,255,0.8);
      font-size: 12px; font-weight: 800; letter-spacing: 0.04em;
      color: var(--text-head); z-index: 3;
    }

    @media (max-width: 760px) {
      #mech-block { margin-top: 4.5rem; }
      .mech-title { margin-bottom: 2rem; }
      #mech-compare { grid-template-columns: 1fr; row-gap: 1.25rem; }
      .mech-vs { width: 44px; height: 44px; margin: 0 auto; }
      .mech-radar { width: 170px; height: 170px; right: -28px; bottom: -28px; }
    }

    @media (max-width: 900px) {
      #sf-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1rem;
      }
      #sf-text   { grid-column: 1; grid-row: 1; order: 1; }
      #sf-visual { grid-column: 1; grid-row: 2; order: 2; align-self: auto; }
      #sf-btns   { grid-column: 1; grid-row: 3; order: 3; }
      #sf-desc   { margin-bottom: 0; }
      #sf-scene  { padding: 1.5rem 1rem 1rem; min-height: unset; }
      #sf-top-label { margin-bottom: 1.5rem; }
      #sf-cartaz-main { right: -0.5rem; top: 8px; width: 42%; }
      #sf-badge-float { display: none; }
    }
    @media (max-width: 480px) {
      #como-funciona { padding: 2.5rem 0 3rem; }
      #sf-macbook { width: 86%; }
      #sf-cartaz-main { right: -0.25rem; width: 40%; top: 6px; }
    }

    /* ══════════════════════════════════════════════
       SECTION 4B — QUEM SOU EU
    ══════════════════════════════════════════════ */
    #quem-somos {
      background: #f9f9f9;
      padding: 5.5rem 0 6rem;
    }
    #ab-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }

    /* LEFT: text */
    #ab-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      font-family: var(--font);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 1.25rem;
    }
    #ab-eyebrow::before, #ab-eyebrow::after {
      content: '';
      display: block;
      width: 28px; height: 1px;
      background: currentColor;
      opacity: 0.45;
    }
    #ab-title {
      font-family: var(--font);
      font-size: clamp(28px, 3.6vw, 50px);
      font-weight: 700;
      color: var(--text-head);
      line-height: 1.1;
      letter-spacing: -0.03em;
      margin-bottom: 1.5rem;
    }
    #ab-title em { font-style: normal; color: var(--text-head); }
    .ab-p {
      font-family: var(--font);
      font-size: 15px;
      line-height: 1.8;
      color: var(--text-sub);
      margin-bottom: 1rem;
      padding-left: 1.25rem;
      border-left: 2px solid var(--divider);
    }
    .ab-p:last-child { margin-bottom: 0; }
    .ab-p strong { font-weight: 600; color: var(--text-head); }
    .ab-p em { font-style: normal; color: var(--text-sub); font-weight: 600; }

    /* Mini stats strip */
    #ab-stats {
      display: flex;
      gap: 0;
      margin-top: 2rem;
      border-top: 1px solid var(--divider);
      padding-top: 1.5rem;
    }
    .ab-stat {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .ab-stat + .ab-stat {
      padding-left: 1.5rem;
      border-left: 1px solid var(--divider);
    }
    .ab-stat-val {
      font-size: 22px;
      font-weight: 800;
      color: var(--text-head);
      letter-spacing: -0.03em;
      line-height: 1;
    }
    .ab-stat-lbl {
      font-size: 10px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    /* RIGHT: photo card */
    #ab-photo-wrap {
      position: relative;
    }
    #ab-img-frame {
      border-radius: 24px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 24px 60px rgba(36,55,70,0.16), 0 0 0 1px rgba(36,55,70,0.06);
    }
    #ab-img-frame img {
      width: 100%;
      height: 480px;
      display: block;
      object-fit: cover;
      object-position: center 55%;
    }

    /* Live badge — top left */
    #ab-live-badge {
      position: absolute;
      top: 16px; left: 16px;
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 7px;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.95);
      border-radius: 100px;
      padding: 6px 14px 6px 10px;
      box-shadow: 0 2px 12px rgba(36,55,70,0.1);
    }
    .ab-live-ring {
      position: relative; width: 8px; height: 8px; flex-shrink: 0;
    }
    .ab-live-ring::before {
      content: ''; position: absolute; inset: 0; border-radius: 50%;
      background: #22c55e; opacity: 0.7;
      animation: ring-ping 1.6s ease-in-out infinite;
    }
    .ab-live-ring::after {
      content: ''; position: absolute; inset: 1px; border-radius: 50%; background: #16a34a;
    }
    #ab-live-badge span {
      font-family: var(--font);
      font-size: 10px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--blue-deep);
    }

    /* Bell — top right */
    #ab-bell {
      position: absolute;
      top: 14px; right: 14px;
      z-index: 10;
      width: 38px; height: 38px;
      border-radius: 50%;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(255,255,255,0.95);
      box-shadow: 0 2px 12px rgba(36,55,70,0.1);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-head);
      cursor: pointer;
    }

    /* Stats card — bottom right */
    #ab-stat-card {
      position: absolute;
      bottom: 16px; right: 16px;
      z-index: 10;
      background: rgba(255,255,255,0.88);
      backdrop-filter: blur(20px) saturate(1.5);
      -webkit-backdrop-filter: blur(20px) saturate(1.5);
      border: 1px solid rgba(255,255,255,0.95);
      border-radius: 16px;
      padding: 14px 16px;
      min-width: 170px;
      box-shadow: 0 8px 28px rgba(36,55,70,0.12);
    }
    .ab-sc-header {
      display: flex; align-items: center; gap: 7px;
      margin-bottom: 10px;
    }
    .ab-sc-logo {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--red);
      display: flex; align-items: center; justify-content: center;
      font-family: var(--font); font-size: 10px; font-weight: 800; color: white;
    }
    .ab-sc-name { font-family: var(--font); font-size: 12px; font-weight: 600; color: var(--text-head); flex: 1; }
    .ab-sc-delta { font-size: 11px; font-weight: 700; color: #16a34a; font-family: monospace; }
    .ab-sc-bars {
      display: flex; align-items: flex-end; gap: 3px;
      height: 30px; margin-bottom: 8px;
    }
    .ab-sc-bar { flex: 1; border-radius: 2px 2px 0 0; background: rgba(36,55,70,0.1); }
    .ab-sc-bar.hi { background: var(--red); box-shadow: 0 0 6px var(--red-glow); }
    .ab-sc-lbl { font-family: var(--font); font-size: 9px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
    .ab-sc-val { font-family: var(--font); font-size: 18px; font-weight: 800; color: var(--text-head); letter-spacing: -0.03em; line-height: 1.1; }

    @media (max-width: 900px) {
      #ab-layout { grid-template-columns: 1fr; gap: 2rem; }
      #ab-photo-wrap { width: 100%; }
      #ab-img-frame img { height: 420px; object-position: center 55%; }
    }
    @media (max-width: 640px) {
      #quem-somos { padding: 3rem 0 3.5rem; }
      .ab-p { padding-left: 1rem; }
      #ab-stats { gap: 1rem; }
      #ab-img-frame img { height: 340px; object-position: center 55%; }
      #ab-stat-card { display: none; }
    }

    /* ══════════════════════════════════════════════
       SECTION 5 — PLANOS & PREÇOS
    ══════════════════════════════════════════════ */
    #planos {
      background: #ffffff;
      padding: 5.5rem 0 6.5rem;
      position: relative;
      overflow: hidden;
    }
    #planos::before { display: none; }

    /* "Como funciona?" strip */
    #prc-how {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.75rem 2.5rem;
      align-items: start;
      background: rgba(22,163,74,0.05);
      border: 1px solid rgba(22,163,74,0.18);
      border-radius: 14px;
      padding: 1.5rem 2rem;
      margin-top: 2rem;
    }
    #prc-how-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #16a34a;
      white-space: nowrap;
      padding-top: 3px;
      text-align: left;
    }
    #prc-how-steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.5rem 1.5rem;
      list-style: none;
      padding: 0; margin: 0;
      counter-reset: how;
    }
    #prc-how-steps li {
      counter-increment: how;
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 12.5px;
      color: var(--text-sub);
      line-height: 1.4;
      text-align: left;
    }
    #prc-how-steps li::before {
      content: counter(how, decimal-leading-zero);
      font-size: 10px;
      font-weight: 700;
      color: #16a34a;
      background: rgba(22,163,74,0.1);
      border-radius: 4px;
      padding: 2px 5px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    /* Section header */
    #prc-head {
      text-align: center;
      margin-bottom: 3rem;
      position: relative; z-index: 1;
    }
    #prc-eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 0.75rem;
    }
    #prc-title {
      font-size: clamp(26px, 3.5vw, 46px);
      font-weight: 700;
      line-height: 1.1;
      letter-spacing: -0.03em;
      color: var(--text-head);
      margin-bottom: 0.625rem;
    }
    #prc-title em { font-style: normal; color: var(--red); }
    #prc-sub { font-size: 15px; color: var(--text-sub); }
    #prc-urgency { font-size: 13px; color: var(--text-sub); margin-top: 0.5rem; opacity: 0.8; }

    /* Grid */
    #prc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.125rem;
      align-items: stretch;
      position: relative; z-index: 1;
    }

    /* Card */
    .prc-card {
      background: #ffffff;
      border: 1px solid rgba(36,55,70,0.1);
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      display: flex;
      flex-direction: column;
      transition: transform 0.35s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s;
      box-shadow: 0 4px 20px rgba(36,55,70,0.07);
    }
    .prc-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(36,55,70,0.13);
    }
    .prc-card.is-rec {
      background: #18222b;
      border-color: transparent;
      box-shadow:
        0 0 0 2px #16a34a,
        0 20px 50px rgba(22,163,74,0.22),
        0 4px 16px rgba(0,0,0,0.18);
    }
    .prc-card.is-rec:hover { transform: translateY(-6px); }

    /* Recommended ribbon */
    .prc-ribbon {
      position: absolute;
      top: 0; left: 50%; transform: translateX(-50%);
      background: #16a34a;
      color: #fff;
      font-size: 9px;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 18px 6px;
      border-radius: 0 0 12px 12px;
    }

    /* Card header */
    .prc-card-hd {
      padding: 2.5rem 1.75rem 1.5rem;
      text-align: center;
      border-bottom: 1px solid rgba(36,55,70,0.08);
    }
    .is-rec .prc-card-hd { border-bottom-color: rgba(255,255,255,0.08); }

    /* ── Radar SVG ── */
    .prc-radar {
      display: none;
    }
    @keyframes prc-ring-out {
      0%   { opacity: 0.75; transform: scale(0.2); }
      100% { opacity: 0;    transform: scale(1); }
    }
    .prc-r {
      fill: none; stroke-width: 1.5;
      transform-box: fill-box; transform-origin: center;
      animation: prc-ring-out 3s ease-out infinite;
    }
    .prc-r.d1 { animation-delay: 1s; }
    .prc-r.d2 { animation-delay: 2s; }
    .prc-r.d3 { animation-delay: 2.5s; }
    .prc-r.blue  { stroke: #60a5fa; }
    .prc-r.green { stroke: #16a34a; }

    .prc-plan-name {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-bottom: 0.75rem;
    }
    .is-rec .prc-plan-name { color: #4ade80; }
    .prc-reach {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-head);
      letter-spacing: -0.03em;
      line-height: 1.05;
    }
    .is-rec .prc-reach { color: #ffffff; }
    .prc-reach-lbl {
      font-size: 10px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-top: 4px;
    }
    .is-rec .prc-reach-lbl { color: rgba(255,255,255,0.45); }

    /* Card body */
    .prc-card-bd {
      padding: 1.5rem 1.75rem;
      border-bottom: 1px solid rgba(36,55,70,0.07);
      text-align: center;
    }
    .is-rec .prc-card-bd { border-bottom-color: rgba(255,255,255,0.08); }
    .prc-from {
      font-size: 10px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 0.5rem;
    }
    .is-rec .prc-from { color: rgba(255,255,255,0.4); }
    .prc-amount {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.25rem;
      line-height: 1;
    }
    .prc-x { font-size: 13px; color: var(--text-muted); }
    .is-rec .prc-x { color: rgba(255,255,255,0.4); }
    .prc-cur { font-size: 14px; font-weight: 700; color: #16a34a; }
    .is-rec .prc-cur { color: #4ade80; }
    .prc-val { font-size: 32px; font-weight: 800; color: #16a34a; letter-spacing: -0.04em; line-height: 1; }
    .is-rec .prc-val { color: #4ade80; }
    .prc-avista { font-size: 12px; color: var(--text-muted); margin-top: 0.4rem; }
    .is-rec .prc-avista { color: rgba(255,255,255,0.35); }

    .prc-specs {
      display: flex;
      margin-top: 1.25rem;
      border: 1px solid rgba(36,55,70,0.08);
      border-radius: 10px;
      overflow: hidden;
    }
    .is-rec .prc-specs { border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); }
    .prc-spec { flex: 1; padding: 0.7rem 0.25rem; text-align: center; }
    .prc-spec + .prc-spec { border-left: 1px solid rgba(36,55,70,0.08); }
    .is-rec .prc-spec + .prc-spec { border-left-color: rgba(255,255,255,0.1); }
    .prc-sv { font-size: 15px; font-weight: 800; color: var(--text-head); letter-spacing: -0.02em; }
    .is-rec .prc-sv { color: #ffffff; }
    .prc-sl { font-size: 9.5px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
    .is-rec .prc-sl { color: rgba(255,255,255,0.4); }

    /* Features */
    .prc-feats {
      list-style: none;
      padding: 1.5rem 1.75rem;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }
    .prc-feat { display: flex; align-items: center; gap: 0.65rem; font-size: 14px; font-weight: 500; line-height: 1.4; }
    .prc-feat.on  { color: var(--text-sub); }
    .prc-feat.off { color: rgba(36,55,70,0.3); text-decoration: line-through; }
    .is-rec .prc-feat.on  { color: rgba(255,255,255,0.82); }
    .is-rec .prc-feat.off { color: rgba(255,255,255,0.2); }
    .prc-fi {
      width: 18px; height: 18px;
      border-radius: 5px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 800; font-style: normal;
    }
    .on  .prc-fi { background: rgba(22,163,74,0.12); color: #16a34a; }
    .off .prc-fi { background: rgba(193,3,11,0.12);  color: #C1030B; }
    .is-rec .on  .prc-fi { background: rgba(74,222,128,0.15); color: #4ade80; }
    .is-rec .off .prc-fi { background: rgba(248,113,113,0.18); color: #f87171; }

    /* CTA */
    .prc-btn {
      display: block;
      margin: 0 1.75rem 1.75rem;
      padding: 1rem 1rem;
      border-radius: 12px;
      text-align: center;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-decoration: none;
      transition: all 0.2s;
    }
    .prc-btn-def, .prc-btn-rec {
      background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
      border: none;
      color: #fff;
      box-shadow: 0 4px 16px rgba(22,163,74,0.35);
    }
    .prc-btn-def:hover, .prc-btn-rec:hover { background: linear-gradient(135deg, #15803d 0%, #16a34a 100%); box-shadow: 0 6px 20px rgba(22,163,74,0.45); }

    /* Responsive */
    @media (max-width: 1100px) {
      #prc-grid { grid-template-columns: repeat(2, 1fr); }
      .prc-card.is-rec { transform: none; box-shadow: 0 0 0 2px #16a34a, 0 12px 30px rgba(22,163,74,0.2); }
    }
    @media (max-width: 768px) {
      #prc-how { grid-template-columns: 1fr; gap: 0.75rem; }
      #prc-how-steps { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      #planos { padding: 3.5rem 0 2.7rem; }
      #prc-grid { grid-template-columns: 1fr; gap: 1rem; }
      #prc-how { padding: 1.25rem; margin-bottom: 2.5rem; }
      #prc-how-steps { grid-template-columns: 1fr; }
    }

    /* ── Reforço: garantia + confiança + ajuda (abaixo do grid) ── */
    #prc-assure {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
      position: relative; z-index: 1;
    }

    /* Garantia / risco zero */
    #prc-guarantee {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      background: rgba(22,163,74,0.05);
      border: 1px solid rgba(22,163,74,0.18);
      border-radius: 16px;
      padding: 1.4rem 1.75rem;
    }
    .prc-guarantee-ico {
      flex-shrink: 0;
      width: 42px; height: 42px;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(22,163,74,0.12);
      color: #16a34a;
    }
    .prc-guarantee-ico svg { width: 22px; height: 22px; }
    .prc-guarantee-t {
      font-size: 15px; font-weight: 700;
      color: var(--text-head);
      letter-spacing: -0.01em;
      margin-bottom: 2px;
    }
    .prc-guarantee-d { font-size: 13.5px; color: var(--text-sub); line-height: 1.5; }
    .prc-guarantee-d strong { color: #15803d; font-weight: 700; }

    /* Confiança (selos em loop contínuo) + ajuda */
    #prc-trust-row {
      display: block;
      text-align: center;
    }
    /* container em BLOCO com clip (mesmo padrão do marquee de avaliações — não empurra a página) */
    #prc-trust-mq {
      width: 100%;
      max-width: 800px;
      margin: 0 auto;
      overflow: hidden;
      -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
      mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    }
    #prc-trust-track {
      list-style: none; padding: 0; margin: 0;
      display: flex; align-items: center;
      width: max-content;
      gap: 0.6rem;
      animation: prc-trust-scroll 24s linear infinite;
    }
    @keyframes prc-trust-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    #prc-trust-track li {
      font-size: 12.5px;
      color: var(--text-sub);
      background: #ffffff;
      border: 1px solid rgba(36,55,70,0.12);
      border-radius: 9999px;
      padding: 0.45rem 0.85rem;
      white-space: nowrap;
      flex-shrink: 0;
    }
    #prc-trust-track strong { color: var(--text-head); font-weight: 700; }
    .prc-chip-star { color: #f59e0b; }
    .prc-help { margin-top: 0.9rem; }
    .prc-help {
      display: inline-flex; align-items: center; gap: 0.4rem;
      font-size: 13.5px; font-weight: 600;
      color: #15803d;
      text-decoration: none;
      border: 1px solid rgba(22,163,74,0.32);
      border-radius: 9999px;
      padding: 0.55rem 1.1rem;
      white-space: nowrap;
      transition: background 0.2s, border-color 0.2s;
    }
    .prc-help svg { width: 15px; height: 15px; }
    .prc-help:hover { background: rgba(22,163,74,0.06); border-color: rgba(22,163,74,0.5); }
    @media (max-width: 640px) {
      #prc-trust-mq { max-width: 100%; }
      .prc-help { justify-content: center; margin-top: 2.7rem; }
    }

    /* ══════════════════════════════════════════════
       SECTION 6 — DÚVIDAS FREQUENTES
    ══════════════════════════════════════════════ */
    #perguntas {
      background: linear-gradient(160deg, #f4f6f9 0%, #eef1f6 50%, #f4f6f9 100%);
      padding: 5.5rem 0 6rem;
      position: relative;
      overflow: hidden;
    }
    /* soft blobs */
    #perguntas::before {
      content: '';
      position: absolute;
      width: 500px; height: 500px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(193,3,11,0.04) 0%, transparent 70%);
      top: -120px; right: -80px;
      pointer-events: none;
    }
    #perguntas::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(36,55,70,0.04) 0%, transparent 70%);
      bottom: -100px; left: -60px;
      pointer-events: none;
    }
    #faq-head {
      text-align: center;
      margin-bottom: 3.5rem;
      position: relative; z-index: 1;
    }
    #faq-eyebrow {
      display: inline-flex; align-items: center; gap: 0.5rem;
      font-size: 10px; font-weight: 700; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--red);
      margin-bottom: 0.875rem;
    }
    #faq-eyebrow::before, #faq-eyebrow::after {
      content: ''; display: block;
      width: 22px; height: 1px;
      background: currentColor; opacity: 0.5;
    }
    #faq-title {
      font-size: clamp(26px, 3.2vw, 44px);
      font-weight: 700; letter-spacing: -0.03em;
      color: var(--text-head); line-height: 1.18;
    }
    #faq-title em { font-style: normal; color: var(--red); }

    #faq-list {
      max-width: 760px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
      position: relative; z-index: 1;
    }
    .faq-item {
      background: rgba(255,255,255,0.82);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.9);
      border-radius: 16px;
      padding: 0 1.5rem;
      box-shadow:
        0 1px 3px rgba(36,55,70,0.05),
        0 6px 24px rgba(36,55,70,0.07),
        inset 0 1px 0 rgba(255,255,255,1);
      transition: box-shadow 0.3s, border-color 0.3s, background 0.3s;
    }
    .faq-item:hover {
      box-shadow:
        0 2px 6px rgba(36,55,70,0.07),
        0 12px 32px rgba(36,55,70,0.1),
        inset 0 1px 0 rgba(255,255,255,1);
    }
    .faq-item.open {
      background: rgba(255,255,255,0.96);
      border-color: rgba(193,3,11,0.2);
      box-shadow:
        0 4px 8px rgba(193,3,11,0.05),
        0 16px 40px rgba(193,3,11,0.08),
        inset 0 1px 0 rgba(255,255,255,1);
    }

    .faq-btn {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem 0;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
    }
    .faq-btn .faq-icon { margin-left: auto; }

    .faq-num {
      font-size: 10px;
      font-weight: 800;
      color: var(--red);
      letter-spacing: 0.08em;
      background: rgba(193,3,11,0.08);
      border-radius: 6px;
      padding: 3px 6px;
      flex-shrink: 0;
    }
    .faq-q {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-head);
      line-height: 1.4;
      flex: 1;
    }
    .faq-item.open .faq-q { color: var(--text-head); }

    .faq-icon {
      flex-shrink: 0;
      width: 28px; height: 28px;
      border-radius: 50%;
      border: 1.5px solid rgba(36,55,70,0.15);
      background: rgba(36,55,70,0.03);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.25s, border-color 0.25s, transform 0.35s cubic-bezier(.4,0,.2,1), color 0.25s;
      color: var(--text-sub);
    }
    .faq-item.open .faq-icon {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
      transform: rotate(180deg);
      box-shadow: 0 3px 10px rgba(193,3,11,0.3);
    }

    .faq-body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.38s cubic-bezier(.4,0,.2,1);
    }
    .faq-item.open .faq-body { grid-template-rows: 1fr; }
    .faq-body-inner { overflow: hidden; }

    .faq-a {
      font-size: 14.5px;
      line-height: 1.8;
      color: var(--text-sub);
      padding-bottom: 1.375rem;
      padding-left: 3rem;
      border-top: 1px solid rgba(36,55,70,0.06);
      padding-top: 0.875rem;
    }
    .faq-a strong { color: var(--text-head); font-weight: 600; }

    @media (max-width: 640px) {
      #perguntas { padding: 3.5rem 0 4rem; }
      .faq-q { font-size: 14px; }
      .faq-a { padding-left: 2rem; font-size: 13.5px; }
    }

    /* ══════════════════════════════════════════════
       VIDEO MODAL
    ══════════════════════════════════════════════ */
    #yt-overlay {
      position: fixed;
      inset: 0;
      background: rgba(10,16,22,0.88);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
    }
    #yt-overlay.is-open {
      opacity: 1;
      pointer-events: all;
    }
    #yt-box {
      position: relative;
      width: 100%;
      max-width: 860px;
      border-radius: 18px;
      overflow: hidden;
      background: #000;
      box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
      transform: scale(0.94) translateY(16px);
      transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    }
    #yt-overlay.is-open #yt-box {
      transform: scale(1) translateY(0);
    }
    #yt-ratio {
      position: relative;
      padding-top: 56.25%;
    }
    #yt-iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }
    #yt-close {
      position: fixed;
      top: 1.25rem;
      right: 1.25rem;
      width: 40px; height: 40px;
      border-radius: 50%;
      background: #fff;
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
      color: #243746;
      transition: background 0.2s, color 0.2s, transform 0.2s;
      z-index: 10000;
    }
    #yt-close:hover { background: var(--red); color: #fff; transform: scale(1.1); }

    /* ══════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════ */
    #site-footer {
      background: #1b2d3c;
      color: rgba(255,255,255,0.72);
      font-size: 14px;
    }

    /* Promise strip */
    #ft-promise {
      background: var(--red);
      padding: 2.25rem 0;
      text-align: center;
    }
    #ft-promise-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }
    #ft-promise-text {
      font-size: clamp(15px, 2vw, 18px);
      font-weight: 600;
      color: #fff;
      letter-spacing: -0.01em;
    }
    #ft-promise-text span {
      display: block;
      font-size: 12px;
      font-weight: 400;
      opacity: 0.82;
      letter-spacing: 0;
      margin-top: 2px;
    }
    #ft-promise-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #fff;
      color: var(--red);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.65rem 1.5rem;
      border-radius: 100px;
      text-decoration: none;
      transition: transform 0.25s, box-shadow 0.25s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.18);
      white-space: nowrap;
    }
    #ft-promise-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }

    /* Main grid */
    #ft-main {
      padding: 4rem 0 3.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    #ft-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1fr;
      gap: 3rem;
    }

    /* Brand column */
    #ft-brand { }
    .ft-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
      margin-bottom: 1.125rem;
    }
    .ft-logo-img {
      width: 34px; height: 34px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }
    .ft-logo-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .ft-logo-word {
      font-size: 16px;
      font-weight: 800;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #fff;
    }
    .ft-logo-word em { font-style: normal; color: rgba(193,3,11,0.9); }
    #ft-desc {
      font-size: 13.5px;
      line-height: 1.75;
      color: rgba(255,255,255,0.52);
      margin-bottom: 1.125rem;
      max-width: 240px;
    }
    #ft-cnpj {
      font-size: 11px;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.04em;
      margin-bottom: 1.75rem;
    }
    /* Social icons */
    #ft-socials {
      display: flex;
      gap: 0.625rem;
    }
    .ft-social-link {
      width: 36px; height: 36px;
      border-radius: 50%;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.65);
      text-decoration: none;
      transition: background 0.25s, color 0.25s, border-color 0.25s;
    }
    .ft-social-link:hover {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }

    /* Columns */
    .ft-col-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      margin-bottom: 1.25rem;
    }
    .ft-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.625rem;
    }
    .ft-links a {
      font-size: 13.5px;
      color: rgba(255,255,255,0.5);
      text-decoration: none;
      transition: color 0.2s;
    }
    .ft-links a:hover { color: #fff; }

    /* Contact column */
    .ft-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.625rem;
      margin-bottom: 0.875rem;
      font-size: 13.5px;
      color: rgba(255,255,255,0.5);
    }
    .ft-contact-item a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
    .ft-contact-item a:hover { color: #fff; }
    /* Linha inteira clicável (telefone e e-mail) */
    a.ft-contact-item { text-decoration: none; cursor: pointer; transition: color 0.2s; }
    a.ft-contact-item:hover { color: #fff; }
    a.ft-contact-item:hover .ft-contact-icon { color: var(--red-light); }
    .ft-contact-icon {
      width: 16px; flex-shrink: 0; margin-top: 1px;
      color: var(--red);
    }

    /* ReclameAQUI badge */
    #ft-badge {
      margin-top: 1.25rem;
      display: inline-block;
    }
    #ft-badge img {
      height: 44px;
      width: auto;
      border-radius: 6px;
      opacity: 0.85;
      transition: opacity 0.2s;
    }
    #ft-badge img:hover { opacity: 1; }

    /* Copyright bar */
    #ft-copy {
      padding: 1.25rem 0;
    }
    #ft-copy-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    #ft-copy p {
      font-size: 12px;
      color: rgba(255,255,255,0.28);
    }
    #ft-copy a {
      font-size: 12px;
      color: rgba(255,255,255,0.28);
      text-decoration: none;
      transition: color 0.2s;
    }
    #ft-copy a:hover { color: rgba(255,255,255,0.6); }

    @media (max-width: 1024px) {
      #ft-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
    }
    @media (max-width: 640px) {
      #ft-promise-inner { flex-direction: column; gap: 1.25rem; }
      #ft-grid { grid-template-columns: 1fr; gap: 2rem; }
      #ft-main { padding: 3rem 0 2.5rem; }
      #ft-desc { max-width: 100%; }
      #ft-copy-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    }

    /* ══════════════════════════════════════════════
       HAMBURGER BUTTON
    ══════════════════════════════════════════════ */
    #btn-hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      background: linear-gradient(180deg, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.18) 50%, rgba(0,0,0,0.08) 100%);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      padding: 0;
      box-shadow: 0 18px 35px rgba(31,41,55,0.22), 0 0 0 1px rgba(209,213,219,0.28);
      position: relative;
      flex-shrink: 0;
      transition: transform .22s;
    }
    #btn-hamburger::before {
      content: '';
      position: absolute; inset: 0;
      border-radius: 8px;
      background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(0,0,0,0.35), rgba(255,255,255,0.75));
      padding: 1px;
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }
    #btn-hamburger:hover { transform: translateY(-1px); }
    .hb-line {
      display: block;
      width: 18px; height: 1.5px;
      background: rgba(36,55,70,0.65);
      border-radius: 2px;
      transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .2s;
    }
    #btn-hamburger[aria-expanded="true"] .hb-line:nth-child(1) {
      transform: translateY(6.5px) rotate(45deg);
    }
    #btn-hamburger[aria-expanded="true"] .hb-line:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }
    #btn-hamburger[aria-expanded="true"] .hb-line:nth-child(3) {
      transform: translateY(-6.5px) rotate(-45deg);
    }
    @media (max-width: 1024px) {
      #btn-hamburger { display: flex; }
      #btn-header    { display: none; }
    }

    /* ══════════════════════════════════════════════
       NAV OVERLAY
    ══════════════════════════════════════════════ */
    #nav-overlay {
      position: fixed;
      inset: 0;
      background: rgba(24,34,43,0.35);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      z-index: 100;
      opacity: 0;
      pointer-events: none;
      touch-action: none;
      transition: opacity .32s;
    }
    #nav-overlay.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    /* ══════════════════════════════════════════════
       NAV DRAWER
    ══════════════════════════════════════════════ */
    #nav-drawer {
      position: fixed;
      top: 0; left: 0;
      height: 100%;
      width: 280px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(24px) saturate(1.6);
      -webkit-backdrop-filter: blur(24px) saturate(1.6);
      border-right: 1px solid rgba(255,255,255,0.55);
      box-shadow: 8px 0 40px rgba(24,34,43,0.18);
      z-index: 101;
      transform: translateX(-100%);
      transition: transform .32s cubic-bezier(.2,.8,.2,1);
      display: flex;
      flex-direction: column;
      padding: 1.25rem 1.5rem 2rem;
      overflow-y: auto;
    }
    #nav-drawer.is-open { transform: translateX(0); }
    @media (max-width: 360px) { #nav-drawer { width: 100%; } }

    .drawer-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 2rem;
    }
    .drawer-close {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: rgba(36,55,70,0.07);
      border: none;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--text-head);
      transition: background .2s;
      flex-shrink: 0;
    }
    .drawer-close:hover { background: rgba(36,55,70,0.13); }

    .drawer-links {
      list-style: none;
      padding: 0;
      margin: 0 0 1.5rem;
      display: flex;
      flex-direction: column;
    }
    .drawer-link {
      display: block;
      padding: 0.875rem 0;
      font-size: 15px;
      font-weight: 500;
      color: var(--text-head);
      text-decoration: none;
      border-bottom: 1px solid var(--divider);
      letter-spacing: -0.01em;
      transition: color .2s, padding-left .2s;
    }
    .drawer-links li:first-child .drawer-link { border-top: 1px solid var(--divider); }
    .drawer-link:hover { color: var(--red); padding-left: 0.5rem; }

    .drawer-cta {
      margin-top: auto;
      width: 100%;
      justify-content: center;
    }

    /* ══════════════════════════════════════════════
       FLOATING WHATSAPP BUTTON
    ══════════════════════════════════════════════ */
    #wa-float {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 90;                /* under nav drawer/overlay (100) and video modal */
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: grid;
      place-items: center;
      text-decoration: none;
      box-shadow: 0 8px 24px rgba(37,211,102,0.45), 0 3px 10px rgba(0,0,0,0.18);
      transition: transform .2s ease, box-shadow .3s ease;
    }
    #wa-float svg { width: 32px; height: 32px; }
    #wa-float:hover,
    #wa-float:focus-visible {
      transform: scale(1.07);
      box-shadow: 0 10px 30px rgba(37,211,102,0.55), 0 5px 14px rgba(0,0,0,0.22);
      outline: none;
    }

    /* Pulse ring */
    #wa-float::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: #25D366;
      z-index: -1;
      animation: wa-pulse 2.4s ease-out infinite;
    }
    @keyframes wa-pulse {
      0%        { transform: scale(1);   opacity: 0.55; }
      70%, 100% { transform: scale(1.7); opacity: 0; }
    }

    /* Tooltip (desktop) */
    #wa-float .wa-tip {
      position: absolute;
      right: calc(100% + 12px);
      top: 50%;
      transform: translateY(-50%) translateX(8px);
      background: var(--text-head);
      color: #fff;
      font: 600 0.82rem/1 var(--font);
      padding: 9px 13px;
      border-radius: 10px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      box-shadow: 0 6px 18px rgba(24,34,43,0.20);
      transition: opacity .25s ease, transform .25s ease;
    }
    #wa-float .wa-tip::after {
      content: "";
      position: absolute;
      left: 100%;
      top: 50%;
      transform: translateY(-50%);
      border: 6px solid transparent;
      border-left-color: var(--text-head);
    }
    #wa-float:hover .wa-tip,
    #wa-float:focus-visible .wa-tip {
      opacity: 1;
      transform: translateY(-50%) translateX(0);
    }

    @media (max-width: 768px) {
      #wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
      #wa-float svg { width: 30px; height: 30px; }
      #wa-float .wa-tip { display: none; }
    }

/* ═══════════════════════════════════════
   POPUP ROTATIVO DE DORES (mobile, 3ª seção+)
   Injetado via JS só ao chegar em #casos-reais.
   pointer-events:none + z-index < #wa-float(90) → só informativo, WhatsApp por cima.
═══════════════════════════════════════ */
@media (max-width: 768px) {
  #dor-popup {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;                  /* abaixo do #wa-float (90) → WhatsApp flutua por cima */
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 72px 11px 14px; /* padding-direito ≈ botão 54px + offset + respiro */
    background: rgba(255, 255, 255, 0.55);        /* glass translúcido (igual aos painéis do site) */
    backdrop-filter: blur(22px) saturate(1.7);
    -webkit-backdrop-filter: blur(22px) saturate(1.7);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--r-pill);
    box-shadow: 0 8px 24px rgba(36, 55, 70, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font: 600 0.86rem/1.25 var(--font);
    color: var(--text-head);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;         /* só informativo, nunca intercepta toques */
    will-change: opacity, transform;
  }
  #dor-popup.is-visible { opacity: 1; transform: translateY(0); }
  #dor-popup .dor-ico { flex: none; display: flex; align-items: center; color: #C99A3B; } /* dourado/âmbar suave */
  #dor-popup .dor-ico svg { width: 20px; height: 20px; display: block; }
  #dor-popup .dor-text  { min-width: 0; transition: opacity 0.25s ease; }
  #dor-popup.swapping .dor-text { opacity: 0; }
  #dor-popup .dor-text strong { color: var(--red); font-weight: 800; }
}
@media (prefers-reduced-motion: reduce) {
  #dor-popup { transform: none; }
  #dor-popup,
  #dor-popup .dor-text { transition: none; }
}
