:root {
            --sr-dark: #111a2a;
            --sr-dark-medium: #19263a;
            --sr-dark-light: #26364e;

            --sr-text: #111827;
            --sr-muted: #667085;
            --sr-muted-light: #98a2b3;

            --sr-background: #f2f5f8;
            --sr-surface: #ffffff;
            --sr-border: #e3e8ef;

            --sr-green: #27c987;
            --sr-green-dark: #0c8458;

            --sr-shadow:
                0 24px 65px rgba(15, 23, 42, 0.13);

            --sr-shadow-soft:
                0 12px 35px rgba(15, 23, 42, 0.08);
        }

        * {
            box-sizing: border-box;
        }

        html {
            min-height: 100%;
            scroll-behavior: smooth;
            background: var(--sr-background);
        }

        body {
            min-height: 100vh;
            margin: 0;
            color: var(--sr-text);
            background: var(--sr-background);
            font-family:
                Inter,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Helvetica,
                Arial,
                sans-serif;
            -webkit-font-smoothing: antialiased;
            text-rendering: optimizeLegibility;
        }

        button,
        input {
            font: inherit;
        }

        button,
        a {
            -webkit-tap-highlight-color: transparent;
        }

        a {
            color: inherit;
        }


        /*
        |--------------------------------------------------------------------------
        | Bloqueio do antigo atalho/PWA
        |--------------------------------------------------------------------------
        */

        .sr-pwa-blocker {
            display: none;
        }

        html.sr-legacy-pwa {
            min-height: 100%;
            background: #f2f5f8;
        }

        html.sr-legacy-pwa body {
            min-height: 100vh;
            margin: 0;
            background:
                radial-gradient(
                    circle at 100% 0,
                    rgba(70, 92, 126, 0.10),
                    transparent 34%
                ),
                linear-gradient(
                    180deg,
                    #f8fafc 0%,
                    #eef2f6 100%
                );
        }

        html.sr-legacy-pwa
        body > :not(.sr-pwa-blocker) {
            display: none !important;
        }

        html.sr-legacy-pwa
        .sr-pwa-blocker {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding:
                max(22px, env(safe-area-inset-top))
                18px
                max(22px, env(safe-area-inset-bottom));
        }

        .sr-pwa-blocker-card {
            width: 100%;
            max-width: 520px;
            overflow: hidden;
            padding: 31px 24px 25px;
            color: #111827;
            border: 1px solid
                rgba(255, 255, 255, 0.82);
            border-radius: 25px;
            background:
                linear-gradient(
                    150deg,
                    rgba(255, 255, 255, 0.99),
                    rgba(247, 249, 252, 0.99)
                );
            box-shadow:
                0 24px 65px
                    rgba(15, 23, 42, 0.15);
            text-align: center;
        }

        .sr-pwa-blocker-logo {
            display: block;
            width: auto;
            max-width: 190px;
            max-height: 82px;
            height: auto;
            margin: 0 auto 22px;
            object-fit: contain;
        }

        .sr-pwa-blocker-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 17px;
            padding: 7px 11px;
            color: #334155;
            border: 1px solid #dce3eb;
            border-radius: 999px;
            background: #f8fafc;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.075em;
            text-transform: uppercase;
        }

        .sr-pwa-blocker-badge::before {
            width: 7px;
            height: 7px;
            content: "";
            border-radius: 50%;
            background: var(--sr-green);
            box-shadow:
                0 0 0 4px
                    rgba(39, 201, 135, 0.10);
        }

        .sr-pwa-blocker-title {
            margin: 0 0 12px;
            color: #111827;
            font-size:
                clamp(27px, 8vw, 39px);
            font-weight: 930;
            line-height: 1.08;
            letter-spacing: -0.042em;
        }

        .sr-pwa-blocker-description {
            max-width: 430px;
            margin: 0 auto 18px;
            color: #667085;
            font-size: 14px;
            font-weight: 580;
            line-height: 1.62;
        }

        .sr-pwa-blocker-alert {
            margin: 0 0 20px;
            padding: 12px 14px;
            color: #7c2d12;
            border: 1px solid #fed7aa;
            border-radius: 13px;
            background: #fff7ed;
            font-size: 12px;
            font-weight: 750;
            line-height: 1.5;
        }

        .sr-pwa-store-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .sr-pwa-store-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 11px;
            line-height: 0;
            text-decoration: none;
        }

        .sr-pwa-store-link img {
            display: block;
            width: 160px;
            max-width: 100%;
            height: auto;
        }

        .sr-pwa-store-link.google img {
            width: 166px;
        }

        .sr-pwa-blocker-help {
            margin: 19px 0 0;
            color: #98a2b3;
            font-size: 10px;
            font-weight: 650;
            line-height: 1.5;
        }

        @media (max-width: 390px) {
            .sr-pwa-blocker-card {
                padding: 27px 16px 22px;
                border-radius: 21px;
            }

            .sr-pwa-store-buttons {
                flex-direction: column;
            }

            .sr-pwa-store-link img,
            .sr-pwa-store-link.google img {
                width: 165px;
            }
        }

        /*
        |--------------------------------------------------------------------------
        | Estrutura geral
        |--------------------------------------------------------------------------
        */

        .sr-page {
            min-height: 100vh;
            display: grid;
            grid-template-columns:
                minmax(380px, 42%)
                minmax(560px, 58%);
        }

        /*
        |--------------------------------------------------------------------------
        | Painel institucional
        |--------------------------------------------------------------------------
        */

        .sr-brand-panel {
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            padding:
                max(30px, env(safe-area-inset-top))
                42px
                max(32px, env(safe-area-inset-bottom));
            color: #ffffff;
            background:
                radial-gradient(
                    circle at 12% 8%,
                    rgba(255, 255, 255, 0.12),
                    transparent 28%
                ),
                radial-gradient(
                    circle at 90% 90%,
                    rgba(113, 147, 194, 0.21),
                    transparent 36%
                ),
                linear-gradient(
                    148deg,
                    #0d1522 0%,
                    #142034 48%,
                    #253650 100%
                );
            isolation: isolate;
        }

        .sr-brand-panel::before {
            position: absolute;
            top: -125px;
            right: -130px;
            width: 350px;
            height: 350px;
            content: "";
            border: 1px solid
                rgba(255, 255, 255, 0.08);
            border-radius: 50%;
            box-shadow:
                0 0 0 45px
                    rgba(255, 255, 255, 0.025),
                0 0 0 90px
                    rgba(255, 255, 255, 0.015);
            pointer-events: none;
            z-index: -1;
        }

        .sr-brand-panel::after {
            position: absolute;
            bottom: -170px;
            left: -150px;
            width: 410px;
            height: 410px;
            content: "";
            border-radius: 50%;
            background:
                rgba(255, 255, 255, 0.035);
            pointer-events: none;
            z-index: -1;
        }

        .sr-brand-content {
            width: 100%;
            max-width: 570px;
            min-height:
                calc(100vh - 62px);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .sr-brand-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .sr-logo-link {
            display: inline-flex;
            align-items: center;
            min-height: 78px;
            text-decoration: none;
        }

        .sr-logo-link img {
            display: block;
            width: auto;
            max-width: 225px;
            max-height: 92px;
            height: auto;
            object-fit: contain;
        }

        .sr-official-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 11px;
            color: rgba(255, 255, 255, 0.81);
            border: 1px solid
                rgba(255, 255, 255, 0.12);
            border-radius: 999px;
            background:
                rgba(255, 255, 255, 0.06);
            font-size: 10px;
            font-weight: 850;
            letter-spacing: 0.07em;
            text-transform: uppercase;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .sr-official-badge::before {
            width: 7px;
            height: 7px;
            content: "";
            border-radius: 50%;
            background: var(--sr-green);
            box-shadow:
                0 0 13px
                    rgba(39, 201, 135, 0.85);
        }

        .sr-brand-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 55px 0 38px;
        }

        .sr-eyebrow {
            display: inline-flex;
            align-items: center;
            align-self: flex-start;
            gap: 8px;
            margin-bottom: 20px;
            padding: 7px 12px;
            color: rgba(255, 255, 255, 0.76);
            border: 1px solid
                rgba(255, 255, 255, 0.11);
            border-radius: 999px;
            background:
                rgba(255, 255, 255, 0.055);
            font-size: 11px;
            font-weight: 800;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .sr-eyebrow-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 21px;
            height: 21px;
            color: #9af2cb;
            border-radius: 7px;
            background:
                rgba(39, 201, 135, 0.12);
            font-size: 12px;
        }

        .sr-brand-title {
            max-width: 540px;
            margin: 0 0 20px;
            color: #ffffff;
            font-size:
                clamp(38px, 4.2vw, 63px);
            font-weight: 900;
            line-height: 1.02;
            letter-spacing: -0.052em;
        }

        .sr-brand-title span {
            display: block;
            color: rgba(255, 255, 255, 0.60);
        }

        .sr-brand-description {
            max-width: 510px;
            margin: 0;
            color: rgba(255, 255, 255, 0.67);
            font-size: 16px;
            font-weight: 550;
            line-height: 1.7;
        }

        .sr-feature-list {
            display: grid;
            grid-template-columns:
                repeat(2, minmax(0, 1fr));
            gap: 11px;
            max-width: 520px;
            margin-top: 31px;
        }

        .sr-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            min-height: 52px;
            padding: 10px 12px;
            color: rgba(255, 255, 255, 0.81);
            border: 1px solid
                rgba(255, 255, 255, 0.085);
            border-radius: 14px;
            background:
                rgba(255, 255, 255, 0.045);
            font-size: 12px;
            font-weight: 750;
        }

        .sr-feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            flex: 0 0 30px;
            color: #8fecbd;
            border-radius: 10px;
            background:
                rgba(39, 201, 135, 0.11);
            font-size: 14px;
        }

        /*
        |--------------------------------------------------------------------------
        | Celular ilustrativo
        |--------------------------------------------------------------------------
        */

        .sr-phone-area {
            display: flex;
            align-items: flex-end;
            gap: 20px;
            margin-top: 35px;
        }

        .sr-phone {
            position: relative;
            width: 190px;
            height: 360px;
            flex: 0 0 190px;
            overflow: hidden;
            padding: 9px;
            border: 1px solid
                rgba(255, 255, 255, 0.16);
            border-radius: 34px;
            background: #090f19;
            box-shadow:
                0 28px 65px rgba(0, 0, 0, 0.32),
                inset 0 0 0 1px
                    rgba(255, 255, 255, 0.04);
            transform: rotate(-2deg);
        }

        .sr-phone::before {
            position: absolute;
            top: 15px;
            left: 50%;
            width: 66px;
            height: 18px;
            content: "";
            border-radius: 999px;
            background: #090f19;
            transform: translateX(-50%);
            z-index: 3;
        }

        .sr-phone-screen {
            height: 100%;
            overflow: hidden;
            padding: 35px 14px 14px;
            border-radius: 27px;
            background:
                linear-gradient(
                    180deg,
                    #eef3f8 0%,
                    #ffffff 45%,
                    #f4f7fa 100%
                );
        }

        .sr-phone-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 18px;
        }

        .sr-phone-logo {
            width: 63px;
            height: 8px;
            border-radius: 999px;
            background: #172338;
        }

        .sr-phone-avatar {
            width: 24px;
            height: 24px;
            border-radius: 8px;
            background:
                linear-gradient(
                    145deg,
                    #172338,
                    #3f587b
                );
        }

        .sr-phone-greeting {
            width: 77%;
            height: 12px;
            margin-bottom: 7px;
            border-radius: 999px;
            background: #1c2a3f;
        }

        .sr-phone-subtitle {
            width: 59%;
            height: 7px;
            margin-bottom: 20px;
            border-radius: 999px;
            background: #cbd5e1;
        }

        .sr-phone-balance {
            position: relative;
            overflow: hidden;
            min-height: 84px;
            margin-bottom: 13px;
            padding: 13px;
            border-radius: 18px;
            background:
                linear-gradient(
                    145deg,
                    #111b2c,
                    #263b5a
                );
        }

        .sr-phone-balance::after {
            position: absolute;
            top: -34px;
            right: -34px;
            width: 90px;
            height: 90px;
            content: "";
            border: 1px solid
                rgba(255, 255, 255, 0.09);
            border-radius: 50%;
        }

        .sr-phone-balance-label {
            width: 48%;
            height: 6px;
            margin-bottom: 10px;
            border-radius: 999px;
            background:
                rgba(255, 255, 255, 0.40);
        }

        .sr-phone-balance-value {
            width: 63%;
            height: 15px;
            margin-bottom: 9px;
            border-radius: 999px;
            background: #ffffff;
        }

        .sr-phone-balance-action {
            width: 36%;
            height: 6px;
            border-radius: 999px;
            background: #77e5b3;
        }

        .sr-phone-reserve {
            height: 42px;
            margin-bottom: 13px;
            border-radius: 13px;
            background:
                linear-gradient(
                    145deg,
                    #1dce88,
                    #18aa72
                );
            box-shadow:
                0 8px 18px
                    rgba(24, 170, 114, 0.18);
        }

        .sr-phone-grid {
            display: grid;
            grid-template-columns:
                repeat(2, 1fr);
            gap: 9px;
        }

        .sr-phone-card {
            height: 54px;
            border: 1px solid #e5eaf0;
            border-radius: 14px;
            background: #ffffff;
            box-shadow:
                0 5px 12px
                    rgba(15, 23, 42, 0.04);
        }

        .sr-phone-note {
            max-width: 250px;
            padding-bottom: 25px;
            color: rgba(255, 255, 255, 0.57);
            font-size: 12px;
            font-weight: 650;
            line-height: 1.6;
        }

        .sr-phone-note strong {
            display: block;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.90);
            font-size: 14px;
        }

        .sr-brand-footer {
            color: rgba(255, 255, 255, 0.38);
            font-size: 11px;
            line-height: 1.5;
        }

        /*
        |--------------------------------------------------------------------------
        | Área principal
        |--------------------------------------------------------------------------
        */

        .sr-access-panel {
            position: relative;
            min-height: 100vh;
            padding:
                max(28px, env(safe-area-inset-top))
                45px
                max(25px, env(safe-area-inset-bottom));
            background:
                radial-gradient(
                    circle at 95% 5%,
                    rgba(70, 92, 126, 0.075),
                    transparent 31%
                ),
                linear-gradient(
                    180deg,
                    #f8fafc 0%,
                    #f1f4f8 100%
                );
        }

        .sr-access-inner {
            width: 100%;
            max-width: 620px;
            min-height:
                calc(100vh - 56px);
            margin: 0 auto;
            display: flex;
            flex-direction: column;
        }

        .sr-access-top {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            min-height: 48px;
            margin-bottom: 25px;
        }

        /*
         * Logotipo exclusivo para celular.
         * No computador, o logotipo fica na faixa institucional.
         */
        .sr-mobile-logo {
            display: none;
            align-items: center;
            text-decoration: none;
        }

        .sr-mobile-logo img {
            display: block;
            width: auto;
            max-width: 178px;
            max-height: 72px;
            height: auto;
            object-fit: contain;
        }

        .sr-secure-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 11px;
            color: #667085;
            border: 1px solid var(--sr-border);
            border-radius: 999px;
            background:
                rgba(255, 255, 255, 0.72);
            box-shadow:
                0 4px 13px rgba(15, 23, 42, 0.035);
            font-size: 10px;
            font-weight: 850;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .sr-secure-label::before {
            width: 7px;
            height: 7px;
            content: "";
            border-radius: 50%;
            background: var(--sr-green);
        }

        .sr-access-main {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 10px 0 35px;
        }

        /*
        |--------------------------------------------------------------------------
        | Card do aplicativo
        |--------------------------------------------------------------------------
        */

        .sr-app-card {
            position: relative;
            overflow: hidden;
            padding: 34px;
            border: 1px solid
                rgba(255, 255, 255, 0.75);
            border-radius: 28px;
            background:
                linear-gradient(
                    150deg,
                    rgba(255, 255, 255, 0.98),
                    rgba(247, 249, 252, 0.98)
                );
            box-shadow: var(--sr-shadow);
        }

        .sr-app-card::before {
            position: absolute;
            top: -95px;
            right: -75px;
            width: 220px;
            height: 220px;
            content: "";
            border-radius: 50%;
            background:
                rgba(29, 46, 72, 0.045);
            pointer-events: none;
        }

        .sr-app-card::after {
            position: absolute;
            bottom: -75px;
            left: -70px;
            width: 170px;
            height: 170px;
            content: "";
            border-radius: 50%;
            background:
                rgba(39, 201, 135, 0.045);
            pointer-events: none;
        }

        .sr-app-card-content {
            position: relative;
            z-index: 1;
        }

        .sr-app-label {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 17px;
            padding: 7px 11px;
            color: #334155;
            border: 1px solid #dce3eb;
            border-radius: 999px;
            background: #f8fafc;
            font-size: 10px;
            font-weight: 900;
            letter-spacing: 0.075em;
            text-transform: uppercase;
        }

        .sr-app-label::before {
            width: 7px;
            height: 7px;
            content: "";
            border-radius: 50%;
            background: var(--sr-green);
            box-shadow:
                0 0 0 4px
                    rgba(39, 201, 135, 0.10);
        }

        .sr-app-title {
            max-width: 520px;
            margin: 0 0 13px;
            color: #111827;
            font-size:
                clamp(30px, 4vw, 45px);
            font-weight: 930;
            line-height: 1.08;
            letter-spacing: -0.045em;
        }

        .sr-app-title span {
            color: #526174;
        }

        .sr-app-description {
            max-width: 510px;
            margin: 0 0 25px;
            color: var(--sr-muted);
            font-size: 14px;
            font-weight: 580;
            line-height: 1.65;
        }

        .sr-benefits {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 25px;
        }

        .sr-benefit {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 7px 10px;
            color: #475467;
            border: 1px solid #e1e6ed;
            border-radius: 999px;
            background: #ffffff;
            font-size: 11px;
            font-weight: 750;
        }

        .sr-benefit-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 17px;
            height: 17px;
            color: var(--sr-green-dark);
            border-radius: 50%;
            background:
                rgba(39, 201, 135, 0.12);
            font-size: 10px;
            font-weight: 900;
        }

        .sr-store-title {
            margin-bottom: 12px;
            color: #98a2b3;
            font-size: 10px;
            font-weight: 850;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .sr-store-buttons {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 11px;
        }

        .sr-store-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border-radius: 11px;
            line-height: 0;
            text-decoration: none;
            transition:
                transform 0.18s ease,
                filter 0.18s ease,
                box-shadow 0.18s ease;
        }

        .sr-store-link:hover {
            transform: translateY(-2px);
            filter: brightness(1.035);
            box-shadow:
                0 11px 25px
                    rgba(15, 23, 42, 0.16);
        }

        .sr-store-link:focus-visible {
            outline: 3px solid
                rgba(17, 27, 44, 0.18);
            outline-offset: 4px;
        }

        .sr-store-link img {
            display: block;
            width: 166px;
            max-width: 100%;
            height: auto;
        }

        .sr-store-link.google img {
            width: 172px;
        }

        /*
        |--------------------------------------------------------------------------
        | Cadastro destacado
        |--------------------------------------------------------------------------
        */

        .sr-signup-card {
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 18px;
            padding: 16px 17px;
            color: #173c2e;
            border: 1px solid #b7ecd5;
            border-radius: 17px;
            background:
                radial-gradient(
                    circle at 100% 0,
                    rgba(39, 201, 135, 0.13),
                    transparent 35%
                ),
                linear-gradient(
                    145deg,
                    #f1fdf8,
                    #e8faf2
                );
            text-decoration: none;
            box-shadow:
                0 10px 25px
                    rgba(12, 132, 88, 0.08);
            transition:
                transform 0.18s ease,
                border-color 0.18s ease,
                box-shadow 0.18s ease;
        }

        .sr-signup-card:hover {
            transform: translateY(-2px);
            border-color: #88dcb9;
            box-shadow:
                0 16px 32px
                    rgba(12, 132, 88, 0.14);
        }

        .sr-signup-card:focus-visible {
            outline: 3px solid
                rgba(39, 201, 135, 0.22);
            outline-offset: 3px;
        }

        .sr-signup-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            flex: 0 0 44px;
            color: #ffffff;
            border-radius: 14px;
            background:
                linear-gradient(
                    145deg,
                    #1ac17d,
                    #0f9561
                );
            box-shadow:
                0 9px 19px
                    rgba(15, 149, 97, 0.23);
            font-size: 20px;
            font-weight: 900;
        }

        .sr-signup-copy {
            min-width: 0;
            flex: 1;
        }

        .sr-signup-eyebrow {
            display: block;
            margin-bottom: 3px;
            color: #16875c;
            font-size: 9px;
            font-weight: 900;
            letter-spacing: 0.075em;
            text-transform: uppercase;
        }

        .sr-signup-title {
            display: block;
            margin-bottom: 3px;
            color: #123c2c;
            font-size: 13px;
            font-weight: 900;
        }

        .sr-signup-description {
            display: block;
            color: #4c7c69;
            font-size: 10px;
            font-weight: 650;
            line-height: 1.4;
        }

        .sr-signup-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 35px;
            flex: 0 0 auto;
            padding: 8px 12px;
            color: #ffffff;
            border-radius: 10px;
            background: #118c5c;
            font-size: 10px;
            font-weight: 900;
            white-space: nowrap;
        }

        .sr-signup-action::after {
            margin-left: 7px;
            content: "→";
            font-size: 14px;
            transition: transform 0.18s ease;
        }

        .sr-signup-card:hover
        .sr-signup-action::after {
            transform: translateX(3px);
        }

        /*
        |--------------------------------------------------------------------------
        | Acesso pela plataforma
        |--------------------------------------------------------------------------
        */

        .sr-platform-section {
            margin-top: 18px;
        }

        .sr-divider {
            display: flex;
            align-items: center;
            gap: 11px;
            margin: 0 7px 13px;
            color: #98a2b3;
            font-size: 9px;
            font-weight: 900;
            letter-spacing: 0.09em;
            text-transform: uppercase;
        }

        .sr-divider::before,
        .sr-divider::after {
            flex: 1;
            height: 1px;
            content: "";
            background:
                linear-gradient(
                    90deg,
                    transparent,
                    #d4dae3
                );
        }

        .sr-divider::after {
            background:
                linear-gradient(
                    90deg,
                    #d4dae3,
                    transparent
                );
        }

        .sr-platform-toggle {
            width: 100%;
            min-height: 61px;
            padding: 13px 17px;
            color: #182230;
            border: 1px solid #dfe5ec;
            border-radius: 17px;
            background:
                rgba(255, 255, 255, 0.91);
            box-shadow: var(--sr-shadow-soft);
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 13px;
            text-align: left;
            transition:
                transform 0.18s ease,
                border-color 0.18s ease,
                box-shadow 0.18s ease;
        }

        .sr-platform-toggle:hover {
            transform: translateY(-2px);
            border-color: #cbd4df;
            box-shadow:
                0 17px 38px
                    rgba(15, 23, 42, 0.11);
        }

        .sr-platform-toggle:focus-visible {
            outline: 3px solid
                rgba(17, 27, 44, 0.14);
            outline-offset: 3px;
        }

        .sr-platform-toggle-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 37px;
            height: 37px;
            flex: 0 0 37px;
            color: #ffffff;
            border-radius: 12px;
            background:
                linear-gradient(
                    145deg,
                    #111b2c,
                    #2a3d5b
                );
            box-shadow:
                0 8px 18px
                    rgba(17, 27, 44, 0.18);
        }

        .sr-platform-toggle-icon::before {
            width: 7px;
            height: 7px;
            content: "";
            border-right: 2px solid currentColor;
            border-bottom: 2px solid currentColor;
            transform:
                translateY(-2px)
                rotate(45deg);
            transition:
                transform 0.42s
                cubic-bezier(.16, 1, .3, 1);
        }

        .sr-platform-toggle[
            aria-expanded="true"
        ] .sr-platform-toggle-icon::before {
            transform:
                translateY(2px)
                rotate(225deg);
        }

        .sr-platform-toggle-copy {
            min-width: 0;
            flex: 1;
        }

        .sr-platform-toggle-title {
            display: block;
            margin-bottom: 3px;
            color: #182230;
            font-size: 13px;
            font-weight: 900;
        }

        .sr-platform-toggle-description {
            display: block;
            color: #7b8796;
            font-size: 11px;
            font-weight: 650;
        }

        .sr-platform-toggle-arrow {
            color: #98a2b3;
            font-size: 18px;
            transition: transform 0.18s ease;
        }

        .sr-platform-toggle:hover
        .sr-platform-toggle-arrow {
            transform: translateX(3px);
        }

        /*
        |--------------------------------------------------------------------------
        | Login recolhível
        |--------------------------------------------------------------------------
        */

        .sr-login-collapse {
            display: grid;
            grid-template-rows: 0fr;
            opacity: 0;
            transform: translateY(-9px);
            transition:
                grid-template-rows 0.62s
                    cubic-bezier(.16, 1, .3, 1),
                opacity 0.28s ease,
                transform 0.48s
                    cubic-bezier(.16, 1, .3, 1);
        }

        .sr-login-collapse.is-open {
            grid-template-rows: 1fr;
            opacity: 1;
            transform: translateY(0);
        }

        .sr-login-collapse-inner {
            min-height: 0;
            overflow: hidden;
        }

        .sr-login-card {
            position: relative;
            overflow: hidden;
            margin-top: 13px;
            padding: 27px;
            border: 1px solid var(--sr-border);
            border-radius: 21px;
            background:
                rgba(255, 255, 255, 0.96);
            box-shadow:
                0 18px 45px
                    rgba(15, 23, 42, 0.10);
        }

        .sr-login-card::before {
            position: absolute;
            top: -90px;
            right: -75px;
            width: 180px;
            height: 180px;
            content: "";
            border-radius: 50%;
            background:
                rgba(20, 32, 51, 0.04);
            pointer-events: none;
        }

        .sr-login-content {
            position: relative;
            z-index: 1;
        }

        .sr-login-title {
            margin: 0 0 6px;
            color: #111827;
            font-size: 22px;
            font-weight: 920;
            line-height: 1.2;
            letter-spacing: -0.035em;
        }

        .sr-login-description {
            margin: 0 0 21px;
            color: var(--sr-muted);
            font-size: 12px;
            font-weight: 620;
            line-height: 1.55;
        }

        .sr-error {
            margin-bottom: 17px;
            padding: 12px 14px;
            color: #991b1b;
            border: 1px solid #fecaca;
            border-radius: 12px;
            background: #fef2f2;
            font-size: 12px;
            font-weight: 750;
            line-height: 1.5;
        }

        .sr-field {
            margin-bottom: 14px;
        }

        .sr-field-label {
            display: block;
            margin-bottom: 7px;
            color: #344054;
            font-size: 11px;
            font-weight: 850;
        }

        .sr-field-wrap {
            position: relative;
        }

        .sr-field-icon {
            position: absolute;
            top: 50%;
            left: 13px;
            width: 18px;
            color: #98a2b3;
            font-size: 14px;
            text-align: center;
            transform: translateY(-50%);
            pointer-events: none;
        }

        .sr-input {
            width: 100%;
            height: 49px;
            padding: 0 14px 0 42px;
            color: #111827;
            border: 1px solid #d9e0e8;
            border-radius: 12px;
            outline: none;
            background: #ffffff;
            font-size: 13px;
            font-weight: 650;
            transition:
                border-color 0.16s ease,
                box-shadow 0.16s ease,
                background 0.16s ease;
        }

        .sr-input::placeholder {
            color: #a4adba;
            font-weight: 550;
        }

        .sr-input:focus {
            border-color: #7a8aa0;
            background: #ffffff;
            box-shadow:
                0 0 0 4px
                    rgba(44, 62, 87, 0.08);
        }

        .sr-password-input {
            padding-right: 76px;
        }

        .sr-password-toggle {
            position: absolute;
            top: 50%;
            right: 7px;
            min-width: 61px;
            height: 35px;
            padding: 0 9px;
            color: #526174;
            border: 0;
            border-radius: 9px;
            background: #f2f5f8;
            cursor: pointer;
            font-size: 10px;
            font-weight: 850;
            transform: translateY(-50%);
        }

        .sr-password-toggle:hover {
            color: #111827;
            background: #e9eef4;
        }

        .sr-recaptcha {
            min-height: 78px;
            margin: 16px 0 15px;
        }

        .sr-submit {
            width: 100%;
            min-height: 50px;
            padding: 12px 18px;
            color: #ffffff;
            border: 0;
            border-radius: 13px;
            background:
                linear-gradient(
                    145deg,
                    #121c2d,
                    #293d5b
                );
            box-shadow:
                0 12px 25px
                    rgba(17, 27, 44, 0.19);
            cursor: pointer;
            font-size: 13px;
            font-weight: 900;
            transition:
                transform 0.17s ease,
                filter 0.17s ease,
                box-shadow 0.17s ease;
        }

        .sr-submit:hover {
            transform: translateY(-2px);
            filter: brightness(1.045);
            box-shadow:
                0 16px 30px
                    rgba(17, 27, 44, 0.24);
        }

        .sr-submit:disabled {
            opacity: 0.68;
            cursor: wait;
            transform: none;
        }

        .sr-login-links {
            margin-top: 16px;
        }

        .sr-login-link {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 43px;
            padding: 9px;
            color: #526174;
            border: 1px solid #e2e7ed;
            border-radius: 11px;
            background: #f8fafc;
            font-size: 10px;
            font-weight: 800;
            text-align: center;
            text-decoration: none;
            transition:
                border-color 0.16s ease,
                background 0.16s ease,
                color 0.16s ease;
        }

        .sr-login-link:hover {
            color: #111827;
            border-color: #cbd4df;
            background: #ffffff;
        }

        /*
        |--------------------------------------------------------------------------
        | Rodapé
        |--------------------------------------------------------------------------
        */

        .sr-access-footer {
            padding-top: 20px;
            color: #98a2b3;
            font-size: 10px;
            line-height: 1.5;
            text-align: center;
        }

        /*
        |--------------------------------------------------------------------------
        | Sem JavaScript
        |--------------------------------------------------------------------------
        */

        .no-js .sr-login-collapse {
            grid-template-rows: 1fr;
            opacity: 1;
            transform: none;
        }

        .no-js .sr-platform-toggle {
            display: none;
        }

        /*
        |--------------------------------------------------------------------------
        | Tablet
        |--------------------------------------------------------------------------
        */

        @media (max-width: 1100px) {
            .sr-page {
                grid-template-columns:
                    minmax(340px, 39%)
                    minmax(520px, 61%);
            }

            .sr-brand-panel {
                padding-left: 30px;
                padding-right: 30px;
            }

            .sr-brand-title {
                font-size: 43px;
            }

            .sr-phone-area {
                display: none;
            }

            .sr-access-panel {
                padding-left: 30px;
                padding-right: 30px;
            }
        }

        /*
        |--------------------------------------------------------------------------
        | Celular
        |--------------------------------------------------------------------------
        |
        | A faixa institucional fica completamente oculta.
        | Somente a coluna principal é exibida.
        |--------------------------------------------------------------------------
        */

        @media (max-width: 820px) {
            .sr-page {
                display: block;
                min-height: 100vh;
            }

            .sr-brand-panel {
                display: none;
            }

            .sr-access-panel {
                min-height: 100vh;
                padding:
                    max(17px, env(safe-area-inset-top))
                    13px
                    max(23px, env(safe-area-inset-bottom));
                background:
                    radial-gradient(
                        circle at 100% 0,
                        rgba(70, 92, 126, 0.075),
                        transparent 35%
                    ),
                    linear-gradient(
                        180deg,
                        #f8fafc,
                        #f1f4f8
                    );
            }

            .sr-access-inner {
                min-height:
                    calc(
                        100vh -
                        max(17px, env(safe-area-inset-top)) -
                        max(23px, env(safe-area-inset-bottom))
                    );
                max-width: 620px;
            }

            .sr-access-top {
                min-height: 70px;
                margin-bottom: 16px;
                justify-content: space-between;
                gap: 13px;
            }

            .sr-mobile-logo {
                display: inline-flex;
            }

            .sr-secure-label {
                padding: 6px 9px;
                font-size: 8px;
            }

            .sr-access-main {
                justify-content: flex-start;
                padding: 0;
            }

            .sr-app-card {
                padding: 26px 19px 23px;
                border-radius: 23px;
            }

            .sr-app-label {
                margin-bottom: 14px;
            }

            .sr-app-title {
                margin-bottom: 11px;
                font-size:
                    clamp(27px, 7.8vw, 37px);
            }

            .sr-app-description {
                margin-bottom: 21px;
                font-size: 13px;
            }

            .sr-benefits {
                margin-bottom: 21px;
            }

            .sr-platform-section {
                margin-top: 15px;
            }

            .sr-access-footer {
                margin-top: auto;
                padding: 23px 10px 0;
            }
        }

        @media (max-width: 520px) {
            .sr-access-panel {
                padding-left: 10px;
                padding-right: 10px;
            }

            .sr-access-top {
                min-height: 62px;
                margin-bottom: 13px;
            }

            .sr-mobile-logo img {
                max-width: 153px;
                max-height: 61px;
            }

            .sr-secure-label {
                font-size: 7px;
                letter-spacing: 0.035em;
            }

            .sr-app-card {
                padding: 23px 16px 20px;
                border-radius: 21px;
            }

            .sr-app-title {
                font-size: 27px;
            }

            .sr-benefits {
                gap: 6px;
            }

            .sr-benefit {
                padding: 6px 8px;
                font-size: 10px;
            }

            .sr-store-buttons {
                justify-content: center;
                gap: 8px;
            }

            .sr-store-link img {
                width: 147px;
            }

            .sr-store-link.google img {
                width: 153px;
            }

            .sr-signup-card {
                align-items: flex-start;
                padding: 14px;
                gap: 11px;
            }

            .sr-signup-icon {
                width: 39px;
                height: 39px;
                flex-basis: 39px;
                border-radius: 12px;
                font-size: 17px;
            }

            .sr-signup-title {
                font-size: 12px;
            }

            .sr-signup-description {
                font-size: 9px;
            }

            .sr-signup-action {
                align-self: center;
                min-height: 32px;
                padding: 7px 9px;
                font-size: 9px;
            }

            .sr-platform-toggle {
                min-height: 62px;
                padding: 11px 12px;
            }

            .sr-platform-toggle-title {
                font-size: 12px;
            }

            .sr-platform-toggle-description {
                font-size: 10px;
            }

            .sr-platform-toggle-arrow {
                display: none;
            }

            .sr-login-card {
                padding: 22px 15px 19px;
                border-radius: 18px;
            }

            .sr-login-title {
                font-size: 20px;
            }

            .sr-recaptcha {
                overflow: hidden;
            }

            .g-recaptcha {
                transform-origin: left top;
            }
        }

        @media (max-width: 400px) {
            .sr-mobile-logo img {
                max-width: 135px;
            }

            .sr-signup-card {
                flex-wrap: wrap;
            }

            .sr-signup-copy {
                width: calc(100% - 52px);
                flex: 0 0 calc(100% - 52px);
            }

            .sr-signup-action {
                width: 100%;
                margin-top: 2px;
            }
        }

        @media (max-width: 360px) {
            .sr-secure-label {
                display: none;
            }

            .sr-access-top {
                justify-content: center;
            }

            .sr-mobile-logo img {
                max-width: 160px;
            }

            .sr-store-buttons {
                flex-direction: column;
            }

            .sr-store-link img,
            .sr-store-link.google img {
                width: 165px;
            }

            .g-recaptcha {
                transform: scale(0.87);
                margin-bottom: -10px;
            }
        }

        @media (
            prefers-reduced-motion: reduce
        ) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                scroll-behavior: auto !important;
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
