/* ITENS UNIVERSAIS */

.PainelOpcoes{
	margin-top: 5vh;
	background-color: white;
	width: 90vw;
	border-radius: 5px;
}

.PainelCartao{
	margin-top: 5vh;
	background-color: white;
	width: 90vw;
	border-radius: 5px;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.Cartao {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    width: calc(25% - 20px);
    box-shadow: 0 0 10px #ccc;
    border-radius: 10px;
    overflow: hidden;
    margin: 10px;
    height: 400px;
}

/* -------------------------------
   RESPONSIVO PARA CELULAR
---------------------------------*/
@media (max-width: 768px) {
    .Cartao {
        width: 80%;     /* ocupa toda a largura */
        height: auto;    /* deixa o cartão crescer conforme o conteúdo */
        margin: 10px 0;
    }
}
.Cartao:hover{
	transform: scale(1.03);
	    transition: 0.25s; 
}

/*BOTOES*/
.BotaoVerde{
	width: 80vw;
	height: 50px;
	border-radius: 4px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: green;
}
.BotaoVerde{
	width: 60vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: green;
}
.BotaoVerdeMini{
	width: 20vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: green;
}
.BotaoLaranja{
	width: 80vw;
	height: 50px;
	border-radius: 4px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: orange;
}
.BotaoLaranjaPequeno{
	width: 60vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: orange;
}.BotaoLaranjaMini{
	width: 20vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: orange;
}
.BotaoVermelho{
	width: 80vw;
	height: 50px;
	border-radius: 4px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: red;
}
.BotaoVermelhoPequeno{
	width: 60vw;
	height: 50px;
	border-radius: 5px;
	font-size: 30px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: white;
	background-color: red;
}
.BotaoVermelhoMini{
	width: 100%;
	height: 50px;
	font-size: 30px;
	color: white;
	outline: none;
	border: none;
	background-color: green;
}
.BotaoLaranja:hover,.BotaoLaranjaPequeno:hover,.BotaoLaranjaMini:hover,.BotaoVermelho:hover,.BotaoVermelhoPequeno:hover,.BotaoVermelhoMini:hover,.BotaoVerde:hover,.BotaoVerdePequeno:hover,.BotaoVerdeMini:hover{
	background-color: rgba(0,0,0,0.8);
	transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.3s ease;
	transform: scale(1.03);
}
/*BOTOES*/

/*TEXTO*/
.TextoTitulo{
	font-size: 100px;
	font-weight: bold;
	color: black;
}
.TextoSubTitulo{
	font-size: 70px;
	font-weight: bold;
	color: black;
}
.TextoSubTituloBranco{
	font-size: 1.2rem;
	font-weight: bold;
	color: white;
}
.TextoComum{
	font-size: 50px;
	font-weight: bold;
	color: black;
}
.TextoComumVermelho{
	font-size: 50px;
	font-weight: bold;
	color: red;
	text-decoration: none;
}
.TextoPequeno{
	font-size: 32px;
	font-weight: bold;
	color: black;
}
.TextoPequenoVermelho{
	font-size: 32px;
	font-weight: bold;
	color: red;
	text-decoration: none;
}
.TextoDescricaoProduto{
	font-size: 18px;
	font-weight: bold;
	color: black;
}
/*TEXTO*/

/*CAIXAS DE TEXTO*/
.CaixaTXT{
	height: 60px;
	width: 80vw;
	border-radius: 5px;
	border-width: 2px;
	border-color: red;
	outline: none;
	text-align: center;
	font-size: 50px;
	text-transform: uppercase;
}
.CaixaTXTPequeno{
	height: 50px;
	width: 80vw;
	border-radius: 5px;
	border-width: 2px;
	border-color: red;
	outline: none;
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
}
.CaixaOBS{
	height: 120px;
	width: 70vw;
	border-radius: 5px;
	border-width: 2px;
	border-color: red;
	outline: none;
	text-align: center;
	font-size: 30px;
	text-transform: uppercase;
}
/*CAIXAS DE TEXTO*/

/*SEPARADORES*/
hr.Pequeno{
	border: none;
	height: 3px;
	width: 30vw;
	background-color: rgba(0,0,0,0.5);
}
hr.Medio{
	border: none;
	height: 3px;
	width: 60vw;
	background-color: rgba(0,0,0,0.5);
}
hr.Grande{
	border: none;
	height: 3px;
	width: 90vw;
	background-color: rgba(0,0,0,0.5);
}
hr{
	border: none;
	background-color: rgba(255,255,255);
}
/*SEPARADORES*/

/* ITENS UNIVERSAIS */

/*PAGINA PAINEL.PHP*/
.PainelMenuOpcoes{
	margin-top: 5vh;
	background-color: white;
	width: 90vw;
	height: 650px;
	border-radius: 5px;
}
.PainelBotoes{
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.BotaoVerdeMenuPrincipal{
	width: 20vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: green;
}
.BotaoLaranjaMenuPrincipal{
	width: 20vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: orange;
}
.BotaoVermelhoMenuPrincipal{
	width: 20vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: red;
}
.BotaoCinzaMenuPrincipal{
	width: 20vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: gray;
}
.BotaoCinzaSairMenuPrincipal{
	width: 40vw;
	height: 100px;
	border-radius: 5px;
	font-size: 20px;
	color: white;
	outline: none;
	border-width: 1px;
	border-color: black;
	background-color: gray;
}
.BotaoVerdeMenuPrincipal:hover,.BotaoLaranjaMenuPrincipal:hover,.BotaoVermelhoMenuPrincipal:hover,.BotaoCinzaMenuPrincipal:hover,.BotaoCinzaSairMenuPrincipal:hover{
	background-color: rgba(0,0,0,0.8);
	transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.3s ease;
	transform: scale(1.03);
}
/*PAGINA PAINEL.PHP*/

body{
	background-color: #DCDCDC;
	margin: 0;
	padding: 0;
}
img{
        width: 100%;
        height: 230px;
        object-fit: cover;
}
header{
	background-color: black;
	padding: 20px;
}
.icones{
	width: 50px;
	height: 50px;
	margin-bottom: 2px;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type=number] {
  -moz-appearance: textfield;
}