/* /Components/Layout/LoginLayout.razor.rz.scp.css */
/* === SEUS ESTILOS EXISTENTES (mantenha) === */
html[b-wwabh82sqj],
body[b-wwabh82sqj],
#app[b-wwabh82sqj] {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.login-layout[b-wwabh82sqj] {
    position: fixed;
    inset: 0;
    background-color: #000;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

/* Desktop */
.login-layout[b-wwabh82sqj] {
    background-image: url('imagens-sistema/fundo-login-desktop.png');
}

/* Tablet */
@media (max-width:1024px) {
    .login-layout[b-wwabh82sqj] {
        background-image: url('imagens-sistema/fundo-login-tablet.png');
        background-position: center center;
    }
}

/* Celular */
@media (max-width:768px) {
    .login-layout[b-wwabh82sqj] {
        background-image: url('imagens-sistema/fundo-login-celular.png');
        background-position: center center;
    }
}

.content[b-wwabh82sqj] {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* === NOVOS ESTILOS DE BRILHO E LUZES (adicione abaixo) === */

/* Overlay escuro para destacar os brilhos */
.login-layout .overlay[b-wwabh82sqj] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Efeitos de brilho/luz principal */
.glow-effect[b-wwabh82sqj] {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: glowMove-b-wwabh82sqj 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.glow-1[b-wwabh82sqj] {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 0, 0.6), rgba(0, 150, 0, 0.2), transparent);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
    filter: blur(100px);
}

.glow-2[b-wwabh82sqj] {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 0, 0.5), rgba(0, 200, 0, 0.2), transparent);
    bottom: -200px;
    right: -200px;
    animation-delay: 2s;
    animation-duration: 12s;
    filter: blur(120px);
}

.glow-3[b-wwabh82sqj] {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 180, 0, 0.7), rgba(0, 100, 0, 0.3), transparent);
    top: 40%;
    right: -100px;
    animation-delay: 4s;
    animation-duration: 8s;
    filter: blur(90px);
}

.glow-4[b-wwabh82sqj] {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(100, 255, 100, 0.4), rgba(0, 150, 0, 0.1), transparent);
    bottom: 10%;
    left: -150px;
    animation-delay: 1s;
    animation-duration: 11s;
    filter: blur(110px);
}

.glow-5[b-wwabh82sqj] {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0, 220, 0, 0.5), rgba(0, 180, 0, 0.2), transparent);
    top: 20%;
    left: 30%;
    animation-delay: 3s;
    animation-duration: 9s;
    filter: blur(70px);
}

.glow-6[b-wwabh82sqj] {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(50, 255, 50, 0.45), rgba(0, 200, 0, 0.15), transparent);
    bottom: 30%;
    right: 20%;
    animation-delay: 5s;
    animation-duration: 13s;
    filter: blur(85px);
}

@keyframes glowMove-b-wwabh82sqj {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translate(80px, -50px) scale(1.2);
        opacity: 0.7;
    }

    50% {
        transform: translate(-50px, 70px) scale(0.9);
        opacity: 0.6;
    }

    75% {
        transform: translate(50px, 50px) scale(1.1);
        opacity: 0.65;
    }
}

