﻿@font-face {
    font-family: "Mulish-ExtraBold";
    src: url("/Fonts/Mulish-ExtraBold.woff");
    font-weight: bold;
}

@font-face {
    font-family: "Mulish-000000-900";
    src: url("/Fonts/Mulish-000000.woff");
    font-weight: bold;
}

@font-face {
    font-family: "Mulish-Bold";
    src: url("/Fonts/Mulish-Bold.woff");
    font-weight: bold;
}

@font-face {
    font-family: "Mulish-SemiBold";
    src: url("/Fonts/Mulish-SemiBold.woff");
}

@font-face {
    font-family: "Mulish-Medium";
    src: url("/fonts/Mulish-Medium.woff");
}

@font-face {
    font-family: "Mulish-Light";
    src: url("/Fonts/Mulish-Light.woff");
}

@font-face {
    font-family: "Mulish-Black";
    src: url("/Fonts/Mulish-Black.woff");
}

@font-face {
    font-family: "Mulish-Regular";
    src: url("/Fonts/Mulish-Regular.woff");
}

/* reduzir tamanho da barra de rolagem e alterar a cor dela */
html, body * {
    scrollbar-color: #c4c4c4 transparent;
    scrollbar-width: thin;
}

:root {
    --cor-primaria: #5f5f5f;
    --cor-secundaria: #253c58;
    --cor-terciaria: #009fc2;
    --cor-cinza-light: #686868;
    --cor-btn--dark-blue: #009fc2;
    --background-cinza: #f3f3f3;
    --background-cinza-bold: #ededed;
    --background-white: #ffff;
}

.filter-white {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.filter-icon {
    filter: invert(38%) sepia(6%) saturate(25%) hue-rotate(22deg) brightness(96%) contrast(94%);
}

.filter-icon-blue {
    filter: invert(49%) sepia(96%) saturate(2950%) hue-rotate(159deg) brightness(92%) contrast(101%);
}

.titulo {
    color: var(--cor-secundaria);
    font-size: 32px;
    font-family: "Mulish-ExtraBold";
    font-weight: 700;
    text-align: left;
}

input,
select {
    transition: outline-color 0.3s ease;
} 

input:focus,
select:focus {
    outline-color: #80c8d8;
}


.top-tratamento {
    font-family: 'Mulish-ExtraBold';
    font-size: 12px;
    color: #5F5F5F;
}

.btn-light-blue {
    font-family: 'Mulish-Bold';
    font-size: 14px;
    width: 80px;
    height: 32px;
    border: 1px solid var( --cor-terciaria);
    border-radius: 0.375rem;
    background-color: transparent;
    color: var( --cor-terciaria);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-light-blue:hover {
    color: #fff;
    background-color: rgb(57, 190, 196);
    border: none;
}

.btn-light-red {
    font-family: 'Mulish-Bold';
    font-size: 14px;
    width: 80px;
    height: 32px;
    border: 1px solid #dc3545;
    border-radius: 0.375rem;
    background-color: transparent;
    color: #dc3545;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-light-red:hover {
    color: #fff;
    background-color: #dc3545;
}

.btn-bold-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Mulish-Bold';
    font-size: 14px;
    background-color: var( --cor-terciaria);
    border-radius: 0.5em;
    width: 144px;
    height: 40px;
    border: none;
    color: #ffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-bold-blue:hover {
    background-color: rgb(57, 190, 196);
}


.btn-bold-green {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Mulish-Bold';
    font-size: 14px;
    background-color: #9acd32;
    border-radius: 0.5em;
    width: 144px;
    height: 40px;
    border: none;
    color: #ffff;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-bold-green:hover {
    color: #fff;
    background-color: #8cba2d;
}


a {
    text-decoration: none;
}

/* Configuração inicial */


#box-principal {
    display: flex;
    background-color: #fff;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

#box-conteudo {
    display: flex;
    min-height: 100vh;
}

#box {
    width: 100%;
    overflow-y: scroll;
    height: 100vh;
}

#menu-lateral {
    width: 366px;
}

.bi-box-arrow-left,
.bi-gear-fill {
    font-size: 25px;
    margin: 5px;
}

.bi-box-arrow-left {
    color: #df3a58;
}


    /*
#box-principal {
    height: 100%;
    width: 100%;
    background-color: #fff;
}

#box {
    width: 100%;
    padding: 2em;
    overflow-y: scroll;
    height: 100vh;
}

#box-conteudo {
    display: flex;
    flex-wrap: nowrap;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 80px;
    height: 100%;
    width: 100%;
}*/
    /*Media para tamanho de fonte e estrutura para dimensões de telas.
    320px — 480px: dispositivos móveis. > max-width: 480px
    481px — 768px: iPads, tablets. > max-width: 770px
    769px — 1024px: telas pequenas, laptops. > max-width: 1024px
*/
    @media (max-width: 480px) {
        .titulo {
        font-size: 20px;
    }

    #box {
        padding: 0.5em;
    }

}

@media (max-width:860px) {
    .btn-light-blue {
        font-size: 12px;
        width: 68px;
        height: 28px;
        margin-bottom: 5px;
    }

    .btn-light-red {
        font-size: 12px;
        width: 68px;
        height: 28px;
    }

    .btn-bold-blue {
        font-size: 11px;
        width: 120px;
        height: 37px;
    }

    .header-logo {
        width: 200px;
    }

    .bi {
        color: #666;
    }


    #box-conteudo {
        display: block;
        min-height: 100vh;
    }
}

@media (max-width: 992px) {
    #menu-lateral {
        display: none;
    }
}

/*Configuração Menu*/
