/* ------------------------------------------------------------------------------------
--------------------------------------VARS -----------------------------------------
---------------------------------------------------------------------------------------*/
:root{
    --header-main-color:#AB1617;
    --background-geral:#E6E6E6;
    --blue-arpre:#30518B;
    --hover-btn:rgb(215, 174, 174);
    --borda-color: darkgray;
    --titulo-font: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    --cor-verde:#34A853;
    --modal-altura: auto;
    --modal-largura: 50%;
}


/* RESPONSIVIDADE */
/* @media screen and (max-width: 1920px) and (max-height: 1080px) {
	.div-tabela td{
		font-size: x-small;
	}

	.div-tabela th{
		font-size: smaller;
	}
	body{
		background-color:red;
	} */
/* ------------------------------------------------------------------------------------
--------------------------------------RESET -----------------------------------------
---------------------------------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    border: 0;
    border: none;
    font-size: 100%;
    font: inherit;
}

html, body{
    width: 100%;
    height: 100%;
}

body{
    background-color: var(--background-geral);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* ------------------------------------------------------------------------------------
--------------------------------------NAV BAR -----------------------------------------
---------------------------------------------------------------------------------------*/
.nav-bar-container{
    background-color: var(--header-main-color);
    width: 100%;
    height: 6%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-bar-itens{
    width: 80%;
    height: 80%;
    padding: 0% 0% 0% 10%;
    list-style: none;
    display: flex;   
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav-bar-itens *{
    color: white;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    transition: all 0.3s ease;
    cursor:vertical-text;
    border: none;
    background-color: transparent;
    text-decoration: none;
}

.nav-bar-itens button:hover, .nav-bar-itens a:hover{
    text-decoration: underline;
    cursor: pointer;
    color: rgb(175, 175, 175); 
}



/* ------------------------------------------------------------------------------------
--------------------------------------FOOTER -----------------------------------------
---------------------------------------------------------------------------------------*/

.footer{
    background-color: #333;
    color: #f4eded;
    width: 98%;
    height: 4%;
    padding: 1%;
    text-align: center;
}


footer.footer ul {
    list-style: none;
    padding: 0;
}

footer.footer ul li {
    display: inline;
    margin: 0 15px;
    font-family: "Quicksand", sans-serif;
}

footer.footer ul li a {
    color: #b7aaaa;
    text-decoration: none;
}

footer.footer ul li a:hover {
    color: white;
    text-decoration: underline;
} 



/* ------------------------------------------------------------------------------------
-------------------------------------- CONTEUDO -----------------------------------------
---------------------------------------------------------------------------------------*/
.conteudo-principal{
    width: 100%;
    height: 85%;
}


/* ------------------------------------------------------------------------------------
-------------------------------------- MODAIS -----------------------------------------
---------------------------------------------------------------------------------------*/
.base-modal{
    height: var(--modal-altura);
    width: var(--modal-largura);
    min-width: 35%;
    top: 20%;
    left: 25%;
    background-color: white;
    position: absolute;
    display: none;
    z-index: 1000;
    border:1px ridge black;
    border-radius: 10px;
}

/* alteração do estilo da modal */
.modal-base-interna{
    height: 98%;
    width: 98%;
    padding: 1%;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.modal-conteudo-titulo{
    text-align: center;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size:x-large;
    width: 40%;
    background-color: var(--borda-color);
    color: white;
    padding: 1%;
    border: 1px solid var(--borda-color);
}

.modal-conteudo{
    width: 100%;
    height: 88%;
    border: 1px solid var(--borda-color);
}

.modal-footer{
    margin-top: 1%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 10%;
}

.modal-footer button{
    padding: 8px;
    cursor: pointer;
    color: white;
    border-radius: 3%;
    border: 1px solid black;
}

.btn-cancelar-modal{
    background-color: var(--header-main-color);
    width: 10%;
}

.btn-cancelar-modal{
    background-color: var(--header-main-color);
    width: 12%;
}

.btn-enviar-modal{
    width: 20%;
    background-color:var(--cor-verde);
}

.btn-enviar-modal:hover{
    border: none;
    transition: all 0.5s ease;
    width: 18%;
    background-color: #256837;
}

.btn-cancelar-modal:hover{
    color: var(--hover-btn);
    border: none;
    width: 10%;
    background-color: darkred;
    transition: all 0.5s ease;
}

.div-container-inputs-modal{
    padding: 2%;
    height: 97%;
}

