@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons&style=round');

*{
    outline: none;
    box-sizing: border-box !important;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 14px;
}

body{
    background-color: #dcdcea;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.titulo_pagina{
    text-align: center;
    font-weight: 400;
    font-size: 22px;
}

header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 70px;
    padding-left: 1rem;
    padding-right: 1rem;
    box-sizing: border-box;
    background-color: #282a2e;
    position: fixed;
    z-index: 10;
}

main{
    margin-top: 70px;
}

.img_header{
    height: 100%;
    object-fit: contain;
}

footer{
    height: 70px;
    background-color: #363a43;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-bottom: 0.5rem;
    z-index: 2;
    
}
footer div{

    width: 20%;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    
}

#teclado{
    display: none;
    height: 50vh;
}

  .input-group {
    margin-bottom: 1.5rem;
  }
  
  .input-group label {
    display: block;
    margin-bottom: 0.5rem;
  }


  
  .upload-area {
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 0.5rem;
  }
  
  .upload-area:hover {
    border-color: rgb(62, 155, 50);
    background-color: rgba(62, 155, 50, 0.05);
  }
  
  .upload-area i {
    font-size: 2rem;
    color: rgb(62, 155, 50);
    margin-bottom: 0.5rem;
  }
  
  .upload-area p {
    margin: 0;
    color: #666;
  }
  
  .preview-fotos {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
  }
  
  .preview-foto {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    position: relative;
  }
  
  .remover-foto {
    position: absolute;
    top: -8px;
    right: -8px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    z-index: 10;
  }
  


a{
    text-decoration: none;
    color: white;
}

a:visited{
    color: white;
}

#menu{
    height: 100vh;
    position: fixed;
    margin-top: 70px;
    width: 100%;
    max-width: 600px;
    background: #000;
    right: -100%;
    display: block !important;
    z-index: 20;
}
#menu div{
    display: flex;
    color: #FFF;
    padding: 15px;
    align-items: center;
    cursor: pointer;
    
}
#menu div span{
    margin-right: 10px;
}


.card{
    background: #FFF;
    box-shadow: 0 0 0.5em #7f7f7f;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
    
}

#conteudo, #historico{
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    max-width: 800px;
}

h2{
    font-size: 16px;
    font-weight: 400;
    margin-top: 20px;
}
/* 
details{
    text-align: left;
}
details summary{
    background: linear-gradient(to bottom, #FFF, #EAEAEA);
    box-shadow: 0 0 0.3em #AAA;
    padding: 15px;
    cursor: pointer;
} */


details {
    position: relative;
    background: transparent;
}

summary, .destaque {
    list-style: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    font-weight: bold;
    background: linear-gradient(to bottom, transparent, #FFF);
    text-shadow: 0 0 0.3em #FFF;
    border-bottom: 3px solid #419e5a;
    text-align: left;
    margin-top: 30px;
    display: flex;
    align-items: center;
}
summary span{
    margin-right: 15px;
}

summary::marker {
    display: none;
}

summary::after {
    content: "+";
    position: absolute;
    right: 5px;
    font-size: 24px;
    color: #009900;
}

details[open] summary::after {
    content: "-";
}

.listaTabela{
    border-bottom: 1px solid #eaeaea;
    background: #fff;
    display: flex;
	align-items: center;
    padding-bottom: 10px;
    padding-top: 10px;
}
.listaTabela > * {
    margin: 0;
    position: static; /* Reseta posicionamento se necessário */
}
.listaTabela> div{
	overflow: hidden;
	cursor: default;
	border: 0px solid #000;
}

.listaTabela:nth-of-type(even) {
    background: #FAFAFA;
}

.listaTabela:hover{
	overflow: hidden;
    /* border-top: 1px solid #09F; 
	border-bottom: 1px solid #09F;*/
	background: #e3effa;
}
.botaoAdd{
	font-size: 36px;
    color: #FFF;
    background: linear-gradient(to bottom, #009900, #005B00);
    border-radius:50%; position:fixed; bottom:80px; right:20px;  padding:10px; cursor:pointer;
	z-index: 15;
}

input{
    padding: 10px;
    height: 50px;
    border: 0;
    box-shadow: 0 0 0.3em #7f7f7f;
    border-radius: 5px;
    width: 100%;
}
input[type=radio]{
    box-shadow: 0 0 0em #7f7f7f;
}

textarea{
    padding: 10px;
    height: 150px;
    border: 0;
    box-shadow: 0 0 0.3em #7f7f7f;
    border-radius: 5px;
    width: 100%;
}


	
.column, .columns {
	width: 100%;
	float: left;
	box-sizing: border-box;
	padding: 3px;
	margin: 0px;
	text-align: left;
    display: block !important;
}

@media (max-width: 900px) {
    #menuDesktop{
        display: none !important;
    }
}

#menuDesktop div{
        cursor: pointer;
        background: transparent;
    }
    
    #menuDesktop div:hover{
        background: #FB0103;
    }
@media (min-width: 900px) {
	
    #menuDesktop{
        display: flex !important;
    }

    footer{
        display: none;
    }
	.columns{
	  margin-left: 0%; padding: 3px; text-align: left;
	}
 
	.columns:first-child{
		margin-left: 0;
	}
    .col1.columns{ width: 1%;}
    .col2.columns{ width: 2%;}
    .col3.columns{ width: 3%;}
    .col4.columns{ width: 4%;}
	.col5.columns{ width: 5%;}
	.col6.columns{ width: 6%;}
	.col7.columns{ width: 7%;}
	.col8.columns{ width: 8%;}
	.col9.columns{ width: 9%;}
	.col10.columns{ width: 10%;}
    .col11.columns{ width: 11%;}
    .col12.columns{ width: 12%;}
    .col13.columns{ width: 13%;}
    .col14.columns{ width: 14%;}
	.col15.columns{ width: 15%;}
	.col16.columns{ width: 16.66%;}
	.col20.columns{ width: 20%;}
	.col25.columns{ width: 25%;}
	.col30.columns{ width: 30%;}
	.col33.columns{ width: 33.33%;}
	.col35.columns{ width: 35%;}
	.col40.columns{ width: 40%;}
	.col45.columns{ width: 45%;}
  	.col50.columns{ width: 50%;}
    .col55.columns{ width: 55%;}
    .col56.columns{ width: 56%;}
	.col60.columns{ width: 60%;}
  	.col67.columns{ width: 67.77%;}
  	.col70.columns{ width: 70%;}
	.col75.columns{ width: 75%;}
	.col80.columns{ width: 80%;}
	.col85.columns{ width: 85%;}
	.col90.columns{ width: 90%;}
  	.col100.columns{ width: 100%;}
}

.row:after{
  content: "";
  display: table;
  clear: both;
}
