/* /Pages/CadastroPage.cshtml.rz.scp.css */
/* --- FUNDO LIMPO --- */
.register-background[b-r7vx87ni7i] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f4f8;
    z-index: -1;
}

/* --- CAIXA DE CADASTRO --- */
.register-box[b-r7vx87ni7i] {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    width: 100%;
    max-width: 650px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0f2;
}

/* --- ESTILO DOS INPUTS --- */
.form-control[b-r7vx87ni7i], .form-select[b-r7vx87ni7i] {
    background-color: #fff;
    border: 1px solid #ced4da;
    color: #333;
    padding: 10px 12px;
    border-radius: 6px;
}

    .form-control:focus[b-r7vx87ni7i], .form-select:focus[b-r7vx87ni7i] {
        border-color: #0d6efd;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
    }

/* --- CORREÇÃO DO TOGGLE (ALUNO/INSTRUTOR) --- */

/* Estado Padrão (Não selecionado) */
.btn-outline-primary[b-r7vx87ni7i] {
    background-color: #fff; /* Força branco */
    color: #0d6efd;
    border-color: #0d6efd;
}

/* Estado Selecionado (Aqui estava o bug) */
.btn-check:checked + .btn-outline-primary[b-r7vx87ni7i] {
    background-color: #0d6efd !important; /* Força Azul */
    color: #ffffff !important; /* Força Texto Branco */
    border-color: #0d6efd;
    box-shadow: none;
}

/* Hover */
.btn-outline-primary:hover[b-r7vx87ni7i] {
    background-color: #e7f1ff;
    color: #0d6efd;
}

/* --- RESTANTE --- */
.btn-back[b-r7vx87ni7i] {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
}

    .btn-back:hover[b-r7vx87ni7i] {
        color: #0d6efd;
    }

.form-section[b-r7vx87ni7i] {
    animation: fadeIn-b-r7vx87ni7i 0.3s ease-in-out;
}

@keyframes fadeIn-b-r7vx87ni7i {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}
/* /Pages/Index.cshtml.rz.scp.css */
/* Permite que o botão "Saiba mais" deslize suavemente até a seção */
html[b-l6xhq2pxit] {
    scroll-behavior: smooth;
}

/* --- FUNDOS --- */
.section-white[b-l6xhq2pxit] {
    background-color: #ffffff;
    padding: 80px 0;
}

.section-grey[b-l6xhq2pxit] {
    background-color: #f8f9fa;
    padding: 80px 0;
}

/* --- HERO SECTION --- */
.hero-wrapper[b-l6xhq2pxit] {
    /* Aumentei o padding superior para dar mais ar */
    padding-top: 60px;
}

/* --- CARDS DE INFORMAÇÃO (Stats e Benefícios) --- */
.info-card[b-l6xhq2pxit] {
    background: white;
    border: 1px solid #eef0f2;
    border-radius: 20px; /* Mais arredondado */
    padding: 2.5rem 1.5rem; /* Mais espaçamento interno */
    height: 100%;
    text-align: center;
    /* Sombra fixa para "descolar" do fundo branco */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .info-card:hover[b-l6xhq2pxit] {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15); /* Sombra azulada no hover */
        border-color: #dee2e6;
    }

