﻿@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');

* {
    font-family: 'Open Sans', sans-serif, Verdana;
    font-size: 10pt;
    box-sizing: border-box;
    color: #444;
}

.fonte-menu * {
    font-family: Rubik;
}

.fonte-bold {
    font-weight: 800 !important;
}

.fontePequena {
    font-size: 7.5pt;
}

html, body, form {
    min-height: 100%;
    height: 100%;
    border: 0px;
    margin: 0px;
    background-color: #f5f5f5;
}


/*MASTER*/
#divGeral {
    height: 100%;
    min-height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


a {
    color: #666;
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

    a[disabled] {
        color: #aaa;
    }

#divRodape {
    width: 100%;
    background-color: rgb(51,51,51);
    border-bottom: 2px solid #666;
}

    #divRodape * {
        color: #eee;
    }

.flex-interno-coluna {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
}

/*.flex-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;*/
/*justify-content: space-around;*/
/*align-items: stretch;
    align-content: space-around;
}

    .flex-container .flex-item {
        flex: auto;*/ /*não mexa nisso*/
/*margin: .5rem;
    }*/

.grid-responsivo {
    display: grid;
    grid-gap: 4px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.alinhamento-justificado {
    text-align: justify;
}

.alinhamento-centro {
    text-align: center;
}

.alinhamento-esquerda {
    text-align: left;
}

.alinhamento-direita {
    text-align: right;
}

.largura-80-centralizado {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.largura-70-centralizado {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

.largura-50-centralizado {
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.largura-100 {
    width: 100%;
}

.shadowLogo {
    -moz-box-shadow: 0 0 10px #888;
    -webkit-box-shadow: 0 0 10px#888;
    box-shadow: 0 0 10px #888;
}

.textoTarjado { /*atribuir à DIV*/
    margin-bottom: 5px;
    margin-top: 5px;
    background-color: #CCFF00;
    border: 2px solid #FFFF00;
    border-radius: 5px;
    padding: 4px;
    text-align: center;
}

.bordaRedonda {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid gray;
}

.clear {
    clear: both;
}

.padding-25 {
    padding: 25px;
}

.padding-20 {
    padding: 20px;
}

.padding-15 {
    padding: 15px;
}

.padding-10 {
    padding: 10px;
}

.padding-5 {
    padding: 5px;
}

.padding-2 {
    padding: 2px;
}

.bt-cad-cliente-selecionado {
    color: #000 !important;
    background-color: #e6e6e6 !important;
    border-color: #adadad !important;
    text-align: center !important;
}

/*pop-up inicio - AGUARDE*/
#hideshow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*display: none;*/
}

#fade10 {
    background: #000000;
    position: fixed;
    width: 100%;
    height: 100%;
    filter: alpha(opacity=40);
    opacity: .40;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)"; /*--IE 8 Transparency--*/
    left: 0;
    top: 0;
    z-index: 10;
}
/*pop-up fim*/

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px;
}

.alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc;
}

.alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
}

.alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}

.alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1;
}
/*extensão do bootstrap - inicio*/
.navbar-toggler .line {
    width: 100%;
    float: left;
    height: 2px;
    background-color: #fff;
    margin-bottom: 3px;
}

.dropdown-item:hover {
    color: #000 !important;
}
/*extensão do bootstrap - término*/

.bg-cinza-claro {
    background-color: #DCDCDC;
}

/*MODAL puro*/
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    /*background-color: rgb(0,0,0);*/ /* Fallback color */
    background-color: rgba(0,0,0,0.6); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border: 2px solid #999;
    border-radius: 4px;
    width: 80%; /* Could be more or less, depending on screen size */
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .modal-close:hover,
    .modal-close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }
/*FIM*/


.btn-drop-down {
    cursor: pointer;
}


.menu-drop-rodape {
    display: none;
    /*background-color: #730000;*/
    border-radius: 4px;
    padding: 10px;
    line-height: 25px;
}

    .menu-drop-rodape .item {
        border-bottom: 3px solid rgba(0,0,0,0.1);
        color: #000;
    }

        .menu-drop-rodape .item:hover {
            background-color: rgba(0,0,0,0.1);
        }


.fonte-200 {
    font-weight: 200;
}

.fonte-300 {
    font-weight: 300;
}

.fonte-400 {
    font-weight: 400;
}

.fonte-500 {
    font-weight: 500;
}

.fonte-600 {
    font-weight: 600;
}

.fonte-700 {
    font-weight: 700;
}

.fonte-800 {
    font-weight: 800;
}

.fonte-10pt-400 {
    font-size: 10pt;
    font-weight: 400;
}

