body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    color: white;
    overflow-y: auto; /* Permitir rolagem vertical */
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
    pointer-events: none;
}

header {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
}

main {
    padding: 20px;
}

section {
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
}

h1, h2 {
    text-align: center;
}

img {
    display: block;
    margin: 20px auto;
    max-width: 200px;
    border-radius: 50%;
}

ul {
    list-style: none;
    padding: 0;
}

ul li {
    margin: 10px 0;
}

ul li a {
    color: #00bfff;
    text-decoration: none;
}

ul li a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 10px;
    background: rgba(0, 0, 0, 0.7);
}


