/* ---- 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%;
    }
}

@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;
    }
}

@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;
    }

}


body {
    font-family: Ubuntu, Roboto, sans-serif;
    text-align: center;
    color: #ccd0e4;
    background-color: #2e2c2c;
}

img {
    margin-top: 40px;
    max-width: 100%; 
    height: auto;
    border-radius: 30%;
}

.titulo {
    font-family: 'Ubuntu Light';
    /* font-size: 100px; */
}

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

p,p.titulo, h1.titulo {
    color: lightgreen;
}
.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 Thin';
    color: rgb(154, 181, 233);
    /* font-size: 50px; */
}
.texto {
    font-family: 'Ubuntu Thin';
    color: rgb(125, 124, 190);
    font-size: 25px;
}
.textoDestaque {
    font-family: 'Ubuntu Thin';
    color: rgb(248, 248, 252);
    font-size: 25px;
}
.textoAmarelo {
    font-family: 'Ubuntu Thin';
    color: rgb(218, 196, 77);
    font-size: 25px;
}

.fade-in {
    animation: fadeIn ease 12s;
    -webkit-animation: fadeIn ease 12s;
    -moz-animation: fadeIn ease 12s;
    -o-animation: fadeIn ease 12s;
    -ms-animation: fadeIn ease 12s;
}
@keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}

@-ms-keyframes fadeIn {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}


.fade-out {
    animation: fadeOut ease 8s;
    -webkit-animation: fadeOut ease 8s;
    -moz-animation: fadeOut ease 8s;
    -o-animation: fadeOut ease 8s;
    -ms-animation: fadeOut ease 8s;
}
@keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}

@-ms-keyframes fadeOut {
    0% {
        opacity:1;
    }
    100% {
        opacity:0;
    }
}

/* ---------------- precisa????
.button {
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}
-------------------------- */

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

.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;
}
.letraPreta {
    color: black;
}
.letraVermelha {
    color: red;
}
.letraAzul {
    color: lightseagreen;
}
.letraVerde {
    color: green;
}
.letraBranca {
    color: rgb(255, 255, 255);
}




/* abertura da tela splash: */

.container2 {
  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.container2 p {
  font-size: 2rem;
  padding: 0.5rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  text-align: center;
  overflow: hidden;
  color: #2dfc2d;
}
.container2 p span.typed-text {
  font-weight: normal;
  color: #ddcc32; /* #dd7732 */
}
.container2 p span.cursor {
  display: inline-block;
  background-color: #ccc;
  margin-left: 0.1rem;
  width: 3px;
  animation: blink 1s infinite;
}
.container2 p span.cursor.typing {
  animation: none;
}
@keyframes blink {
  0%  { background-color: #ccc; }
  49% { background-color: #ccc; }
  50% { background-color: transparent; }
  99% { background-color: transparent; }
  100%  { background-color: #ccc; }
}
@media print {
	.noPrint  {
		display: none;
	}
	.printme  {
		display: block;
	}
}

.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;
    }
}

/* Table styles for readability and consistency */
.styled-table {
    width: 90%; /* Adjust as needed */
    border-collapse: collapse;
    margin: 20px auto; /* Center the table and add vertical spacing */
    font-family: 'Ubuntu Thin', sans-serif;
    color: #ccd0e4; /* Light text color from body */
    background-color: #2e2c2c; /* Dark background color from body */
}

.styled-table th,
.styled-table td {
    border: 1px solid #555; /* Slightly lighter border for contrast */
    padding: 8px;
    text-align: left;
}

.styled-table th {
    background-color: #3e3e3e; /* Slightly different background for headers */
    color: #f8f8f8; /* Lighter text for headers */
    font-weight: bold;
    text-align: center;
}

.styled-table tr:nth-child(even) {
    background-color: #383838; /* Zebra striping for better readability */
}

.styled-table tr:hover {
    background-color: #4a4a4a; /* Highlight row on hover */
}