body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    background-image: url('./fundo.png');
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    background-image: url('./fundo.png');
    color: white;
    text-align: center;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: wrap;
}

header h1 {
    margin: 0;
    flex-grow: 1;
    font-size: 1.5rem;
    text-align: center;
}

.header-image {
    max-width: 80px;
    height: auto;
}

.header-links {
    color: white;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    padding: 10px 15px;
    background-color: #ff4c4c;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.header-links:hover {
    background-color: #cc3a3a;
    transform: scale(1.05);
}

.content {
    max-width: 500px;
    margin: 30px auto;
    padding: 15px;
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
}

h2 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

form {
    background-color: #fff;
    padding: 6px;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 86%;
    max-width: 450px;
    margin: 0 auto;
}

label {
    font-weight: bold;
    margin-top: 10px;
    display: block;
}

input[type="text"], input[type="date"], input[type="file"], input[type="submit"], input[type="password"], select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
}

input[type="submit"]:hover {
    background-color: #45a049;
}

/* Estilo dos botões */
.btn {
    padding: 15px 25px;
    font-size: 18px;
    color: white;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 200px;
    margin: 10px 0;
}

.btn:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.btn1:hover {
    background-color: #fff;
    transform: scale(1.05);
}

.btn-secondary {
    background-color: #28a745;
}

.btn-secondary:hover {
    background-color: #218838;
}

footer {
    background-color: #0044cc;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 1024px) {
    header h1 {
        font-size: 1.2rem;
    }

    .content {
        margin: 10px;
        padding: 12px;
    }

    .header-links {
        font-size: 14px;
        padding: 8px 15px;
    }

    form {
        padding: 15px;
    }

    input[type="text"], input[type="date"], input[type="file"], input[type="submit"] {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    header h1 {
        font-size: 1rem;
    }

    .content {
        margin: 10px;
        padding: 15px;
    }

    .btn {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1rem;
    }

    .header-links {
        font-size: 12px;
        padding: 6px 12px;
    }

    .content {
        margin: 5px;
        padding: 10px;
    }

    input[type="submit"] {
        padding: 10px;
        font-size: 14px;
    }
}

/* Estilo para os campos de entrada */
input[type="text"],
input[type="date"],
input[type="email"],
input[type="file"],
select {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

/* Estilo para os labels */
label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

/* Estilo de foco nos campos de entrada */
input[type="text"]:focus,
input[type="date"]:focus,
input[type="email"]:focus,
input[type="file"]:focus,
select:focus {
    border-color: #007BFF;
    outline: none;
}

/* Estilo para o botão de submit */
input[type="submit"] {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    text-align: center;
}

footer {
    background-color: #222;
    color: #fff;
    padding: 20px 10px;
    text-align: center;
    font-family: Arial, sans-serif;
}

footer div {
    margin-bottom: 10px;
}

footer p {
    font-size: 16px;
    margin: 0;
}

footer h3 {
    margin: 0;
    font-size: 24px;
}

/* Responsividade */
@media (max-width: 1024px) {
    footer {
        padding: 15px;
    }

    footer p {
        font-size: 14px;
    }

    footer h3 {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 15px 10px;
    }

    footer p {
        font-size: 13px;
    }

    footer h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 10px 5px;
    }

    footer p {
        font-size: 12px;
    }

    footer h3 {
        font-size: 18px;
    }
}

body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    font-family: 'Poppins', Arial, sans-serif;
}

