
style_final.css
/* =========================================
   ESTILO GLOBAL - PORTAL FÊNIX (GOLD EDITION)
   ========================================= */

/* 1. RESET DE CORES */
* {
    color: #000000 !important;
}

/* 2. CORPO E FUNDO */
body { 
    background-color: #FFFBE6 !important; 
    font-family: 'Inter', sans-serif; 
    padding: 40px 0;
    background-image: radial-gradient(#FFD700 1px, transparent 1px);
    background-size: 20px 20px;
    min-height: 100vh;
}

/* 3. CARTÕES */
.login-card, .fenix-card, .card, .cat-card, .card-fenix { 
    background-color: #FFFFFF !important; 
    border: 2px solid #FFE4B5; 
    border-radius: 24px; 
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    margin-bottom: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* --- AJUSTE PARA IMAGENS E PLACEHOLDERS --- */

.img-container {
    height: 160px;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* Ícone de usuário que aparece no fundo */
.img-container::after {
    content: '\F4E1'; /* Bootstrap Icon: Person Circle */
    font-family: 'bootstrap-icons';
    font-size: 4rem;
    color: #ccc !important; /* Cor cinza para o ícone */
    position: absolute;
    z-index: 1;
}

/* A imagem fica na frente do ícone */
.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    display: block;
}

/* Esconde a imagem se ela estiver quebrada ou sem fonte */
.img-container img:not([src]), 
.img-container img[src=""], 
.img-container img.broken {
    opacity: 0 !important;
    visibility: hidden !important;
}

/* 4. TIPOGRAFIA */
h1, h2, h3, h4, h5, h6, .section-title {
    color: #000000 !important;
    font-weight: 900 !important; 
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

p, span, div, label, td, th {
    color: #333333 !important; 
}

.text-muted {
    color: #666666 !important;
}

/* Destaques em Laranja */
.text-orange, span[style*="color:#ff8c00"] {
    color: #FF6B00 !important; 
}

/* 5. INPUTS */
.form-control, .form-select, input, select { 
    background-color: #FFFFFF !important;
    border: 2px solid #FF6B00 !important; 
    color: #000000 !important;
    font-weight: 700 !important;
    border-radius: 12px; 
    padding: 12px;
    box-shadow: 3px 3px 0px rgba(255, 107, 0, 0.1); 
    margin-bottom: 15px;
}

/* 6. BOTÕES */
.btn-fenix, .btn-primary, .btn-cta, button[type="submit"] { 
    background: linear-gradient(135deg, #FF6B00 0%, #FF4500 100%) !important;
    color: #FFFFFF !important; 
    border: 2px solid #000000 !important; 
    font-weight: 800 !important; 
    box-shadow: 4px 4px 0px #000000 !important; 
    text-transform: uppercase;
    border-radius: 12px;
    transition: all 0.2s ease;
    padding: 12px 24px;
}

.btn-fenix:hover { 
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0px #000000 !important;
}

/* Ícones */
.bi { color: #FF6B00 !important; }