body {
    font-family: "Lexend", sans-serif;
    background-color: #FFBD59;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    padding-top: 200px;
}

.faixa-topo, .faixa-fundo {
    position: fixed;
    width: 100%;      /* Faz com que a imagem ocupe toda a largura da tela */
    height: 50px;     /* Ajuste a altura da imagem, de acordo com a sua necessidade */
    object-fit: cover; /* Garante que a imagem preencha todo o espaço */
}

.faixa-topo {
    top: 0;           /* Posiciona a faixa no topo da página */
}

.faixa-fundo {
    bottom: 0;        /* Posiciona a faixa na parte inferior da página */
}

button:hover {
    background-color: #b34b00;
}


.conteudo{
    flex-grow: 1;
    align-items: center;
    display: flex; 
    background-color: #FFBD59;
    width: 100vw;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: auto;

}

.bb{
    background-color: #FFBD59;
    border-radius: 8px;
    padding: 12px;
    margin: 5px;
}

.bmenu{
    background: #e3e3e3;
    
}

.hmenu{
    background: #ffffff;
}

.menu{
    background-color: #e3e3e3;
    display: flex;
    padding: 5px;
    margin-bottom: 1vh;
    width: 101vw;
    position: fixed;
    top: 119px;
    align-items: center;
    justify-content: space-around;


}




.cabe{
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    text-align: right;
    margin-right: 10px;
    align-items: center;
}



.subcabe{
    display: flex; justify-content: flex-end; gap: 20px;
}

.botoes {
    display: flex;
    flex-direction: line;
}

a {
    text-decoration: none; /* Remove o sublinhado */
    color: inherit;        /* Usa a cor herdada da div ou do botão */
    width: 100%;
}

p {
    margin: 0;
}


h3 {
    width: 100;
    margin: 0;
}

h2, h4 {
    margin: 0;
}

.menu2{
    bottom: 4vh;
    background-color: white;
    top: auto;
    padding-bottom: 20px;
}


header{
    display: flex;
    background-color: white;
    width: -webkit-fill-available;
    margin-top: 50px;
    justify-content: space-between;
    padding-left: 4vw;
    padding-right: 4vw;
    padding-bottom: 1vh;
    padding-top: 1vh;
    align-items: center;
    position: fixed;
    top: 0px;
}


nav{
    display: flex;
    align-items: center;
}

.logomenu {
    width: auto;    /* Ajuste o tamanho conforme necessário */
    height: 50px;   /* Mantém a proporção da imagem */
}



footer{
    background-color: white;
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-around;
    padding: 5px;
    margin-top: 5px;
}

footer p, footer a{
    font-size: 12px;
    margin: 0;
}

.fichas-container {
    border-radius: 8px;
    overflow-y: auto;
    gap: 10;
    width: 95vw;
    /* max-height: 800px; */
    display: flex;
    flex-wrap: wrap;

}

.ficha {
    background-color: #fff;
    border-radius: 8px;
    padding: 5px;
    margin: 5px;
    display: flex;
    flex-direction: line;
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    justify-content: space-between;
    flex: 1 1 40%;
}

.inficha{
    display: flex; flex-direction: line; align-items: center;
}

input,label{
    font-family: "Lexend", sans-serif;
}



@media (max-width: 768px) {
    .ficha-container{
        width: 90vw;
    }
    label{
        font-size: 8px;
    }
    input{
        font-size: 10px;
    }

    .cab p{
        font-size: 10px;
    }

    .cab h5{
        font-size: 12px;
    }

    .cab h3{
        font-size: 16px;
    }
    
}


@media print {

    header,.menu,.menu2,.faixa-topo, .faixa-fundo, footer{
        display: none !important;
    }
    .conteudo{
        overflow: hidden;
    }
    *{
        overflow: visible;
        margin: 0px;
    }
    body{
        margin: 0;
        padding: 0;
    }

    .ficha-container{
        width: auto;
        height: 100vh
    }
    .cab p{
        font-size: 15px;
    }

}