/* ---- Instrucoes:
No html:       No CSS:
id="xx"       - #xx {...
class="xx"    - .xx {...
tags p,h1,etc - p,h1 {...
---
CSS opera de cima para baixo
------------------- */

/* ajuste da tela placa conforme resolução: */
@media screen and (min-width: 1100px) {
    .placa {
      font-size: 150px;
    }
    .titulo {
        font-size: 100px;
    }
    .subtitulo {
        font-size: 50px;
    }
    .tituloPeq {
        font-size: 30px;
        margin: 5px;
    }
    .empresaPeq {
        font-size: 30px;
        margin: 5px;
    }
    .empresaPeqP {
        font-size: 30px;
    }
    .coluna {
        float: left;
        width: 50%;
        padding: 15px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1099px) {
    .placa {
        font-size: 120px;
    }
    .titulo {
        font-size: 80px;
    }
    .subtitulo {
        font-size: 40px;
    }
    .tituloPeq {
        font-size: 25px;
        margin: 5px;
    }
    .empresaPeq {
        font-size: 25px;
        margin: 5px;
    }
    .empresaPeqP {
        font-size: 25px;
    }
    .coluna {
        float: left;
        width: 50%;
        padding: 10px;
    }
}

@media screen and (min-width: 425px) and (max-width: 767px) {
    .placa {
        font-size: 80px;
    }
    .titulo {
        font-size: 50px;
    }
    .subtitulo {
        font-size: 40px;
    }
    .tituloPeq {
        font-size: 20px;
        margin: 5px;
    }
    .empresaPeq {
        font-size: 20px;
        margin: 5px;
    }
    .empresaPeqP {
        font-size: 20px;
    }
    .coluna {
        width: 100%;
    }
    .ocultar_mobile {
        display: none;
    }
    .fontePeq {
        font-size: 10px; 
    }
}

@media screen and (min-width: 321px) and (max-width: 424px) {
    .placa {
        font-size: 50px;
    }
    .titulo {
        font-size: 45px;  /* era 35 */
    }
    .subtitulo {
        font-size: 35px;
    }
    .tituloPeq {
        font-size: 15px;
        margin: 5px;
    }
    .empresaPeq {
        font-size: 15px;
        margin: 5px;
    }
    .empresaPeqP {
        font-size: 15px;
    }
    .coluna {
        width: 100%;
    }
    .ocultar_mobile {
        display: none;
    }
    .fontePeq {
        font-size: 8px; 
    }
}

@media screen and (max-width: 320px) {
    .placa {
        font-size: 30px;
    }
    .titulo {
        font-size: 60px;  /* era 15 */
    }
    .subtitulo {
        font-size: 30px;
    }
    .tituloPeq {
        font-size: 10px;
        margin: 5px;
    }
    .empresaPeq {
        font-size: 10px;
        margin: 5px;
    }
    .empresaPeqP {
        font-size: 10px;
    }
    .coluna {
        width: 100%;
    }
    .ocultar_mobile {
        display: none;
    }
    .fontePeq {
        font-size: 6px; 
    }

}

/* ---------  quebra de linha nas tables ----------------- */
th, td {
  word-break: break-word;
  white-space: normal;
}


/* ---------------------------------------------------- */

body {
    font-family: Ubuntu, Roboto, sans-serif;
    text-align: center;
    color: #F26322;
    background-color: black; 
    /* color: #ccd0e4;
    background-color: rgb(24, 24, 24); */
}

.titulo {
    /* font-family: 'Ubuntu Light'; */
    color: #FEC804;
}

p.especial {
    background-color:black;
    color:yellow;
    text-align:center;
    font-size: 150%;
}

p,p.titulo, h1.titulo {
    color: #FEC804;
}
.container {
    display: flex;
    flex-direction: row;
    justify-content:space-between ;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
}

input.none {
    display:none;
}

.blocoEsq {
    text-align: left;
}
.blocoDir {
    text-align: right;
}
.tituloPeq {
    font-family: 'Ubuntu Light';
    /* font-size: 30px; */
    margin: 5px;
}
.empresaPeq {
    font-family: 'Ubuntu Light';
    /* font-size: 30px; */
    margin: 5px;
}
.empresaPeqP {  /* usuario Premium */
    font-family: 'Ubuntu Light';
    /* font-size: 30px; */
    margin: 5px;
    color: rgb(156, 253, 46);
}
.subtitulo {
    font-family: 'Ubuntu';
    color: rgb(177, 182, 93);
    /* font-size: 50px; */
}
.texto {
    font-family: 'Ubuntu';
    color: rgb(197, 197, 209);
    font-size: 25px;
}
.textoDestaque {
    font-family: 'Ubuntu';
    color: rgb(186, 186, 211);
    font-size: 25px;
}
.textoAmarelo {
    font-family: 'Ubuntu';
    color: rgb(218, 196, 77);
    font-size: 25px;
}
.textoPreto {
    font-family: 'Ubuntu';
    color: black;
    font-size: 25px;
}
.textoCinza {
    font-family: 'Ubuntu';
    color: rgba(197, 196, 196, 0.281);
    /* font-size: 25px; */
}

.botaoBase {
    font-family: 'Ubuntu';
    background-color: rgb(7, 28, 66);
    color: rgb(186, 194, 207);
    font-size: 15px;
    margin: 5px 10px;
    border-radius: 10px;
}
.botaoBase:hover {
    background-color: rgb(95, 228, 42);
    color: black;
    border-radius: 10px;
} 
.botaoBaseEncerrar {
    font-family: 'Ubuntu';
    background-color: red;
    color: white;
    font-size: 15px;
    margin: 5px 10px;
    border-radius: 10px;
}
.botaoBaseEncerrar:hover {
    background-color: black;
    color: white;
    border-radius: 10px;
}
.botaoBaseConfirmar {
    font-family: 'Ubuntu';
    background-color: rgb(49, 236, 43);
    color: black;
    font-size: 15px;
    margin: 5px 10px;
    border-radius: 10px;
}
.botaoBaseCinza {
    font-family: 'Ubuntu';
    background-color: rgb(109, 108, 108);
    color: white;
    font-size: 15px;
    margin: 5px 10px;
    border-radius: 10px;
}
.botaoBaseCinza:hover {
    background-color: rgb(95, 228, 42);
    color: black;
    border-radius: 10px;
} 
.botaoBaseNeutro {
    font-family: 'Ubuntu';
    background-color: black;
    color: white;
    font-size: 15px;
    margin: 5px 10px;
    border-radius: 10px;
}
.botaoBaseNeutro:hover {
    background-color: white;
    color: rgb(107, 105, 105);
    border-radius: 10px;
} 
.button1 {
    background-color: #4CAF50;
    border-radius: 10px;
}

.placa {
    background-color: gray;
    color: black;
}
#placa {
    text-transform:uppercase;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}
.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}
.fundoAmarelo {
    background-color: rgb(248, 189, 28);
    color: black;
}

@media print {
	.noPrint  {
		display: none;
	}
	.printme  {
		display: block;
	}
}

input:placeholder-shown {
    background-color: rgb(243, 227, 9);    
}

table {
    width: 100%;
    table-layout: fixed;
}

tr, tr.td {
    color: white;
}

.user-message {
    background-color: #f2c777;
    color: #000;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
}

.neon-ia-strong {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-weight: 700;
    color: #00eaff;
    animation: neonPulseStrong 1.8s infinite alternate;
}

@keyframes neonPulseStrong {
    0% {
        text-shadow:
            0 0 2px #00eaff,
            0 0 6px #00eaff;
        opacity: 0.4;
    }
    100% {
        text-shadow:
            0 0 6px #00eaff,
            0 0 16px #00eaff,
            0 0 32px #00eaff,
            0 0 64px #00eaff;
        opacity: 1;
    }
}
