@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #fff;
    width: 100%;
    margin: 0 auto;
    min-width: 300px;
    max-width: 2000px;
    min-height: 100vh;
    flex-direction: column;
    font-family: "Poppins", serif;
    font-weight: 400;
    font-style: normal;
}

/* BOTÃO */
.acessibilidade {
    position: fixed;
    right: 7px;
    bottom: 40%;
    z-index: 99999;
}

#btn-acessibilidade {
    width: 45px;
    height: 45px;
    border: none;
    background: #0056b3;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,.3);
    border-radius: 15%;
}

.menu-acessibilidade {
    position: absolute;
    right: 55px;
    bottom: 0;

    display: flex;
    flex-direction: column;
    gap: 10px;

    background: #fff;
    padding: 15px;
    border-radius: 10px;
    width: 220px;
    box-shadow: 0 2px 10px rgba(0,0,0,.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity .3s ease,
                transform .3s ease,
                visibility .3s ease;
}

.menu-acessibilidade.ativo {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.menu-acessibilidade button {
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 6px;
    background: #f1f1f1;
    font-weight: bold;
}

/* ALTO CONTRASTE */
body.alto-contraste,
body.alto-contraste * {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}

body.alto-contraste a {
    color: #ffff00 !important;
}

body.alto-contraste button {
    background: #222 !important;
    color: #fff !important;
}

/* ESCALA DE CINZA */
html.escala-cinza {
    filter: grayscale(100%);
}

body.alto-contraste #conteudo-site,
body.alto-contraste #conteudo-site * {
    background: #000 !important;
    color: #fff !important;
}

/* DESTACAR LINKS */
body.destacar-links a {
    background: yellow !important;
    color: #000 !important;
    padding: 2px;
    text-decoration: underline !important;
}

/* FONTE LEGÍVEL */
body.fonte-legivel {
    font-family: Arial, Verdana, sans-serif !important;
}


.pagina-p {
    padding-top: 80px;
}

.p-transparencia {
    padding-top: 80px;
}

.logo {
    height: 80px;
}

.secao-azul-custom {
    position: relative;
    background-color: #021A31;
    background-image: url('../imagens/bg_geral_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: color-burn;
    color: white;
    padding: 40px 0 60px 0;
    width: 100%;
    overflow: hidden;
    top: -15px;
}

.fundo_card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.2s;
    cursor: pointer;
    color: #fff;
}

.fundo_card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.banner {
    width: 100%;
}

.efeito-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.efeito-card:hover {
    transform: scale(1.03);
}

.fonte-P {
    font-size: 12px;
}

.p-padrao {
    padding-top: 100px;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #ddd;
    border-top: 6px solid #0b33af;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.fonte_rodape {
    list-style: none;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

mark.custom-highlight {
    background-color: #ffeb3b;
    color: #000;
    padding: 0 2px;
    border-radius: 3px;
    font-weight: bold;
}

/* PAGINA DE CONTRATO */

.tp-main-wrapper {
    padding: 20px 0;
}

.tp-container {
    max-width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
}

.tp-header {
    background: linear-gradient(135deg, #005b96 0%, #003d66 100%);
    color: white !important;
    padding: 20px 25px;
}

.tp-header h1 {
    font-size: 24px !important;
    margin-bottom: 5px !important;
    color: white !important;
}

.tp-header p {
    font-size: 14px !important;
    opacity: 0.9;
    margin-bottom: 0;
}


.tp-toolbar {
    padding: 15px 25px;
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.tp-btn-export {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: white !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}


.tp-btn-json {
    background: #ffb74d;

    background: linear-gradient(135deg, #ffb74d 0%, #ffa000 100%);
}

.tp-btn-xml {
    background: #ff8a65;

    background: linear-gradient(135deg, #ff8a65 0%, #f4511e 100%);
}

.tp-btn-rtf {
    background: #4fc3f7;

    background: linear-gradient(135deg, #4fc3f7 0%, #0288d1 100%);
}

.tp-btn-txt {
    background: #81c784;

    background: linear-gradient(135deg, #81c784 0%, #388e3c 100%);
}

.tp-btn-csv {
    background: #000;

}


.tp-btn-export:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    filter: brightness(1.1);
}

.tp-btn-export:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tp-btn-export i {
    font-size: 1.1rem;
}

.tp-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 13px !important;
}

.tp-table th {
    background: #005b96 !important;
    color: white !important;
    padding: 14px 12px;
    text-align: left;
    font-weight: 600;
}

.tp-table td {
    padding: 12px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.tp-objeto-text {
    max-width: 250px;
    line-height: 1.4;
}

.tp-valor {
    font-weight: 600;
    color: #28a745;
    white-space: nowrap;
}

.tp-pagination-area {
    padding: 20px 25px;
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* PAGINA DE CONTRATO */


@media screen and (max-width: 520px) { 
    
    .p-padrao {
    padding-top: 120px;
}
    
    .mobile_cfg {
        position: relative;
        top: 40px;
        z-index: 1000;
    }
    
    .banner {
            height: 180px;
            object-fit: contain;
    }
    
    .mobile_menu {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .mobile_menu .logo {
        margin: 0 auto;
    }

    .mobile_menu > div {
        padding: 0 !important;
    }

    .mobile_menu span {
        display: block;
        line-height: 1.2;
        font-size: 15px;
        
    }
    
}

@media screen and (max-width: 480px) { 
    .mobile_cfg {
        position: relative;
        top: 40px;
    }
    
    .banner {
            height: 180px;
            object-fit: contain;
    }
    
}

@media screen and (max-width: 420px) { 
    
    .mobile_cfg {
        position: relative;
        top: 35px;
    }
    
    .banner {
            height: 165px;
            object-fit: contain;
    }
    
     .mobile_menu span {
        display: block;
        line-height: 1.2;
        font-size: 12px;
        
    }
}

@media screen and (max-width: 400px) { 
    
    .mobile_cfg {
        position: relative;
        top: 35px;
    }
    
    .banner {
            height: 164px;
            object-fit: contain;
    }
    
     .mobile_menu span {
        display: block;
        line-height: 1.2;
        font-size: 12px;
        
    }
    
}