/* Estilos gerais */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header */
.navbar-brand {
    font-weight: 700;
    color: #7981ef !important;
    font-size: 1.5rem;
}

/* Cards */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

.card-header {
    font-weight: 600;
}

/* Botőes */
.btn-primary {
    background-color: #7981ef;
    border-color: #7981ef;
}

    .btn-primary:hover {
        background-color: #6a72d6;
        border-color: #6a72d6;
    }

/* Formulários */
.form-control {
    border-radius: 4px;
    padding: 10px 15px;
}

    .form-control:focus {
        border-color: #7981ef;
        box-shadow: 0 0 0 0.25rem rgba(121, 129, 239, 0.25);
    }

/* Layout */
.container {
    max-width: 1200px;
}

/* Responsividade */
@media (max-width: 768px) {
    .card {
        margin-bottom: 20px;
    }
}
