/* STYLE-BIGBEE.CSS
    Paleta de cores e componentes para BigBee Hub 
*/

:root {
    /* Tons de Fundo */
    --bg-dark: #0a0a0b;
    --bg-card: rgba(255, 255, 255, 0.03);
    
    /* Paleta BigBee (Âmbar/Dourado) */
    --primary: #f59e0b;       /* Dourado principal */
    --primary-glow: rgba(245, 158, 11, 0.4); 
    --accent: #fbbf24;        /* Dourado brilhante */
    
    /* Cores de Suporte */
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.6);
    --border-color: rgba(245, 158, 11, 0.2);
}

/* 1. Estrutura do Fundo */
body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    margin: 0;
    padding: 0;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow-amber {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-glow);
    filter: blur(100px);
}

.honeycomb-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.12; /* Ajuste fino conforme as fotos */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'%3E%3Cpath d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100' fill='none' stroke='%23f59e0b' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 56px 100px;
}

/* 2. Componentes (Cards e Botões) */
.bigbee-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    padding: 2rem;
    transition: all 0.3s ease;
}

.bigbee-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-5px);
}

.btn-bigbee {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000 !important;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-bigbee:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--primary);
    filter: brightness(1.1);
}

/* 3. Tipografia */
.hero-title {
    color: var(--text-main);
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Estilo dos números dos passos */
.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--primary-glow);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Destaque para o último passo (O resultado) */
.bg-gradient-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    color: #000 !important;
    border: none !important;
}

/* Ajuste das setas no mobile */
@media (max-width: 767px) {
    .step-number::after {
        content: '\F128'; /* Ícone de seta para baixo do Bootstrap Icons */
        font-family: 'bootstrap-icons';
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--primary);
        opacity: 0.5;
        font-size: 1.5rem;
    }
    /* Remove a seta do último passo no mobile */
    .col-md-4 .step-number::after { display: none; }
}

/* 1. Define a largura da barra (bem fina) */
.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

/* 2. O trilho (fundo da barra) - deixamos transparente */
.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

/* 3. O "Thumb" (a parte que desliza) */
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.2); /* Dourado bem clarinho/transparente */
    border-radius: 20px;
    transition: all 0.3s ease;
}

/* 4. Quando o usuário passa o mouse na área de scroll */
.custom-scrollbar:hover::-webkit-scrollbar-thumb {
    background: rgba(245, 158, 11, 0.5); /* Dourado fica mais visível */
}

/* Para Firefox */
.custom-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: rgba(245, 158, 11, 0.3) transparent;
}

/* Linha horizontal discreta em laranja/âmbar */
hr, .border-secondary\/30 {
    border-color: rgba(245, 158, 11, 0.2) !important;
    margin: 3rem 0;
}

/* Ajuste de Z-Index para o Hover não entrar embaixo do cabeçalho */
.bigbee-card {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.bigbee-card:hover {
    z-index: 5; /* Garante que fique acima de outros elementos do corpo */
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

/* Padronização dos Títulos dos Passos para Leitura */
.step-title {
    color: #ffffff !important; /* Branco para contraste total */
    font-weight: 700;
    margin-top: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.step-description {
    color: rgba(255, 255, 255, 0.7) !important; /* Cinza claro/branco leitoso */
    font-size: 0.875rem;
}

/* Estilo do Cabeçalho Fixo com Interação */
.header-fixo {
    transition: all 0.3s ease;
    background: transparent;
}


/* Estado Inicial dos Cards de Passo */
.step-card {
    background: rgba(255, 255, 255, 0.03); /* Fundo quase invisível */
    border: 1px solid rgba(245, 158, 11, 0.1); /* Borda laranja bem discreta */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

/* Texto Inicial Cinza */
.step-card .step-description {
    color: rgba(255, 255, 255, 0.4) !important; /* Cinza apagado */
    transition: color 0.3s ease;
}

/* Efeito de HOVER (Iluminação) */
.step-card:hover {
    background: rgba(245, 158, 11, 0.08); /* Fundo ganha cor laranja discreta */
    border-color: rgba(245, 158, 11, 0.6); /* Borda acende */
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15); /* Brilho externo (glow) */
    transform: translateY(-5px);
}

/* Texto fica Branco no Hover */
.step-card:hover .step-description {
    color: #ffffff !important;
}

/* A barra laranja superior sempre visível para manter o padrão */
.step-badge-line {
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
    margin-bottom: 15px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.step-card:hover .step-badge-line {
    opacity: 1;
    box-shadow: 0 0 10px var(--primary);
}

/* Estilo dos ícones dos passos */
.step-card i.bi {
    font-size: 1.2rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

/* Quando o card é iluminado (hover), o ícone também brilha */
.step-card:hover i.bi {
    opacity: 1;
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px var(--primary));
}

/* Ajuste na linha superior para acompanhar o brilho */
.step-badge-line {
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    border-radius: 2px;
    margin-bottom: 15px;
    opacity: 0.3; /* Começa mais apagada */
    transition: opacity 0.3s ease;
}

.step-card:hover .step-badge-line {
    opacity: 1;
}

/* Transforma o card de formulário em Vidro */
.card, .x-forms-card-center { 
    background: rgba(20, 20, 22, 0.8) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(245, 158, 11, 0.2) !important;
    color: white !important;
}

/* Ajusta os labels para branco */
label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Estiliza os campos de Input para o tema Dark */
input.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transition: all 0.3s ease;
}

input.form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.2) !important;
}

/* Breadcrumb discreto */
.breadcrumb-item a, .breadcrumb-item.active {
    color: var(--primary) !important;
    opacity: 0.7;
}


/* Container do Login - Efeito Vidro Fumê */
.card, .x-forms-card-center { 
    background: rgba(18, 18, 20, 0.75) !important; /* Fundo escuro translúcido */
    backdrop-filter: blur(15px) saturate(150%); /* O segredo do vidro */
    border: 1px solid rgba(245, 158, 11, 0.15) !important; /* Borda âmbar sutil */
    border-radius: 20px !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

/* Cabeçalho do Card (remover o fundo branco do print antigo) */
.card-header, .x-forms-card-header {
    background: rgba(255, 255, 255, 0.03) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 2rem 1rem !important;
}

/* Estilização dos Inputs (Modo Dark) */
.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 12px 15px !important;
}

.form-control:focus {
    border-color: #f59e0b !important; /* Cor BigBee */
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Labels e Textos */
label {
    color: rgba(255, 255, 255, 0.7) !important;
    font-weight: 500;
}

.text-muted {
    color: rgba(255, 255, 255, 0.5) !important;
}