/* ------------------------------
   BASE DO SISTEMA
--------------------------------*/
body {
    background-color: #f7f7f7;
    font-family: "Inter", "Segoe UI", sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
    color: #3a3a3a;
}

/* Espaçamento padrão */
.container {
    padding-bottom: 60px;
}

/* ------------------------------
   NAVBAR
--------------------------------*/
.navbar {
    background: white !important;
    border-bottom: 1px solid #e6e6e6;
}

.navbar-brand {
    font-weight: 700;
    color: #b89232 !important; /* dourado elegante */
}

.nav-link {
    font-weight: 500;
    color: #555 !important;
    margin-right: 12px;
}

.nav-link:hover {
    color: #b89232 !important;
}

/* ------------------------------
   BOTÕES (GOLD PADRÃO)
--------------------------------*/
.btn-gold {
    background: linear-gradient(135deg, #d4b253, #b89232);
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 6px;
    transition: 0.2s;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e6c46b, #c6a23c);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid #b89232;
    color: #b89232;
    font-weight: 500;
    border-radius: 6px;
}

.btn-outline:hover {
    background: #b89232;
    color: white;
}

.btn-danger {
    background: #c62828;
    border: none;
    font-weight: 500;
}

.btn-danger:hover {
    background: #b71c1c;
}

/* ------------------------------
   CARDS
--------------------------------*/
.card {
    border: none !important;
    border-radius: 10px;
    background: white;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.06);
}

.card h5 {
    color: #444;
    font-weight: 600;
}

/* ------------------------------
   FORMULÁRIOS
--------------------------------*/
.form-label {
    font-weight: 500;
    color: #444;
}

.form-control {
    border-radius: 6px;
    border: 1px solid #dcdcdc;
}

.form-control:focus {
    border-color: #b89232;
    box-shadow: 0 0 0 0.15rem rgba(184,146,50,.25);
}

/* Checkbox alinhado */
input[type="checkbox"] {
    transform: scale(1.2);
    margin-right: 6px;
}

/* ------------------------------
   TABELAS
--------------------------------*/
.table {
    background: white !important;
}

.table thead th {
    background: #f1f1f1;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
}

.table td {
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fafafa;
}

/* ------------------------------
   FOOTER
--------------------------------*/
.footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    font-size: 14px;
    color: #777;
}

/* ------------------------------
   UPLOAD DE FOTOS
--------------------------------*/
.ratio img {
    border-radius: 10px;
}

/* ------------------------------
   ANIMAÇÕES SUAVES
--------------------------------*/
.card, .btn {
    transition: 0.2s ease-in-out;
}

/* =====================================================
   FORÇAR LOGO E CABEÇALHO NA IMPRESSÃO
   ===================================================== */

.logo {
    max-width: 180px;
    display: block;
    margin: 0 auto 15px auto;
}



/* ===== FORÇAR LOGO NA IMPRESSÃO ===== */
@media print {
    img {
        display: block !important;
        visibility: visible !important;
        max-width: 200px !important;
    }

    .logo-print {
        display: block !important;
        visibility: visible !important;
        text-align: center;
        margin-bottom: 20px;
    }
}




















    }
}





































