
:root {
    --bs-primary-rgb: 8, 93, 172;
    --bs-body-font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f7fc;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

.btn-primary {
    --bs-btn-bg: rgb(var(--bs-primary-rgb));
    --bs-btn-border-color: rgb(var(--bs-primary-rgb));
    --bs-btn-hover-bg: rgb(12, 110, 201);
    --bs-btn-hover-border-color: rgb(12, 110, 201);
}

.top-card {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.top-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.top-card .icon {
    font-size: 3rem;
    color: rgb(var(--bs-primary-rgb));
    margin-bottom: 1rem;
}

.top-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.type-card {
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    padding: 1.25rem;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.type-card:hover {
    border-color: rgb(var(--bs-primary-rgb));
}

.type-card.selected {
    border-color: rgb(var(--bs-primary-rgb));
    box-shadow: 0 0 0 .25rem rgba(var(--bs-primary-rgb), .25);
    background-color: #f7faff;
}

.type-card .icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.type-card .text-content h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.type-card .text-content p {
    font-size: 0.85em;
    color: #6c757d;
    margin-bottom: 0;
}

.file-input-wrapper {
    background-color: #e9ecef;
    border: 1px dashed #ced4da;
    border-radius: .5rem;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
}

.file-input-wrapper:hover {
    background-color: #dde3ea;
}

.file-input-wrapper input[type=file] {
    display: none;
}

.file-input-wrapper .file-input-text {
    color: #495057;
    font-weight: 500;
}

.file-input-wrapper .file-input-text i {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.form-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

html {
  scroll-behavior: smooth;
}

.stat-card {
    background-color: #fff;
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    box-shadow: 0 .125rem .25rem rgba(0,0,0,.075)!important;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgb(var(--bs-primary-rgb));
    margin-bottom: 0;
    line-height: 1;
}

.stat-card.total p { color: #212529; }
.stat-card.aberto p { color: #0d6efd; }
.stat-card.em_analise p { color: #ffc107; }
.stat-card.respondido p { color: #198754; }