body {
    margin: 0;
    font-family: Inter, system-ui, Segoe UI, Arial;
    background-color: white;
}

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

h1 {
    color: #3F3A34;
}



button {

    margin: 24px;

    padding: 8px 12px;
    border-radius: 5px;
    font-size: 17px;

}

.titulo a {
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    background-color: white;
    min-height: 100vh;
}

.card {
    background-color: white;
    width: 60%;
    border-radius: 3vh;
    border: 3px solid #c73035;
}

.titulo {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.infos {
    width: 100%;
    overflow-x: auto;
    padding: 20PX;
    gap: 30px;
}

#tabela {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

#tabela th,
#tabela td {
    border: 1px solid #000;
    padding: 6px 8px;
    vertical-align: middle;
}

#tabela thead th {
    background-color: hsl(54, 100%, 62%);

    text-align: center;
    font-weight: bold;
}

#tabela td:nth-child(1),
#tabela td:nth-child(3) {
    text-align: center;
}

#tabela a {
    color: #1a73e8;
    text-decoration: underline;
    word-break: break-all;
}


#tabela tbody tr:hover {
    background-color: white;
}

#botoes {
    gap: 1900px;
}

.menuBar {
    display: flex;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0px 24px;
    height: 74.49px;
    background-color: #c73035;
}

#Logo {
    width: 250px;
    border: 3px solid black;
    border-radius: 20px;
}

.navMenu {
    display: flex;
    gap: 4vw;
    align-items: center;
    padding-left: 100px;
}

.navMenu a {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.navMenu a:hover {
    background-color: white;
    color: black;
}












.rodape {
    width: 100%;
    justify-items: center;
    padding: 20px;
    background-color: #c73035;
    text-align: center;
    margin-top: 20px;
    color: white;
    box-sizing: border-box;
}

.rodape a {
    text-decoration: none;
}
