/* assets/css/style.css - Estilo completo */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.btn {
    border-radius: 0.6rem;
    font-weight: 600;
    padding: 0.65rem 1.2rem;
    transition: all 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

.form-control, .form-select {
    border-radius: 0.6rem;
    padding: 0.65rem 1rem;
    border: 1.5px solid #e2e8f0;
}

.form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.table {
    border-radius: 0.8rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.table th {
    background: #f8f9fa;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.table td {
    vertical-align: middle;
}

.badge {
    font-weight: 600;
    padding: 0.4em 0.8em;
}

.alert {
    border-radius: 0.8rem;
    border: none;
    font-weight: 500;
}

.pagination .page-link {
    border-radius: 0.5rem;
    margin: 0 0.2rem;
    font-weight: 600;
}

.pagination .page-item.active .page-link {
    background: #667eea;
    border-color: #667eea;
}