﻿/* CSS Próprio para Layout de Empresa*/
/* ================================================================================ */

/*#region === Menu Superior e Fontes do Sistema  === */

/* Override customizacao barra do menu superior  */
.navbar {
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #0d1a27; /* Override cor  */
}

.navbar-dark .navbar-nav .nav-link {
    color: #e6e6e6;
}

.corIconeMenuSuperior {
    color: #e6e6e6;
}

    .corIconeMenuSuperior:hover, .bell-menu a i:hover, .toggle a i:hover {
        opacity: 0.9;
        color: rgba(255, 255, 255, 0.75);
        -webkit-tap-highlight-color: transparent;
        outline: none;
    }


.dropdownLargo .dropdown-menu {
    min-width: 23rem;
}

.dropdownLargoII .dropdown-menu {
    min-width: 31rem;
}

.menuInferior {
    color: #ffffff;
    background-color: #f1f1f1;
    box-shadow: 0px -10px 10px rgba(0, 0, 0, 0.2); /* Adiciona o desfoque na parte superior */
    margin-top: 73px;
    height: 31px; /* Define a altura desejada */
    z-index: 100; /* Escolha um valor adequado para o z-index */
}

/* OBS: font-face, sempre carregado na 1º posição do CSS  */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: local('Poppins Regular'), url('../../Fontes/Poppins/Poppins-Regular.ttf')
}

.fonteDoSistema {
    font-family: 'Poppins', sans-serif;
}

/*#endregion */

/*#region === Logo com Texto  === */

#idTextoLogoI {
    position: absolute;
    font-size: 16px;
    left: 40px;
    top: 36px;
}

#idTextoLogoII {
    position: absolute;
    font-size: 12px;
    left: 49px;
    top: 52px;
}

/*Font da Logo Alvotec*/
.fontDoTextoDaLogoBold {
    font-family: 'Magra', sans-serif;
    font-weight: bold;
    color: #E7E7E7;
}

.fontDoTextoDaLogoNormal {
    font-family: 'Magra', sans-serif;
    font-weight: bold;
    color: #E7E7E7;
}

/*#endregion */

/*#region === Css para a formação de Notas (Ordem de Análise) ===*/

/* ===== Bloco igual ao PDF ===== */
.bloco-notas-pdf {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.15;
    color: #000;
    /* TAMANHOS DEFINIDOS */
    --fs-notas-geral: 0.60rem; /* Notas (título + itens) */
    --fs-titulo-legenda: 0.58rem; /* Legenda: */
    --fs-titulo-metodo: 0.58rem; /* Método de Referência Analítico: */
    --fs-titulo-amostragem: 0.58rem; /* Referência da Amostragem: */
    --fs-colunas-texto: 0.58rem; /* texto dentro das colunas */
}

    /* força preto (evita herança cinza do Bootstrap/tema) */
    .bloco-notas-pdf,
    .bloco-notas-pdf * {
        color: #000 !important;
        opacity: 1 !important;
        text-shadow: none !important;
        filter: none !important;
    }

        /* Linhas horizontais finas */
        .bloco-notas-pdf .linha-pdf {
            border-top: 1px solid #6f6f6f;
            margin: .20rem 0 .35rem 0;
        }

        /* ===== NOTAS (tamanho definido) ===== */
        .bloco-notas-pdf .area-notas {
            font-size: var(--fs-notas-geral);
        }

        .bloco-notas-pdf .titulo-notas {
            font-weight: 700;
            margin: 0 0 .10rem 0;
            font-size: var(--fs-notas-geral);
        }

        .bloco-notas-pdf .nota-linha {
            display: flex;
            gap: .10rem; /* bem pequeno, sem “tab” */
            margin: 0;
            font-size: var(--fs-notas-geral);
        }

        .bloco-notas-pdf p {
            margin: 0 !important;
        }

        .bloco-notas-pdf .nota-num {
            flex: 0 0 auto; /* sem largura fixa => texto cola no número */
            width: auto;
            font-weight: 400;
            white-space: nowrap;
        }

        .bloco-notas-pdf .nota-texto {
            flex: 1;
        }

        /* ===== COLUNAS (tamanhos definidos) ===== */
        .bloco-notas-pdf .area-colunas {
            font-size: var(--fs-colunas-texto);
        }

        .bloco-notas-pdf .titulo-legenda {
            font-weight: 700;
            margin: 0 0 .10rem 0;
            font-size: var(--fs-titulo-legenda);
        }

        .bloco-notas-pdf .titulo-metodo {
            font-weight: 700;
            margin: 0 0 .10rem 0;
            font-size: var(--fs-titulo-metodo);
        }

        .bloco-notas-pdf .titulo-amostragem {
            font-weight: 700;
            margin: 0 0 .10rem 0;
            font-size: var(--fs-titulo-amostragem);
        }

        /* Bolinha no título do método (como no PDF) */
        .bloco-notas-pdf .titulo-metodo::before {
            content: "•";
            margin-right: .20rem;
        }

        /* Listas com hífen (“-”) */
        .bloco-notas-pdf .lista-hifen {
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: var(--fs-colunas-texto);
        }

            .bloco-notas-pdf .lista-hifen li {
                margin: 0;
                padding-left: .55rem;
                text-indent: -.55rem;
            }

                .bloco-notas-pdf .lista-hifen li::before {
                    content: "-";
                    margin-right: .20rem;
                }

        /* Colunas mais coladas */
        .bloco-notas-pdf .notas-cols {
            --bs-gutter-x: .45rem;
        }

        .bloco-notas-pdf .coluna-pdf {
            padding-right: .50rem;
        }

/*#endregion*/

