/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    font-family: Arial, sans-serif;
    background: #021024;
    color: white;
    line-height: 1.6; 
    overflow-x: hidden; /* Trava de segurança contra rolagem lateral */
}

/* MAIN */
main {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* CARDS */
.card {
    background: #052659;
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 0 15px rgba(193, 232, 255, 0.2);
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap; /* Faz o texto descer se a imagem ocupar muito espaço */
}

/* IMAGENS - Ajustadas para responsividade */
.card img {
    width: 100%;        /* Ajusta ao tamanho da tela em celulares */
    max-width: 300px;   /* Não deixa a imagem gigante no PC */
    height: auto;
    border-radius: 12px;
}

/* TEXTOS */
h2 {
    color: #C1E8FF;
    margin-bottom: 10px;
    font-size: 20px;
}

.card p {
    font-size: 20px;
}

/* BOTÃO */
.botao {
    display: inline-block;
    margin-top: 15px;
    background: #7DA0CA;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.botao:hover {
    background: #C1E8FF;
    color: #021024;
}

/* TABELA E CONTAINER */
.table-container {
    width: 100%;
    overflow-x: auto; /* A rolagem fica presa aqui dentro */
    margin-top: 5px;
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px; /* Garante que a tabela não "esmague" o conteúdo */
}

th, td {
    border: 2px solid #7DA0CA;
    padding: 6px 12px;
    text-align: center;
    color: white;
}

th {
    background: #052659;
}

td:hover{
    background-color: #0527598c;
}
/* FORMULÁRIO */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input {
    padding: 10px;
    border: none;
    border-radius: 8px;
}

label {
    font-weight: bold;
}