.slide-container {
    position: relative;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.text {
    font-size: 3rem;
    font-weight: bold;
    color: #ffff00;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: absolute;
    white-space: nowrap;
    animation: slide 4s infinite linear;
}

.text span {
    display: inline-block;
    animation: glow 1s infinite alternate;
}

@keyframes slide {
    0% {
        transform: translateX(100%);
    }
    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes glow {
    0% {
        text-shadow: 0 0 10px #4CAF50, 0 0 20px #4CAF50, 0 0 30px #81C784;
    }
    100% {
        text-shadow: 0 0 20px #388E3C, 0 0 30px #66BB6A, 0 0 40px #A5D6A7;
    }
}

.btn1 {
    background-color: #1E90FF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-amarelo:hover {
    background-color: #4682B4;
    transform: scale(1.05);
}
/* Reset básico de estilo */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to right, #ff7f50, #ff4500); /* Gradiente de cor laranja */
    color: #333;
    text-align: center;
    padding: 40px 20px;
}



h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

h2 {
    font-size: 28px;
    color: #3e3e3e;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: normal;
}

/* Estilo do container principal */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.8); /* Fundo semi-transparente para destacar o conteúdo */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding-top: 60px;
    transition: opacity 0.3s ease-in-out;
}

.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 15px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: #333;
    text-decoration: none;
}

/* Estilos de vídeo e canvas */
#video {
    width: 90%;
    max-width: 200px;
    border-radius: 15px;
    margin-top: 20px;
    border: 4px solid #3b8d99;
}

#selfieCanvas {
    display: none;
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-top: 20px;
    border: 4px solid #3b8d99;
}

/* Botões */
#captureSelfieBtn,
#openSelfieModal {
    background-color: #3b8d99;
    color: white;
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

#captureSelfieBtn:hover,
#openSelfieModal:hover {
    background-color: #2a6775;
}

/* Estilos do scanner */
#scanner {
    position: relative;
    width: 180px;
    height: 240px;
    margin-top: 30px;
    background: #f4f4f4;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, #dfe7e9 25%, #f2f5f6 75%);
}

#scanner .fingerprint-risks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(0, 0, 0, 0.1) 30%, transparent 32%, rgba(0, 0, 0, 0.05) 40%, transparent 42%, rgba(0, 0, 0, 0.1) 50%, transparent 52%);
    background-size: 20px 20px;
}

.scanner-line {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(0, 255, 0, 0.7);
    z-index: 2;
}

/* Animação de varredura */
@keyframes scan {
    0% {
        top: -100%;
        opacity: 0;
    }
    50% {
        top: 50%;
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Mensagem de Sucesso */
#success-message {
    display: none;
    margin-top: 20px;
    font-size: 20px;
    color: #27ae60;
    font-weight: bold;
}
/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo do corpo da página */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    padding: 20px;
}

/* Cabeçalho */
header {
    background-color: #f15228;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Contêiner de botões */
.button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

/* Estilo dos botões */
button {
    padding: 15px 25px;
    font-size: 16px;
    color: #212020;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 200px;
}

/* Efeito ao passar o mouse nos botões */
button:hover {
    transform: translateY(-3px);
}

/* Botão de andamento */
.btn-andamento {
    background-color: #dfeaf6; /* Azul */
}

.btn-andamento:hover {
    background-color: #0056b3;
}

/* Botão de pagamentos */
.btn-pagamentos {
    background-color: #10fd6366; /* Verde claro */
}

.btn-pagamentos:hover {
    background-color: #0056b3;
}

/* Contêiner de informações */
.info-container {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

/* Título da seção de informações */
.info-container h2 {
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid #f15228;
    padding-bottom: 10px;
}

/* Formulário */
form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

form input[type="text"], form input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form input[type="submit"] {
    background-color: #f15228;
    color: white;
    cursor: pointer;
}

form input[type="submit"]:hover {
    background-color: #45a049;
}

/* Resultados encontrados */
.result p {
    margin: 10px 0;
    color: #555;
}

.result a {
    color: #6bd67d;
    text-decoration: none;
}

.result a:hover {
    text-decoration: underline;
}

/* Estilo da imagem de foto */
img {
    display: block;
    margin: 20px auto;
    max-width: 120px;
    border-radius: 8px;
}

/* Rodapé */
footer {
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: 14px;
}

/* Contêiner para a chave PIX */
.pix-key-container {
    margin-top: 20px;
    text-align: center;
}

#pix-key {
    width: 80%;
    max-width: 400px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 15px;
}

/* Botão de copiar chave PIX */
button#copy-pix {
    background-color: #1f5c9f;  /* Cor de fundo azul */
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

button#copy-pix:hover {
    background-color: #0056b3;  /* Azul escuro ao passar o mouse */
}

