* {
    margin: 0;
    padding: 0;
}

body {
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    padding: 0;
    margin: 0;
}

.logo img {
    height: 100px;
    width: auto;
    margin-left: 15px;
}

.back video {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.5;
}

header {
    position: fixed;
    top: 2px;
    width: 100%;
    background: #003366;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;
}

nav {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

main {
    margin: 0;
    padding: 0;
    width: 100%;
    margin-top: 150px;
}

.container {
    max-width: 70vw;
    margin: 40px auto;
    background: #f7f5f534;
    padding: 25px;
    border-radius: 8px;
}

.objetivo img {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
    align-items: center;
}


.contribuicao img {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
    align-items: center;
    margin-top: 10%;
}

.historico img {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
    align-items: center;
    margin-top: 10%;
}

.grafico img {
    display: block;
    margin: auto;
    max-width: 100%;
    height: auto;
    align-items: center;
}

.carousel {
    position: relative;
    max-width: 1000px;
    margin: 40px auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide {
    min-width: 100%;
    display: none;
}

.slide.active {
    display: block;
}

.slide img {
    width: 100%;
    border-radius: 8px;
}

.carousel-btn {
    position: absolute;
    background: #06335500;
    color: white;
    border: none;
    font-size: 30px;
    cursor: pointer;
    border-radius: 5px;
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:hover {
    background: #0050a0;
}

h1, h2 {
    text-align: center;
    font-size: 3vh;
}

p {
    line-height: 1.6;
    font-size: 2vh;
    display: flex;
    justify-content: center;
}

label {
    font-weight: bold;
}

.spacer {
    height: 73px;
}

input,
select {
    width: 100%;
    padding: 8px;
    margin: 5px 0 15px;
}

button {
    width: 100%;
    padding: 12px;
    background: #003366;
    color: #eee7e7;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
    font-size: 15px;
    overflow-x: auto;
}

.container table{
    background-color: #eee7e791;
}

th,
td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
}

th {
    background: #003366;
    color: white;
}

footer {
    background: #003366;
    width: 100%;
    color: #fff;
    padding: 25px 15px;
    text-align: center;
}