@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@300;400;600;700&display=swap');

body {
    font-family: 'Libre Franklin', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card {
    border: none;
    border-radius: 10px;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

/* Melhorias Mobile */
@media (max-width: 576px) {
    h2, h3 { font-size: 1.5rem; }
    .card-body { padding: 1rem; }
    .btn { padding: 0.6rem 1rem; font-size: 0.9rem; }
    .table thead { display: none; }
    .table, .table tbody, .table tr, .table td { display: block; width: 100%; }
    .table tr { margin-bottom: 15px; border: 1px solid #dee2e6; border-radius: 8px; background: #fff; }
    .table td { text-align: right; padding-left: 50%; position: relative; border-bottom: 1px solid #eee; }
    .table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        font-weight: bold;
        text-align: left;
    }
    .table td:last-child { border-bottom: 0; text-align: center; padding-left: 0; }
    .table td:last-child::before { content: ""; }
}

.navbar-brand { font-weight: 700; letter-spacing: -0.5px; }
.form-control, .form-select { border-radius: 8px; padding: 0.75rem; }


.btn-primary {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.badge {
    padding: 0.5em 0.8em;
    font-weight: 500;
}

/* Estilos para Mobile First */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .table-responsive {
        border: 0;
    }
}