/* Ícone de casinha no rodapé */
.home-icon-footer {
    font-size: 30px;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    background-color: #f15228;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

.home-icon-footer:hover {
    background-color: #0b2c09;
    color: white;
    transform: scale(1.1);
}

/* Estilos para o botão "Faça Sua Prova" */
button.btn-fazer-prova {
    padding: 12px 30px;
    font-size: 18px;
    color: white;
    background-color: #f15228; /* Cor laranja */
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 20px;
}

button.btn-fazer-prova:hover {
    background-color: #e04220; /* Cor laranja escuro ao passar o mouse */
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

button.btn-fazer-prova:active {
    transform: translateY(1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    padding: 20px;
    overflow-x: auto;
}

h1 {
    text-align: center;
    color: #ffff00;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.total-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.total-card {
    background-color: #4caf50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 300px;
    width: auto;
    transition: transform 0.2s ease-in-out;
}

.total-card:hover {
    transform: scale(1.05);
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    table-layout: fixed;
    min-width: 1000px;
}

th, td {
    padding: 15px;
    text-align: center;
    border: 1px solid #ddd;
    word-wrap: break-word; /* Permite a quebra de palavras longas */
    overflow: hidden;
    text-overflow: ellipsis; /* Adiciona elipse (...) para texto que excede o tamanho da célula */
    max-width: 200px; /* Limita o tamanho máximo das células */
}

th {
    background-color: #ffff00;
    color: #111111;
    font-size: 1.1rem;
}

td {
    background-color: #fafafa;
    color: #555;
    font-size: 0.95rem;
}

td img {
    max-width: 120px;
    max-height: 120px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

td img:hover {
    transform: scale(1.1);
}

td a {
    color: #007BFF;
    text-decoration: none;
    font-size: 0.9rem;
}

td a:hover {
    text-decoration: underline;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-delete:hover {
    background-color: #c82333;
}

.btn-edit {
    background-color: #28a745;
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
    text-decoration: none;
}

.btn-edit:hover {
    background-color: #218838;
}

/* Adiciona rolagem horizontal no contêiner da tabela em telas pequenas */
.container {
    max-width: 100%;
    overflow-x: auto; /* Permite rolagem horizontal quando necessário */
}

/* Ajustes em telas pequenas */
@media (max-width: 768px) {
    table {
        width: 100%;
        font-size: 0.9rem;
    }

    td img {
        max-width: 100px;
        max-height: 100px;
    }

    h1 {
        font-size: 2rem;
    }

    th, td {
        max-width: 120px; /* Ajuste do tamanho máximo das células */
    }
}
    /* Estilos principais */
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f9;
            margin: 0;
            padding: 20px;
        }

        h1 {
            text-align: center;
            color: #0b110f;
            margin-bottom: 30px;
            font-size: 2.5rem;
        }

        .form-container {
            width: 80%;
            max-width: 800px;
            margin: 0 auto;
            background-color: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        form {
            display: flex;
            flex-direction: column;
        }

        label {
            margin-bottom: 8px;
            font-weight: bold;
        }

        input[type="text"],
        input[type="date"],
        select,
        input[type="file"] {
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }

        .photo-container {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .photo-container img {
            max-width: 120px;
            max-height: 120px;
            margin-right: 10px;
            border-radius: 8px;
        }

        button[type="submit"] {
            background-color: #007bff;
            color: white;
            padding: 10px;
            font-size: 1.1rem;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        button[type="submit"]:hover {
            background-color: #0056b3;
        }

        .btn-back {
            display: inline-block;
            margin-top: 20px;
            background-color: #007BFF;
            color: white;
            padding: 10px 20px;
            font-size: 1rem;
            text-decoration: none;
            border-radius: 5px;
            text-align: center;
            transition: background-color 0.3s ease;
        }

        .btn-back:hover {
            background-color: #0056b3;
        }
        
        
    