/* Importar uma fonte moderna */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
    --blueEdu: #11315E;
    --redEdu: #CC0511;
    --sandEdu: #D5CCB5;
    --lightBlue: #2F789C;
}

/* Estilo geral */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f5f5f5;
}


/* Estilo do container principal */
.bg-white {
    border-left: 4px solid var(--lightBlue) !important;
    border-right: 4px solid var(--redEdu) !important;
    background-color: #FAFAFA !important;
    box-shadow: 0 4px 12px rgba(17, 48, 93, 0.15);
    z-index: 0;
    border-radius: 8px;
}

/* Seção principal */
.section-principal {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px;
    gap: 16px;
}

.left-section {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.right-section {
    width: 60%;
    display: flex;
    flex-direction: column;
    margin-right: 0;
}

/* Navegação breadcrumb */
.voltar-navegacao-box {
    display: flex;
    align-items: center;
    padding: 12px 0;
    gap: 8px; /* Espaçamento entre o botão e o breadcrumb */
}

.btn-voltar-box {
    width: 32px;
    height: 32px;
    padding: 0; 
    border-radius: 50%;
    background-color: rgba(204, 204, 204, 0.3);
    display: flex; 
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s;
}

.btn-voltar-box:hover {
    background-color: var(--lightBlue);
}

.btn-voltar-icon {
    width: 50px; 
    height: 20px; 
    object-fit: contain;
}


.our-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #7c7c7c;
    margin-left: 0;
}

.our-breadcrumb a {
    color: var(--lightBlue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
}

.our-breadcrumb a:hover {
    color: var(--blueEdu);
    text-decoration: underline;
}

.our-breadcrumb i {
    font-size: 12px;
    color: var(--lightBlue);
}

.our-breadcrumb span {
    color: #333;
}

/* Cabeçalho da licitação */
.licitacao-header-box {
    padding: 0;
}

.licitacao-title {
    font-size: 26px; 
    font-weight: 700;
    color: var(--blueEdu);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px; 
}

.licitacao-title i {
    color: var(--lightBlue);
}

/* Botão Gerar PDF */
.btn-primary {
    background-color: var(--redEdu);
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #b0040f;
    transform: scale(1.05);
}

/* Caixa de navegação */
.navigation-box {
    width: 90%;
    padding: 10px;
    border: 1px solid rgba(204, 204, 204, 0.3);
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.navigation-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--blueEdu);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px; 
}

.navigation-title i {
    color: var(--lightBlue);
}

.navigation-content-box {
    display: flex; 
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 0; 
}

.navigation-content-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.5; 
}

/* Seção de informações */
.section-down {
    width: 100%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.licitacao-info-box {
    padding: 15px 0;
    width: 100%;
}

.licitacao-info-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--blueEdu);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.licitacao-info-box h3 i {
    color: var(--lightBlue);
}

/* Tabela moderna */
.modern-table {
    border-collapse: collapse;
    width: 100%;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.modern-table th, .modern-table td {
    padding: 12px 16px;
    text-align: left;
    font-size: 15px;
}

.modern-table th {
    background: linear-gradient(to bottom, rgba(204, 204, 204, 0.2), rgba(204, 204, 204, 0.1));
    color: var(--blueEdu);
    font-weight: 500;
    border-bottom: 2px solid var(--lightBlue);
}

.modern-table td {
    color: #333;
    border-bottom: 1px solid rgba(204, 204, 204, 0.1);
}

.modern-table tr:last-child td {
    border-bottom: none;
}

.modern-table tr:hover {
    background-color: rgba(47, 120, 156, 0.05);
}

.bg-white{
    border-left: 2px var(--lightBlue) solid!important;
    border-right: 2px var(--redEdu) solid!important;
    background-color: #f4f1e9!important;
    box-shadow: 0px 0px 5px #11305D;
    z-index: 0;
}

.modern-table td a:hover {
    color: var(--blueEdu);
    text-decoration: underline;
}

/* Divisória entre seções */
.section-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, var(--lightBlue), var(--redEdu));
    margin: 24px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-principal {
        flex-direction: column;
        padding: 16px;
    }

    .left-section, .right-section {
        width: 100%;
    }

    .right-section {
        margin-right: 0;
    }

    .section-down {
        padding: 16px;
    }

    .modern-table th, .modern-table td {
        font-size: 14px;
        padding: 8px 12px;
    }
}

.btn-actions-icon {
    width: 18px;
    margin-right: 6px;
}

.licitacao-btn-actions {
    padding: 4px 8px;
    border-radius: 12px;
    border: 1px solid rgb(214,214,214);

    &:hover {
        border: 1px solid rgb(184,184,184);
    }
}

.detail-arrow {
    width: 18px;
}