:root {
    --primary-color: rgb(44, 76, 80);
    --secondary-color: #19beb5;
    --accent-color: #e74c3c;
}

.header-banner {
    background-color: var(--primary-color);
    color: white;
    padding: 40px 0;
    margin-bottom: 40px;
}

.document-section {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 30px 0;
}

.document-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    margin-bottom: 20px;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-header {
    background-color: var(--secondary-color);
    color: white;
    padding: 15px 20px;
    border-bottom: none;
}

.btn-view {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-view:hover {
    background-color: #1a3a3d;
    color: white;
}

.pdf-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 10px;
}

.documents-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.documents-table th {
    background-color: #012251;
    color: white;
    padding: 12px 15px;
    text-align: left;
}

.documents-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e0e0e0;
}

.documents-table tr:nth-child(even) {
    background-color: rgba(25, 190, 181, 0.1);
}

.documents-table tr:hover {
    background-color: rgba(25, 190, 181, 0.2);
}

/* Estilo para as modais de PDF */
.pdf-modal .modal-dialog {
    max-width: 90%;
    width: 90%;
    height: 90vh;
    margin: 5vh auto;
}

.pdf-modal .modal-content {
    height: 100%;
    border: none;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.pdf-modal .modal-header {
    background-color: white;
    color: #012251;
    border-bottom: none;
    border-radius: 1px;
    padding: 15px 20px;
}

.pdf-modal .modal-title {
    font-weight: 600;
}

.pdf-modal .modal-body {
    padding: 0;
    height: calc(100% - 60px);
    overflow: hidden;
}

.pdf-modal .modal-footer {
    border-top: none;
    background-color: #f8f9fa;
    border-radius: 0 0 10px 10px;
}

.pdf-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn-close-white {
    filter: invert(1);
}


/*Efeitos de hover no botão*/


.btn-view {
    background-color: #5AF2FF;
    color: #012251;
    border: 1px solid #012251;
    transition: all 0.3s ease; /* Suaviza a transição */
}

.btn-view:hover {
    background-color: #012251 !important;
    color: #5AF2FF !important;
    border-color: #5AF2FF !important;
    cursor: pointer;
}