/* Estilo dos números/textos grandes */
.stat-number[b-l6xhq2pxit] {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-label[b-l6xhq2pxit] {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- ÍCONES E DETALHES --- */
.step-icon-circle[b-l6xhq2pxit] {
    width: 80px;
    height: 80px;
    background-color: #e7f1ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem auto;
}

.benefit-icon[b-l6xhq2pxit] {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

/* --- ÁREA DO INSTRUTOR --- */
.instructor-launch-section[b-l6xhq2pxit] {
    background: #212529;
    color: white;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

    .instructor-launch-section[b-l6xhq2pxit]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
    }



/* --- COMO FUNCIONA (Visual Melhorado) --- */

/* Container para alinhar a linha conectora */
.steps-container[b-l6xhq2pxit] {
    position: relative;
    padding: 20px 0;
}

/* A linha tracejada que conecta os passos (Só aparece no Desktop) */
@media (min-width: 768px) {
    .steps-container[b-l6xhq2pxit]::before {
        content: '';
        position: absolute;
        top: 55px; /* Ajuste vertical para ficar no meio dos ícones */
        left: 15%;
        right: 15%;
        height: 2px;
        background-image: linear-gradient(to right, #dee2e6 50%, rgba(255,255,255,0) 0%);
        background-position: bottom;
        background-size: 15px 1px;
        background-repeat: repeat-x;
        z-index: 0; /* Fica atrás dos ícones */
    }
}

/* O cartão do passo individual */
.step-card[b-l6xhq2pxit] {
    position: relative;
    z-index: 1; /* Garante que fique acima da linha */
    background: transparent;
    padding: 10px;
    transition: transform 0.3s ease;
}

    .step-card:hover[b-l6xhq2pxit] {
        transform: translateY(-10px); /* Pula para cima ao passar o mouse */
    }

/* O círculo do ícone com gradiente */
.step-icon-circle[b-l6xhq2pxit] {
    width: 100px; /* Maior que antes */
    height: 100px;
    /* Gradiente Moderno (Azul para Ciano) */
    background: linear-gradient(135deg, #0d6efd 0%, #0dcaf0 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem auto;
    /* Sombra colorida suave (Glow) */
    box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
    border: 5px solid #ffffff; /* Borda branca grossa para separar da linha tracejada */
    position: relative;
}

/* O numerozinho (badge) flutuante */
.step-number-badge[b-l6xhq2pxit] {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background-color: #212529; /* Preto/Cinza Escuro */
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}


/* --- SEÇÃO GAMIFICAÇÃO --- */

/* Área dos Elementos Visuais (Lado Esquerdo) */
.game-ui-container[b-l6xhq2pxit] {
    position: relative;
    height: 400px; /* Altura reservada para os elementos flutuantes */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Principal (O "Perfil" do Jogador) */
.game-profile-card[b-l6xhq2pxit] {
    background: white;
    width: 280px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border: 1px solid #eef0f2;
    z-index: 2;
    position: relative;
}

/* Barra de Progresso Customizada */
.xp-bar[b-l6xhq2pxit] {
    height: 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.xp-fill[b-l6xhq2pxit] {
    height: 100%;
    background: linear-gradient(90deg, #0d6efd 0%, #0dcaf0 100%);
    width: 75%; /* Simulação de progresso */
}

/* Elementos Flutuantes (Badges/Conquistas) */
.floating-badge[b-l6xhq2pxit] {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float-b-l6xhq2pxit 4s ease-in-out infinite;
    z-index: 3;
}

/* Posições dos elementos flutuantes */
.badge-top-right[b-l6xhq2pxit] {
    top: 20px;
    right: 0px;
    animation-delay: 0s;
}

.badge-bottom-left[b-l6xhq2pxit] {
    bottom: 40px;
    left: 0px;
    animation-delay: 2s;
}

/* Animação de flutuação suave */
@keyframes float-b-l6xhq2pxit {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Ícone de troféu dourado */
.gold-icon[b-l6xhq2pxit] {
    background: #fff3cd;
    color: #ffc107;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
/* /Pages/LoginPage.cshtml.rz.scp.css */
/* --- FUNDO (Light Clean Theme) --- */
.login-background[b-yswqmwet6s] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f4f8; /* Cinza azulado muito suave (AliceBlue modernizado) */
    background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
    background-size: 20px 20px; /* Textura sutil de pontos */
    z-index: -1;
}

/* --- CARTÃO DE LOGIN --- */
.login-box[b-yswqmwet6s] {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    /* Sombra elegante e suave */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0f2;
    z-index: 10;
}

/* --- ÍCONE DO AVATAR --- */
.avatar-icon[b-yswqmwet6s] {
    width: 80px;
    height: 80px;
    background: #e7f1ff; /* Azul bem claro */
    color: #0d6efd; /* Azul principal */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 4px solid #ffffff; /* Borda branca para destacar */
}

/* --- INPUTS CUSTOMIZADOS (Claros) --- */
.input-group-text[b-yswqmwet6s] {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-right: none;
    color: #0d6efd;
    border-radius: 12px 0 0 12px;
}

.form-control[b-yswqmwet6s] {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-left: none;
    color: #333;
    padding: 12px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s;
}

    /* Efeito de Foco nos Inputs */
    .form-control:focus[b-yswqmwet6s] {
        background-color: #ffffff;
        border-color: #0d6efd;
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1); /* Glow azul suave */
    }

        .form-control:focus + .input-group-text[b-yswqmwet6s],
        .input-group:focus-within .input-group-text[b-yswqmwet6s] {
            border-color: #0d6efd;
            background-color: #ffffff;
        }

    /* Cor do placeholder */
    .form-control[b-yswqmwet6s]::placeholder {
        color: #adb5bd;
    }

/* --- BOTÃO DE AÇÃO --- */
.btn-play[b-yswqmwet6s] {
    background: linear-gradient(90deg, #0d6efd 0%, #0dcaf0 100%); /* Azul p/ Ciano */
    border: none;
    padding: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .btn-play:hover[b-yswqmwet6s] {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    }

/* --- BOTÃO VOLTAR --- */
.btn-back[b-yswqmwet6s] {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
    font-size: 0.9rem;
}

    .btn-back:hover[b-yswqmwet6s] {
        color: #0d6efd;
    }

/* --- ÍCONES FLUTUANTES (Marca d'água) --- */
.floating-icon[b-yswqmwet6s] {
    position: absolute;
    color: #0d6efd;
    opacity: 0.08; /* Aumentei um pouquinho para ficar visível */
    z-index: 0; /* MUDANÇA: 0 faz ele aparecer em cima do fundo branco */
    pointer-events: none; /* IMPORTANTE: Permite clicar através do ícone */
    animation: float-b-yswqmwet6s 6s infinite ease-in-out;
}

/* Garante que o texto e inputs fiquem NA FRENTE dos ícones */
.login-box form[b-yswqmwet6s],
.login-box .text-center[b-yswqmwet6s],
.login-box .avatar-icon[b-yswqmwet6s] {
    position: relative;
    z-index: 2;
}

/* Posições */
.icon-1[b-yswqmwet6s] {
    font-size: 6rem;
    top: -20px;
    left: -20px;
    left: -20px;
    animation-delay: 0s;
}

.icon-2[b-yswqmwet6s] {
    font-size: 7rem; /* Ícone grande */
    bottom: -10px;
    right: -10px;
    animation-delay: 2s;
    transform: rotate(-15deg); /* Dá um estilo mais dinâmico */
}

@keyframes float-b-yswqmwet6s {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}
/* --- UTILITÁRIOS --- */
.hover-underline:hover[b-yswqmwet6s] {
    text-decoration: underline !important;
}

.hover-scale[b-yswqmwet6s] {
    transition: transform 0.2s;
    display: inline-block;
}

    .hover-scale:hover[b-yswqmwet6s] {
        transform: scale(1.05);
    }
/* /Pages/Shared/_Layout.cshtml.rz.scp.css */
/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

a.navbar-brand[b-12yai2gq9d] {
  white-space: normal;
  text-align: center;
  word-break: break-all;
}

a[b-12yai2gq9d] {
  color: #0077cc;
}

.btn-primary[b-12yai2gq9d] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.nav-pills .nav-link.active[b-12yai2gq9d], .nav-pills .show > .nav-link[b-12yai2gq9d] {
  color: #fff;
  background-color: #1b6ec2;
  border-color: #1861ac;
}

.border-top[b-12yai2gq9d] {
  border-top: 1px solid #e5e5e5;
}
.border-bottom[b-12yai2gq9d] {
  border-bottom: 1px solid #e5e5e5;
}

.box-shadow[b-12yai2gq9d] {
  box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy[b-12yai2gq9d] {
  font-size: 1rem;
  line-height: inherit;
}

.footer[b-12yai2gq9d] {
  position: absolute;
  bottom: 0;
  width: 100%;
  white-space: nowrap;
  line-height: 60px;
}
/* /Pages/TesteLayout.cshtml.rz.scp.css */
/* Fundo que cobre a tela toda */
.login-background[b-iccfrvo2s1] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0d6efd 0%, #000428 100%);
    z-index: -1; /* Fica atrás de tudo */
}

/* O Cartão em si */
.login-card[b-iccfrvo2s1] {
    background: #ffffff;
    width: 100%;
    max-width: 420px; /* Largura ideal */
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    /* Efeito de vidro sutil nas bordas */
    border: 4px solid rgba(255, 255, 255, 0.2);
    background-clip: padding-box;
}

/* Avatar circular */
.avatar-circle[b-iccfrvo2s1] {
    width: 80px;
    height: 80px;
    background: #e7f1ff;
    color: #0d6efd;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

/* Wrapper para segurar ícone + input */
.input-wrapper[b-iccfrvo2s1] {
    position: relative;
}

/* O Input estilisado */
.game-input[b-iccfrvo2s1] {
    padding-left: 45px; /* Espaço para o ícone não ficar em cima do texto */
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
}

    .game-input:focus[b-iccfrvo2s1] {
        border-color: #0d6efd;
        box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
        background-color: #fff;
    }

/* O Ícone dentro do input */
.input-icon[b-iccfrvo2s1] {
    position: absolute;
    left: 15px;
    top: 50%; /* Meio exato */
    transform: translateY(-50%); /* Corrige o alinhamento */
    color: #adb5bd;
    font-size: 1.2rem;
    z-index: 5;
}

/* Botão de Entrar */
.btn-game[b-iccfrvo2s1] {
    background: linear-gradient(90deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
    letter-spacing: 1px;
    transition: transform 0.2s;
}

    .btn-game:hover[b-iccfrvo2s1] {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    }

/* Animação dos ícones de fundo */
.floating-icon[b-iccfrvo2s1] {
    position: absolute;
    color: rgba(255, 255, 255, 0.05); /* Bem transparente */
    z-index: -1;
    animation: float-b-iccfrvo2s1 6s infinite ease-in-out;
}

.icon-1[b-iccfrvo2s1] {
    font-size: 6rem;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.icon-2[b-iccfrvo2s1] {
    font-size: 4rem;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
}

.icon-3[b-iccfrvo2s1] {
    font-size: 8rem;
    top: 40%;
    right: 50%;
    animation-delay: 4s;
    opacity: 0.03;
}

@keyframes float-b-iccfrvo2s1 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}