/* Brilhos secundários */
.sparkle[b-wwabh82sqj] {
    position: absolute;
    background: radial-gradient(circle, #009600, transparent);
    border-radius: 50%;
    pointer-events: none;
    animation: sparklePulse-b-wwabh82sqj 3s ease-in-out infinite;
    z-index: 0;
}

.sparkle-1[b-wwabh82sqj] {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 20%;
    filter: blur(40px);
    opacity: 0.4;
    animation-delay: 0s;
}

.sparkle-2[b-wwabh82sqj] {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 15%;
    filter: blur(45px);
    opacity: 0.35;
    animation-delay: 1.5s;
}

.sparkle-3[b-wwabh82sqj] {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 10%;
    filter: blur(35px);
    opacity: 0.45;
    animation-delay: 2.5s;
}

.sparkle-4[b-wwabh82sqj] {
    width: 130px;
    height: 130px;
    top: 25%;
    right: 25%;
    filter: blur(38px);
    opacity: 0.4;
    animation-delay: 3.5s;
}

@keyframes sparklePulse-b-wwabh82sqj {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

/* Partículas de luz */
.particle[b-wwabh82sqj] {
    position: absolute;
    background: #009600;
    border-radius: 50%;
    pointer-events: none;
    animation: particleFloat-b-wwabh82sqj 5s ease-in-out infinite;
    z-index: 0;
}

.particle-1[b-wwabh82sqj] {
    width: 5px;
    height: 5px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    box-shadow: 0 0 15px #009600, 0 0 25px #00ff00;
}

.particle-2[b-wwabh82sqj] {
    width: 7px;
    height: 7px;
    top: 45%;
    right: 8%;
    animation-delay: 0.8s;
    box-shadow: 0 0 20px #009600, 0 0 30px #00ff00;
}

.particle-3[b-wwabh82sqj] {
    width: 4px;
    height: 4px;
    top: 70%;
    left: 15%;
    animation-delay: 1.5s;
    box-shadow: 0 0 12px #009600, 0 0 20px #00ff00;
}

.particle-4[b-wwabh82sqj] {
    width: 6px;
    height: 6px;
    bottom: 20%;
    right: 20%;
    animation-delay: 2.2s;
    box-shadow: 0 0 18px #009600, 0 0 28px #00ff00;
}

.particle-5[b-wwabh82sqj] {
    width: 3px;
    height: 3px;
    top: 30%;
    left: 25%;
    animation-delay: 0.3s;
    box-shadow: 0 0 10px #009600, 0 0 15px #00ff00;
}

.particle-6[b-wwabh82sqj] {
    width: 8px;
    height: 8px;
    bottom: 40%;
    left: 5%;
    animation-delay: 1.8s;
    box-shadow: 0 0 22px #009600, 0 0 32px #00ff00;
}

.particle-7[b-wwabh82sqj] {
    width: 4px;
    height: 4px;
    top: 80%;
    right: 30%;
    animation-delay: 2.5s;
    box-shadow: 0 0 14px #009600, 0 0 22px #00ff00;
}

.particle-8[b-wwabh82sqj] {
    width: 5px;
    height: 5px;
    top: 10%;
    right: 15%;
    animation-delay: 1.2s;
    box-shadow: 0 0 16px #009600, 0 0 24px #00ff00;
}

.particle-9[b-wwabh82sqj] {
    width: 6px;
    height: 6px;
    bottom: 15%;
    left: 35%;
    animation-delay: 3s;
    box-shadow: 0 0 20px #009600, 0 0 30px #00ff00;
}

.particle-10[b-wwabh82sqj] {
    width: 3px;
    height: 3px;
    top: 55%;
    right: 40%;
    animation-delay: 0.5s;
    box-shadow: 0 0 10px #009600, 0 0 18px #00ff00;
}

@keyframes particleFloat-b-wwabh82sqj {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 0.8;
    }

    50% {
        transform: translateY(-60px) translateX(40px);
        opacity: 0.9;
    }
}

/* Raios de luz lateral */
.light-ray[b-wwabh82sqj] {
    position: absolute;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #009600, #00ff00, #009600, transparent);
    transform-origin: left center;
    animation: rayMove-b-wwabh82sqj 8s linear infinite;
    pointer-events: none;
    opacity: 0.3;
    filter: blur(3px);
    z-index: 0;
}

.ray-1[b-wwabh82sqj] {
    top: 20%;
    left: -50%;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.ray-2[b-wwabh82sqj] {
    top: 40%;
    left: -50%;
    transform: rotate(-15deg);
    animation-delay: 3s;
}

.ray-3[b-wwabh82sqj] {
    top: 60%;
    left: -50%;
    transform: rotate(35deg);
    animation-delay: 6s;
}

.ray-4[b-wwabh82sqj] {
    top: 80%;
    left: -50%;
    transform: rotate(-25deg);
    animation-delay: 1.5s;
}

@keyframes rayMove-b-wwabh82sqj {
    0% {
        transform: translateX(0%) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateX(100%) rotate(0deg);
        opacity: 0;
    }
}

/* Efeito de scanline */
.scan-line[b-wwabh82sqj] {
    position: absolute;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient( 0deg, transparent, transparent 2px, rgba(0, 150, 0, 0.05) 2px, rgba(0, 150, 0, 0.05) 4px );
    pointer-events: none;
    animation: scanMove-b-wwabh82sqj 20s linear infinite;
    z-index: 0;
}

@keyframes scanMove-b-wwabh82sqj {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Ajuste do card de vidro para ficar acima dos brilhos */
.glass-card[b-wwabh82sqj] {
    position: relative;
    z-index: 2;
}

/* Responsividade - esconde alguns efeitos em dispositivos menores */
@media (max-width: 768px) {
    .glow-effect[b-wwabh82sqj],
    .sparkle[b-wwabh82sqj],
    .light-ray[b-wwabh82sqj],
    .particle[b-wwabh82sqj],
    .scan-line[b-wwabh82sqj] {
        display: none;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-ptpcfzefct] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ptpcfzefct] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }


:root[b-ptpcfzefct] {
    --vendrix-green: #009600;
    --vendrix-green-light: #00ff66;
    --vendrix-bg: #010701;
    --vendrix-bg-soft: #031403;
}

/*LAYOUT*/
.app-layout[b-ptpcfzefct] {
    min-height: 100dvh;
    background: var(--vendrix-bg);
}

/*HEADER*/
.app-header[b-ptpcfzefct] {
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: rgba(1,7,1,.95);
    border-bottom: 1px solid rgba(0,255,0,.15);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/*ESQUERDA*/
.header-left[b-ptpcfzefct] {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo[b-ptpcfzefct] {
    height: 65px;
    width: auto;
    object-fit: contain;
}

.logo-title[b-ptpcfzefct] {
    color: white;
    font-size: 22px;
    font-weight: 700;
}

/*MENU*/
.menu-btn[b-ptpcfzefct] {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: rgba(0,255,0,.08);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*DIREITA*/
.header-right[b-ptpcfzefct] {
    display: flex;
    gap: 10px;
}

/*CARDS*/
.header-card[b-ptpcfzefct] {      
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: white;
    background: rgba(0,255,0,.04);
    border: 1px solid rgba(0,255,0,.08);
    box-shadow: 0 0 20px rgba(0,255,0,.03);
    width: 250px;
    height:55px;
}

    .header-card:hover[b-ptpcfzefct] {
        background: rgba(0,255,0,.10);
    }

        .header-card:hover .usuario-foto[b-ptpcfzefct] {
            border-color: rgba(0,255,0,.35);
            box-shadow: 0 0 18px rgba(0,255,0,.18);
            transition: .2s;
        }

/*AVATAR*/
.avatar[b-ptpcfzefct] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/*EMPRESA*/
.empresa-avatar[b-ptpcfzefct] {
    background: rgba(0,255,0,.15);
}

/*USUARIO*/
.usuario-avatar[b-ptpcfzefct] {
    background: linear-gradient( 135deg, #009600, #00ff66 );
    font-weight: bold;
}

/*TEXTOS*/
.titulo[b-ptpcfzefct] {
    color: white;
    font-size: 13px;
    font-weight: 600;
}

.subtitulo[b-ptpcfzefct] {
    color: rgba(255,255,255,.55);
    font-size: 11px;
}

/*CONTEUDO*/
.app-content[b-ptpcfzefct] {
    min-height: calc(100dvh - 72px);
    padding: 24px;
    background: radial-gradient( circle at top left, rgba(0,255,120,.045), transparent 35% ), radial-gradient( circle at bottom right, rgba(0,255,120,.03), transparent 40% ), #081308;
}

.page-container[b-ptpcfzefct] {
    width: 100%;
    max-width: 1800px;
    margin: 0 auto;
}

/*DROPDOWN*/
.header-dropdown[b-ptpcfzefct] {
    background: rgba(3,20,3,.98);
    border: 1px solid rgba(0,255,0,.15);
    border-radius: 16px;
    backdrop-filter: blur(25px);
    box-shadow: 0 15px 40px rgba(0,0,0,.45), 0 0 30px rgba(0,255,0,.08);
    padding: 8px;
    animation: dropdownFade .15s ease;
    width:250px;
}

    .header-dropdown .dropdown-item[b-ptpcfzefct] {
        color: white;
        border-radius: 12px;
    }

        .header-dropdown .dropdown-item:hover[b-ptpcfzefct] {
            background: rgba(0,255,0,.10);
            color: white;
        }

.dropdown-divider[b-ptpcfzefct] {
    border-color: rgba(0,255,0,.10);
}

.dropdown-user-header[b-ptpcfzefct] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 16px 14px;
    text-align: center;
}

.dropdown-user-photo[b-ptpcfzefct] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0,255,0,.20);
    box-shadow: 0 0 20px rgba(0,255,0,.10);
    margin-bottom: 12px;
}

.dropdown-empresa-photo[b-ptpcfzefct] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    border: 3px solid rgba(0,255,0,.20);
    box-shadow: 0 0 20px rgba(0,255,0,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto 12px;
}

    .dropdown-empresa-photo img[b-ptpcfzefct] {
        width: 82%;
        height: 82%;
        object-fit: contain;
        transition: .25s ease;
    }

.dropdown-user-photo[b-ptpcfzefct],
.dropdown-empresa-photo[b-ptpcfzefct],
.dropdown-user-avatar[b-ptpcfzefct] {
    border: 3px solid rgba(0,255,0,.18);
    box-shadow: 0 0 0 3px rgba(0,255,0,.05), 0 0 25px rgba(0,255,0,.12);
}

.menu-usuario:hover .dropdown-user-photo img[b-ptpcfzefct] {
    transform: scale(1.03);
}

.dropdown-user-avatar[b-ptpcfzefct] {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #009600, #00ff66 );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.dropdown-user-name[b-ptpcfzefct] {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}

.dropdown-user-role[b-ptpcfzefct] {
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

.dropdown-item[b-ptpcfzefct] {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .dropdown-item .material-icons[b-ptpcfzefct] {
        font-size: 22px;
        line-height: 1;
    }

.usuario-foto[b-ptpcfzefct] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0,255,0,.18);
    box-shadow: 0 0 12px rgba(0,255,0,.10);
    flex-shrink: 0;
}

.contratante-logo[b-ptpcfzefct] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 2px solid rgba(0,255,0,.18);
    box-shadow: 0 0 12px rgba(0,255,0,.10);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

    .contratante-logo img[b-ptpcfzefct] {
        width: 80%;
        height: 80%;
        object-fit: contain;
    }

.empresa-avatar-dropdown[b-ptpcfzefct] {
    background: rgba(0,255,0,.12);
    color: #00ff66;
    font-size: 30px;
}

/*DRAWER*/
.menu-overlay[b-ptpcfzefct] {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(4px);
    z-index: 998;
    animation: fadeOverlay-b-ptpcfzefct .2s ease;
}

/* DRAWER */
.menu-group[b-ptpcfzefct] {
    margin-bottom: 20px;
}

.menu-group-title[b-ptpcfzefct] {
    color: rgba(255,255,255,.45);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 16px 8px 16px;
    text-transform: uppercase;
}
.drawer[b-ptpcfzefct] {
    position: fixed;
    top: 72px;
    left: 0;
    width: 300px;
    height: calc(100vh - 72px);
    background: linear-gradient( 180deg, #010701 0%, #031403 100% );
    border-right: 1px solid rgba(0,255,0,.15);
    box-shadow: 20px 0 40px rgba(0,0,0,.45), 0 0 30px rgba(0,255,0,.08);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .25s cubic-bezier(.4,0,.2,1);
    z-index: 999;
}

    .drawer.aberto[b-ptpcfzefct] {
        transform: translateX(0);
    }

.drawer-header[b-ptpcfzefct] {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid rgba(0,255,0,.10);
    background: rgba(0,255,0,.03);
    backdrop-filter: blur(20px);
}

.drawer-title[b-ptpcfzefct] {
    color: white;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .3px;
}

.drawer-close[b-ptpcfzefct] {
    color: rgba(255,255,255,.60);
    cursor: pointer;
    transition: .2s;
}

    .drawer-close:hover[b-ptpcfzefct] {
        color: white;
        transform: rotate(90deg);
    }

.drawer-nav[b-ptpcfzefct] {
    padding: 16px 12px;
}

.drawer-link[b-ptpcfzefct],
.drawer-link:link[b-ptpcfzefct],
.drawer-link:visited[b-ptpcfzefct] {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    color: rgba(255,255,255,.75) !important;
    text-decoration: none !important;
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 4px;
    transition: .25s ease;
    border: 1px solid transparent;
}

    .drawer-link:hover[b-ptpcfzefct] {
        color: white !important;
        background: rgba(0,255,0,.08);
        border-color: rgba(0,255,0,.15);
        text-decoration: none !important;
        transform: translateX(4px);
    }

    .drawer-link i[b-ptpcfzefct] {
        font-size: 22px;
        color: rgba(0,255,100,.85);
        min-width: 24px;
    }

@keyframes fadeOverlay-b-ptpcfzefct {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*MOBILE*/
@media (max-width:768px) {
    .desktop-only[b-ptpcfzefct] {
        display: none;
    }

    .header-card[b-ptpcfzefct] {
        width: 44px;
        height: 44px;
        padding: 0;
        justify-content: center;
    }

    .avatar[b-ptpcfzefct] {
        width: 30px;
        height: 30px;
    }

    .logo-title[b-ptpcfzefct] {
        font-size: 18px;
    }
}
/* /Components/Pages/Autenticacao/Login.razor.rz.scp.css */
/* Card principal - Desktop */
.glass-card[b-2griahlnw2] {
    position: relative;
    width: 100%;
    max-width: 450px;
    margin: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    border: 1px solid rgba(0, 150, 0, 0.3);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0, 150, 0, 0.1), 0 0 30px rgba(0, 150, 0, 0.3);
    padding: 40px 32px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    animation: cardAppear-b-2griahlnw2 0.6s ease-out;
    z-index: 2;
    box-sizing: border-box;
}

/* Mobile - Card ocupa a tela toda */
@media (max-width: 768px) {
    .glass-card[b-2griahlnw2] {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 20px 16px;
        border-radius: 0;
        overflow-y: auto;
        overflow-x: hidden;
        animation: cardSlideUp-b-2griahlnw2 0.5s ease-out;
    }
}

/* Animação para o card subindo no mobile */
@keyframes cardSlideUp-b-2griahlnw2 {
    from {
        opacity: 0;
        transform: translateY(100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ajuste para tablets (opcional - meio termo) */
@media (min-width: 769px) and (max-width: 1024px) {
    .glass-card[b-2griahlnw2] {
        max-width: 500px;
        padding: 35px 28px;
        margin: 15px;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .glass-card[b-2griahlnw2] {
        padding: 15px 12px;
    }
}

/* Esconde o overflow do body quando o card estiver em tela cheia no mobile */
@media (max-width: 768px) {
    body[b-2griahlnw2], .login-container[b-2griahlnw2], .login-layout[b-2griahlnw2] {
        overflow: hidden;
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

/* Garante que o conteúdo role suavemente no mobile */
@media (max-width: 768px) {
    .glass-card[b-2griahlnw2]::-webkit-scrollbar {
        width: 4px;
    }

    .glass-card[b-2griahlnw2]::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.05);
    }

    .glass-card[b-2griahlnw2]::-webkit-scrollbar-thumb {
        background: #009600;
        border-radius: 4px;
    }
}

.glass-card.login-mode[b-2griahlnw2] {
    height: auto;
    min-height: auto;
}

.glass-card.register-mode[b-2griahlnw2] {
    height: auto;
    min-height: auto;
}

.glass-card.forgot-mode[b-2griahlnw2] {
    height: auto;
    min-height: auto;
}

@keyframes cardAppear-b-2griahlnw2 {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-container[b-2griahlnw2] {
    text-align: center;
    margin-bottom: 24px;
    animation: logoFloat-b-2griahlnw2 3s ease-in-out infinite;
}

@keyframes logoFloat-b-2griahlnw2 {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Anima todos os elementos da logo juntos */
.logo-icon[b-2griahlnw2],
.logo-text[b-2griahlnw2],
.logo-subtitle[b-2griahlnw2] {
    animation: logoPulse-b-2griahlnw2 2s ease-in-out infinite;
}

    .logo-icon img[b-2griahlnw2] {
        filter: drop-shadow(0 0 15px rgba(0, 150, 0, 0.8));
        max-width: 100%;
        height: auto;
    }

.logo-text[b-2griahlnw2] {
    font-size: clamp(24px, 6vw, 32px);
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #009600 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 150, 0, 0.5);
}

    .logo-text span[b-2griahlnw2] {
        color: #009600;
        background: none;
        -webkit-background-clip: unset;
        background-clip: unset;
    }

.logo-subtitle[b-2griahlnw2] {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(12px, 3.5vw, 14px);
    margin-top: 8px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@keyframes logoPulse-b-2griahlnw2 {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}
/* Título do formulário */
.form-title[b-2griahlnw2] {
    text-align: center;
    color: white;
    font-size: clamp(20px, 5vw, 24px);
    margin-bottom: 28px;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 150, 0, 0.5);
}

/* Container do formulário */
.form-container[b-2griahlnw2] {
    transition: all 0.4s ease-in-out;
}

    .form-container.active[b-2griahlnw2] {
        display: block;
        animation: formFadeIn-b-2griahlnw2 0.5s ease-out;
    }

    .form-container.hidden[b-2griahlnw2] {
        display: none;
    }

@keyframes formFadeIn-b-2griahlnw2 {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Input groups com Radzen */
.input-group[b-2griahlnw2] {
    position: relative;
    margin-bottom: 24px;
}

    .input-group .radzen-input[b-2griahlnw2] {
        width: 100%;
        padding: 14px 16px 8px 45px;
        background: rgba(255, 255, 255, 0.08);
        border: 1.5px solid rgba(0, 150, 0, 0.3);
        border-radius: 12px;
        font-size: 15px;
        color: white;
        transition: all 0.3s ease;
        outline: none;
        box-sizing: border-box;
    }

/* Ajuste para telas pequenas */
@media (max-width: 480px) {
    .input-group .radzen-input[b-2griahlnw2] {
        padding: 12px 12px 6px 40px;
        font-size: 14px;
    }
}

.input-group .radzen-input:focus[b-2griahlnw2] {
    border-color: #009600;
    background: rgba(0, 150, 0, 0.15);
    box-shadow: 0 0 15px rgba(0, 150, 0, 0.3);
}

.input-group label[b-2griahlnw2] {
    position: absolute;
    left: 45px;
    top: 14px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 15px;
}

@media (max-width: 480px) {
    .input-group label[b-2griahlnw2] {
        left: 40px;
        top: 12px;
        font-size: 13px;
    }
}

.input-group .radzen-input:focus ~ label[b-2griahlnw2],
.input-group .radzen-input:not(:placeholder-shown) ~ label[b-2griahlnw2] {
    top: -8px;
    left: 12px;
    font-size: 11px;
    color: #009600;
    background: rgba(0, 100, 0, 0.85);
    padding: 0 6px;
    border-radius: 6px;
}

.input-icon[b-2griahlnw2] {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    opacity: 0.6;
    transition: all 0.3s ease;
    pointer-events: none;
    color: black;
}

@media (max-width: 480px) {
    .input-icon[b-2griahlnw2] {
        left: 12px;
        font-size: 16px;
    }
}

.input-group .radzen-input:focus ~ .input-icon[b-2griahlnw2] {
    opacity: 1;
    color: #009600;
    text-shadow: 0 0 8px #009600;
}

/* Opções do formulário */
.form-options[b-2griahlnw2] {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 480px) {
    .form-options[b-2griahlnw2] {
        flex-direction: column;
        align-items: flex-start;
    }
}

.checkbox[b-2griahlnw2] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

    .checkbox span[b-2griahlnw2] {
        font-size: 13px;
    }

.forgot-password[b-2griahlnw2] {
    color: #009600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
    cursor: pointer;
}

    .forgot-password:hover[b-2griahlnw2] {
        color: #00ff00;
        text-decoration: underline;
        text-shadow: 0 0 8px #009600;
    }

.terms[b-2griahlnw2] {
    margin-bottom: 20px;
}

    .terms a[b-2griahlnw2] {
        color: #009600;
        text-decoration: none;
        cursor: pointer;
    }

        .terms a:hover[b-2griahlnw2] {
            text-decoration: underline;
            text-shadow: 0 0 8px #009600;
        }

/* Botão Radzen personalizado */
.btn-primary-custom[b-2griahlnw2] {
    width: 100%;
    padding: 12px !important;
    background: linear-gradient(135deg, #009600 0%, #00cc00 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: white !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    box-shadow: 0 0 15px rgba(0, 150, 0, 0.5) !important;
}

@media (max-width: 480px) {
    .btn-primary-custom[b-2griahlnw2] {
        padding: 10px !important;
        font-size: 14px !important;
    }
}

.btn-primary-custom:hover[b-2griahlnw2] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 150, 0, 0.8), 0 0 20px rgba(0, 150, 0, 0.6) !important;
}

.btn-primary-custom:active[b-2griahlnw2] {
    transform: translateY(1px);
}

/* Botão link Radzen */
.btn-link-custom[b-2griahlnw2] {
    background: none !important;
    border: none !important;
    color: #009600 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

@media (max-width: 480px) {
    .btn-link-custom[b-2griahlnw2] {
        font-size: 14px !important;
    }
}

.btn-link-custom:hover[b-2griahlnw2] {
    color: #00ff00 !important;
    transform: translateX(5px);
    text-shadow: 0 0 10px #009600;
}

/* Footer do formulário */
.form-footer[b-2griahlnw2] {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

    .form-footer p[b-2griahlnw2] {
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 8px;
        font-size: 13px;
    }

/* Remove outline padrão do Radzen */
.rz-checkbox[b-2griahlnw2],
.rz-checkbox .rz-chkbox-input[b-2griahlnw2] {
    accent-color: #009600;
}

.steps-indicator[b-2griahlnw2] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0;
    gap: 5px;
}

.step[b-2griahlnw2] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
    position: relative;
}

.step-number[b-2griahlnw2] {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(0, 150, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.step-label[b-2griahlnw2] {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: all 0.3s ease;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .step-label[b-2griahlnw2] {
        font-size: 8px;
        white-space: normal;
        max-width: 60px;
    }

    .step-number[b-2griahlnw2] {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

.step.active .step-number[b-2griahlnw2] {
    background: rgba(0, 150, 0, 0.2);
    border-color: #009600;
    color: #009600;
    box-shadow: 0 0 15px rgba(0, 150, 0, 0.4);
    animation: pulse-b-2griahlnw2 0.5s ease;
}

.step.completed .step-number[b-2griahlnw2] {
    background: #009600;
    border-color: #009600;
    color: white;
    animation: complete-b-2griahlnw2 0.5s ease;
}

@keyframes pulse-b-2griahlnw2 {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes complete-b-2griahlnw2 {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.step-line[b-2griahlnw2] {
    flex: 1;
    height: 2px;
    background: rgba(0, 150, 0, 0.2);
    margin: 0 5px;
    transition: all 0.5s ease;
}

    .step-line.completed[b-2griahlnw2] {
        background: #009600;
        box-shadow: 0 0 8px rgba(0, 150, 0, 0.5);
    }

/* Container das etapas */
.step-container[b-2griahlnw2] {
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.step-active[b-2griahlnw2] {
    display: block;
    animation: slideIn-b-2griahlnw2 0.5s ease-out;
}

.step-inactive[b-2griahlnw2] {
    display: none;
}

@keyframes slideIn-b-2griahlnw2 {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-content[b-2griahlnw2] {
    animation: fadeInUp-b-2griahlnw2 0.6s ease-out;
}

@keyframes fadeInUp-b-2griahlnw2 {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title[b-2griahlnw2] {
    color: white;
    font-size: 20px;
    margin-bottom: 8px;
    text-align: center;
}

@media (max-width: 480px) {
    .step-title[b-2griahlnw2] {
        font-size: 18px;
        margin-bottom: 5px;
    }
}

.step-subtitle[b-2griahlnw2] {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    text-align: center;
    margin-bottom: 25px;
}

@media (max-width: 480px) {
    .step-subtitle[b-2griahlnw2] {
        font-size: 11px;
        margin-bottom: 20px;
    }
}

.account-types[b-2griahlnw2] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.account-card[b-2griahlnw2] {
    position: relative;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(0, 150, 0, 0.2);
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .account-card:hover[b-2griahlnw2] {
        transform: translateY(-3px);
        background: rgba(0, 150, 0, 0.1);
        border-color: #009600;
    }

    .account-card.selected[b-2griahlnw2] {
        background: rgba(0, 150, 0, 0.15);
        border-color: #009600;
        box-shadow: 0 0 20px rgba(0, 150, 0, 0.3);
        animation: selectCard-b-2griahlnw2 0.4s ease;
    }

@keyframes selectCard-b-2griahlnw2 {
    0% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

.account-icon[b-2griahlnw2] {
    font-size: 40px;
    margin-bottom: 10px;
}

.account-card h4[b-2griahlnw2] {
    color: white;
    font-size: 14px;
    margin-bottom: 5px;
}

.account-card p[b-2griahlnw2] {
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
}

.check-mark[b-2griahlnw2] {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: #009600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.account-card.selected .check-mark[b-2griahlnw2] {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 480px) {
    .account-types[b-2griahlnw2] {
        gap: 10px;
    }

    .account-card[b-2griahlnw2] {
        padding: 12px 8px;
    }

    .account-icon[b-2griahlnw2] {
        font-size: 28px;
        margin-bottom: 8px;
    }

    .account-card h4[b-2griahlnw2] {
        font-size: 11px;
    }

    .account-card p[b-2griahlnw2] {
        display: block;
        font-size: 8px;
    }

    .check-mark[b-2griahlnw2] {
        top: 5px;
        right: 5px;
        width: 16px;
        height: 16px;
        font-size: 9px;
    }
}

@media (max-width: 360px) {
    .account-types[b-2griahlnw2] {
        gap: 8px;
    }

    .account-card[b-2griahlnw2] {
        padding: 10px 5px;
    }

    .account-icon[b-2griahlnw2] {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .account-card h4[b-2griahlnw2] {
        font-size: 10px;
    }

    .account-card p[b-2griahlnw2] {
        font-size: 7px;
    }
}

/* Input groups - Mobile */
.input-group[b-2griahlnw2] {
    position: relative;
    margin-bottom: 20px;
}

.input-group[b-2griahlnw2] {
    position: relative;
    margin-bottom: 24px;
}

.custom-input[b-2griahlnw2] {
    width: 100%;
    padding: 12px 50px 8px 40px; /* espaço para o olho */
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(0, 150, 0, 0.3);
    border-radius: 12px;
    font-size: 14px;
    color: white;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.password-toggle[b-2griahlnw2] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .password-toggle .material-icons[b-2griahlnw2] {
        font-size: 22px;
        color: #000;
        transition: all 0.2s ease;
    }

    .password-toggle:hover .material-icons[b-2griahlnw2] {
        transform: scale(1.1);
    }

    .password-toggle:active .material-icons[b-2griahlnw2] {
        transform: scale(0.95);
    }

@media (max-width: 480px) {
    .custom-input[b-2griahlnw2] {
        padding: 11px 10px 7px 38px;
        font-size: 13px;
    }
}

.custom-input:focus[b-2griahlnw2] {
    border-color: #009600;
    background: rgba(0, 150, 0, 0.15);
    box-shadow: 0 0 12px rgba(0, 150, 0, 0.3);
    animation: inputGlow-b-2griahlnw2 0.5s ease;
}

@keyframes inputGlow-b-2griahlnw2 {
    0% {
        box-shadow: 0 0 0px rgba(0, 150, 0, 0);
    }

    100% {
        box-shadow: 0 0 12px rgba(0, 150, 0, 0.3);
    }
}

.input-group label[b-2griahlnw2] {
    position: absolute;
    left: 40px;
    top: 12px;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

@media (max-width: 480px) {
    .input-group label[b-2griahlnw2] {
        left: 38px;
        top: 11px;
        font-size: 13px;
    }
}

.custom-input:focus ~ label[b-2griahlnw2],
.custom-input:not(:placeholder-shown) ~ label[b-2griahlnw2] {
    top: -9px;
    left: 10px;
    font-size: 10px;
    color: #009600;
    background: #052b0d;
    padding: 0 5px;
    border-radius: 5px;
}

@media (max-width: 480px) {
    .custom-input:focus ~ label[b-2griahlnw2],
    .custom-input:not(:placeholder-shown) ~ label[b-2griahlnw2] {
        top: -8px;
        left: 8px;
        font-size: 9px;
    }
}

.input-icon[b-2griahlnw2] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .input-icon[b-2griahlnw2] {
        left: 10px;
        font-size: 14px;
    }
}

.custom-input:focus ~ .input-icon[b-2griahlnw2] {
    opacity: 1;
    color: #009600;
}

/* Força da senha */
.password-strength[b-2griahlnw2] {
    margin-top: 10px;
}

.strength-bar[b-2griahlnw2] {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 8px;
}

.strength-fill[b-2griahlnw2] {
    height: 100%;
    transition: all 0.3s ease;
    width: 0%;
}

    .strength-fill.weak[b-2griahlnw2] {
        width: 33%;
        background: #ff4444;
        box-shadow: 0 0 8px #ff4444;
    }

    .strength-fill.medium[b-2griahlnw2] {
        width: 66%;
        background: #ffaa00;
        box-shadow: 0 0 8px #ffaa00;
    }

    .strength-fill.strong[b-2griahlnw2] {
        width: 100%;
        background: #009600;
        box-shadow: 0 0 8px #009600;
    }

.strength-text[b-2griahlnw2] {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* Botões de ação - Mobile */
.step-actions[b-2griahlnw2] {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
}

.btn-prev[b-2griahlnw2] {
    flex: 1;
    padding: 11px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next[b-2griahlnw2] {
    flex: 2;
    padding: 11px;
    background: linear-gradient(135deg, #009600 0%, #00cc00 100%);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 12px rgba(0, 150, 0, 0.3);
}

@media (max-width: 480px) {
    .btn-prev[b-2griahlnw2], .btn-next[b-2griahlnw2] {
        padding: 10px;
        font-size: 12px;
        border-radius: 10px;
    }
}

.btn-prev:hover[b-2griahlnw2] {
    background: rgba(255, 255, 255, 0.1);
}

.btn-next:hover:not(:disabled)[b-2griahlnw2] {
    box-shadow: 0 3px 15px rgba(0, 150, 0, 0.5);
}

.btn-next:disabled[b-2griahlnw2] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Linha divisória e botão para logar */
.login-redirect[b-2griahlnw2] {
    margin-top: 25px;
    text-align: center;
}

.divider[b-2griahlnw2] {
    position: relative;
    text-align: center;
    margin: 20px 0;
}

    .divider[b-2griahlnw2]::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 150, 0, 0.3) 20%, rgba(0, 150, 0, 0.3) 80%, transparent 100%);
    }

    .divider span[b-2griahlnw2] {
        position: relative;
        background: rgba(0, 0, 0, 0.5);
        padding: 0 15px;
        color: rgba(255, 255, 255, 0.6);
        font-size: 12px;
        backdrop-filter: blur(5px);
        border-radius: 20px;
        display: inline-block;
    }

.btn-login-redirect[b-2griahlnw2] {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(0, 150, 0, 0.3);
    border-radius: 12px;
    color: #009600;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .btn-login-redirect:hover[b-2griahlnw2] {
        background: rgba(0, 150, 0, 0.1);
        border-color: #009600;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 150, 0, 0.2);
    }

    .btn-login-redirect:active[b-2griahlnw2] {
        transform: translateY(0px);
    }

@media (max-width: 480px) {
    .login-redirect[b-2griahlnw2] {
        margin-top: 20px;
    }

    .divider[b-2griahlnw2] {
        margin: 15px 0;
    }

        .divider span[b-2griahlnw2] {
            font-size: 11px;
            padding: 0 12px;
        }

    .btn-login-redirect[b-2griahlnw2] {
        padding: 10px;
        font-size: 13px;
        gap: 8px;
    }
}

/* Ajustes para tablets */
@media (min-width: 481px) and (max-width: 768px) {
    .glass-card[b-2griahlnw2] {
        max-width: 90% !important;
        padding: 30px 25px !important;
    }

    .account-types[b-2griahlnw2] {
        gap: 15px;
    }

    .step-label[b-2griahlnw2] {
        font-size: 9px;
    }
}

/* Previne overflow em telas muito pequenas */
@media (max-width: 360px) {
    .step-label[b-2griahlnw2] {
        font-size: 7px;
        max-width: 50px;
    }

    .step-number[b-2griahlnw2] {
        width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .account-card h4[b-2griahlnw2] {
        font-size: 14px;
    }

    .account-icon[b-2griahlnw2] {
        font-size: 28px;
    }
}

.forgot-content[b-2griahlnw2] {
    animation: fadeInUp-b-2griahlnw2 0.6s ease-out;
}

.forgot-icon[b-2griahlnw2] {
    text-align: center;
    font-size: 64px;
    margin-bottom: 20px;
    animation: iconShake-b-2griahlnw2 3s ease-in-out infinite;
}

@keyframes iconShake-b-2griahlnw2 {
    0%, 100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.forgot-description[b-2griahlnw2] {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .forgot-description[b-2griahlnw2] {
        font-size: 12px;
        margin-bottom: 25px;
    }

    .forgot-icon[b-2griahlnw2] {
        font-size: 50px;
        margin-bottom: 15px;
    }
}

.info-message[b-2griahlnw2] {
    margin-top: 20px;
    padding: 10px;
    background: rgba(0, 150, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .info-message span[b-2griahlnw2] {
        font-size: 14px;
    }

/* Estado de sucesso no envio (opcional) */
.reset-success[b-2griahlnw2] {
    text-align: center;
    padding: 20px;
}

    .reset-success .success-icon[b-2griahlnw2] {
        font-size: 48px;
        color: #009600;
        margin-bottom: 15px;
        animation: successPulse-b-2griahlnw2 0.5s ease-out;
    }

@keyframes successPulse-b-2griahlnw2 {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.forgot-alert[b-2griahlnw2] {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px;
    margin: 24px 0;
    border-radius: 16px;
    background: rgba(0,255,0,.05);
    border: 1px solid rgba(0,255,0,.12);
}

    .forgot-alert i[b-2griahlnw2] {
        color: #00ff66;
        font-size: 28px;
        margin-top: 2px;
    }

.forgot-title[b-2griahlnw2] {
    color: white;
    text-align: center;
    margin-bottom: 12px;
    font-size: 24px;
    font-weight: 700;
}

.forgot-alert strong[b-2griahlnw2] {
    color: white;
    display: block;
    margin-bottom: 6px;
}

.forgot-alert p[b-2griahlnw2] {
    color: rgba(255,255,255,.65);
    margin: 0;
    line-height: 1.6;
}

.forgot-icon[b-2griahlnw2] {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: rgba(0,255,0,.08);
    border: 2px solid rgba(0,255,0,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 25px rgba(0,255,0,.08);
}

    .forgot-icon i[b-2griahlnw2] {
        font-size: 46px;
        color: #00ff66;
    }
/* /Components/Pages/Autenticacao/SelecaoPlanos.razor.rz.scp.css */
/* =========================================
   PÁGINA
========================================= */

.plans-page[b-lhh48gareb] {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: radial-gradient(circle at top left, rgba(0,150,0,.18), transparent 35%), radial-gradient(circle at bottom right, rgba(0,150,0,.12), transparent 40%), linear-gradient( 135deg, #010701 0%, #021002 35%, #031403 65%, #010701 100% );
}

    /* =========================================
   AURORA
========================================= */

    .plans-page[b-lhh48gareb]::before {
        content: '';
        position: absolute;
        width: 1200px;
        height: 1200px;
        left: -400px;
        top: -300px;
        background: radial-gradient( circle, rgba(0,255,0,.10), transparent 70% );
        filter: blur(120px);
        animation: auroraMove-b-lhh48gareb 18s ease-in-out infinite;
        z-index: 0;
    }

@keyframes auroraMove-b-lhh48gareb {

    0%,100% {
        transform: translate(0,0) scale(1);
    }

    50% {
        transform: translate(200px,120px) scale(1.2);
    }
}

/* =========================================
   GRID
========================================= */

.grid-overlay[b-lhh48gareb] {
    position: absolute;
    inset: 0;
    background-image: linear-gradient( rgba(0,255,0,.03) 1px, transparent 1px ), linear-gradient( 90deg, rgba(0,255,0,.03) 1px, transparent 1px );
    background-size: 60px 60px;
    opacity: .5;
}

/* =========================================
   GLOWS
========================================= */

.corner-glow[b-lhh48gareb] {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
}

.top-left[b-lhh48gareb] {
    top: -250px;
    left: -250px;
    background: rgba(0,255,0,.10);
}

.bottom-right[b-lhh48gareb] {
    bottom: -250px;
    right: -250px;
    background: rgba(0,255,0,.08);
}

/* =========================================
   ENERGIA
========================================= */

.energy-line[b-lhh48gareb] {
    position: absolute;
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(0,255,0,.8), transparent );
    box-shadow: 0 0 15px rgba(0,255,0,.8);
}

.line1[b-lhh48gareb] {
    width: 700px;
    top: 20%;
    animation: energyMove-b-lhh48gareb 12s linear infinite;
}

.line2[b-lhh48gareb] {
    width: 500px;
    top: 45%;
    animation: energyMove-b-lhh48gareb 18s linear infinite;
}

.line3[b-lhh48gareb] {
    width: 600px;
    top: 75%;
    animation: energyMove-b-lhh48gareb 22s linear infinite;
}

@keyframes energyMove-b-lhh48gareb {

    from {
        left: -700px;
    }

    to {
        left: 120%;
    }
}

/* =========================================
   PARTICULAS
========================================= */

.particles[b-lhh48gareb] {
    position: absolute;
    inset: 0;
}

    .particles span[b-lhh48gareb] {
        position: absolute;
        bottom: -30px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #00ff66;
        box-shadow: 0 0 12px #00ff66;
        animation: particleFloat-b-lhh48gareb linear infinite;
    }

@keyframes particleFloat-b-lhh48gareb {

    from {
        transform: translateY(0) scale(.5);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    to {
        transform: translateY(-110vh) scale(1.2);
        opacity: 0;
    }
}

/* =========================================
   ÍCONES GIGANTES
========================================= */

.bg-achievement[b-lhh48gareb] {
    position: absolute;
    font-size: 280px;
    opacity: .025;
    filter: blur(1px);
    animation: floatingIcon-b-lhh48gareb 12s ease-in-out infinite;
    user-select: none;
}

.trophy[b-lhh48gareb] {
    left: 50px;
    bottom: 50px;
}

.crown[b-lhh48gareb] {
    right: 50px;
    top: 80px;
}

.chart[b-lhh48gareb] {
    left: 45%;
    top: 15%;
}

.target[b-lhh48gareb] {
    right: 20%;
    bottom: 15%;
}

@keyframes floatingIcon-b-lhh48gareb {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* =========================================
   CONTAINER
========================================= */

.plans-container[b-lhh48gareb] {
    position: relative;
    z-index: 10;
    max-width: 1600px;
    margin: auto;
    padding: 50px 30px;
}

/* =========================================
   CAMINHO
========================================= */

.journey-path[b-lhh48gareb] {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
}

.journey-step[b-lhh48gareb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.journey-icon[b-lhh48gareb] {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(0,255,0,.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0,255,0,.15);
}

.journey-step span[b-lhh48gareb] {
    color: white;
    font-size: 14px;
}

.journey-line[b-lhh48gareb] {
    width: 120px;
    height: 2px;
    margin: 0 15px;
    background: linear-gradient( 90deg, rgba(0,255,0,.15), rgba(0,255,0,.8), rgba(0,255,0,.15) );
}

/* =========================================
   HEADER
========================================= */

.plans-header[b-lhh48gareb] {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeInUp-b-lhh48gareb .8s ease;
}

    .plans-header h1[b-lhh48gareb] {
        color: white;
        font-size: 56px;
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: 1px;
        text-shadow: 0 0 25px rgba(0,255,0,.25);
    }

    .plans-header p[b-lhh48gareb] {
        color: rgba(255,255,255,.75);
        font-size: 18px;
        max-width: 650px;
        margin: auto;
        line-height: 1.7;
    }

/* =========================================
   DIVISOR
========================================= */

.header-divider[b-lhh48gareb] {
    width: 180px;
    height: 2px;
    margin: 25px auto 30px;
    background: linear-gradient( 90deg, transparent, #00ff66, transparent );
    box-shadow: 0 0 15px #00ff66, 0 0 25px rgba(0,255,0,.4);
    animation: dividerPulse-b-lhh48gareb 3s ease-in-out infinite;
}

@keyframes dividerPulse-b-lhh48gareb {

    0%,100% {
        opacity: .7;
        width: 180px;
    }

    50% {
        opacity: 1;
        width: 220px;
    }
}

/* =========================================
   ÍCONES DECORATIVOS
========================================= */

.bg-achievement[b-lhh48gareb] {
    position: absolute;
    color: rgba(0,255,0,.03);
    font-size: 320px;
    filter: blur(1px);
    pointer-events: none;
    user-select: none;
    animation: floatingIcon-b-lhh48gareb 14s ease-in-out infinite;
}

.trophy[b-lhh48gareb] {
    left: 60px;
    bottom: 50px;
}

.chart[b-lhh48gareb] {
    top: 80px;
    right: 100px;
}

.target[b-lhh48gareb] {
    bottom: 120px;
    right: 25%;
}

.medal[b-lhh48gareb] {
    left: 35%;
    top: 15%;
}

/* =========================================
   CARDS PLACEHOLDER
========================================= */

.cards-placeholder[b-lhh48gareb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.placeholder-card[b-lhh48gareb] {
    height: 520px;
    border-radius: 30px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,255,0,.12);
    backdrop-filter: blur(20px);
    box-shadow: 0 0 25px rgba(0,255,0,.08);
    transition: .4s;
}

    .placeholder-card:hover[b-lhh48gareb] {
        transform: translateY(-8px);
        border-color: rgba(0,255,0,.4);
        box-shadow: 0 0 35px rgba(0,255,0,.18);
    }

/* =========================================
   ANIMAÇÃO HEADER
========================================= */

@keyframes fadeInUp-b-lhh48gareb {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   GRID DOS PLANOS
========================================= */

.plans-grid[b-lhh48gareb] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* =========================================
   CARD
========================================= */

.plan-card[b-lhh48gareb] {
    position: relative;
    display: flex;
    flex-direction: column;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    border: 1px solid rgba(0,150,0,.20);
    padding: 30px;
    transition: all .35s ease;
    overflow: hidden;
    min-height: 700px;
    box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 20px rgba(0,150,0,.08);
}

    .plan-card:hover[b-lhh48gareb] {
        transform: translateY(-10px);
        border-color: rgba(0,255,0,.5);
        box-shadow: 0 30px 60px rgba(0,0,0,.4), 0 0 35px rgba(0,255,0,.15);
    }

/*Plano popular*/
.featured[b-lhh48gareb] {
    border: 2px solid #00ff66;
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(0,255,0,.25);
}

    .featured:hover[b-lhh48gareb] {
        transform: scale(1.05) translateY(-10px);
    }

/*Mais top*/
.enterprise[b-lhh48gareb] {
    border-color: rgba(255,215,0,.35);
    box-shadow: 0 0 30px rgba(255,215,0,.08);
}

/* Plano Atual */
.current-plan[b-lhh48gareb] {
    border: 2px solid #00ff66;
    background: linear-gradient( 180deg, rgba(0,255,100,.10), rgba(255,255,255,.05) );
    box-shadow: 0 0 35px rgba(0,255,100,.18), 0 20px 50px rgba(0,0,0,.35);
    position: relative;
}

    .current-plan[b-lhh48gareb]::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 30px;
        border: 1px solid rgba(0,255,100,.25);
        pointer-events: none;
    }

    /* Não levanta no hover */
    .current-plan:hover[b-lhh48gareb] {
        transform: none;
        border-color: #00ff66;
        box-shadow: 0 0 35px rgba(0,255,100,.22), 0 20px 50px rgba(0,0,0,.35);
    }

.plan-status[b-lhh48gareb] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    border-radius: 14px;
    background: rgba(0,255,100,.10);
    border: 1px solid rgba(0,255,100,.20);
    color: #7DFFA8;
    font-weight: 700;
}

    .plan-status i[b-lhh48gareb] {
        font-size: 20px;
    }

.plan-current-badge[b-lhh48gareb] {
    position: absolute;
    top: 18px;
    right: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #00c853, #00ff66 );
    color: #081208;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    box-shadow: 0 0 18px rgba(0,255,100,.35);
    z-index: 5;
}

    .plan-current-badge i[b-lhh48gareb] {
        font-size: 16px;
    }

/*Badge*/
.plan-badge[b-lhh48gareb] {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: black;
    background: #00ff66;
    box-shadow: 0 0 15px rgba(0,255,0,.5);
}

/*Cabeçalho*/
.plan-header[b-lhh48gareb] {
    text-align: center;
    margin-bottom: 25px;
}

.plan-icon[b-lhh48gareb] {
    font-size: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(0,255,0,.5));
}

.plan-name[b-lhh48gareb] {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-top: 25px;
    margin-bottom: 8px;
}

.plan-description[b-lhh48gareb] {
    color: rgba(255,255,255,.6);
    font-size: 14px;
}

/*Toggle Mensal / Anual*/
.billing-switch[b-lhh48gareb] {
    display: flex;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(0,255,0,.15);
    border-radius: 999px;
    padding: 4px;
    margin-bottom: 25px;
}

.billing-option[b-lhh48gareb] {
    flex: 1;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.7);
    padding: 10px;
    border-radius: 999px;
    transition: .3s;
}

    .billing-option.active[b-lhh48gareb] {
        background: #009600;
        color: white;
        box-shadow: 0 0 15px rgba(0,255,0,.4);
    }

/*Preço*/
.price-container[b-lhh48gareb] {
    text-align: center;
    margin-bottom: 30px;
}

.price-value[b-lhh48gareb] {
    color: white;
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.price-currency[b-lhh48gareb] {
    font-size: 24px;
    opacity: .8;
}

.price-period[b-lhh48gareb] {
    margin-top: 10px;
    color: rgba(255,255,255,.6);
    font-size: 13px;
}

.price-discount[b-lhh48gareb] {
    margin-top: 10px;
    color: #00ff66;
    font-size: 12px;
    font-weight: 700;
}

/*Recursos Inclusos*/
.features-title[b-lhh48gareb] {
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
}

.features-list[b-lhh48gareb] {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

    .features-list li[b-lhh48gareb] {
        display: flex;
        align-items: center;
        gap: 10px;
        color: rgba(255,255,255,.85);
        margin-bottom: 12px;
        font-size: 14px;
    }

.feature-check[b-lhh48gareb] {
    color: #00ff66;
    font-weight: bold;
}

/*Recursos Bloqueados*/
.missing-title[b-lhh48gareb] {
    color: rgba(255,255,255,.5);
    margin-bottom: 15px;
    font-size: 13px;
}

.missing-list[b-lhh48gareb] {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .missing-list li[b-lhh48gareb] {
        display: flex;
        gap: 10px;
        margin-bottom: 10px;
        color: rgba(255,255,255,.35);
        text-decoration: line-through;
        font-size: 13px;
    }

.feature-x[b-lhh48gareb] {
    color: #ff5555;
}

/*Botão*/
.plan-action[b-lhh48gareb] {
    margin-top: auto;
}

.btn-select-plan[b-lhh48gareb] {
    width: 100% !important;
    border: none !important;
    border-radius: 14px !important;
    padding: 14px !important;
    background: linear-gradient( 135deg, #009600, #00cc00 ) !important;
    color: white !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: .3s !important;
    box-shadow: 0 0 15px rgba(0,255,0,.25) !important;
}

    .btn-select-plan:hover[b-lhh48gareb] {
        transform: translateY(-2px);
        box-shadow: 0 0 25px rgba(0,255,0,.45);
    }

/* =========================================
   TRIAL
========================================= */

.trial[b-lhh48gareb] {
    border: 1px solid rgba(255,255,255,.15);
    background: linear-gradient( 180deg, rgba(255,255,255,.06), rgba(255,255,255,.03) );
    position: relative;
}

    .trial:hover[b-lhh48gareb] {
        border-color: rgba(255,255,255,.30);
        box-shadow: 0 0 35px rgba(255,255,255,.08);
    }

/* BADGE */

.trial-badge[b-lhh48gareb] {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    background: linear-gradient( 135deg, #00aa44, #00ff66 );
    box-shadow: 0 0 15px rgba(0,255,100,.35);
}

/* TEXTO EXTRA */

.trial-info[b-lhh48gareb] {
    margin-top: 20px;
    text-align: center;
    color: rgba(255,255,255,.55);
    font-size: 12px;
}

/* BOTÃO */

.btn-trial[b-lhh48gareb] {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 14px;
    background: linear-gradient( 135deg, #00aa44, #00ff66 );
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 0 20px rgba(0,255,100,.25);
}

    .btn-trial:hover[b-lhh48gareb] {
        transform: translateY(-2px);
        box-shadow: 0 0 30px rgba(0,255,100,.45);
    }

.trial-highlight[b-lhh48gareb] {
    text-align: center;
    margin: 20px 0 30px;
}

.trial-main[b-lhh48gareb] {
    font-size: 34px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.trial-sub[b-lhh48gareb] {
    color: rgba(255,255,255,.7);
}

.trial-benefits[b-lhh48gareb] {
    margin-bottom: 30px;
}

.trial-item[b-lhh48gareb] {
    padding: 12px 0;
    text-align: center;
    color: rgba(255,255,255,.85);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

/*ESQUELETO PRE CARREGAMENTO*/
.skeleton-card[b-lhh48gareb] {
    position: relative;
    overflow: hidden;
}

.skeleton-line[b-lhh48gareb],
.skeleton-price[b-lhh48gareb],
.skeleton-button[b-lhh48gareb] {
    background: rgba(255,255,255,.08);
    border-radius: 8px;
    margin-bottom: 12px;
}

.skeleton-line[b-lhh48gareb] {
    height: 14px;
}

    .skeleton-line.title[b-lhh48gareb] {
        height: 25px;
        width: 70%;
    }

    .skeleton-line.subtitle[b-lhh48gareb] {
        width: 90%;
    }

.skeleton-price[b-lhh48gareb] {
    height: 60px;
    margin: 25px 0;
}

.skeleton-button[b-lhh48gareb] {
    height: 45px;
}

.skeleton-card[b-lhh48gareb]::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 150%;
    height: 100%;
    background: linear-gradient( 90deg, transparent, rgba(255,255,255,.08), transparent );
    animation: shimmer-b-lhh48gareb 1.5s infinite;
}

@keyframes shimmer-b-lhh48gareb {
    to {
        left: 150%;
    }
}
/* /Components/Pages/Contratante/Meus_Dados.razor.rz.scp.css */
/*GERAL*/
.empresa-page[b-w5ktsk9hwd] {
    max-width: 1400px;
    margin: auto;
}

.page-header[b-w5ktsk9hwd] {
    margin-bottom: 35px;
}

    .page-header h1[b-w5ktsk9hwd] {
        color: white;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .page-header p[b-w5ktsk9hwd] {
        color: rgba(255,255,255,.55);
        font-size: 15px;
    }

/*CARD*/
.empresa-card[b-w5ktsk9hwd] {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 45px;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,255,0,.08);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}

.plano-card[b-w5ktsk9hwd] {
    margin-top: 35px;
    padding: 35px;
    border-radius: 24px;
    background: linear-gradient( 135deg, rgba(0,255,80,.03), rgba(255,255,255,.02) );
    border: 1px solid rgba(0,255,0,.10);
    backdrop-filter: blur(20px);
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
}

.info-plano[b-w5ktsk9hwd] {
    padding: 18px;
    border-radius: 16px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.05);
}

    .info-plano .titulo[b-w5ktsk9hwd] {
        display: block;
        color: rgba(255,255,255,.55);
        font-size: 13px;
        margin-bottom: 8px;
    }

    .info-plano .valor[b-w5ktsk9hwd] {
        display: block;
        color: white;
        font-size: 18px;
        font-weight: 600;
    }

/*LOGO*/
.empresa-logo-area[b-w5ktsk9hwd] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.empresa-logo[b-w5ktsk9hwd] {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 24px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.20);
}

/*PLACEHOLDER*/
.empresa-logo-placeholder[b-w5ktsk9hwd] {
    width: 220px;
    height: 220px;
    border-radius: 24px;
    background: rgba(255,255,255,.03);
    border: 2px dashed rgba(255,255,255,.12);
    display: flex;
    justify-content: center;
    align-items: center;
}

    .empresa-logo-placeholder i[b-w5ktsk9hwd] {
        font-size: 80px;
        color: rgba(255,255,255,.25);
    }

/*BOTÃO*/
.btn-logo[b-w5ktsk9hwd] {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #00ff66;
    font-weight: 600;
    transition: .2s;
}

    .btn-logo:hover[b-w5ktsk9hwd] {
        color: white;
    }

/*CAMPOS*/
.empresa-info[b-w5ktsk9hwd] {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campo[b-w5ktsk9hwd] {
    margin-bottom: 24px;
}

    .campo label[b-w5ktsk9hwd] {
        display: block;
        margin-bottom: 8px;
        color: rgba(255,255,255,.60);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/*LINHA*/
.linha[b-w5ktsk9hwd] {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 20px;
}

/*READONLY*/
.readonly-field[b-w5ktsk9hwd] {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    border-radius: 12px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,255,0,.08);
    color: white;
}

    .readonly-field i[b-w5ktsk9hwd] {
        color: rgba(255,255,255,.35);
        font-size: 18px;
    }

/*TOPO*/
.plano-topo[b-w5ktsk9hwd] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

    .plano-topo h2[b-w5ktsk9hwd] {
        color: white;
        margin-bottom: 8px;
    }

    .plano-topo p[b-w5ktsk9hwd] {
        color: rgba(255,255,255,.55);
        margin: 0;
    }

/*EXPIRACAO*/
.dias-restantes[b-w5ktsk9hwd] {
    text-align: right;
}

    .dias-restantes span[b-w5ktsk9hwd] {
        display: block;
        color: rgba(255,255,255,.45);
        font-size: 13px;
    }

    .dias-restantes strong[b-w5ktsk9hwd] {
        display: block;
        color: white;
        font-size: 28px;
        margin: 6px 0;
    }

    .dias-restantes small[b-w5ktsk9hwd] {
        color: #00ff66;
        font-size: 14px;
    }

/*DIVISOR*/
.plano-divisor[b-w5ktsk9hwd] {
    height: 1px;
    background: rgba(255,255,255,.06);
    margin: 30px 0;
}

/*INFORMACOES*/
.plano-informacoes[b-w5ktsk9hwd] {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/*BARRA*/
.progress[b-w5ktsk9hwd] {
    margin-top: 16px;
    height: 8px;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    overflow: hidden;
}

.progress-fill[b-w5ktsk9hwd] {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient( 90deg, #00b300, #00ff66 );
}

/*BOTÕES*/
.plano-actions[b-w5ktsk9hwd] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 30px;
}

.action-btn[b-w5ktsk9hwd] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    font-weight: 600;
    transition: .2s;
}

.upgrade[b-w5ktsk9hwd] {
    background: linear-gradient( 135deg, #009600, #00b300);
    color: white;
}

.renovar[b-w5ktsk9hwd] {
    background: rgba(255,255,255,.05);
    color: white;
    border: 1px solid rgba(255,255,255,.08);
}

.action-btn:hover[b-w5ktsk9hwd] {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.20);
}

/*RESPONSIVIDADE*/
@media(max-width:992px) {

    .empresa-card[b-w5ktsk9hwd] {
        grid-template-columns: 1fr;
    }

    .empresa-logo[b-w5ktsk9hwd] {
        width: 180px;
        height: 180px;
    }

    .linha[b-w5ktsk9hwd] {
        grid-template-columns: 1fr;
    }
}

@media(max-width:900px) {

    .plano-topo[b-w5ktsk9hwd] {
        flex-direction: column;
        align-items: flex-start;
    }

    .dias-restantes[b-w5ktsk9hwd] {
        text-align: left;
    }

    .plano-informacoes[b-w5ktsk9hwd] {
        grid-template-columns: 1fr;
    }

    .plano-acoes[b-w5ktsk9hwd] {
        flex-direction: column;
    }
}
/* /Components/Pages/Contratante/Minha_Assinatura.razor.rz.scp.css */
/*GERAL*/
.current-plan-card[b-w0vc720rrw] {
    position: relative;
    background: rgba(255,255,255,.045);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(0,255,100,.08);
    border-radius: 28px;
    padding: 35px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,.35), 0 0 30px rgba(0,255,100,.05);
    transition: .35s;
}

    .current-plan-card:hover[b-w0vc720rrw] {
        transform: translateY(-4px);
        border-color: rgba(0,255,100,.18);
        box-shadow: 0 20px 45px rgba(0,0,0,.40), 0 0 35px rgba(0,255,100,.10);
    }

    .current-plan-card[b-w0vc720rrw]::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        right: -140px;
        top: -140px;
        border-radius: 50%;
        background: radial-gradient( rgba(0,255,100,.08), transparent 70% );
        pointer-events: none;
    }

.current-plan-header[b-w0vc720rrw] {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 35px;
}

    .current-plan-header h2[b-w0vc720rrw] {
        color: white;
        font-size: 32px;
        margin: 10px 0;
    }

    .current-plan-header p[b-w0vc720rrw] {
        color: rgba(255,255,255,.60);
        line-height: 1.7;
        max-width: 520px;
    }

/*LADO DIREITO (EXPIRACAO)*/
.plan-expire[b-w0vc720rrw] {
    text-align: right;
    min-width: 220px;
}

    .plan-expire span[b-w0vc720rrw] {
        display: block;
        color: rgba(255,255,255,.50);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .plan-expire strong[b-w0vc720rrw] {
        display: block;
        margin: 10px 0;
        color: white;
        font-size: 30px;
        font-weight: 700;
    }

    .plan-expire small[b-w0vc720rrw] {
        color: #00ff66;
        font-size: 14px;
        font-weight: 600;
    }

/*CARD INFO*/
.current-plan-info[b-w0vc720rrw] {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.info-card[b-w0vc720rrw] {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 20px;
    padding: 22px;
    transition: .25s;
}

    .info-card:hover[b-w0vc720rrw] {
        background: rgba(255,255,255,.05);
        border-color: rgba(0,255,100,.12);
    }

    .info-card .titulo[b-w0vc720rrw] {
        display: block;
        color: rgba(255,255,255,.55);
        font-size: 13px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .info-card .valor[b-w0vc720rrw] {
        display: block;
        color: white;
        font-size: 28px;
        font-weight: 700;
    }

    .info-card small[b-w0vc720rrw] {
        color: #00ff66;
        font-weight: 600;
    }

/*BOTÕES*/
.current-plan-actions[b-w0vc720rrw] {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
}

.action-btn[b-w0vc720rrw] {
    border: none;
    border-radius: 16px;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: .30s;
}

    .action-btn i[b-w0vc720rrw] {
        font-size: 22px;
    }

    .action-btn.renovar[b-w0vc720rrw] {
        background: linear-gradient( 135deg, #009600, #00cc44 );
        color: white;
        box-shadow: 0 0 20px rgba(0,255,100,.18);
    }

        .action-btn.renovar:hover[b-w0vc720rrw] {
            transform: translateY(-2px);
            box-shadow: 0 0 30px rgba(0,255,100,.30);
        }

    .action-btn.alterar[b-w0vc720rrw] {
        background: rgba(255,255,255,.05);
        color: white;
        border: 1px solid rgba(255,255,255,.08);
    }

        .action-btn.alterar:hover[b-w0vc720rrw] {
            background: rgba(255,255,255,.08);
            border-color: rgba(0,255,100,.18);
        }

/*RESPONSIVIDADE*/
@media(max-width:900px) {

    .current-plan-header[b-w0vc720rrw] {
        flex-direction: column;
    }

    .plan-expire[b-w0vc720rrw] {
        text-align: left;
    }

    .current-plan-info[b-w0vc720rrw] {
        grid-template-columns: 1fr;
    }

    .current-plan-actions[b-w0vc720rrw] {
        flex-direction: column;
    }

    .action-btn[b-w0vc720rrw] {
        justify-content: center;
    }
}

/*CARD ALTERACAO PLANO*/
.scheduled-change-card[b-w0vc720rrw] {
    margin-top: 35px;
    background: rgba(255,193,7,.04);
    border: 1px solid rgba(255,193,7,.12);
    border-radius: 28px;
    padding: 35px;
    backdrop-filter: blur(18px);
    transition: .30s;
    overflow: hidden;
    position: relative;
}

    .scheduled-change-card:hover[b-w0vc720rrw] {
        border-color: rgba(255,193,7,.22);
        transform: translateY(-3px);
    }

    .scheduled-change-card[b-w0vc720rrw]::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        top: -120px;
        right: -120px;
        border-radius: 50%;
        background: radial-gradient( rgba(255,193,7,.08), transparent 70% );
        pointer-events: none;
    }

.scheduled-header h2[b-w0vc720rrw] {
    color: white;
    margin: 15px 0 10px;
    font-size: 28px;
}

.scheduled-header p[b-w0vc720rrw] {
    color: rgba(255,255,255,.60);
    max-width: 650px;
    line-height: 1.7;
}

.scheduled-flow[b-w0vc720rrw] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 40px 0;
}

.plan-box[b-w0vc720rrw] {
    flex: 1;
    text-align: center;
    background: rgba(255,255,255,.03);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,.05);
    transition: .30s;
}

    .plan-box:hover[b-w0vc720rrw] {
        transform: translateY(-3px);
    }

    .plan-box.current[b-w0vc720rrw] {
        border-color: rgba(0,255,100,.15);
    }

    .plan-box.next[b-w0vc720rrw] {
        border-color: rgba(255,193,7,.20);
    }

    .plan-box small[b-w0vc720rrw] {
        color: rgba(255,255,255,.50);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .plan-box h3[b-w0vc720rrw] {
        margin-top: 12px;
        color: white;
        font-size: 30px;
    }

.flow-arrow[b-w0vc720rrw] {
    color: #FFC107;
    font-size: 55px;
    animation: moveArrow-b-w0vc720rrw 2s infinite;
}

    .flow-arrow i[b-w0vc720rrw] {
        font-size: 55px;
    }

@keyframes moveArrow-b-w0vc720rrw {

    0%,100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.scheduled-info[b-w0vc720rrw] {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.scheduled-item[b-w0vc720rrw] {
    background: rgba(255,255,255,.03);
    border-radius: 18px;
    padding: 22px;
}

    .scheduled-item span[b-w0vc720rrw] {
        display: block;
        color: rgba(255,255,255,.55);
        margin-bottom: 8px;
    }

    .scheduled-item strong[b-w0vc720rrw] {
        color: white;
        font-size: 26px;
        display: block;
    }

    .scheduled-item small[b-w0vc720rrw] {
        color: #FFC107;
        font-weight: 600;
    }

.scheduled-actions[b-w0vc720rrw] {
    display: flex;
    justify-content: flex-end;
}

.action-btn.cancelar[b-w0vc720rrw] {
    background: rgba(255,82,82,.12);
    border: 1px solid rgba(255,82,82,.18);
    color: #FF7E7E;
}

    .action-btn.cancelar:hover[b-w0vc720rrw] {
        background: rgba(255,82,82,.18);
        transform: translateY(-2px);
    }

@media(max-width:900px) {

    .scheduled-flow[b-w0vc720rrw] {
        flex-direction: column;
    }

    .flow-arrow[b-w0vc720rrw] {
        transform: rotate(90deg);
    }

    .scheduled-info[b-w0vc720rrw] {
        grid-template-columns: 1fr;
    }
}

/*HISTORICO*/
.history-card[b-w0vc720rrw] {
    margin-top: 35px;
    background: rgba(255,255,255,.045);
    border: 1px solid rgba(0,255,100,.08);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 35px;
    box-shadow: 0 15px 35px rgba(0,0,0,.30);
}

.history-header[b-w0vc720rrw] {
    margin-bottom: 40px;
}

    .history-header h2[b-w0vc720rrw] {
        display: flex;
        align-items: center;
        gap: 12px;
        color: white;
        margin-bottom: 10px;
    }

    .history-header p[b-w0vc720rrw] {
        color: rgba(255,255,255,.60);
    }

.timeline[b-w0vc720rrw] {
    position: relative;
}

.timeline-item[b-w0vc720rrw] {
    display: flex;
    gap: 25px;
    position: relative;
    padding-bottom: 45px;
}

.timeline-icon[b-w0vc720rrw] {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
}

    .timeline-icon i[b-w0vc720rrw] {
        font-size: 24px;
    }

.timeline-line[b-w0vc720rrw] {
    position: absolute;
    left: 25px;
    top: 52px;
    width: 2px;
    bottom: -10px;
    background: linear-gradient( #00ff66, rgba(255,255,255,.05) );
}

.timeline-item:last-child .timeline-line[b-w0vc720rrw] {
    display: none;
}

.timeline-content[b-w0vc720rrw] {
    flex: 1;
    background: rgba(255,255,255,.03);
    border-radius: 22px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.05);
    transition: .30s;
}

    .timeline-content:hover[b-w0vc720rrw] {
        transform: translateY(-3px);
        border-color: rgba(0,255,100,.15);
    }

.timeline-top[b-w0vc720rrw] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}

.timeline-title[b-w0vc720rrw] {
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.timeline-date[b-w0vc720rrw] {
    color: rgba(255,255,255,.45);
    font-size: 13px;
}

.timeline-plan[b-w0vc720rrw] {
    color: #00ff66;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.timeline-details[b-w0vc720rrw] {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .timeline-details span[b-w0vc720rrw] {
        background: rgba(255,255,255,.05);
        border: 1px solid rgba(255,255,255,.06);
        border-radius: 30px;
        padding: 8px 14px;
        color: rgba(255,255,255,.75);
        font-size: 13px;
    }

.timeline-icon.trial[b-w0vc720rrw] {
    background: rgba(108,66,255,.15);
    color: #9F7CFF;
}

.timeline-icon.new[b-w0vc720rrw] {
    background: rgba(0,255,100,.12);
    color: #00ff66;
}

.timeline-icon.renew[b-w0vc720rrw] {
    background: rgba(0,180,255,.12);
    color: #48C7FF;
}

.timeline-icon.down[b-w0vc720rrw] {
    background: rgba(255,193,7,.12);
    color: #FFC107;
}

.timeline-icon.cancel[b-w0vc720rrw] {
    background: rgba(255,82,82,.12);
    color: #FF7272;
}

.timeline-content:hover .timeline-plan[b-w0vc720rrw] {
    text-shadow: 0 0 10px rgba(0,255,100,.40);
}

@media(max-width:900px) {

    .timeline-top[b-w0vc720rrw] {
        flex-direction: column;
        gap: 8px;
    }

    .timeline-details[b-w0vc720rrw] {
        flex-direction: column;
    }
}
/* /Components/Pages/Dashboard/AvatarFrame.razor.rz.scp.css */
.avatar-frame[b-o9eo0cuhbw] {
    position: relative;
    --frame-size: 360px;
    width: var(--frame-size);
    height: var(--frame-size);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.avatar[b-o9eo0cuhbw] {
    width: calc(var(--frame-size) * .64);
    height: calc(var(--frame-size) * .64);
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.12);
}

svg[b-o9eo0cuhbw] {
    width: 100%;
    height: 100%;
}

.frame[b-o9eo0cuhbw] {
    position: absolute;
    inset: 0;
    overflow: visible;
}

#frame-main[b-o9eo0cuhbw] {
    fill: none;
    stroke: var(--frame-main);
    stroke-width: 5;
    stroke-linejoin: round;
    stroke-linecap: round;
    filter: drop-shadow(0 0 2px var(--frame-glow-1)) drop-shadow(0 0 6px var(--frame-glow-2)) drop-shadow(0 0 14px var(--frame-glow-3));
}

    #frame-main path[b-o9eo0cuhbw] {
        vector-effect: non-scaling-stroke;
    }

#frame-detail[b-o9eo0cuhbw] {
    fill: none;
    stroke: var(--frame-detail);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .85;
    filter: drop-shadow(0 0 2px rgba(var(--frame-glow-color-rgb),.10)) drop-shadow(0 0 5px rgba(var(--frame-glow-color-rgb),.20));
}

    #frame-detail path[b-o9eo0cuhbw] {
        vector-effect: non-scaling-stroke;
    }

#frame-led[b-o9eo0cuhbw] {
    fill: #0b1d12;
    stroke: var(--frame-led);
    stroke-width: 1.2;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px rgba(var(--frame-glow-color-rgb),.70)) drop-shadow(0 0 14px rgba(var(--frame-glow-color-rgb),.85));
}

    #frame-led rect[b-o9eo0cuhbw] {
        vector-effect: non-scaling-stroke;
        transition: fill .25s, stroke .25s;
    }

#frame-hud[b-o9eo0cuhbw] {
    fill: none;
    stroke: var(--frame-hud);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .55;
}

    #frame-hud path[b-o9eo0cuhbw] {
        vector-effect: non-scaling-stroke;
    }

    #frame-hud circle[b-o9eo0cuhbw] {
        fill: var(--frame-hud);
    }

#frame-mechanical[b-o9eo0cuhbw] {
    fill: none;
    stroke: var(--frame-mechanical);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .45;
}

    #frame-mechanical circle[b-o9eo0cuhbw] {
        fill: var(--frame-mechanical);
    }

#frame-energy[b-o9eo0cuhbw] {
    fill: none;
    stroke: var(--frame-energy);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: .18;
    filter: drop-shadow(0 0 4px rgba(var(--frame-glow-color-rgb),.25)) drop-shadow(0 0 10px rgba(var(--frame-glow-color-rgb),.45));
}

    #frame-energy path[b-o9eo0cuhbw] {
        vector-effect: non-scaling-stroke;
        stroke-dasharray: 18 12;
        stroke-dashoffset: 0;
        transition: .3s;
    }

#frame-nodes[b-o9eo0cuhbw] {
    fill: #00ff88;
    stroke: var(--frame-nodes);
    stroke-width: 1;
    opacity: .70;
    filter: drop-shadow(0 0 3px rgba(var(--frame-glow-color-rgb),.35)) drop-shadow(0 0 8px rgba(var(--frame-glow-color-rgb),.65));
}

    #frame-nodes rect[b-o9eo0cuhbw],
    #frame-nodes polygon[b-o9eo0cuhbw],
    #frame-nodes circle[b-o9eo0cuhbw] {
        vector-effect: non-scaling-stroke;
        transition: fill .25s, stroke .25s, transform .25s;
        transform-origin: center;
    }

#frame-anchors[b-o9eo0cuhbw] {
    fill: #00ff88;
    opacity: 0;
    pointer-events: none;
}

    #frame-anchors circle[b-o9eo0cuhbw] {
        vector-effect: non-scaling-stroke;
        transform-origin: center;
    }

.avatar-frame[b-o9eo0cuhbw] {
    --frame-color: #42ff9c;
    --frame-main: #00D26A;
    --frame-detail: #32ff8c;
    --frame-led: #00d26a;
    --frame-hud: #63ffab;
    --frame-mechanical: #56ff9b;
    --frame-energy: #00ff88;
    --frame-nodes: #76ffbc;
    --frame-anchors: #00ff88;
    --frame-glow-color-rgb: 66,255,156;
    --frame-glow-1: rgba(var(--frame-glow-color-rgb),.18);
    --frame-glow-2: rgba(var(--frame-glow-color-rgb),.35);
    --frame-glow-3: rgba(var(--frame-glow-color-rgb),.65);
    --avatar-winner-duration: 2.8s;
}

    .avatar-frame.gold[b-o9eo0cuhbw] {
        --frame-color: #FFD54A;
        --frame-main: #F4C542;
        --frame-detail: #FFD95A;
        --frame-led: #FFF2A6;
        --frame-hud: #FFE58A;
        --frame-mechanical: #C89B3C;
        --frame-energy: #FFC400;
        --frame-nodes: #FFF6C8;
        --frame-anchors: #FFC400;
        --frame-glow-color-rgb: 255, 213, 74;
    }

    .avatar-frame.silver[b-o9eo0cuhbw] {
        --frame-color: #D7DEE8;
        --frame-main: #C8D2DC;
        --frame-detail: #E3E8ED;
        --frame-led: #FFFFFF;
        --frame-hud: #F3F7FA;
        --frame-mechanical: #A8B2BC;
        --frame-energy: #BFC8D3;
        --frame-nodes: #F8FAFC;
        --frame-anchors: #BFC8D3;
        --frame-glow-color-rgb: 215, 222, 232;
    }

    .avatar-frame.bronze[b-o9eo0cuhbw] {
        --frame-color: #D6894A;
        --frame-main: #C66A2B;
        --frame-detail: #D9823B;
        --frame-led: #FFD0A8;
        --frame-hud: #E7A56F;
        --frame-mechanical: #A65A2A;
        --frame-energy: #C96F31;
        --frame-nodes: #F5C39A;
        --frame-anchors: #C96F31;
        --frame-glow-color-rgb: 214, 137, 74;
    }

@keyframes frameBreath-b-o9eo0cuhbw {

    0%,100% {
        filter: drop-shadow(0 0 2px rgba(var(--frame-glow-color-rgb),.15)) drop-shadow(0 0 6px rgba(var(--frame-glow-color-rgb),.30));
    }

    50% {
        filter: drop-shadow(0 0 5px rgba(var(--frame-glow-color-rgb),.35)) drop-shadow(0 0 16px rgba(var(--frame-glow-color-rgb),.70));
    }
}

@keyframes ledDefault-b-o9eo0cuhbw {

    0%,100% {
        opacity: .55;
    }

    50% {
        opacity: .90;
    }
}

.avatar-frame.default #frame-led[b-o9eo0cuhbw] {
    animation: ledDefault-b-o9eo0cuhbw 4.5s ease-in-out infinite;
}

@keyframes ledWinner-b-o9eo0cuhbw {

    0%,100% {
        opacity: .75;
        filter: drop-shadow(0 0 6px rgba(var(--frame-glow-color-rgb),.70)) drop-shadow(0 0 14px rgba(var(--frame-glow-color-rgb),.85));
    }

    50% {
        opacity: 1;
        filter: drop-shadow(0 0 10px rgba(var(--frame-glow-color-rgb),.95)) drop-shadow(0 0 22px rgba(var(--frame-glow-color-rgb),1));
    }
}

.avatar-frame.winner #frame-led[b-o9eo0cuhbw] {
    animation: ledWinner-b-o9eo0cuhbw var(--avatar-winner-duration) ease-in-out infinite;
}

.avatar-frame.default #frame-main[b-o9eo0cuhbw],
.avatar-frame.default #frame-detail[b-o9eo0cuhbw],
.avatar-frame.default #frame-energy[b-o9eo0cuhbw] {
    animation: frameBreath-b-o9eo0cuhbw 4s ease-in-out infinite;
}

.avatar-frame.default #frame-led[b-o9eo0cuhbw] {
    animation: ledDefault-b-o9eo0cuhbw 4.5s ease-in-out infinite;
}

.avatar-frame.winner #frame-main[b-o9eo0cuhbw],
.avatar-frame.winner #frame-detail[b-o9eo0cuhbw],
.avatar-frame.winner #frame-energy[b-o9eo0cuhbw] {
    animation: frameBreath-b-o9eo0cuhbw var(--avatar-winner-duration) ease-in-out infinite;
}

.avatar-frame.winner #frame-led[b-o9eo0cuhbw] {
    animation: ledWinner-b-o9eo0cuhbw var(--avatar-winner-duration) ease-in-out infinite;
}

.avatar-frame:hover[b-o9eo0cuhbw] {
    --frame-glow-1: rgba(var(--frame-glow-color-rgb),.30);
    --frame-glow-2: rgba(var(--frame-glow-color-rgb),.60);
    --frame-glow-3: rgba(var(--frame-glow-color-rgb),.95);
}
/* /Components/Pages/Dashboard/Campanha.razor.rz.scp.css */
.campanha-container[b-y5o91l36bs] {
    width: 100%;
    padding: 8px;
    border-radius: 24px;
    min-height: 600px;

}

.campanha-grid[b-y5o91l36bs] {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
}

.podium-col[b-y5o91l36bs] {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    border-radius: 40px;
}

    .podium-col > *[b-y5o91l36bs] {
        width: 100%;
        max-width: 860px;
    }

.ranking-col[b-y5o91l36bs] {
    margin-left: 10px;
    display: flex;
    align-items: stretch;
}

.ranking-placeholder[b-y5o91l36bs] {
    width: 100%;
    min-height: 100%;
    padding: 24px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(0,150,0,.15);
    backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 0 24px rgba(0,150,0,.08);
}

    .ranking-placeholder h3[b-y5o91l36bs] {
        margin-bottom: 12px;
        font-size: 24px;
        color: #00C83A;
    }

    .ranking-placeholder p[b-y5o91l36bs] {
        color: rgba(255,255,255,.45);
    }

@media (max-width: 1400px) {

    .campanha-grid[b-y5o91l36bs] {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 1200px) {

    .campanha-grid[b-y5o91l36bs] {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .podium-col > *[b-y5o91l36bs] {
        max-width: 900px;
    }
}

@media (max-width:768px) {

    .campanha-container[b-y5o91l36bs] {
        padding: 0;
    }

    .campanha-grid[b-y5o91l36bs] {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* /Components/Pages/Dashboard/CampanhaHeader.razor.rz.scp.css */
/* ===========================
   CAMPANHA HEADER
=========================== */

.campaign-header[b-51rh6dl771] {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 12px 18px;
    border-radius: 20px;
    margin-bottom: 4px;
    overflow: hidden;
    background: rgba(22, 22, 22, .82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 12px 40px rgba(0,0,0,.35), inset 0 1px rgba(255,255,255,.05);
}

    /* Linha superior */

    .campaign-header[b-51rh6dl771]::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 3px;
        transform-origin: left;
        transform: scaleX(0);
        background: linear-gradient( 90deg, transparent, #00b61b, #6eff84, #00b61b, transparent );
    }

/* Glow */

.campaign-glow[b-51rh6dl771] {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at left, rgba(0,150,0,.18), transparent 65%);
}

/* ===========================
   ESQUERDA
=========================== */

.campaign-main[b-51rh6dl771] {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 280px;
}

/* Medalhão */

.campaign-icon[b-51rh6dl771] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
    border: 2px solid rgba(0,180,0,.35);
    box-shadow: 0 0 22px rgba(0,180,0,.18), inset 0 0 20px rgba(255,255,255,.05);
    border-width: 1px;
}
    .campaign-icon span[b-51rh6dl771] {
        font-size: 24px;
    }

    .campaign-icon img[b-51rh6dl771] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.campaign-default-icon[b-51rh6dl771] {
    font-size: 26px;
    color: #66ff7d;
}

/* ===========================
   TITULO
=========================== */

.campaign-info[b-51rh6dl771] {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.campaign-title-row[b-51rh6dl771] {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .campaign-title-row h1[b-51rh6dl771] {
        margin: 0;
        font-size: 16px;
        line-height: 1.1;
        font-weight: 700;
        color: white;
        letter-spacing: .3px;
    }

.campaign-description[b-51rh6dl771] {
    color: #A8A8A8;
    font-size: 12px;
}

/* ===========================
   STATUS
=========================== */

.campaign-status[b-51rh6dl771] {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 30px;
    background: rgba(0,150,0,.14);
    border: 1px solid rgba(0,255,100,.25);
    color: #79ff8d;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

    .campaign-status[b-51rh6dl771]::before {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #39ff63;
        box-shadow: 0 0 12px #39ff63;
    }

/* ===========================
   CARDS
=========================== */

.campaign-stats[b-51rh6dl771] {
    margin-left: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.stat-card[b-51rh6dl771] {
    min-width: 100px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: .25s;
}

    .stat-card:hover[b-51rh6dl771] {
        transform: translateY(-4px);
        background: rgba(255,255,255,.07);
        border-color: rgba(0,180,0,.35);
        box-shadow: 0 10px 22px rgba(0,150,0,.12);
    }

    .stat-card .material-symbols-rounded[b-51rh6dl771] {
        font-size: 18px;
        color: #52ff70;
        margin-bottom: 4px;
    }

    .stat-card label[b-51rh6dl771] {
        font-size: 9px;
        color: #9B9B9B;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 3px;
    }

    .stat-card strong[b-51rh6dl771] {
        color: white;
        font-size: 13px;
        font-weight: 600;
    }

/* ===========================
   PROGRESSO
=========================== */

.progress strong[b-51rh6dl771] {
    margin-bottom: 10px;
}

.progress-bar[b-51rh6dl771] {
    width: 100%;
    height: 4px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,.08);
}

.progress-fill[b-51rh6dl771] {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient( 90deg, #00b61b, #4dff71);
    width: 72%;
}

/* ===========================
   RESPONSIVO
=========================== */

@media (max-width:1200px) {

    .campaign-header[b-51rh6dl771] {
        flex-direction: column;
        align-items: flex-start;
    }

    .campaign-stats[b-51rh6dl771] {
        width: 100%;
        margin-left: 0;
        justify-content: flex-start;
    }
}

@media (max-width:768px) {

    .campaign-main[b-51rh6dl771] {
        width: 100%;
    }

    .campaign-title-row h1[b-51rh6dl771] {
        font-size: 22px;
    }

    .campaign-icon[b-51rh6dl771] {
        width: 60px;
        height: 60px;
    }

    .campaign-stats[b-51rh6dl771] {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 6px;
        width: 100%;
    }

        .campaign-stats[b-51rh6dl771]::-webkit-scrollbar {
            height: 6px;
        }

        .campaign-stats[b-51rh6dl771]::-webkit-scrollbar-thumb {
            background: rgba(255,255,255,.15);
            border-radius: 10px;
        }

    .stat-card[b-51rh6dl771] {
        min-width: 120px;
    }
}

@keyframes statusPulse-b-51rh6dl771 {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.35);
        opacity: .6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.campaign-status[b-51rh6dl771]::before {
    animation: statusPulse-b-51rh6dl771 2s ease-in-out infinite;
}

.campaign-top-line[b-51rh6dl771] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient( 90deg, transparent, #00b61b, #6eff84, #00b61b, transparent );
}

.campaign-glow-follow[b-51rh6dl771] {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
    opacity: .12;
    transform: translate(-50%, -50%);
    background: radial-gradient( circle, rgba(0, 182, 27, .8) 0%, rgba(0, 182, 27, .35) 35%, rgba(0, 182, 27, 0) 75% );
}
/* /Components/Pages/Dashboard/CampanhaPodio.razor.rz.scp.css */
.podium-wrapper[b-j78fqcvty4] {
    display: flex;
    margin-top: 120px;
    justify-content: center;
    align-items: flex-end;
    gap: 0px;
    transform: scale(.88);
    transform-origin: top center;
    position: relative;
    z-index: 20;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,.45));
}

/* ============================================================
   CENA PRINCIPAL
   ============================================================ */
.scene[b-j78fqcvty4] {
    position: relative;
    width: 100%;
    max-width: 100vw;
    height: 700px;
    max-height: 100vh;
    border-radius: 40px;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 80%, #0a1a12, #040806 70%);
    box-shadow: 0 0 80px rgba(0, 255, 120, 0.1);
    isolation: isolate;
}

/* ============================================================
   CAMADA 1 – Fundo profundo (céu tecnológico)
   ============================================================ */
.bg-layer[b-j78fqcvty4] {
    position: absolute;
    inset: 0;
    z-index: -5;
    background:
    /* Estrelas / pontos de dados */
    radial-gradient(circle at 10% 15%, rgba(0,255,120,0.3) 1px, transparent 1px), radial-gradient(circle at 25% 8%, rgba(0,180,255,0.2) 1px, transparent 1px), radial-gradient(circle at 45% 20%, rgba(255,213,74,0.2) 1px, transparent 1px), radial-gradient(circle at 70% 12%, rgba(0,255,120,0.25) 1px, transparent 1px), radial-gradient(circle at 88% 18%, rgba(255,0,255,0.15) 1px, transparent 1px), radial-gradient(circle at 15% 30%, rgba(0,180,255,0.15) 1px, transparent 1px), radial-gradient(circle at 60% 25%, rgba(255,213,74,0.15) 1px, transparent 1px), radial-gradient(circle at 80% 35%, rgba(0,255,120,0.2) 1px, transparent 1px);
    background-size: 100px 100px;
    background-repeat: repeat;
    opacity: 0.6;
}

    .bg-layer[b-j78fqcvty4]::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 12% 18%, rgba(255,255,255,.8) 1px, transparent 2px), radial-gradient(circle at 45% 22%, rgba(0,255,120,.7) 1px, transparent 2px), radial-gradient(circle at 70% 14%, rgba(0,180,255,.7) 1px, transparent 2px), radial-gradient(circle at 82% 38%, rgba(255,213,74,.7) 1px, transparent 2px);
        background-size: 220px 220px;
        opacity: .35;
        animation: bgFar-b-j78fqcvty4 90s linear infinite;
    }

@keyframes bgFar-b-j78fqcvty4 {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(120px);
    }
}

/* ============================================================
   CAMADA 2 – Horizonte com arcos e silhueta
   ============================================================ */
.horizon[b-j78fqcvty4] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 55%;
    z-index: -4;
    background:
    /* Arco central */
    radial-gradient(ellipse at 50% 100%, rgba(255,213,74,0.08) 0%, transparent 50%),
    /* Arco esquerdo */
    radial-gradient(ellipse at 20% 100%, rgba(0,255,120,0.12) 0%, transparent 45%),
    /* Arco direito */
    radial-gradient(ellipse at 80% 100%, rgba(0,180,255,0.10) 0%, transparent 45%),
    /* Linhas de horizonte (finas) */
    linear-gradient(to top, rgba(0,255,120,0.02) 0%, transparent 20%), linear-gradient(to top, rgba(0,180,255,0.02) 30%, transparent 60%);
    border-radius: 0 0 40px 40px;
}

    /* Linhas abstratas (dados) no horizonte */
    .horizon[b-j78fqcvty4]::before {
        content: '';
        position: absolute;
        bottom: 20%;
        left: 0;
        right: 0;
        height: 60%;
        background: repeating-linear-gradient( 90deg, transparent 0px, transparent 80px, rgba(0,255,120,0.015) 80px, rgba(0,255,120,0.015) 82px, transparent 82px, transparent 160px ), repeating-linear-gradient( 45deg, transparent 0px, transparent 120px, rgba(0,180,255,0.01) 120px, rgba(0,180,255,0.01) 122px, transparent 122px, transparent 240px );
        pointer-events: none;
        mask-image: linear-gradient(to top, black 10%, transparent 70%);
        -webkit-mask-image: linear-gradient(to top, black 10%, transparent 70%);
    }

/* ============================================================
   CAMADA 3 – Holofotes e neblina
   ============================================================ */
.light-overlay[b-j78fqcvty4] {
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
    /* Feixe central (dourado) */
    radial-gradient(ellipse at 50% 0%, rgba(255,213,74,0.10) 0%, transparent 35%),
    /* Feixe esquerdo (verde) */
    radial-gradient(ellipse at 25% 0%, rgba(0,255,120,0.14) 0%, transparent 40%),
    /* Feixe direito (azul) */
    radial-gradient(ellipse at 75% 0%, rgba(0,180,255,0.12) 0%, transparent 40%),
    /* Feixe extremo esquerdo (magenta) */
    radial-gradient(ellipse at 10% 0%, rgba(255,0,255,0.06) 0%, transparent 30%),
    /* Feixe extremo direito (ciano) */
    radial-gradient(ellipse at 90% 0%, rgba(0,255,255,0.06) 0%, transparent 30%),
    /* Neblina base */
    radial-gradient(ellipse at 50% 100%, rgba(0,255,120,0.05) 0%, transparent 60%),
    /* Sombra lateral para profundidade */
    linear-gradient(to right, rgba(0,0,0,0.6) 0%, transparent 15%, transparent 85%, rgba(0,0,0,0.6) 100%);
    box-shadow: inset 0 -80px 120px rgba(0,0,0,0.7), inset 0 80px 120px rgba(0,255,120,0.02);
    animation: mistFloat-b-j78fqcvty4 14s ease-in-out infinite alternate;
    mask-image: linear-gradient( to bottom, black 0%, black 35%, rgba(0,0,0,.5) 55%, transparent 100% );
}

@keyframes mistFloat-b-j78fqcvty4 {
    0% {
        opacity: 0.8;
        transform: scale(1) translateY(0);
    }

    100% {
        opacity: 1;
        transform: scale(1.02) translateY(-6px);
    }
}

/* ============================================================
   CAMADA 4 – Partículas flutuantes
   ============================================================ */
/* ============================================================
   PARTÍCULAS – MAIS FORTES E IMPACTANTES
   ============================================================ */
.particles[b-j78fqcvty4] {
    position: absolute;
    inset: 0;
    z-index: 8;
    pointer-events: none;
    overflow: hidden;
}

    .particles span[b-j78fqcvty4] {
        position: absolute;
        display: block;
        border-radius: 50%;
        /* Gradiente radial com brilho intenso */
        background: radial-gradient(circle at center, rgba(0, 255, 120, 0.95) 0%, rgba(0, 255, 120, 0) 80%);
        /* Sombra luminosa (glow) */
        box-shadow: 0 0 20px rgba(0, 255, 120, 0.8), 0 0 40px rgba(0, 255, 120, 0.4);
        animation: floatParticle-b-j78fqcvty4 linear infinite;
    }

        /* Cores e tamanhos individuais para variedade */
        .particles span:nth-child(1)[b-j78fqcvty4] {
            left: 10%;
            top: 20%;
            width: 10px;
            height: 10px;
            animation-duration: 8s;
            animation-delay: 0s;
            background: radial-gradient(circle at center, rgba(0, 255, 255, 0.95) 0%, rgba(0, 255, 255, 0) 80%);
            box-shadow: 0 0 30px rgba(0, 255, 255, 0.9), 0 0 60px rgba(0, 255, 255, 0.3);
        }

        .particles span:nth-child(2)[b-j78fqcvty4] {
            left: 25%;
            top: 40%;
            width: 8px;
            height: 8px;
            animation-duration: 11s;
            animation-delay: 1s;
            background: radial-gradient(circle at center, rgba(255, 213, 74, 0.95) 0%, rgba(255, 213, 74, 0) 80%);
            box-shadow: 0 0 25px rgba(255, 213, 74, 0.9), 0 0 50px rgba(255, 213, 74, 0.3);
        }

        .particles span:nth-child(3)[b-j78fqcvty4] {
            left: 45%;
            top: 10%;
            width: 14px;
            height: 14px;
            animation-duration: 9s;
            animation-delay: 2s;
            background: radial-gradient(circle at center, rgba(0, 180, 255, 0.95) 0%, rgba(0, 180, 255, 0) 80%);
            box-shadow: 0 0 35px rgba(0, 180, 255, 0.9), 0 0 70px rgba(0, 180, 255, 0.3);
        }

        .particles span:nth-child(4)[b-j78fqcvty4] {
            left: 65%;
            top: 60%;
            width: 9px;
            height: 9px;
            animation-duration: 13s;
            animation-delay: 0.5s;
            background: radial-gradient(circle at center, rgba(255, 0, 150, 0.9) 0%, rgba(255, 0, 150, 0) 80%);
            box-shadow: 0 0 25px rgba(255, 0, 150, 0.8), 0 0 50px rgba(255, 0, 150, 0.3);
        }

        .particles span:nth-child(5)[b-j78fqcvty4] {
            left: 85%;
            top: 30%;
            width: 12px;
            height: 12px;
            animation-duration: 10s;
            animation-delay: 3s;
            background: radial-gradient(circle at center, rgba(0, 255, 120, 0.95) 0%, rgba(0, 255, 120, 0) 80%);
            box-shadow: 0 0 30px rgba(0, 255, 120, 0.9), 0 0 60px rgba(0, 255, 120, 0.3);
        }

        .particles span:nth-child(6)[b-j78fqcvty4] {
            left: 15%;
            top: 70%;
            width: 7px;
            height: 7px;
            animation-duration: 14s;
            animation-delay: 1.5s;
            background: radial-gradient(circle at center, rgba(0, 255, 120, 0.9) 0%, rgba(0, 255, 120, 0) 80%);
            box-shadow: 0 0 20px rgba(0, 255, 120, 0.7);
        }

        .particles span:nth-child(7)[b-j78fqcvty4] {
            left: 55%;
            top: 80%;
            width: 8px;
            height: 8px;
            animation-duration: 12s;
            animation-delay: 0.2s;
            background: radial-gradient(circle at center, rgba(255, 213, 74, 0.9) 0%, rgba(255, 213, 74, 0) 80%);
            box-shadow: 0 0 22px rgba(255, 213, 74, 0.7);
        }

        .particles span:nth-child(8)[b-j78fqcvty4] {
            left: 75%;
            top: 15%;
            width: 10px;
            height: 10px;
            animation-duration: 7s;
            animation-delay: 2.5s;
            background: radial-gradient(circle at center, rgba(0, 180, 255, 0.95) 0%, rgba(0, 180, 255, 0) 80%);
            box-shadow: 0 0 28px rgba(0, 180, 255, 0.8);
        }

        .particles span:nth-child(9)[b-j78fqcvty4] {
            left: 35%;
            top: 5%;
            width: 9px;
            height: 9px;
            animation-duration: 16s;
            animation-delay: 0.8s;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 80%);
            box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
        }

        .particles span:nth-child(10)[b-j78fqcvty4] {
            left: 90%;
            top: 80%;
            width: 15px;
            height: 15px;
            animation-duration: 9s;
            animation-delay: 3.2s;
            background: radial-gradient(circle at center, rgba(0, 255, 120, 0.95) 0%, rgba(0, 255, 120, 0) 80%);
            box-shadow: 0 0 40px rgba(0, 255, 120, 0.9), 0 0 80px rgba(0, 255, 120, 0.4);
        }

@keyframes floatParticle-b-j78fqcvty4 {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-250px) scale(0.2);
        opacity: 0;
    }
}

/* ============================================================
   CAMADA 6 – Linhas de dados (scanlines estilizadas)
   ============================================================ */
.data-lines[b-j78fqcvty4] {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background: repeating-linear-gradient( 0deg, transparent 0px, transparent 4px, rgba(0,255,120,0.008) 4px, rgba(0,255,120,0.008) 5px, transparent 5px, transparent 10px );
    animation: scanMove-b-j78fqcvty4 8s linear infinite;
    mask-image: radial-gradient(ellipse at 50% 60%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 60%, black 20%, transparent 80%);
}

@keyframes scanMove-b-j78fqcvty4 {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 0 20px;
    }
}

/* ============================================================
   CAMADA 7 – Palco/Plataforma (base para os pódios)
   ============================================================ */
.stage[b-j78fqcvty4] {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 120px;
    z-index: 1;
    pointer-events: none;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.7));
}

.stage-glow[b-j78fqcvty4] {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,255,120,0.12) 0%, transparent 70%);
    filter: blur(20px);
    animation: stagePulse-b-j78fqcvty4 4s ease-in-out infinite alternate;
}

@keyframes stagePulse-b-j78fqcvty4 {
    0% {
        opacity: 0.5;
        transform: translateX(-50%) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.05);
    }
}

.stage-floor[b-j78fqcvty4] {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    border-radius: 100px 100px 30px 30px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%, rgba(0,255,120,0.04) 30%, rgba(0,0,0,0.5) 100%);
    border: 1px solid rgba(0,255,120,0.12);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.03), 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(0,255,120,0.04);
}

    /* Linha de luz na borda da plataforma */
    .stage-floor[b-j78fqcvty4]::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 10%;
        right: 10%;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(0,255,120,0.5) 15%, rgba(255,213,74,0.6) 45%, rgba(255,213,74,0.6) 55%, rgba(0,255,120,0.5) 85%, transparent);
        box-shadow: 0 0 20px rgba(0,255,120,0.2);
        animation: lineMove-b-j78fqcvty4 5s ease-in-out infinite alternate;
    }

@keyframes lineMove-b-j78fqcvty4 {
    0% {
        opacity: 0.4;
        width: 50%;
        left: 25%;
    }

    100% {
        opacity: 1;
        width: 70%;
        left: 15%;
    }
}

/* Reflexo abaixo da plataforma */
.stage-floor[b-j78fqcvty4]::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 5%;
    right: 5%;
    height: 60px;
    background: radial-gradient(ellipse at center, rgba(0,255,120,0.08) 0%, transparent 70%);
    filter: blur(20px);
    border-radius: 50%;
}

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 800px) {
    .scene[b-j78fqcvty4] {
        height: 600px;
        border-radius: 24px;
    }

    .ring-1[b-j78fqcvty4] {
        width: 300px;
        height: 300px;
        top: 15%;
        left: 15%;
    }

    .ring-2[b-j78fqcvty4] {
        width: 200px;
        height: 200px;
        top: 25%;
        left: 22%;
    }

    .ring-3[b-j78fqcvty4] {
        width: 120px;
        height: 120px;
        top: 32%;
        left: 30%;
    }

    .stage[b-j78fqcvty4] {
        width: 90%;
        height: 100px;
        bottom: 20px;
    }

    .stage-floor[b-j78fqcvty4] {
        height: 50px;
    }

        .stage-floor[b-j78fqcvty4]::after {
            height: 40px;
            bottom: -30px;
        }
}

@media (max-width: 500px) {
    .scene[b-j78fqcvty4] {
        height: 500px;
        border-radius: 16px;
    }

    .ring-1[b-j78fqcvty4] {
        width: 200px;
        height: 200px;
        top: 20%;
        left: 10%;
    }

    .ring-2[b-j78fqcvty4] {
        width: 140px;
        height: 140px;
        top: 28%;
        left: 18%;
    }

    .ring-3[b-j78fqcvty4] {
        width: 80px;
        height: 80px;
        top: 35%;
        left: 25%;
    }

    .stage[b-j78fqcvty4] {
        width: 95%;
        height: 80px;
        bottom: 15px;
    }

    .stage-floor[b-j78fqcvty4] {
        height: 40px;
    }
}

/* =========================================
   ENERGIA
========================================= */

.energy-line[b-j78fqcvty4] {
    position: absolute;
    height: 1px;
    background: linear-gradient( 90deg, transparent, rgba(0,255,0,.8), transparent );
    box-shadow: 0 0 15px rgba(0,255,0,.8);
}

.line1[b-j78fqcvty4] {
    width: 400px;
    top: 10%;
    animation: energyMove-b-j78fqcvty4 12s linear infinite;
}

.line2[b-j78fqcvty4] {
    width: 250px;
    top: 85%;
    animation: energyMove-b-j78fqcvty4 22s linear infinite;
}

@keyframes energyMove-b-j78fqcvty4 {

    from {
        left: -700px;
    }

    to {
        left: 120%;
    }
}
/* /Components/Pages/Dashboard/PodiumCard.razor.rz.scp.css */
.podium-card[b-8jp96coznu] {
    --podium-main: #00D26A;
    --podium-rgb: 0,210,106;
    position: relative;
    margin-inline:-20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .podium-card.gold[b-8jp96coznu] {
        --podium-main: #FFD54A;
        --podium-rgb: 255,213,74;
        --podium-score: #FFE57A;
        transform: translateY(-65px);
    }

    .podium-card.silver[b-8jp96coznu] {
        --podium-main: #D7DEE8;
        --podium-rgb: 215,222,232;
        --podium-score: #EEF4FC;
        transform: translateY(-15px);
    }

    .podium-card.bronze[b-8jp96coznu] {
        --podium-main: #D6894A;
        --podium-rgb: 214,137,74;
        --podium-score: #F0B37A;
        transform: translateY(16px);
    }

    .podium-card .rank-number[b-8jp96coznu] {
        color: var(--podium-main);
    }

.player-panel[b-8jp96coznu] {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    width: 260px;
    margin-top: 8px;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(var(--podium-rgb), .18);
    border-radius: 12px;
    background: linear-gradient( 180deg, rgba(255,255,255,.08), rgba(255,255,255,.02) );
    backdrop-filter: blur(14px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 18px rgba(var(--podium-rgb), .12);
    clip-path: polygon( 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px );
    animation: panelGlow-b-8jp96coznu 14s ease-in-out infinite;
}

    .player-panel[b-8jp96coznu]::after {
        content: "";
        position: absolute;
        top: -50%;
        left: -55%;
        width: 14px;
        height: 220%;
        transform: rotate(18deg);
        background: linear-gradient( 180deg, transparent, rgba(255,255,255,.18), rgba(255,255,255,.45), rgba(255,255,255,.18), transparent );
        filter: blur(3px);
        opacity: 0;
        pointer-events: none;
        animation: glassSweep-b-8jp96coznu 8s linear infinite;
    }

.player-name[b-8jp96coznu] {
    font-size: 15px;
    color: white;
    text-align: center;
}

.player-score[b-8jp96coznu] {
    color: var(--podium-score);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .04em;
    text-shadow: 0 0 8px rgba(var(--podium-rgb), .25);
}

.avatar-stage[b-8jp96coznu] {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    animation: avatarFloat-b-8jp96coznu 8s ease-in-out infinite;
}

.podium-rank[b-8jp96coznu] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -9px;
    z-index: 5;
}

.rank-number[b-8jp96coznu] {
    font-size: 54px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    user-select: none;
}

.player-panel[b-8jp96coznu] {
    margin-top: 8px;
    width: 260px;
    padding: 14px 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(var(--podium-rgb),.18);
    background: linear-gradient( 180deg, rgba(255,255,255,.05), rgba(255,255,255,.02) );
    backdrop-filter: blur(12px);
    clip-path: polygon( 10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px );
}

.podium-base[b-8jp96coznu] {
    position: relative;
    margin-top: 18px;
    width: 240px;
    height: 70px;
}

.base-left[b-8jp96coznu],
.base-right[b-8jp96coznu] {
    position: absolute;
    top: 28px;
    width: 92px;
    height: 12px;
    border-top: 2px solid rgba(var(--podium-rgb), .55);
    border-bottom: 2px solid rgba(var(--podium-rgb), .30);
    clip-path: polygon( 0 50%, 12% 0, 100% 0, 88% 100%, 0 100% );
}

.base-left[b-8jp96coznu] {
    left: 0;
    animation: segmentPulse-b-8jp96coznu 5s infinite;
}

.base-right[b-8jp96coznu] {
    right: 0;
    transform: scaleX(-1);
    animation: segmentPulse-b-8jp96coznu 5s infinite;
    animation-delay: 1400ms;
}

.base-center[b-8jp96coznu] {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 18px;
    top: 25px;
    border: 2px solid rgba(var(--podium-rgb),.6);
    border-radius: 999px;
    animation: segmentPulse-b-8jp96coznu 5s infinite;
    animation-delay: 700ms;
}

.base-core[b-8jp96coznu] {
    position: absolute;
    left: 50%;
    top: 21px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--podium-main);
    box-shadow: 0 0 12px var(--podium-main), 0 0 28px rgba(var(--podium-rgb),.45);
    animation: corePulse-b-8jp96coznu 3.8s ease-in-out infinite;
}

@keyframes avatarFloat-b-8jp96coznu {
    0%,100% {
        transform: translateY(8px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes corePulse-b-8jp96coznu {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.08);
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

@keyframes coreGlow-b-8jp96coznu {
    0%,100% {
        box-shadow: 0 0 10px var(--podium-main), 0 0 28px rgba(var(--podium-rgb),.35);
    }

    50% {
        box-shadow: 0 0 18px var(--podium-main), 0 0 48px rgba(var(--podium-rgb),.65);
    }
}

@keyframes segmentPulse-b-8jp96coznu {
    0%, 100% {
        opacity: .45;
        filter: brightness(1);
    }

    20% {
        opacity: .70;
        filter: brightness(1.1);
    }

    50% {
        opacity: 1;
        filter: brightness(1.35);
    }

    80% {
        opacity: .70;
        filter: brightness(1.1);
    }
}

.ambient-light[b-8jp96coznu] {
    position: absolute;
    left: 50%;
    bottom: -18px;
    transform: translateX(-50%);
    width: 220px;
    height: 40px;
    border-radius: 50%;
    background: rgba(var(--podium-rgb), .25);
    filter: blur(28px);
    opacity: .18;
    pointer-events: none;
    z-index: -1;
    animation: ambientPulse-b-8jp96coznu 7s ease-in-out infinite;
}

@keyframes ambientPulse-b-8jp96coznu {

    0%,100% {
        opacity: .14;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: .28;
        transform: translateX(-50%) scale(1.08);
    }
}

@keyframes panelGlow-b-8jp96coznu {

    0%,100% {
        box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 18px rgba(var(--podium-rgb), .12);
    }

    3% {
        box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 0 28px rgba(var(--podium-rgb), .22);
    }

    7% {
        box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 18px rgba(var(--podium-rgb), .12);
    }
}

@keyframes glassSweep-b-8jp96coznu {

    0% {
        left: -55%;
        opacity: 0;
    }

    2% {
        opacity: .7;
    }

    7% {
        left: 155%;
        opacity: .7;
    }

    8% {
        opacity: 0;
    }

    100% {
        left: 155%;
        opacity: 0;
    }
}
/* /Tools/Components/SessaoNaoAutorizada.razor.rz.scp.css */
.session-container[b-4kz7xibqb9] {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 30px;
    background: radial-gradient( circle at top left, rgba(0,150,0,.15), transparent 35% ), radial-gradient( circle at bottom right, rgba(0,150,0,.10), transparent 40% ), #010701;
}

/* Glow central */

.session-glow[b-4kz7xibqb9] {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(0,255,100,.12), transparent 70% );
    filter: blur(90px);
    z-index: 0;
}

/* Partículas */

.particles[b-4kz7xibqb9] {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

    .particles span[b-4kz7xibqb9] {
        position: absolute;
        bottom: -20px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: #00ff66;
        box-shadow: 0 0 10px #00ff66;
        animation: particleUp-b-4kz7xibqb9 linear infinite;
    }

@keyframes particleUp-b-4kz7xibqb9 {

    from {
        transform: translateY(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    to {
        transform: translateY(-110vh);
        opacity: 0;
    }
}

/* Card */

.session-card[b-4kz7xibqb9] {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 50px;
    border-radius: 30px;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(0,255,0,.15);
    box-shadow: 0 0 40px rgba(0,255,0,.08);
}

/* Ícone */

.session-icon[b-4kz7xibqb9] {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff66;
    font-size: 50px;
    background: rgba(0,255,0,.08);
    border: 1px solid rgba(0,255,0,.15);
    box-shadow: 0 0 25px rgba(0,255,0,.15);
    animation: pulseGlow-b-4kz7xibqb9 3s infinite;
}

@keyframes pulseGlow-b-4kz7xibqb9 {

    0%,100% {
        box-shadow: 0 0 25px rgba(0,255,0,.15);
    }

    50% {
        box-shadow: 0 0 45px rgba(0,255,0,.35);
    }
}

/* Título */

.session-card h1[b-4kz7xibqb9] {
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: .5px;
}

/* Texto */

.session-card p[b-4kz7xibqb9] {
    color: rgba(255,255,255,.65);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Frase */

.session-quote[b-4kz7xibqb9] {
    margin-bottom: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255,255,255,.75);
    font-style: italic;
    font-size: 15px;
}

    .session-quote i[b-4kz7xibqb9] {
        color: #00ff66;
        text-shadow: 0 0 10px rgba(0,255,100,.5);
    }

/* Botão */

.btn-login[b-4kz7xibqb9] {
    width: 100%;
    border: none;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient( 135deg, #009600, #00cc00 );
    color: white;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 0 20px rgba(0,255,0,.20);
}

    .btn-login:hover[b-4kz7xibqb9] {
        transform: translateY(-3px);
        box-shadow: 0 0 30px rgba(0,255,0,.40);
    }