.fonte-size-8pt {
    font-size: 8pt;
}

.fonte-size-11pt {
    font-size: 11pt;
}

.fonte-size-14pt {
    font-size: 14pt;
}


.fonte-size-20pt {
    font-size: 20pt;
}

.fonte-size-48pt {
    font-size: 48pt;
}

.fonte-12pt-800 {
    font-size: 12pt;
    font-weight: 800;
}

.fonte-branca {
    color: #FFF;
}

.padding-20 {
    padding: 20px;
}

.fonte-italico {
    font-style: italic;
}

.padding-10 {
    padding: 10px;
}

.grid-2fr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}

.fonte-menu * {
    font-family: Rubik;
}

/*BOTÃO FLUTUANTE*/

.btn-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1200;
}

.btn-flutuante {
    background-color: white;
}

.btn-container a,
.btn-container button {
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 30px;
    border: none;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    -webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}

    .btn-container button:focus {
        outline: none;
    }

    .btn-container button.btn-flutuante {
        position: absolute;
        width: 60px;
        height: 60px;
        border-radius: 30px;
        background-color: #FF0000;
        right: 0;
        bottom: 0;
        z-index: 1200;
    }

.btn-container ul {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0;
    padding-right: 5px;
    margin: 0;
    list-style: none;
    z-index: 10;
    -webkit-transition: 0.2s ease-out;
    -moz-transition: 0.2s ease-out;
    transition: 0.2s ease-out;
}

    .btn-container ul li {
        display: flex;
        justify-content: flex-start;
        position: relative;
        margin-bottom: -10%;
        opacity: 0;
        -webkit-transition: 0.3s ease-out;
        -moz-transition: 0.3s ease-out;
        transition: 0.3s ease-out;
    }

.btn-container.show button.btn-flutuante,
.btn-container.show button.btn-flutuante {
    outline: none;
    background-color: #730000;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

.btn-container.visible button.btn-flutuante + ul,
.btn-container.visible button.btn-flutuante + ul {
    bottom: 70px;
}

    .btn-container.visible button.btn-flutuante + ul li,
    .btn-container.visible button.btn-flutuante + ul li {
        margin-bottom: 10px;
        opacity: 1;
    }

/*BARRA DE NAVEGACAO*/

.cabecalho {
    box-shadow: 0px 10px 13px -7px #666;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
}

    .cabecalho .menus {
        width: 90%;
        margin: auto;
    }

        .cabecalho .menus .primeiro-menu {
            display: flex;
            justify-content: flex-end;
            padding-top: 5px;
            padding-bottom: 5px;
            gap: 20px;
            border-bottom: 1px solid gray;
        }

        .cabecalho .menus .segundo-menu {
            display: flex;
            justify-content: space-between;
            align-items: stretch;
            flex-wrap: wrap;
            padding-top: 5px;
        }

            .cabecalho .menus .segundo-menu .item {
                color: #333;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .cabecalho .menus .segundo-menu .dropdown::after {
                font-family: 'remixicon';
                display: inline-block;
                content: "\f2e1";
                padding-left: 5px;
                font-size: 12pt;
            }

        .cabecalho .menus .terceiro-menu {
            padding: 10px;
            border-top: 1px solid gray;
        }

        .cabecalho .menus #divMenuMobile {
            border-top: 1px solid gray;
            line-height: 35px;
        }

            .cabecalho .menus #divMenuMobile .item {
                font-size: 12pt;
                color: #333;
            }

            .cabecalho .menus #divMenuMobile .dropdown::after {
                font-family: 'remixicon';
                display: inline-block;
                content: "\f2e1";
                padding-left: 5px;
                font-size: 12pt;
            }


.btn-inscreva {
    padding: 10px;
    background-color: #FF0000;
    border-radius: 4px;
    text-align: center;
}

    .btn-inscreva a {
        color: #FFFFFF;
        font-weight: 700;
    }


.dropdown-menu {
    background-color: #FFF;
    color: #000;
    width: 100%;
    border: none;
    /*top: 95% !important;*/
    border-top: 1px solid lightgray;
}
/*extensão do bootstrap - início*/
.dropdown-item:hover {
    color: #000 !important;
}

.esconde-menu {
    display: none;
}

.mostra-menu {
    display: block;
}

.fonte-rubik {
    font-family: Rubik;
}

.flex-center {
    display: flex;
    justify-content: center;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.h1, h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.h2, h2 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.h3, h3 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.h4, h4 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.h5, h5 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.mb-2 {
    margin-bottom: 0.5rem !important;
}

.mb-3 {
    margin-bottom: 1rem !important;
}
