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

      .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      body {
        font-family: "Plus Jakarta Sans", system-ui, sans-serif;
        color: #fff;
        -webkit-font-smoothing: antialiased;
      }

      .home-wrap {
        width: min(80rem, 100%);
        margin: 0 auto;
        padding: 0 1.5rem;
      }

      /* —— Header —— */
      .home-header {
        position: sticky;
        top: 0;
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        min-height: 4.5rem;
        height: auto;
        margin: 0 -1.5rem;
        padding: 0.55rem 1.5rem;
        background: rgba(8, 32, 20, 0.82);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .home-top-nav {
        display: flex;
        align-items: center;
        gap: 0.45rem;
        flex-shrink: 0;
      }

      .home-top-nav-btn {
        border-radius: 999px;
        padding: 0.48rem 0.9rem;
        font-family: inherit;
        font-size: 0.78rem;
        font-weight: 700;
        line-height: 1.2;
        cursor: pointer;
        white-space: nowrap;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
      }

      .home-top-nav-btn--ghost {
        border: 1px solid rgba(255, 255, 255, 0.24);
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.92);
      }

      .home-top-nav-btn--ghost:hover {
        background: rgba(255, 255, 255, 0.12);
        border-color: rgba(255, 255, 255, 0.35);
      }

      .home-top-nav-btn--primary {
        border: none;
        background: linear-gradient(145deg, #ff4d26, #ff2800);
        color: #fff;
        box-shadow: 0 8px 20px -10px rgba(255, 40, 0, 0.75);
      }

      .home-top-nav-btn--primary:hover {
        filter: brightness(1.05);
      }

      .home-top-nav-btn:active {
        transform: scale(0.98);
      }

      .home-brand {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.38rem;
        text-decoration: none;
        color: inherit;
      }

      .home-brand-logo {
        display: block;
        height: clamp(3.6rem, 7vw, 4.9rem);
        width: auto;
        max-width: min(100%, 24rem);
        overflow: visible;
      }

      .home-brand-tag {
        font-size: clamp(0.75rem, 1.6vw, 0.88rem);
        font-weight: 600;
        letter-spacing: 0.04em;
        color: rgba(255, 255, 255, 0.62);
        padding-left: 0.15rem;
      }

      /* —— First screen: hero + auth only —— */
      .home-first {
        min-height: calc(100dvh - 4.5rem);
        display: flex;
        align-items: flex-start;
        padding: 0.75rem 0 2.5rem;
      }

      .home-first-grid {
        display: grid;
        gap: 2.5rem;
        width: 100%;
        align-items: start;
      }

      @media (min-width: 960px) {
        .home-first {
          align-items: flex-start;
        }

        .home-first-grid {
          grid-template-columns: minmax(0, 1fr);
          gap: 1.25rem;
          align-items: start;
        }

        .home-hero-intro {
          padding-right: 0;
        }

        .home-hero-intro h1 {
          font-size: clamp(1.85rem, 3vw, 2.45rem);
          margin-bottom: 0.55rem;
        }

        .home-hero-lead {
          font-size: 0.88rem;
          max-width: 28rem;
          margin-bottom: 0.35rem;
        }

        .home-solutions {
          margin-top: 0.55rem;
          gap: 0.35rem;
        }

        .home-hero-actions {
          margin-top: 0.65rem;
        }
      }

      .home-hero {
        max-width: none;
      }

      .home-hero-main {
        width: 100%;
      }

      .home-hero-left {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .home-hero-media {
        width: 100%;
      }

      .home-hero-apps {
        width: 100%;
      }

      .home-hero-apps .home-featured-wrap {
        margin-top: 0;
        padding: 0;
        border-top: none;
      }

      .home-hero-copa-row {
        display: flex;
        align-items: center;
        margin: 0 0 0.85rem;
      }

      .home-hero-copa {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.28rem 0.72rem;
        border-radius: 999px;
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #fefce8;
        text-decoration: none;
        background: linear-gradient(135deg, rgba(0, 156, 59, 0.78), rgba(0, 39, 118, 0.62));
        border: 1px solid rgba(255, 223, 0, 0.55);
        box-shadow: 0 0 18px rgba(255, 223, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.15);
        transition: transform 0.15s, box-shadow 0.15s, border-color 0.15s;
      }

      .home-hero-copa:hover {
        color: #fff;
        border-color: rgba(255, 223, 0, 0.85);
        box-shadow: 0 0 22px rgba(255, 223, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.15);
        transform: translateY(-1px);
      }

      .home-hero-copa-flag {
        font-size: 0.85rem;
        line-height: 1;
      }

      .home-hero-intro h1 {
        margin: 0;
        font-size: clamp(2.4rem, 6vw, 3.5rem);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -0.04em;
      }

      .home-hero-intro h1 em {
        font-style: normal;
        background: linear-gradient(90deg, #ffb199, #ff2800, #ff5533, #ff2800);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .home-hero-lead {
        margin: 0.85rem 0 0;
        max-width: 34rem;
        font-size: clamp(0.92rem, 2.2vw, 1.05rem);
        line-height: 1.55;
        color: rgba(255, 255, 255, 0.72);
      }

      .home-solutions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.45rem;
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
      }

      .home-solutions li {
        font-size: 0.62rem;
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        padding: 0.38rem 0.72rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.88);
      }

      .home-hero-actions {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.55rem;
        margin-top: 1.1rem;
      }

      .home-hero-actions .cta-primary {
        border: none;
        border-radius: 999px;
        padding: 0.65rem 1.35rem;
        font-size: 0.88rem;
        font-weight: 700;
        cursor: pointer;
        font-family: inherit;
        background: linear-gradient(145deg, #ff4d26, #ff2800);
        color: #fff;
        box-shadow: 0 10px 24px -12px rgba(255, 40, 0, 0.65);
      }

      .home-hero-auth-link {
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 999px;
        padding: 0.62rem 1.15rem;
        font-size: 0.82rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.88);
        background: rgba(255, 255, 255, 0.06);
        cursor: pointer;
        font-family: inherit;
      }

      .home-hero-auth-link:hover {
        background: rgba(255, 255, 255, 0.1);
      }

      .home-apps-section {
        width: 100%;
        min-width: 0;
      }

      .home-apps-head {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
      }

      .home-apps-head h2 {
        margin: 0;
        font-size: 0.72rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.55);
      }

      .home-apps-head p {
        margin: 0;
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.42);
      }

      .home-apps-bento {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
        align-items: stretch;
      }

      @media (min-width: 720px) {
        .home-apps-bento {
          grid-template-columns: repeat(3, minmax(0, 1fr));
        }
      }

      .home-apps-bento .home-app--featured {
        width: 100%;
        min-height: 11.75rem;
      }

      .home-app-explainer {
        position: absolute;
        inset: 0;
        z-index: 6;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        gap: 0.35rem;
        padding: 0.85rem 0.75rem 0.78rem;
        border-radius: inherit;
        background:
          linear-gradient(168deg, rgba(255, 255, 255, 0.06) 0%, transparent 38%),
          linear-gradient(to top, rgba(4, 28, 16, 0.96) 0%, rgba(4, 28, 16, 0.78) 42%, rgba(4, 28, 16, 0.08) 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        opacity: 0;
        transform: translateY(4px) scale(0.985);
        transition:
          opacity 0.24s ease,
          transform 0.24s ease,
          border-color 0.24s ease;
        pointer-events: none;
      }

      .home-app-explainer__title {
        display: block;
        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.02em;
        color: #fff;
        line-height: 1.2;
      }

      .home-app-explainer__text {
        margin: 0;
        font-size: 0.66rem;
        font-weight: 500;
        line-height: 1.48;
        color: rgba(255, 255, 255, 0.86);
      }

      @media (min-width: 720px) {
        .home-app-explainer__text {
          font-size: 0.69rem;
        }
      }

      @media (hover: hover) and (pointer: fine) {
        .home-app--featured:hover .home-app-explainer,
        .home-app--featured:focus-visible .home-app-explainer {
          opacity: 1;
          transform: translateY(0) scale(1);
          border-color: rgba(255, 223, 0, 0.22);
        }

        .home-app--featured:hover .home-app-body,
        .home-app--featured:focus-visible .home-app-body {
          opacity: 0;
        }

        .home-app--featured:hover .home-app-chevron,
        .home-app--featured:focus-visible .home-app-chevron {
          opacity: 0;
        }
      }

      .home-apps-bento .home-tile-badge {
        position: absolute;
        top: 0.55rem;
        right: 0.55rem;
        z-index: 4;
        font-size: 0.58rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        padding: 0.2rem 0.45rem;
        border-radius: 999px;
        background: rgba(255, 40, 0, 0.22);
        color: #ffb199;
        border: 1px solid rgba(255, 120, 80, 0.35);
      }

      .home-app--featured.home-app--sinal {
        background:
          linear-gradient(145deg, rgba(245, 158, 11, 0.22) 0%, rgba(16, 185, 129, 0.16) 55%, rgba(6, 78, 59, 0.12) 100%);
        border-color: rgba(251, 191, 36, 0.38);
      }

      .home-app--featured.home-app--sinal:hover {
        border-color: rgba(253, 224, 71, 0.55);
      }

      .home-app--featured.home-app--sinal .home-app-visual {
        min-height: 6rem;
      }

      .home-app--featured.home-app--sinal .home-app-body {
        background: linear-gradient(180deg, rgba(69, 45, 10, 0) 0%, rgba(6, 78, 59, 0.88) 38%, rgba(6, 78, 59, 0.96) 100%);
        margin-top: 0;
        padding-top: 0.55rem;
      }

      .home-app--featured.home-app--sinal .home-app-icon--sinal {
        width: min(100%, 4.5rem);
        height: auto;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.65rem;
        background: linear-gradient(145deg, rgba(254, 243, 199, 0.95), rgba(253, 230, 138, 0.85));
        border: 1px solid rgba(251, 191, 36, 0.45);
        border-radius: 1rem;
        box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
        color: #92400e;
      }

      .home-app--featured.home-app--sinal .home-app-icon--sinal svg {
        width: 100%;
        height: 100%;
        display: block;
      }

      .home-app--featured.home-app--rifa {
        background:
          linear-gradient(145deg, rgba(139, 92, 246, 0.24) 0%, rgba(91, 33, 182, 0.14) 55%, rgba(46, 16, 101, 0.12) 100%);
        border-color: rgba(167, 139, 250, 0.42);
      }

      .home-app--featured.home-app--rifa:hover {
        border-color: rgba(196, 181, 253, 0.58);
      }

      .home-app--featured.home-app--rifa .home-app-body {
        background: linear-gradient(180deg, rgba(46, 16, 101, 0) 0%, rgba(59, 7, 100, 0.88) 38%, rgba(46, 16, 101, 0.96) 100%);
      }

      .home-app-product-mark {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        transform: scale(1.02);
        transition: transform 0.22s ease, filter 0.22s ease;
        filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.34));
      }

      .home-app-visual--product {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.45rem 0.65rem 0.25rem;
        min-height: 6.35rem;
      }

      .home-app-product-tile {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: min(100%, 5.85rem);
        aspect-ratio: 1;
        border-radius: 1.35rem;
        background:
          radial-gradient(ellipse 85% 55% at 50% 100%, rgba(255, 255, 255, 0.14), transparent 68%),
          radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 52%);
      }

      .home-app-product-tile::after {
        content: "";
        position: absolute;
        inset: 8%;
        border-radius: 1.1rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        pointer-events: none;
      }

      .home-app--featured:hover .home-app-product-mark {
        transform: scale(1.07);
        filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.42));
      }

      .home-app--featured.home-app--avaliacao .home-app-visual,
      .home-app--featured.home-app--sinal .home-app-visual,
      .home-app--featured.home-app--cadastro .home-app-visual,
      .home-app--featured.home-app--plate .home-app-visual,
      .home-app--featured.home-app--veicular .home-app-visual,
      .home-app--featured.home-app--fb .home-app-visual {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.45rem 0.65rem 0.25rem;
      }

      .home-app-tagline {
        display: block;
        margin-top: 0.12rem;
        font-size: 0.62rem;
        font-weight: 600;
        letter-spacing: 0.02em;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.25;
      }

      /* —— Featured apps —— */
      .home-featured {
        display: grid;
        gap: 0.75rem;
        width: 100%;
        grid-auto-rows: 1fr;
        align-items: stretch;
      }

      @media (max-width: 639px) {
        .home-shell {
          padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        }

        .home-wrap {
          padding: 0 0.85rem;
        }

        .home-header {
          min-height: 3.75rem;
          margin: 0 -0.85rem;
          padding: 0.4rem 0.85rem;
          padding-top: max(0.4rem, env(safe-area-inset-top));
        }

        .home-brand-logo {
          height: clamp(2.35rem, 11vw, 2.85rem);
        }

        .home-top-nav-btn {
          min-height: 2.35rem;
          padding: 0.42rem 0.72rem;
          font-size: 0.74rem;
        }

        .home-first {
          min-height: auto;
          align-items: flex-start;
          padding: 0.15rem 0 1.25rem;
        }

        .home-first-grid {
          display: flex;
          flex-direction: column;
          gap: 1.15rem;
        }

        .home-hero-intro h1 {
          font-size: clamp(1.72rem, 8.2vw, 2.15rem);
          line-height: 1.08;
        }

        .home-hero-lead {
          margin-top: 0.65rem;
          font-size: 0.86rem;
          line-height: 1.5;
        }

        .home-hero-copa-row {
          margin-bottom: 0.55rem;
        }

        .home-solutions {
          flex-wrap: nowrap;
          overflow-x: auto;
          overscroll-behavior-x: contain;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
          gap: 0.38rem;
          margin-top: 0.75rem;
          padding-bottom: 0.15rem;
        }

        .home-solutions::-webkit-scrollbar {
          display: none;
        }

        .home-solutions li {
          flex: 0 0 auto;
          font-size: 0.58rem;
          padding: 0.34rem 0.62rem;
        }

        .home-hero-intro [data-f7-sponsor-slot="hero_master"] {
          display: none;
        }

        .home-apps-section {
          order: 0;
        }

        .home-hero-intro {
          order: -1;
        }

        .home-apps-head {
          flex-direction: column;
          align-items: flex-start;
          gap: 0.2rem;
          margin-bottom: 0.6rem;
        }

        .home-apps-head h2 {
          font-size: 0.68rem;
        }

        .home-apps-head p {
          font-size: 0.78rem;
          color: rgba(255, 255, 255, 0.55);
        }

        .home-apps-bento {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 0.6rem;
        }

        .home-apps-bento .home-app--cadastro {
          grid-column: 1 / -1;
        }

        .home-apps-bento .home-app--featured,
        .home-featured .home-app--featured,
        .home-app--featured {
          flex-direction: column;
          align-items: stretch;
          min-height: 10.25rem;
          padding: 0.68rem 0.68rem 0;
          border-radius: 0.92rem;
          -webkit-tap-highlight-color: transparent;
          touch-action: manipulation;
        }

        .home-apps-bento .home-app--cadastro.home-app--featured {
          min-height: 9.75rem;
        }

        .home-app--featured:active {
          transform: scale(0.985);
        }

        .home-app-visual {
          flex: 1 1 auto;
          width: 100%;
          max-width: none;
          height: auto;
          min-height: 4.35rem;
          max-height: none;
          align-self: stretch;
          justify-content: center;
        }

        .home-app--featured.home-app--plate .home-app-visual,
        .home-app--featured.home-app--veicular .home-app-visual,
        .home-app--featured.home-app--cadastro .home-app-visual,
        .home-app--featured.home-app--fb .home-app-visual,
        .home-app--featured.home-app--avaliacao .home-app-visual,
        .home-app--featured.home-app--sinal .home-app-visual {
          min-height: 4.85rem;
        }

        .home-app-product-tile {
          width: min(100%, 4.65rem);
        }

        .home-app--featured .home-app-body {
          flex: 0 0 auto;
          margin-top: auto;
          padding: 0.48rem 0.12rem 0.58rem;
          border-top: none;
          display: block;
          min-width: 0;
        }

        .home-app--featured .home-app-name {
          font-size: clamp(0.88rem, 4.8vw, 1.05rem);
          line-height: 1.12;
        }

        .home-apps-bento .home-tile-badge {
          top: 0.45rem;
          right: 0.45rem;
          font-size: 0.52rem;
          padding: 0.16rem 0.38rem;
        }

        .home-app-badge {
          top: 0.45rem;
          left: 0.45rem;
          font-size: 0.52rem;
          padding: 0.14rem 0.38rem;
        }

        .home-app--featured .home-app-chevron {
          top: 0.45rem;
          right: 0.45rem;
          width: 1.25rem;
          height: 1.25rem;
          font-size: 0.88rem;
        }

        .home-portal-logos.home-bank-logos {
          grid-template-columns: repeat(5, 1.65rem);
          gap: 0.24rem;
          place-content: center;
        }

        .home-portal-logos.home-detran-logos {
          grid-template-columns: repeat(9, minmax(0, 1fr));
          gap: 0.14rem;
        }

        .home-detran-badge {
          font-size: 0.42rem;
          border-radius: 0.28rem;
        }

        .home-portal-logo,
        .home-app--cadastro .home-portal-logo,
        .home-app--cadastro .home-bank-logo {
          width: 1.65rem;
          height: 1.65rem;
        }

        .home-portal-logo--more,
        .home-app--cadastro .home-portal-logo--more {
          min-width: 1.65rem;
          height: 1.65rem;
        }

        .home-app--featured.home-app--avaliacao .home-app-icon--checklist,
        .home-app--featured.home-app--fb .home-app-icon--facebook,
        .home-app--featured.home-app--sinal .home-app-icon--sinal {
          width: min(100%, 3.65rem);
        }

        .home-featured-wrap {
          padding-top: 0.65rem;
        }

        .home-featured {
          display: grid;
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 0.65rem;
        }

        .home-featured-hint {
          display: none !important;
        }

        .auth-tabs {
          margin-bottom: 1rem;
        }

        .auth-tab {
          min-height: 2.75rem;
          font-size: 0.82rem;
        }

        .field-input,
        .auth-form input[type="email"],
        .auth-form input[type="password"],
        .auth-form input[type="text"] {
          min-height: 2.85rem;
          font-size: 16px;
        }

        .auth-form button[type="submit"],
        #loginSubmit,
        #homeBtnSignupSubmit {
          min-height: 2.85rem;
        }
      }

      @media (max-width: 380px) {
        .home-apps-bento {
          gap: 0.5rem;
        }

        .home-apps-bento .home-app--featured {
          min-height: 9.5rem;
        }

        .home-app--featured .home-app-name {
          font-size: 0.82rem;
        }

        .home-portal-logos.home-bank-logos {
          grid-template-columns: repeat(4, 1.55rem);
        }
      }

      @media (min-width: 640px) and (max-width: 959px) {
        .home-first-grid {
          display: flex;
          flex-direction: column;
          gap: 1.35rem;
        }

        .home-apps-bento {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .home-apps-bento .home-app--cadastro {
          grid-column: 1 / -1;
        }

        .home-auth {
          max-width: 28rem;
        }
      }

      @media (min-width: 640px) {
        .home-featured {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 0.85rem;
        }
      }

      .home-app--featured {
        position: relative;
        container-type: inline-size;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        min-height: 11.75rem;
        padding: 0.85rem 0.85rem 0;
        border-radius: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.06);
        backdrop-filter: blur(12px);
        overflow: hidden;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
        transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s, background 0.2s;
      }

      .home-app--featured:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 223, 0, 0.28);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.1),
          0 18px 36px -18px rgba(0, 0, 0, 0.55);
      }

      .home-app--featured::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient(145deg, rgba(255, 223, 0, 0.05), transparent 42%, rgba(0, 156, 59, 0.06));
        opacity: 0.9;
      }

      .home-featured-wrap {
        width: 100%;
        padding: 0.35rem 0.65rem 0.65rem;
      }

      .home-demo .home-featured-wrap {
        margin-top: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 0.75rem;
      }

      .home-featured-hint {
        display: none;
        margin: 0.45rem 0 0;
        font-size: 0.65rem;
        font-weight: 600;
        letter-spacing: 0.06em;
        color: rgba(255, 255, 255, 0.32);
      }

      .home-app-visual {
        position: relative;
        z-index: 1;
        flex: 1 1 auto;
        min-height: 5.75rem;
        height: auto;
        max-height: none;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        overflow: hidden;
      }

      .home-app--featured .home-app-body {
        position: relative;
        z-index: 2;
        width: 100%;
        flex-shrink: 0;
        margin-top: auto;
        padding: 0.62rem 0.2rem 0.72rem;
        border-top: none;
        transition: opacity 0.2s ease;
      }

      .home-app-badge {
        position: absolute;
        top: 0.55rem;
        left: 0.55rem;
        z-index: 4;
        padding: 0.16rem 0.45rem;
        border-radius: 999px;
        font-size: 0.58rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        color: #ecfdf5;
        background: rgba(0, 156, 59, 0.82);
        border: 1px solid rgba(255, 223, 0, 0.35);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
      }

      .home-app--featured.home-app--plate {
        background: linear-gradient(160deg, rgba(14, 165, 233, 0.2), rgba(37, 99, 235, 0.08));
        border-color: rgba(56, 189, 248, 0.35);
      }

      .home-app--featured.home-app--plate:hover {
        border-color: rgba(125, 211, 252, 0.5);
      }

      .home-app--featured.home-app--veicular {
        background: linear-gradient(160deg, rgba(16, 185, 129, 0.22), rgba(5, 150, 105, 0.08));
        border-color: rgba(52, 211, 153, 0.35);
      }

      .home-app--featured.home-app--veicular:hover {
        border-color: rgba(110, 231, 183, 0.5);
      }

      .home-app--featured.home-app--veicular .home-app-body {
        background: linear-gradient(180deg, rgba(6, 78, 59, 0) 0%, rgba(6, 78, 59, 0.85) 35%, rgba(6, 78, 59, 0.95) 100%);
        margin-top: 0;
        padding-top: 0.55rem;
      }

      .home-app--featured.home-app--plate .home-app-visual {
        min-height: 6rem;
      }

      .home-app--featured.home-app--plate .home-app-icon--mercosul {
        width: min(100%, 11.75rem);
        height: auto;
        max-height: none;
        aspect-ratio: 80 / 28;
        align-self: center;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0.2rem;
        overflow: hidden;
      }

      .home-app--featured.home-app--plate .home-app-icon--mercosul svg {
        width: 100%;
        height: auto;
        max-height: 100%;
        display: block;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
      }

      .home-app--featured.home-app--plate .home-app-body {
        background: linear-gradient(180deg, rgba(8, 47, 73, 0) 0%, rgba(8, 47, 73, 0.85) 35%, rgba(8, 47, 73, 0.95) 100%);
        margin-top: 0;
        padding-top: 0.55rem;
      }

      .home-app--featured.home-app--fb {
        background: linear-gradient(160deg, rgba(24, 119, 242, 0.22), rgba(12, 99, 212, 0.08));
        border-color: rgba(59, 130, 246, 0.35);
      }

      .home-app--featured.home-app--fb:hover {
        border-color: rgba(96, 165, 250, 0.5);
      }

      .home-app--featured.home-app--cadastro {
        background: linear-gradient(160deg, rgba(255, 40, 0, 0.18), rgba(255, 40, 0, 0.06));
        border-color: rgba(255, 40, 0, 0.3);
      }

      .home-app--featured.home-app--cadastro:hover {
        border-color: rgba(255, 107, 74, 0.45);
      }

      .home-app--featured.home-app--avaliacao {
        background: linear-gradient(160deg, rgba(255, 138, 60, 0.2), rgba(180, 83, 9, 0.08));
        border-color: rgba(251, 146, 60, 0.38);
      }

      .home-app--featured.home-app--avaliacao:hover {
        border-color: rgba(253, 186, 116, 0.55);
      }

      .home-app--featured.home-app--avaliacao .home-app-visual {
        min-height: 6rem;
      }

      .home-app--featured.home-app--avaliacao .home-app-body {
        background: linear-gradient(180deg, rgba(120, 53, 15, 0) 0%, rgba(120, 53, 15, 0.88) 38%, rgba(69, 26, 3, 0.96) 100%);
        margin-top: 0;
        padding-top: 0.55rem;
      }

      .home-app--featured.home-app--avaliacao .home-app-icon--checklist {
        width: min(100%, 4.5rem);
        height: auto;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.65rem;
        background: linear-gradient(145deg, rgba(255, 237, 213, 0.95), rgba(254, 215, 170, 0.85));
        border: 1px solid rgba(251, 146, 60, 0.45);
        border-radius: 1rem;
        box-shadow: 0 10px 24px rgba(234, 88, 12, 0.28);
        color: #9a3412;
      }

      .home-app--featured.home-app--avaliacao .home-app-icon--checklist svg {
        width: 100%;
        height: 100%;
        display: block;
      }

      .home-app--featured.home-app--fb .home-app-visual {
        min-height: 6rem;
      }

      .home-app--featured.home-app--fb .home-app-body {
        background: linear-gradient(180deg, rgba(30, 58, 138, 0) 0%, rgba(30, 58, 138, 0.88) 38%, rgba(30, 58, 138, 0.96) 100%);
        margin-top: 0;
        padding-top: 0.55rem;
      }

      .home-app--featured.home-app--fb .home-app-icon--facebook {
        width: min(100%, 4.75rem);
        height: auto;
        max-height: none;
        aspect-ratio: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        background: transparent;
        border: none;
        border-radius: 999px;
        overflow: hidden;
        box-shadow: 0 10px 24px rgba(24, 119, 242, 0.35);
      }

      .home-app--featured.home-app--fb .home-app-icon--facebook svg {
        width: 100%;
        height: 100%;
        display: block;
      }

      .home-app--featured.home-app--veicular .home-portal-logos.home-detran-logos {
        height: 100%;
      }

      .home-app--featured.home-app--cadastro .home-app-body {
        background: linear-gradient(180deg, rgba(69, 10, 10, 0) 0%, rgba(69, 10, 10, 0.82) 35%, rgba(69, 10, 10, 0.94) 100%);
        margin-top: 0;
        padding-top: 0.55rem;
      }

      .home-app-visual .home-portal-logos {
        width: 100%;
        height: 100%;
        min-height: 0;
        overflow: hidden;
      }

      .home-bank-logos {
        height: 100%;
        min-height: 0;
      }

      .home-app--cadastro .home-portal-logo,
      .home-app--cadastro .home-bank-logo {
        width: 2.15rem;
        height: 2.15rem;
        border-radius: 0.52rem;
      }

      .home-app--cadastro .home-portal-logo--more {
        min-width: 2.15rem;
        height: 2.15rem;
      }

      .home-app--fb .home-portal-logo {
        width: 1.72rem;
        height: 1.72rem;
      }

      .home-app--fb .home-portal-logo--more {
        min-width: 1.72rem;
        height: 1.72rem;
      }

      .home-bank-logo {
        background: #fff;
        padding: 0.16rem;
      }

      .home-bank-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
      }

      .home-app--featured .home-app-icon {
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 0.7rem;
      }

      .home-app--featured .home-app-icon:not(.home-app-icon--mercosul):not(.home-app-icon--detran):not(.home-app-icon--facebook) svg {
        width: 1.25rem;
        height: 1.25rem;
      }

      .home-app--featured .home-app-icon--red {
        background: linear-gradient(145deg, #ff4d26, #ff2800);
        color: #fff;
        box-shadow: 0 6px 16px -6px rgba(255, 40, 0, 0.55);
      }

      .home-app--featured .home-app-icon--mercosul svg {
        width: 100%;
        height: auto;
        max-height: 100%;
        filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
      }

      .home-portal-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 0.35rem;
        align-items: center;
      }

      .home-app--fb .home-portal-logos {
        display: none;
      }

      .home-portal-logos.home-bank-logos {
        display: grid;
        grid-template-columns: repeat(5, 2.15rem);
        gap: 0.32rem;
        place-content: center;
        align-items: stretch;
      }

      .home-portal-logos.home-detran-logos {
        display: grid;
        grid-template-columns: repeat(9, minmax(0, 1fr));
        gap: 0.2rem;
        width: 100%;
        max-width: 100%;
        padding: 0 0.1rem;
        place-content: center;
        align-items: stretch;
      }

      .home-detran-badge {
        display: grid;
        place-items: center;
        aspect-ratio: 1;
        min-width: 0;
        border-radius: 0.34rem;
        background: linear-gradient(160deg, #2563eb 0%, #1d4ed8 52%, #1e3a8a 100%);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: 0 2px 7px rgba(0, 0, 0, 0.22);
        font-size: clamp(0.44rem, 1.65vw, 0.54rem);
        font-weight: 800;
        letter-spacing: 0.03em;
        line-height: 1;
        color: #fff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
        text-decoration: none;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
      }

      a.home-detran-badge:hover {
        transform: scale(1.08);
        border-color: rgba(255, 223, 0, 0.55);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.32);
        z-index: 2;
      }

      a.home-detran-badge:focus-visible {
        outline: 2px solid #ffdf00;
        outline-offset: 1px;
      }

      .home-portal-logo {
        display: grid;
        place-items: center;
        width: 1.75rem;
        height: 1.75rem;
        border-radius: 0.45rem;
        overflow: hidden;
        flex-shrink: 0;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
      }

      .home-portal-logo svg {
        width: 100%;
        height: 100%;
        display: block;
      }

      .home-portal-logo--more {
        width: auto;
        min-width: 1.75rem;
        padding: 0 0.35rem;
        font-size: 0.58rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.75);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.15);
      }

      .home-app--featured .home-app-name {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 0;
        font-size: clamp(0.98rem, 9.8cqi, 1.28rem);
        font-weight: 700;
        letter-spacing: -0.035em;
        line-height: 1.12;
        color: #fff;
        text-align: center;
        text-wrap: balance;
        text-shadow: 0 1px 12px rgba(0, 0, 0, 0.38);
        font-feature-settings: "kern" 1, "liga" 1;
      }

      @supports not (font-size: 1cqi) {
        .home-app--featured .home-app-name {
          font-size: clamp(0.98rem, 2.6vw, 1.22rem);
        }
      }

      .home-app--featured .home-app-chevron {
        position: absolute;
        right: 0.65rem;
        top: 0.55rem;
        z-index: 4;
        width: 1.35rem;
        height: 1.35rem;
        display: grid;
        place-items: center;
        border-radius: 999px;
        font-size: 0.95rem;
        line-height: 1;
        color: rgba(255, 255, 255, 0.72);
        background: rgba(0, 0, 0, 0.22);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: opacity 0.2s ease;
      }

      .home-app-body--link {
        display: block;
        text-decoration: none;
        color: inherit;
      }

      .home-app-chevron--link {
        text-decoration: none;
      }

      .home-app--veicular:hover .home-app-chevron--link {
        color: rgba(255, 255, 255, 0.95);
        transform: translateX(2px);
      }

      .home-app-brand {
        font-style: normal;
        font-weight: 800;
        letter-spacing: -0.05em;
        color: #ff2800;
      }

      .home-app--plate .home-app-brand {
        color: #7dd3fc;
      }

      .home-app--veicular .home-app-brand {
        color: #6ee7b7;
      }

      .home-app--featured.home-app--veicular .home-app-visual {
        min-height: 6.35rem;
      }

      .home-app--featured.home-app--cadastro .home-app-visual {
        min-height: 6.85rem;
      }

      /* —— Auth modal (popup) —— */
      .home-auth-modal {
        position: fixed;
        inset: 0;
        z-index: 300;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem max(0.75rem, env(safe-area-inset-bottom));
      }

      .home-auth-modal.hidden {
        display: none;
      }

      .home-auth-modal-backdrop {
        position: absolute;
        inset: 0;
        border: none;
        background: rgba(15, 23, 42, 0.58);
        backdrop-filter: blur(4px);
        cursor: pointer;
      }

      .home-auth-modal-dialog {
        position: relative;
        z-index: 1;
        width: min(100%, 22.5rem);
        max-height: min(92dvh, 680px);
        display: flex;
        flex-direction: column;
        overflow: hidden;
      }

      .home-auth-modal-close {
        position: absolute;
        top: 0.55rem;
        right: 0.55rem;
        z-index: 5;
        width: 2rem;
        height: 2rem;
        border: none;
        border-radius: 999px;
        background: rgba(15, 23, 42, 0.06);
        color: #64748b;
        font-size: 1.35rem;
        line-height: 1;
        cursor: pointer;
        font-family: inherit;
      }

      .home-auth-modal-close:hover {
        background: rgba(15, 23, 42, 0.1);
        color: #334155;
      }

      /* —— Auth card —— */
      .home-auth {
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        min-height: 0;
        max-height: min(92dvh, 680px);
        border-radius: 1.25rem;
        padding: 1.5rem;
        color: #141414;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, 0.07);
        box-shadow:
          0 1px 2px rgba(15, 23, 42, 0.04),
          0 12px 32px -8px rgba(61, 8, 16, 0.14),
          0 24px 48px -16px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        isolation: isolate;
      }

      .home-auth::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 2px;
        background: linear-gradient(90deg, #009c3b 0%, #ffdf00 48%, #ff2800 100%);
        z-index: 0;
      }

      .home-auth > * {
        position: relative;
        z-index: 1;
      }

      #homeAuthGuest {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
        overflow: hidden;
      }

      #homeAuthGuest.hidden {
        display: none !important;
      }

      .auth-tabs {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.2rem;
        padding: 0.22rem;
        border-radius: 999px;
        background: #f1f5f9;
        border: none;
        margin-bottom: 1.25rem;
      }

      .auth-tab {
        border: none;
        border-radius: 999px;
        padding: 0.58rem 0.85rem;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0;
        cursor: pointer;
        background: transparent;
        color: #64748b;
        font-family: inherit;
        transition: background 0.2s, color 0.2s, box-shadow 0.2s;
      }

      .auth-tab:hover:not(.active) {
        color: #334155;
        background: rgba(255, 255, 255, 0.55);
      }

      .auth-tab.active {
        background: #fff;
        color: #e02400;
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
      }

      .auth-panel {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-height: 0;
      }

      .auth-panel.hidden {
        display: none;
      }

      .auth-panel-head {
        margin-bottom: 0.25rem;
      }

      .auth-panel-head--signup {
        margin-bottom: 0.15rem;
      }

      .auth-heading {
        margin: 0;
        font-size: 1.28rem;
        font-weight: 800;
        letter-spacing: -0.03em;
        line-height: 1.2;
        color: #0f172a;
      }

      .auth-sub {
        margin: 0.35rem 0 0;
        font-size: 0.82rem;
        line-height: 1.5;
        color: #64748b;
      }

      .auth-panel-scroll {
        flex: 1;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding-right: 0.1rem;
      }

      #panelLogin .auth-panel-scroll {
        flex: 0 0 auto;
        overflow: visible;
      }

      #panelSignup .auth-panel-head .auth-heading {
        font-size: 1.05rem;
      }

      @media (max-width: 639px) {
        .home-auth-modal {
          align-items: flex-start;
          justify-content: center;
          padding: max(0.4rem, env(safe-area-inset-top)) 0.6rem max(0.5rem, env(safe-area-inset-bottom));
        }

        .home-auth-modal-dialog,
        .home-auth {
          max-height: calc(100dvh - max(0.4rem, env(safe-area-inset-top)) - max(0.5rem, env(safe-area-inset-bottom)));
        }

        .home-auth {
          padding: 0.85rem 0.9rem 0.95rem;
        }

        .home-auth-modal-close {
          top: 0.4rem;
          right: 0.4rem;
        }

        .auth-tabs {
          margin-bottom: 0.65rem;
        }

        .auth-tab {
          min-height: 2.45rem;
          padding: 0.45rem 0.65rem;
          font-size: 0.78rem;
        }

        #panelSignup .auth-panel-head .auth-heading {
          display: none;
        }

        #panelSignup .auth-panel-head {
          margin-bottom: 0.1rem;
        }

        #panelSignup .auth-signup-steps {
          margin: 0 0 0.35rem;
        }

        .auth-label {
          margin-top: 0.5rem;
          font-size: 0.76rem;
        }

        .auth-label:first-child,
        .auth-form > .auth-label:first-of-type {
          margin-top: 0.15rem;
        }

        .field-input,
        .pwd-wrap input {
          margin-top: 0.28rem;
          padding: 0.55rem 0.72rem;
          font-size: 16px;
        }

        .pwd-wrap input {
          padding-right: 2.85rem;
        }

        .auth-field-error {
          margin: 0.12rem 0 0;
          min-height: 0;
          font-size: 0.68rem;
        }

        .auth-terms-row {
          margin-top: 0.55rem;
          gap: 0.45rem;
        }

        .auth-terms-row label {
          font-size: 0.68rem;
          line-height: 1.35;
        }

        .btn-primary {
          margin-top: 0.65rem;
          padding: 0.68rem 0.85rem;
          font-size: 0.84rem;
        }

        .auth-form input[type="email"],
        .auth-form input[type="password"],
        .auth-form input[type="text"] {
          min-height: 2.55rem;
        }

        .auth-form button[type="submit"],
        #loginSubmit,
        #homeBtnSignupSubmit {
          min-height: 2.55rem;
        }

        #panelSignup .auth-panel-scroll {
          overflow-y: auto;
          -webkit-overflow-scrolling: touch;
        }
      }

      .auth-signup-steps {
        display: flex;
        gap: 0.3rem;
        margin: 0.75rem 0 0;
      }

      .auth-signup-step {
        flex: 1;
        height: 0.18rem;
        border-radius: 999px;
        background: #e2e8f0;
        transition: background 0.25s;
      }

      .auth-signup-step.is-active,
      .auth-signup-step.is-done {
        background: linear-gradient(90deg, #ff4d26, #ff2800);
      }

      .auth-field-hint {
        margin: 0.35rem 0 0;
        font-size: 0.68rem;
        line-height: 1.4;
        color: #94a3b8;
      }

      .auth-field-error {
        margin: 0.35rem 0 0;
        min-height: 0.95rem;
        font-size: 0.72rem;
        line-height: 1.35;
        color: #dc2626;
      }

      .auth-terms-row {
        display: flex;
        gap: 0.55rem;
        align-items: flex-start;
        margin-top: 0.85rem;
      }

      .auth-terms-row input {
        margin-top: 0.15rem;
        flex-shrink: 0;
      }

      .auth-terms-row label {
        font-size: 0.72rem;
        line-height: 1.45;
        color: #64748b;
      }

      .auth-terms-row a {
        color: #cc1f00;
        font-weight: 700;
        text-decoration: none;
      }

      .auth-terms-row a:hover {
        text-decoration: underline;
      }

      .auth-btn-row {
        display: flex;
        gap: 0.55rem;
        margin-top: 1rem;
      }

      .auth-btn-row .btn-primary {
        margin-top: 0;
        flex: 1;
      }

      .btn-secondary-light {
        flex: 0 0 auto;
        padding: 0.82rem 0.95rem;
        border-radius: 0.75rem;
        border: 1px solid #dbe3ee;
        background: #fff;
        color: #64748b;
        font-size: 0.82rem;
        font-weight: 700;
        cursor: pointer;
        font-family: inherit;
        transition: border-color 0.15s, color 0.15s, background 0.15s;
      }

      .btn-secondary-light:hover {
        border-color: #cbd5e1;
        color: #334155;
        background: #f8fafc;
      }

      .auth-signup-perk {
        margin: 0 0 0.85rem;
        padding: 0.65rem 0.75rem;
        border-radius: 0.75rem;
        background: rgba(255, 237, 232, 0.65);
        border: 1px solid rgba(255, 40, 0, 0.1);
        font-size: 0.72rem;
        line-height: 1.45;
        color: #64748b;
      }

      .auth-signup-perk strong {
        color: #0f172a;
      }

      .auth-signup-step-panel.hidden {
        display: none;
      }

      .auth-form {
        display: flex;
        flex-direction: column;
      }

      .auth-label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none;
        color: #334155;
        margin-top: 0.85rem;
      }

      .auth-label:first-child,
      .auth-form > .auth-label:first-of-type {
        margin-top: 0.35rem;
      }

      .field-input {
        width: 100%;
        margin-top: 0.38rem;
        padding: 0.72rem 0.9rem;
        border-radius: 0.7rem;
        border: 1px solid #e2e8f0;
        background: #f8fafc;
        font-size: 0.9rem;
        font-family: inherit;
        color: #0f172a;
        transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
      }

      .field-input::placeholder {
        color: #94a3b8;
      }

      .field-input:hover {
        border-color: #cbd5e1;
        background: #fff;
      }

      .field-input:focus {
        outline: none;
        border-color: #ff2800;
        background: #fff;
        box-shadow: 0 0 0 4px rgba(255, 40, 0, 0.1);
      }

      .pwd-wrap {
        position: relative;
        display: block;
        margin-top: 0.38rem;
      }

      .pwd-wrap input {
        width: 100%;
        margin-top: 0;
        padding: 0.72rem 3.25rem 0.72rem 0.9rem;
        border-radius: 0.7rem;
        border: 1px solid #e2e8f0;
        background: #f8fafc;
        font-size: 0.9rem;
        font-family: inherit;
        color: #0f172a;
        transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
      }

      .pwd-wrap input::placeholder {
        color: #94a3b8;
      }

      .pwd-wrap input:hover {
        border-color: #cbd5e1;
        background: #fff;
      }

      .pwd-wrap input:focus {
        outline: none;
        border-color: #ff2800;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(255, 40, 0, 0.1);
      }

      .pwd-toggle {
        position: absolute;
        right: 0.35rem;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: transparent;
        padding: 0.35rem 0.5rem;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0;
        text-transform: none;
        color: #64748b;
        cursor: pointer;
        font-family: inherit;
        border-radius: 0.4rem;
        transition: color 0.15s, background 0.15s;
      }

      .pwd-toggle:hover {
        color: #e02400;
        background: rgba(255, 40, 0, 0.06);
      }

      .btn-primary {
        width: 100%;
        margin-top: 1rem;
        padding: 0.82rem 1rem;
        border: none;
        border-radius: 0.7rem;
        font-weight: 700;
        font-size: 0.88rem;
        color: #fff;
        cursor: pointer;
        background: linear-gradient(145deg, #ff4d26, #ff2800);
        box-shadow: 0 4px 14px -4px rgba(255, 40, 0, 0.45);
        font-family: inherit;
        transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      }

      .btn-primary:hover:not(:disabled) {
        transform: translateY(-1px);
        filter: brightness(1.02);
        box-shadow: 0 8px 20px -6px rgba(255, 40, 0, 0.5);
      }

      .btn-primary:active:not(:disabled) {
        transform: translateY(0);
      }

      .btn-primary:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        box-shadow: none;
      }

      .auth-msg {
        margin-top: 0.65rem;
        font-size: 0.8rem;
        min-height: 1.1rem;
        line-height: 1.4;
      }

      .auth-msg.err {
        color: #dc2626;
      }

      .auth-msg.ok {
        color: #059669;
      }

      .auth-hint {
        margin-top: auto;
        padding-top: 0.85rem;
        border-top: 1px solid #f1f5f9;
        font-size: 0.75rem;
        line-height: 1.55;
        color: #94a3b8;
        text-align: center;
      }

      .auth-inline-link {
        border: none;
        padding: 0;
        background: none;
        color: #cc1f00;
        font: inherit;
        font-weight: 700;
        cursor: pointer;
        text-decoration: underline;
      }

      .auth-signup-action {
        margin-top: 1rem;
      }

      .auth-signup-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0.82rem 1rem;
        border-radius: 0.75rem;
        font-size: 0.86rem;
        font-weight: 800;
        text-decoration: none;
        color: #fff;
        background: linear-gradient(145deg, #ff4d26, #ff2800);
        box-shadow: 0 12px 24px -12px rgba(255, 40, 0, 0.55);
        transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      }

      .auth-signup-link:hover {
        transform: translateY(-1px);
        filter: brightness(1.03);
      }

      .signup-grid {
        display: grid;
        gap: 0;
      }

      @media (min-width: 480px) {
        .signup-grid {
          grid-template-columns: 1fr 1fr;
          column-gap: 0.75rem;
        }

        .signup-grid .span-2 {
          grid-column: span 2;
        }
      }

      .home-app {
        display: flex;
        text-align: left;
        text-decoration: none;
        color: inherit;
        font: inherit;
        cursor: pointer;
        border: none;
      }

      .home-app-icon {
        display: grid;
        place-items: center;
        flex-shrink: 0;
      }

      .home-app-icon svg {
        width: 1.1rem;
        height: 1.1rem;
      }

      .home-app-body {
        flex: 1;
        min-width: 0;
      }

      .home-app-title {
        display: block;
        font-weight: 700;
      }

      .home-app-desc {
        display: block;
        margin-top: 0.15rem;
      }

      .home-app-chevron {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.25);
        transition: color 0.15s, transform 0.15s;
      }

      .home-app:hover .home-app-chevron {
        color: rgba(255, 255, 255, 0.6);
        transform: translateX(2px);
      }

      .home-demo {
        margin-top: 1.35rem;
        border-radius: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(8, 48, 28, 0.38);
        overflow: hidden;
        box-shadow: 0 20px 50px -24px rgba(0, 0, 0, 0.65);
      }

      .home-demo-head {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.85rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
      }

      .home-demo-head strong {
        font-size: 0.82rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: rgba(255, 180, 150, 0.9);
      }

      .home-demo-head span {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.45);
      }

      .home-demo-video {
        position: relative;
        width: 100%;
        background: transparent;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        padding: 0.5rem;
      }

      .home-demo-video iframe {
        width: min(68vw, 248px);
        height: min(121vw, 441px);
        max-height: 72vh;
        border: 0;
        border-radius: 0.85rem;
        background: #000;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
      }

      .home-demo-tiktok-link {
        display: block;
        margin-top: 0.45rem;
        font-size: 0.62rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.42);
        text-align: center;
        text-decoration: none;
      }

      .home-demo-tiktok-link:hover {
        color: rgba(255, 255, 255, 0.72);
      }

      .home-demo-builtin {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 0;
      }

      .flork-phone {
        position: relative;
        width: 100%;
        aspect-ratio: 9 / 16;
        max-height: min(72vh, 520px);
        margin: 0 auto;
        border-radius: 0.85rem;
        overflow: hidden;
        background: #0c3018;
        box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
      }

      @supports (height: 1dvh) {
        .flork-phone {
          max-height: min(72dvh, 520px);
        }
      }

      .demo-roteiro-video {
        position: absolute;
        inset: 0;
        z-index: 1;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center center;
        border: 0;
        background: #0c3018;
        transition: opacity 0.2s ease;
      }

      .flork-phone--video-priming .demo-roteiro-video,
      .flork-phone--video-priming .demo-progress,
      .flork-phone--video-priming .demo-controls {
        opacity: 0;
        pointer-events: none;
      }

      .flork-phone .demo-progress {
        z-index: 2;
        left: 0;
        right: 0;
        bottom: 2.15rem;
      }

      .flork-phone .demo-controls {
        z-index: 2;
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.5rem;
        justify-content: flex-end;
      }

      .home-demo-show {
        position: absolute;
        inset: 0;
        overflow: hidden;
        background: #fff;
      }

      .flork-story {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        background: #fff;
      }

      .flork-story-narrator {
        flex-shrink: 0;
        margin: 0;
        padding: 0.55rem 0.65rem 0.5rem;
        min-height: 2.55rem;
        font-size: 0.58rem;
        font-weight: 800;
        line-height: 1.35;
        color: #111;
        border-bottom: 1px solid #eee;
        opacity: 0;
        transform: translateY(-6px);
        animation: florkNarratorIn 0.45s ease forwards;
      }

      @keyframes florkNarratorIn {
        to { opacity: 1; transform: none; }
      }

      .flork-type-cursor {
        display: inline-block;
        margin-left: 1px;
        font-weight: 400;
        animation: demoBlink 0.75s step-end infinite;
      }

      .flork-type-cursor.is-off { display: none; }

      .flork-story-stage {
        position: relative;
        flex: 1;
        min-height: 0;
        overflow: hidden;
      }

      .flork-story-floor {
        position: absolute;
        left: 8%;
        right: 8%;
        bottom: 18%;
        height: 2px;
        background: #111;
        border-radius: 1px;
      }

      .flork-desk-set {
        position: absolute;
        right: 6%;
        bottom: 18%;
        width: 52%;
      }

      .flork-laptop {
        position: relative;
        margin: 0 auto;
        width: 78%;
        aspect-ratio: 1.35;
        border: 2.5px solid #111;
        border-radius: 0.25rem 0.25rem 0 0;
        background: linear-gradient(180deg, #e5e7eb 0%, #d1d5db 100%);
      }

      .flork-laptop::after {
        content: "";
        position: absolute;
        left: -12%;
        right: -12%;
        bottom: -18%;
        height: 14%;
        background: #9ca3af;
        border: 2.5px solid #111;
        border-radius: 0 0 0.35rem 0.35rem;
      }

      .flork-laptop-screen {
        position: absolute;
        inset: 12% 10% 28%;
        background: #fff;
        border: 1.5px solid #111;
        border-radius: 0.12rem;
      }

      .flork-laptop-fx {
        position: absolute;
        left: 50%;
        bottom: 8%;
        width: 2rem;
        height: 2rem;
        transform: translateX(-50%);
        pointer-events: none;
        opacity: 0;
      }

      .flork-laptop-fx.is-on { opacity: 1; }

      .flork-smoke {
        position: absolute;
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 50%;
        background: #9ca3af;
        opacity: 0;
      }

      .flork-laptop-fx.is-on .flork-smoke--1 {
        left: 20%;
        bottom: 10%;
        animation: florkSmoke 0.65s ease-out infinite;
      }

      .flork-laptop-fx.is-on .flork-smoke--2 {
        left: 55%;
        bottom: 18%;
        animation: florkSmoke 0.65s ease-out 0.22s infinite;
      }

      .flork-laptop-fx.is-on .flork-smoke--3 {
        left: 38%;
        bottom: 5%;
        animation: florkSmoke 0.65s ease-out 0.44s infinite;
      }

      @keyframes florkSmoke {
        0% { opacity: 0.85; transform: translateY(0) scale(0.6); }
        100% { opacity: 0; transform: translateY(-1.1rem) scale(1.4); }
      }

      .flork-bolt {
        position: absolute;
        font-size: 0.85rem;
        line-height: 1;
        opacity: 0;
      }

      .flork-laptop-fx.is-on .flork-bolt--1 {
        left: -10%;
        bottom: 30%;
        animation: florkBolt 0.35s ease infinite;
      }

      .flork-laptop-fx.is-on .flork-bolt--2 {
        right: -5%;
        bottom: 45%;
        animation: florkBolt 0.35s ease 0.18s infinite;
      }

      @keyframes florkBolt {
        0%, 100% { opacity: 0; transform: scale(0.8) rotate(-8deg); }
        50% { opacity: 1; transform: scale(1.1) rotate(8deg); }
      }

      .flork-char {
        position: absolute;
        bottom: 18%;
        width: 38%;
      }

      .flork-char--client {
        left: 4%;
        transform-origin: center bottom;
      }

      .flork-char--seller {
        right: 14%;
        width: 28%;
        transform-origin: center bottom;
      }

      .flork-char--seller.is-typing {
        animation: florkTypeBounce 0.11s ease-in-out infinite;
      }

      @keyframes florkTypeBounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
      }

      .flork-char svg {
        width: 100%;
        height: auto;
        display: block;
      }

      .flork-char--client .flork-eye-l,
      .flork-char--client .flork-eye-r {
        transform-origin: center;
        animation: florkSlowBlink 3.8s ease infinite;
      }

      @keyframes florkSlowBlink {
        0%, 94%, 100% { transform: scaleY(1); }
        97% { transform: scaleY(0.08); }
      }

      .flork-story-voice {
        flex-shrink: 0;
        margin: 0;
        padding: 0.45rem 0.65rem 0.7rem;
        font-size: 0.52rem;
        font-weight: 700;
        font-style: italic;
        color: #737373;
        text-align: center;
        border-top: 1px solid #f0f0f0;
      }

      .home-demo-builtin .demo-progress {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 2.15rem;
        width: auto;
        height: 2px;
      }

      .home-demo-builtin .demo-controls {
        position: absolute;
        left: 0.65rem;
        right: 0.65rem;
        bottom: 0.5rem;
        width: auto;
        padding-bottom: 0;
        justify-content: flex-end;
      }

      .toon-show {
        position: absolute;
        inset: 0;
        padding: 0.4rem 0.5rem 2.4rem;
        display: flex;
        flex-direction: column;
      }

      .toon-paper {
        position: relative;
        flex: 1;
        min-height: 0;
        border-radius: 0.45rem;
        border: none;
        background: #fff;
        overflow: hidden;
      }

      .toon-camera {
        position: absolute;
        inset: 0;
        transform-origin: 50% 42%;
        transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
        will-change: transform;
      }

      .toon-camera.is-zoom {
        transform: scale(1.14);
      }

      .toon-camera.is-zoom-far {
        transform: scale(0.92);
      }

      .toon-camera.is-shake {
        animation: toonShake 0.42s ease;
      }

      @keyframes toonShake {
        0%, 100% { transform: translate(0, 0) scale(1); }
        20% { transform: translate(-4px, 2px) scale(1.02); }
        40% { transform: translate(4px, -2px) scale(1.02); }
        60% { transform: translate(-3px, -1px) scale(1.01); }
        80% { transform: translate(3px, 1px) scale(1.01); }
      }

      .toon-punch {
        position: absolute;
        left: 50%;
        top: 42%;
        transform: translate(-50%, -50%) scale(0.2);
        z-index: 8;
        padding: 0.2rem 0.55rem;
        border-radius: 0.35rem;
        font-size: clamp(0.9rem, 4.8vw, 1.35rem);
        font-weight: 900;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        text-align: center;
        line-height: 1.05;
        color: #fff;
        background: #111;
        border: 3px solid #111;
        box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
        opacity: 0;
        pointer-events: none;
        white-space: nowrap;
      }

      .toon-punch.is-show {
        animation: toonPunchIn 0.38s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
      }

      .toon-punch--red { background: #dc2626; border-color: #991b1b; }
      .toon-punch--green { background: #16a34a; border-color: #166534; }
      .toon-punch--f7 { background: #ff4d26; border-color: #cc1f00; }

      @keyframes toonPunchIn {
        0% { opacity: 0; transform: translate(-50%, -50%) scale(0.15) rotate(-10deg); }
        70% { opacity: 1; transform: translate(-50%, -50%) scale(1.08) rotate(2deg); }
        100% { opacity: 1; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
      }

      .toon-flash {
        position: absolute;
        inset: 0;
        z-index: 12;
        background: #fff;
        opacity: 0;
        pointer-events: none;
      }

      .toon-flash.is-on {
        animation: toonFlash 0.55s ease;
      }

      @keyframes toonFlash {
        0% { opacity: 0; }
        18% { opacity: 0.95; }
        100% { opacity: 0; }
      }

      .toon-sky {
        position: absolute;
        inset: 0 0 32%;
        background: #fff;
      }

      .toon-floor {
        position: absolute;
        left: 5%;
        right: 5%;
        bottom: 28%;
        height: 2px;
        background: #2a2a2a;
        border-radius: 999px;
      }

      .toon-car {
        position: absolute;
        left: 58%;
        bottom: 29%;
        width: 2.8rem;
        height: 1.1rem;
        border: 2px solid #222;
        border-radius: 0.35rem 0.5rem 0.2rem 0.2rem;
        background: #ffedd5;
        opacity: 0;
        transform: translateX(12px);
        transition: opacity 0.5s, transform 0.5s;
      }

      .toon-car::before,
      .toon-car::after {
        content: "";
        position: absolute;
        bottom: -0.42rem;
        width: 0.55rem;
        height: 0.55rem;
        border: 2px solid #222;
        border-radius: 50%;
        background: #fff;
      }

      .toon-car::before { left: 0.35rem; }
      .toon-car::after { right: 0.35rem; }

      .toon-desk-set {
        position: absolute;
        left: 6%;
        bottom: 28%;
        width: 46%;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.45s, transform 0.45s;
      }

      .toon-desk-top {
        height: 3px;
        background: #222;
        border-radius: 999px;
      }

      .toon-desk-leg {
        position: absolute;
        top: 3px;
        width: 2px;
        height: 1.6rem;
        background: #222;
      }

      .toon-desk-leg--l { left: 14%; }
      .toon-desk-leg--r { right: 14%; }

      .toon-monitor {
        position: absolute;
        left: 42%;
        bottom: 3px;
        width: 2rem;
        height: 1.35rem;
        border: 2px solid #222;
        border-radius: 0.12rem;
        background: #f8fafc;
        transform: translateX(-50%);
        transition: background 0.35s, box-shadow 0.35s;
      }

      .toon-monitor.is-f7 {
        background: #fff5f2;
        box-shadow: 0 0 0 2px rgba(255, 77, 38, 0.35);
      }

      .toon-monitor-screen {
        position: absolute;
        inset: 0.14rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.08rem;
        font-size: 0.38rem;
        font-weight: 900;
        color: #ff4d26;
      }

      .toon-monitor-screen span {
        display: block;
        width: 70%;
        height: 2px;
        background: #cbd5e1;
        border-radius: 999px;
        opacity: 0;
        transition: opacity 0.2s;
      }

      .toon-monitor-screen span.is-on { opacity: 1; }
      .toon-monitor-screen .toon-f7-logo { width: auto; height: auto; background: none; font-size: 0.46rem; opacity: 0; }
      .toon-monitor-screen .toon-f7-logo.is-on { opacity: 1; }

      .toon-wall-clock {
        position: absolute;
        top: 0.45rem;
        right: 0.5rem;
        width: 2.1rem;
        height: 2.1rem;
        border: 2px solid #222;
        border-radius: 50%;
        background: #fff;
        display: grid;
        place-items: center;
        font-size: 0.44rem;
        font-weight: 900;
        font-variant-numeric: tabular-nums;
        color: #222;
        opacity: 0;
        transform: scale(0.85);
        transition: opacity 0.35s, transform 0.35s, color 0.3s;
      }

      .toon-wall-clock.is-show {
        opacity: 1;
        transform: scale(1);
      }

      .toon-wall-clock.is-slow { color: #dc2626; }
      .toon-wall-clock.is-fast { color: #16a34a; }

      .toon-bank-card {
        position: absolute;
        top: 0.5rem;
        left: 0.5rem;
        min-width: 5.5rem;
        padding: 0.3rem 0.45rem;
        border: 2px dashed #222;
        border-radius: 0.35rem;
        background: #fff;
        font-size: 0.48rem;
        font-weight: 800;
        color: #222;
        text-align: center;
        opacity: 0;
        transform: rotate(-3deg) scale(0.9);
        transition: opacity 0.25s, transform 0.25s;
      }

      .toon-bank-card.is-show {
        opacity: 1;
        transform: rotate(-2deg) scale(1);
      }

      .toon-stamp {
        position: absolute;
        top: 38%;
        left: 50%;
        transform: translate(-50%, -50%) scale(2) rotate(-12deg);
        padding: 0.2rem 0.55rem;
        border: 3px solid;
        border-radius: 0.25rem;
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        opacity: 0;
        transition: opacity 0.2s, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      }

      .toon-stamp.is-show {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1) rotate(-8deg);
      }

      .toon-stamp--no { color: #dc2626; border-color: #dc2626; }
      .toon-stamp--yes { color: #16a34a; border-color: #16a34a; }

      .toon-burst {
        position: absolute;
        top: 0.42rem;
        left: 0.42rem;
        right: 0.42rem;
        display: flex;
        flex-wrap: wrap;
        gap: 0.18rem;
        justify-content: center;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s;
      }

      .toon-burst.is-show { opacity: 1; }

      .toon-burst span {
        padding: 0.1rem 0.28rem;
        border: 1.5px solid #222;
        border-radius: 999px;
        font-size: 0.38rem;
        font-weight: 800;
        background: #fff;
        color: #222;
        opacity: 0.35;
        transform: scale(0.9);
        transition: opacity 0.2s, background 0.2s, color 0.2s, transform 0.2s;
      }

      .toon-burst span.is-on {
        opacity: 1;
        transform: scale(1);
        background: #dcfce7;
        color: #166534;
        border-color: #16a34a;
      }

      .toon-burst span.is-off {
        opacity: 0.55;
        text-decoration: line-through;
        background: #fee2e2;
        color: #991b1b;
        border-color: #dc2626;
      }

      .toon-actor {
        position: absolute;
        bottom: 28%;
        width: 3.6rem;
        transition: left 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), right 0.38s cubic-bezier(0.34, 1.2, 0.64, 1), bottom 0.35s ease, opacity 0.28s, transform 0.35s ease;
      }

      .toon-actor.is-enter-l {
        animation: toonEnterL 0.42s cubic-bezier(0.34, 1.35, 0.64, 1);
      }

      .toon-actor.is-enter-r {
        animation: toonEnterR 0.42s cubic-bezier(0.34, 1.35, 0.64, 1);
      }

      @keyframes toonEnterL {
        from { opacity: 0; transform: translateX(-2.2rem); }
        to { opacity: 1; transform: translateX(0); }
      }

      @keyframes toonEnterR {
        from { opacity: 0; transform: translateX(2.2rem); }
        to { opacity: 1; transform: translateX(0); }
      }

      .toon-actor--seller { left: 8%; }
      .toon-actor--client { right: 8%; }

      .toon-actor.is-hidden {
        opacity: 0;
        transform: translateY(10px);
        pointer-events: none;
      }

      .toon-actor--seller.is-seat {
        left: 18%;
        bottom: 24%;
      }

      .toon-stick {
        width: 100%;
        height: auto;
        display: block;
      }

      .toon-stick .toon-arm-r {
        transform-origin: 40px 38px;
        transition: transform 0.25s;
      }

      .toon-actor.is-type .toon-arm-r {
        animation: toonTypeArm 0.32s ease-in-out infinite alternate;
      }

      @keyframes toonTypeArm {
        from { transform: rotate(-6deg); }
        to { transform: rotate(14deg); }
      }

      .toon-actor.is-seat .toon-leg-l {
        transform-origin: 40px 68px;
        transform: rotate(28deg);
      }

      .toon-actor.is-seat .toon-leg-r {
        transform-origin: 40px 68px;
        transform: rotate(-22deg);
      }

      .toon-actor.is-tired .toon-head {
        animation: toonTiredHead 0.7s ease-in-out infinite alternate;
      }

      @keyframes toonTiredHead {
        from { transform: translateY(0); }
        to { transform: translateY(2px) rotate(3deg); }
      }

      .toon-actor.is-happy {
        animation: toonHop 0.55s ease infinite;
      }

      @keyframes toonHop {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
      }

      .toon-say {
        position: absolute;
        top: -0.2rem;
        left: 50%;
        transform: translate(-50%, -100%) scale(0.92);
        min-width: 4.2rem;
        max-width: 6.5rem;
        padding: 0.26rem 0.38rem;
        border: 2px solid #222;
        border-radius: 0.55rem;
        background: #fff;
        font-size: 0.44rem;
        font-weight: 700;
        line-height: 1.25;
        text-align: center;
        color: #222;
        opacity: 0;
        transition: opacity 0.28s, transform 0.28s;
      }

      .toon-say.is-show {
        opacity: 1;
        transform: translate(-50%, -100%) scale(1);
      }

      .toon-say::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -0.42rem;
        transform: translateX(-50%);
        border: 0.32rem solid transparent;
        border-top-color: #222;
      }

      .toon-say::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -0.34rem;
        transform: translateX(-50%);
        border: 0.26rem solid transparent;
        border-top-color: #fff;
        z-index: 1;
      }

      .toon-narrator {
        position: absolute;
        left: 0.35rem;
        right: 0.35rem;
        top: 0.32rem;
        z-index: 6;
        padding: 0.28rem 0.42rem;
        border-radius: 0.28rem;
        background: #fef08a;
        font-size: 0.48rem;
        font-weight: 800;
        line-height: 1.3;
        color: #111;
        text-align: center;
        min-height: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 0 #111;
        transition: opacity 0.22s, transform 0.28s;
      }

      .toon-narrator.is-pop {
        animation: toonCaptionPop 0.32s cubic-bezier(0.34, 1.3, 0.64, 1);
      }

      @keyframes toonCaptionPop {
        from { opacity: 0; transform: scale(0.92) translateY(-4px); }
        to { opacity: 1; transform: none; }
      }

      .toon-narrator.is-fade { opacity: 0.4; }

      .toon-paper.scene-loja .toon-car { opacity: 1; transform: none; }
      .toon-paper.scene-desk .toon-desk-set { opacity: 1; transform: none; }
      .toon-paper.scene-desk .toon-car { opacity: 0.35; transform: scale(0.92); }

      .fin-demo {
        position: absolute;
        inset: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
      }

      .f7-show {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        padding: 0.5rem 0.55rem 2.5rem;
      }

      .f7-show-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        margin-bottom: 0.45rem;
        min-height: 1.6rem;
      }

      .f7-show-bubble {
        display: inline-block;
        max-width: 68%;
        padding: 0.28rem 0.55rem;
        border-radius: 999px;
        font-size: 0.58rem;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, rgba(255, 77, 38, 0.85), rgba(255, 40, 0, 0.55));
        border: 1px solid rgba(255, 200, 180, 0.35);
        animation: f7BubblePop 0.45s ease;
      }

      @keyframes f7BubblePop {
        0% { transform: scale(0.88); opacity: 0; }
        100% { transform: scale(1); opacity: 1; }
      }

      .f7-show-timer {
        flex-shrink: 0;
        font-size: 0.52rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.55);
      }

      .f7-show-timer-old {
        text-decoration: line-through;
        opacity: 0.55;
        margin-right: 0.2rem;
      }

      .f7-show-timer-new {
        color: #86efac;
      }

      .f7-show-timer.is-win .f7-show-timer-old {
        display: none;
      }

      .f7-show-stage {
        flex: 1;
        min-height: 0;
      }

      .fin-slide {
        padding: 0;
        gap: 0;
      }

      .f7-mock {
        height: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 0.5rem;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.65);
      }

      .f7-mock-chrome {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.32rem 0.45rem;
        background: #2b2b30;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .f7-mock-chrome--hub {
        flex-wrap: wrap;
      }

      .f7-mock-dots {
        display: flex;
        gap: 0.18rem;
        flex-shrink: 0;
      }

      .f7-mock-dots i {
        display: block;
        width: 0.38rem;
        height: 0.38rem;
        border-radius: 50%;
      }

      .f7-mock-dots i:nth-child(1) { background: #ff5f57; }
      .f7-mock-dots i:nth-child(2) { background: #febc2e; }
      .f7-mock-dots i:nth-child(3) { background: #28c840; }

      .f7-mock-url {
        flex: 1;
        min-width: 0;
        padding: 0.12rem 0.4rem;
        border-radius: 999px;
        font-size: 0.46rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.55);
        background: rgba(0, 0, 0, 0.35);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .f7-mock-body {
        flex: 1;
        min-height: 0;
        position: relative;
        overflow: hidden;
      }

      .f7-mock--f7 .f7-mock-body {
        background: linear-gradient(180deg, #6b1d2a 0%, #6b1d2a 16%, #fff8f6 16%, #fff8f6 100%);
      }

      .f7-mock-f7-head {
        padding: 0.35rem 0.5rem 0.25rem;
        font-size: 0.58rem;
        font-weight: 800;
        color: #fff;
      }

      .f7-mock-field {
        margin: 0.22rem 0.45rem;
        padding: 0.32rem 0.42rem;
        border-radius: 0.4rem;
        border: 1px solid rgba(255, 40, 0, 0.14);
        background: #fff;
        font-size: 0.52rem;
        font-weight: 600;
        color: #334155;
        opacity: 0.25;
        transform: translateY(4px);
        transition: opacity 0.35s, transform 0.35s, box-shadow 0.35s;
      }

      .f7-mock-field.is-on {
        opacity: 1;
        transform: none;
        box-shadow: 0 0 0 2px rgba(255, 40, 0, 0.18);
      }

      .f7-mock-field--plate {
        font-family: ui-monospace, monospace;
        letter-spacing: 0.06em;
        font-weight: 800;
      }

      .f7-mock-banks {
        display: flex;
        flex-wrap: wrap;
        gap: 0.25rem;
        margin: 0.35rem 0.45rem 0.5rem;
      }

      .f7-mock-banks span {
        padding: 0.14rem 0.38rem;
        border-radius: 999px;
        font-size: 0.46rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.45);
        background: rgba(107, 29, 42, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.25s, color 0.25s, transform 0.25s;
      }

      .f7-mock-banks span.is-on {
        color: #fff;
        background: #ff4d26;
        transform: scale(1.05);
      }

      .f7-mock-body--center {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.55rem;
        padding: 0.75rem;
        background: linear-gradient(180deg, #6b1d2a 0%, #fff8f6 45%) !important;
      }

      .f7-mock-mini {
        margin: 0;
        font-size: 0.52rem;
        font-weight: 700;
        color: #64748b;
      }

      .f7-mock-send {
        padding: 0.55rem 1.1rem;
        border-radius: 0.65rem;
        font-size: 0.62rem;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(135deg, #ff4d26, #ff2800);
        box-shadow: 0 8px 24px -8px rgba(255, 40, 0, 0.65);
        transition: transform 0.2s, box-shadow 0.2s;
      }

      .f7-mock-send.is-hit {
        animation: f7SendHit 0.55s ease infinite;
      }

      @keyframes f7SendHit {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.04); box-shadow: 0 0 0 4px rgba(255, 40, 0, 0.25); }
      }

      .f7-mock-pulse {
        margin: 0;
        min-height: 0.8rem;
        font-size: 0.5rem;
        font-weight: 700;
        color: #16a34a;
        opacity: 0;
        transition: opacity 0.35s;
      }

      .f7-mock-pulse.is-live {
        opacity: 1;
        animation: demoPulse 0.9s ease infinite;
      }

      .f7-hub-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 0.2rem;
        flex: 1;
        min-width: 0;
      }

      .f7-hub-tabs span {
        padding: 0.1rem 0.32rem;
        border-radius: 0.25rem 0.25rem 0 0;
        font-size: 0.42rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.45);
        background: rgba(255, 255, 255, 0.06);
        transition: background 0.2s, color 0.2s;
      }

      .f7-hub-tabs span.is-active {
        color: #fff;
        background: rgba(255, 40, 0, 0.45);
      }

      .f7-hub-tabs span.is-done {
        color: #86efac;
        background: rgba(22, 101, 52, 0.35);
      }

      .f7-mock--hub .f7-mock-body {
        background: #1e1e1e;
        padding: 0.45rem;
      }

      .f7-bank-pane {
        position: absolute;
        inset: 0.45rem;
        padding: 0.5rem;
        border-radius: 0.35rem;
        opacity: 0;
        transform: scale(0.96);
        transition: opacity 0.35s, transform 0.35s;
        pointer-events: none;
      }

      .f7-bank-pane.is-active {
        opacity: 1;
        transform: none;
        pointer-events: auto;
      }

      .f7-bank-pane[data-bank-pane="itau"] { background: linear-gradient(145deg, #fff5f0, #ffe8dc); }
      .f7-bank-pane[data-bank-pane="pan"] { background: linear-gradient(145deg, #eff6ff, #dbeafe); }
      .f7-bank-pane[data-bank-pane="bv"] { background: linear-gradient(145deg, #f0fdf4, #dcfce7); }
      .f7-bank-pane[data-bank-pane="sant"] { background: linear-gradient(145deg, #fef2f2, #fee2e2); }

      .f7-bank-brand {
        display: inline-block;
        margin-bottom: 0.35rem;
        padding: 0.12rem 0.35rem;
        border-radius: 0.25rem;
        font-size: 0.48rem;
        font-weight: 900;
        color: #fff;
      }

      .f7-bank-brand--itau { background: #ec7000; }
      .f7-bank-brand--pan { background: #003da5; }
      .f7-bank-brand--bv { background: #00995d; }
      .f7-bank-brand--sant { background: #ec0000; }

      .f7-bank-line {
        margin-top: 0.28rem;
        padding: 0.28rem 0.35rem;
        border-radius: 0.3rem;
        font-size: 0.5rem;
        font-weight: 700;
        color: #334155;
        background: rgba(255, 255, 255, 0.72);
        opacity: 0;
        transform: translateX(-6px);
        transition: opacity 0.3s, transform 0.3s;
      }

      .f7-bank-line.is-on {
        opacity: 1;
        transform: none;
      }

      .f7-hub-status {
        position: absolute;
        left: 0.45rem;
        right: 0.45rem;
        bottom: 0.35rem;
        margin: 0;
        font-size: 0.48rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.72);
        text-align: center;
      }

      .f7-mock-body--painel {
        background: linear-gradient(180deg, #6b1d2a 12%, #fff8f6 12%) !important;
        padding: 0.45rem;
      }

      .f7-painel-mini {
        border-radius: 0.45rem;
        overflow: hidden;
        border: 1px solid rgba(255, 40, 0, 0.15);
        background: #fff;
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 0.4s, transform 0.4s;
      }

      .f7-painel-mini.is-show {
        opacity: 1;
        transform: none;
      }

      .f7-painel-mini-head {
        display: flex;
        justify-content: space-between;
        padding: 0.35rem 0.45rem;
        font-size: 0.5rem;
        font-weight: 800;
        color: #fff;
        background: #6b1d2a;
      }

      .f7-painel-mini-head span {
        color: #86efac;
      }

      .f7-painel-mini-row {
        padding: 0.32rem 0.45rem;
        font-size: 0.48rem;
        font-weight: 700;
        color: #475569;
        border-top: 1px solid rgba(0, 0, 0, 0.06);
        opacity: 0;
        transform: translateX(-8px);
        transition: opacity 0.35s, transform 0.35s;
      }

      .f7-painel-mini-row.is-show {
        opacity: 1;
        transform: none;
      }

      .f7-painel-mini-row--best {
        color: #cc1f00;
        background: rgba(255, 40, 0, 0.06);
      }

      .f7-mock--fb .f7-mock-body--fb {
        background: #f0f2f5;
        padding: 0.45rem;
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
      }

      .f7-fb-head {
        padding: 0.35rem 0.45rem;
        border-radius: 0.35rem;
        font-size: 0.5rem;
        font-weight: 800;
        color: #fff;
        background: #1877f2;
      }

      .f7-fb-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.28rem;
      }

      .f7-fb-card {
        padding: 0.35rem 0.28rem;
        border-radius: 0.35rem;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        text-align: center;
        opacity: 0.35;
        transform: scale(0.92);
        transition: opacity 0.35s, transform 0.35s, box-shadow 0.35s;
      }

      .f7-fb-card span {
        display: block;
        font-size: 0.42rem;
        font-weight: 800;
        color: #111;
      }

      .f7-fb-card em {
        display: block;
        margin-top: 0.12rem;
        font-style: normal;
        font-size: 0.4rem;
        font-weight: 700;
        color: #1877f2;
      }

      .f7-fb-card.is-live {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
      }

      .f7-fb-card.is-done::after {
        content: " ✓";
        color: #16a34a;
      }

      .f7-fb-btn {
        padding: 0.4rem 0.55rem;
        border-radius: 0.4rem;
        text-align: center;
        font-size: 0.5rem;
        font-weight: 800;
        color: #fff;
        background: #1877f2;
        transition: transform 0.2s;
      }

      .f7-fb-btn.is-hit {
        animation: f7SendHit 0.5s ease infinite;
      }

      .f7-fb-done {
        margin: 0;
        min-height: 0.7rem;
        text-align: center;
        font-size: 0.48rem;
        font-weight: 800;
        color: #16a34a;
        opacity: 0;
        transition: opacity 0.35s;
      }

      .f7-fb-done.is-show {
        opacity: 1;
      }

      .fin-demo-stage {
        position: relative;
        flex: 1;
        min-height: 0;
        border-radius: 0.55rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.4);
        overflow: hidden;
      }

      .fin-slide {
        position: absolute;
        inset: 0;
        padding: 0.75rem 0.85rem;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.4s ease, transform 0.4s ease;
        pointer-events: none;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
      }

      .fin-slide.is-active {
        opacity: 1;
        transform: none;
        pointer-events: auto;
      }

      .f7-show-stage .fin-slide {
        padding: 0;
        gap: 0;
      }

      .fin-slide-title {
        margin: 0;
        font-size: 0.82rem;
        font-weight: 800;
        color: #fff;
        line-height: 1.25;
      }

      .fin-slide-title em {
        font-style: normal;
        color: #ff7a52;
      }

      .fin-slide-sub {
        margin: 0;
        font-size: 0.62rem;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.4;
      }

      .fin-do {
        padding: 0.4rem 0.5rem;
        border-radius: 0.4rem;
        border: 1px solid rgba(56, 189, 248, 0.25);
        background: rgba(56, 189, 248, 0.08);
        flex-shrink: 0;
      }

      .fin-do-label {
        display: block;
        font-size: 0.52rem;
        font-weight: 800;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: #7dd3fc;
        margin-bottom: 0.15rem;
      }

      .fin-do p {
        margin: 0;
        font-size: 0.6rem;
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.72);
      }

      .fin-do p strong {
        color: #fff;
        font-weight: 700;
      }

      .fin-card {
        flex: 1;
        border-radius: 0.5rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(255, 255, 255, 0.04);
        padding: 0.55rem 0.6rem;
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
        min-height: 0;
      }

      .fin-block {
        opacity: 0.25;
        transform: translateY(4px);
        transition: opacity 0.35s, transform 0.35s;
      }

      .fin-block.is-show {
        opacity: 1;
        transform: none;
      }

      .fin-block-head {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        margin-bottom: 0.25rem;
      }

      .fin-block-num {
        width: 1rem;
        height: 1rem;
        border-radius: 0.3rem;
        background: #ff4d26;
        color: #fff;
        font-size: 0.58rem;
        font-weight: 800;
        display: grid;
        place-items: center;
      }

      .fin-block-label {
        font-size: 0.58rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.75);
      }

      .fin-line {
        font-size: 0.65rem;
        color: rgba(255, 255, 255, 0.35);
        padding: 0.35rem 0.45rem;
        border-radius: 0.35rem;
        border: 1px dashed rgba(255, 255, 255, 0.1);
        transition: color 0.3s, border-color 0.3s, background 0.3s;
      }

      .fin-line.is-filled {
        color: #fff;
        border-style: solid;
        border-color: rgba(255, 120, 80, 0.3);
        background: rgba(255, 77, 38, 0.08);
      }

      .fin-line--plate {
        font-family: ui-monospace, monospace;
        font-weight: 700;
        letter-spacing: 0.08em;
      }

      .fin-plate-row {
        display: flex;
        gap: 0.35rem;
        align-items: stretch;
      }

      .fin-plate-btn {
        padding: 0.3rem 0.45rem;
        border-radius: 0.35rem;
        border: 1px solid rgba(56, 189, 248, 0.4);
        background: rgba(56, 189, 248, 0.12);
        color: #7dd3fc;
        font-size: 0.52rem;
        font-weight: 700;
        white-space: nowrap;
        transition: box-shadow 0.2s;
      }

      .fin-plate-btn.is-hit {
        box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.35);
      }

      .fin-plate-row .fin-line {
        flex: 1;
        margin: 0;
      }

      .fin-chips {
        display: flex;
        flex-wrap: wrap;
        gap: 0.3rem;
      }

      .fin-chip {
        padding: 0.28rem 0.45rem;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.05);
        font-size: 0.55rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.5);
        transition: all 0.3s;
      }

      .fin-chip.is-on {
        border-color: rgba(255, 120, 80, 0.45);
        background: rgba(255, 77, 38, 0.18);
        color: #fff;
      }

      .fin-chip.is-ok {
        border-color: rgba(34, 197, 94, 0.4);
        background: rgba(34, 197, 94, 0.15);
        color: #86efac;
      }

      .fin-chip.is-ok::after {
        content: " ✓";
      }

      .fin-action {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.45rem;
        text-align: center;
      }

      .fin-btn-send {
        padding: 0.5rem 1rem;
        border-radius: 0.45rem;
        background: linear-gradient(145deg, #ff4d26, #ff2800);
        color: #fff;
        font-size: 0.68rem;
        font-weight: 800;
        transition: transform 0.2s, box-shadow 0.2s;
      }

      .fin-btn-send.is-hit {
        animation: finHit 0.85s ease infinite;
        box-shadow: 0 0 20px -4px rgba(255, 77, 38, 0.7);
      }

      @keyframes finHit {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.04); }
      }

      .fin-status {
        font-size: 0.6rem;
        color: rgba(255, 255, 255, 0.45);
        min-height: 0.9rem;
      }

      .fin-status.is-live {
        color: #86efac;
        animation: demoPulse 1s ease infinite;
      }

      .fin-progress-track {
        height: 0.35rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        overflow: hidden;
        margin-top: 0.25rem;
      }

      .fin-progress-fill {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #22c55e, #86efac);
        transition: width 0.35s ease;
      }

      .fin-portal-ui {
        flex: 1;
        min-height: 0;
        border-radius: 0.45rem;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
        color: #1e293b;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        opacity: 0;
        transform: scale(0.98);
        transition: opacity 0.5s, transform 0.5s;
      }

      .fin-portal-ui.is-show {
        opacity: 1;
        transform: none;
      }

      .fin-portal-chrome {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        padding: 0.35rem 0.45rem;
        background: #e2e8f0;
        border-bottom: 1px solid #cbd5e1;
      }

      .fin-portal-chrome i {
        width: 0.4rem;
        height: 0.4rem;
        border-radius: 50%;
        background: #94a3b8;
        font-style: normal;
      }

      .fin-portal-url {
        flex: 1;
        font-size: 0.5rem;
        color: #64748b;
        padding: 0.15rem 0.35rem;
        background: #fff;
        border-radius: 0.25rem;
        border: 1px solid #cbd5e1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .fin-portal-body {
        padding: 0.45rem 0.5rem 0.5rem;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        flex: 1;
        min-height: 0;
      }

      .fin-portal-h1 {
        margin: 0;
        font-size: 0.68rem;
        font-weight: 800;
        color: #0f172a;
      }

      .fin-portal-meta {
        font-size: 0.52rem;
        color: #64748b;
        line-height: 1.35;
        opacity: 0;
        transition: opacity 0.4s;
      }

      .fin-portal-meta.is-show {
        opacity: 1;
      }

      .fin-comp-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.5rem;
        background: #fff;
        border-radius: 0.35rem;
        overflow: hidden;
        border: 1px solid #e2e8f0;
      }

      .fin-comp-table th {
        text-align: left;
        padding: 0.3rem 0.35rem;
        background: #f1f5f9;
        color: #475569;
        font-weight: 700;
        font-size: 0.48rem;
        text-transform: uppercase;
        letter-spacing: 0.03em;
      }

      .fin-comp-table td {
        padding: 0.32rem 0.35rem;
        border-top: 1px solid #f1f5f9;
        color: #334155;
        font-weight: 600;
      }

      .fin-comp-row {
        opacity: 0;
        transform: translateY(4px);
        transition: opacity 0.4s, transform 0.4s, background 0.3s;
      }

      .fin-comp-row.is-show {
        opacity: 1;
        transform: none;
      }

      .fin-comp-row--best.is-show {
        background: #ecfdf5;
      }

      .fin-comp-row--best td:first-child {
        color: #047857;
        font-weight: 800;
      }

      .fin-comp-row--best td:last-child::after {
        content: " ★ Melhor";
        font-size: 0.45rem;
        color: #059669;
        font-weight: 800;
      }

      .fin-portal-foot {
        margin-top: auto;
        padding: 0.35rem 0.4rem;
        border-radius: 0.3rem;
        background: #dcfce7;
        border: 1px solid #86efac;
        font-size: 0.52rem;
        font-weight: 700;
        color: #166534;
        text-align: center;
        opacity: 0;
        transition: opacity 0.45s;
      }

      .fin-portal-foot.is-show {
        opacity: 1;
      }

      .fin-hub-bar {
        display: flex;
        flex-wrap: wrap;
        gap: 0.28rem;
        margin-bottom: 0.65rem;
      }

      .fin-hub-tab {
        padding: 0.18rem 0.42rem;
        border-radius: 999px;
        font-size: 0.48rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.45);
        background: rgba(0, 0, 0, 0.28);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
      }

      .fin-hub-tab.is-active {
        color: #fff;
        border-color: rgba(255, 40, 0, 0.45);
        background: rgba(255, 40, 0, 0.22);
        box-shadow: 0 0 0 1px rgba(255, 40, 0, 0.15);
      }

      .fin-hub-tab.is-done {
        color: #86efac;
        border-color: rgba(34, 197, 94, 0.35);
        background: rgba(22, 101, 52, 0.28);
      }

      .fin-painel-ui {
        border-radius: 0.75rem;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(8, 12, 22, 0.92);
        opacity: 0;
        transform: translateY(6px);
        transition: opacity 0.45s, transform 0.45s;
      }

      .fin-painel-ui.is-show {
        opacity: 1;
        transform: translateY(0);
      }

      .fin-painel-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
        padding: 0.55rem 0.65rem;
        font-size: 0.58rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.82);
        background: rgba(255, 255, 255, 0.06);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .fin-painel-badge {
        flex-shrink: 0;
        padding: 0.12rem 0.4rem;
        border-radius: 999px;
        font-size: 0.48rem;
        font-weight: 800;
        color: #86efac;
        background: rgba(22, 101, 52, 0.35);
      }

      .fin-painel-list {
        display: grid;
        gap: 0.35rem;
        padding: 0.55rem 0.65rem 0.65rem;
      }

      .fin-painel-row {
        display: grid;
        grid-template-columns: 1fr auto auto;
        align-items: center;
        gap: 0.35rem;
        padding: 0.38rem 0.45rem;
        border-radius: 0.45rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        opacity: 0;
        transform: translateX(-8px);
        transition: opacity 0.4s, transform 0.4s;
      }

      .fin-painel-row.is-show {
        opacity: 1;
        transform: translateX(0);
      }

      .fin-painel-row--best {
        border-color: rgba(255, 40, 0, 0.35);
        background: rgba(255, 40, 0, 0.1);
      }

      .fin-painel-bank {
        font-size: 0.56rem;
        font-weight: 800;
        color: #fff;
      }

      .fin-painel-state {
        font-size: 0.48rem;
        font-weight: 800;
        color: rgba(255, 255, 255, 0.55);
      }

      .fin-painel-state--ok {
        color: #86efac;
      }

      .fin-painel-detail {
        font-size: 0.48rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.72);
        text-align: right;
      }

      .fin-painel-foot {
        padding: 0.45rem 0.65rem 0.6rem;
        font-size: 0.52rem;
        font-weight: 700;
        color: rgba(255, 255, 255, 0.55);
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transition: opacity 0.45s;
      }

      .fin-painel-foot.is-show {
        opacity: 1;
      }

      .home-logged-cadastro {
        flex-shrink: 0;
        margin-top: 0.85rem;
        border-radius: 1rem;
        overflow: hidden;
        background:
          linear-gradient(165deg, rgba(0, 78, 46, 0.96), rgba(0, 40, 24, 0.98)),
          radial-gradient(circle at 85% 15%, rgba(255, 223, 0, 0.08), transparent 45%);
        box-shadow:
          inset 0 1px 0 rgba(255, 255, 255, 0.08),
          0 16px 32px -20px rgba(0, 0, 0, 0.35);
      }

      .home-logged-cadastro .home-app--featured.home-app--cadastro {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-height: 10.25rem;
        margin: 0;
      }

      .home-logged-cadastro .home-app--featured.home-app--cadastro .home-app-visual {
        min-height: 6.85rem;
      }

      .home-logged-cadastro .home-app--featured.home-app--cadastro .home-app-name {
        font-size: clamp(1.02rem, 8.8cqi, 1.24rem);
      }

      .auth-guest-cadastro {
        margin-top: 0.65rem;
        margin-bottom: 0.85rem;
      }

      @keyframes demoPulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
      }

      .demo-progress {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 2.15rem;
        height: 2px;
        background: rgba(255, 255, 255, 0.08);
      }

      .demo-progress-bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #ff4d26, #ff8a5c);
        transition: width 0.1s linear;
      }

      .demo-controls {
        position: absolute;
        left: 0.85rem;
        right: 0.85rem;
        bottom: 0.55rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
      }

      .demo-dots {
        display: flex;
        gap: 0.35rem;
      }

      .demo-dot {
        width: 0.45rem;
        height: 0.45rem;
        border-radius: 50%;
        border: none;
        padding: 0;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: background 0.2s, transform 0.2s;
      }

      .demo-dot.is-active {
        background: #ff6b3d;
        transform: scale(1.15);
      }

      .demo-play-btn {
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.06);
        color: rgba(255, 255, 255, 0.8);
        border-radius: 0.4rem;
        padding: 0.25rem 0.55rem;
        font-size: 0.62rem;
        font-weight: 700;
        cursor: pointer;
      }

      .demo-caption {
        font-size: 0.62rem;
        color: rgba(255, 255, 255, 0.42);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 62%;
      }

      .demo-cursor {
        display: inline-block;
        width: 2px;
        height: 0.9em;
        background: #38bdf8;
        margin-left: 1px;
        vertical-align: text-bottom;
        animation: demoBlink 0.9s step-end infinite;
      }

      @keyframes demoBlink {
        50% { opacity: 0; }
      }

      .home-demo-cta {
        display: flex;
        padding: 0.45rem 0.65rem 0.65rem;
      }

      .home-demo-cta a,
      .home-demo-cta button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0.72rem 1.1rem;
        border-radius: 0.65rem;
        font-size: 0.82rem;
        font-weight: 700;
        text-decoration: none;
        transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
      }

      .home-demo-cta a:hover,
      .home-demo-cta button:hover {
        transform: translateY(-1px);
      }

      .home-demo-cta .cta-primary {
        background: linear-gradient(145deg, #ff4d26, #ff2800);
        color: #fff;
        box-shadow: 0 10px 24px -12px rgba(255, 40, 0, 0.65);
        border: none;
        cursor: pointer;
        font-family: inherit;
      }

      /* —— Melhorias SEO / a11y / footer —— */
      .skip-link {
        position: absolute;
        left: -9999px;
        top: 0.75rem;
        z-index: 200;
        padding: 0.55rem 1rem;
        border-radius: 999px;
        background: #fff;
        color: #0a2818;
        font-weight: 700;
        font-size: 0.82rem;
        text-decoration: none;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
      }

      .skip-link:focus {
        left: 0.75rem;
      }

      .home-app-badge--account {
        background: rgba(16, 185, 129, 0.22);
        color: #a7f3d0;
        border: 1px solid rgba(52, 211, 153, 0.35);
      }

      .home-apps-head p {
        color: rgba(255, 255, 255, 0.52);
      }

      .f7-market-pulse-updated {
        color: rgba(255, 255, 255, 0.48);
      }

      /* Barra Entrar/Criar no mobile (sem dock na home) */
      html.f7-mobile body.f7-home-guest.f7-site-bg .home-shell {
        padding-bottom: calc(4.25rem + env(safe-area-inset-bottom, 0px));
      }

      body.f7-home-guest.f7-site-bg .app-dock {
        display: none !important;
      }
