/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body, html {
    height: 100%;
    overflow: hidden;
    background-color: #000; /* Fundo preto */
    color: #cccccc; /* Texto em cinza */
    display: flex;
    flex-direction: column;
}

/* Cabeçalho */
header {
    display: flex;
    justify-content: center;
    background-color: #000; /* Preto */
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    z-index: 1000;
    position: fixed;
    top: 0;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 180px;
    height: auto;
}

.login {
    display: flex;
}

.login a {
    font-size: 1rem;
    color: #999; /* Cinza claro */
    text-decoration: none;
    margin-right: 20px;
}

.login a:hover {
    color: #ffffff; /* Branco no hover */
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: #666;
    margin: 4px;
}

/* Menu responsivo */
@media (max-width: 800px) {
    .login {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #000; /* Preto */
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        align-items: center;
        justify-content: center;
        padding: 20px;
        z-index: 999;
    }

    .login.active {
        display: flex;
    }

    .login a {
        margin: 15px 0;
        color: #ffffff;
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }
}

/* Container principal */
.main-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
    width: 100%;
    margin-top: 60px; /* Espaço para o cabeçalho */
    padding: 20px;
    overflow-y: auto;
    box-sizing: border-box;
}

/* Estilos para o conteúdo */
.content {
    max-width: 800px;
    text-align: left;
    line-height: 1.6;
    color: #cccccc; /* Texto em cinza */
}

h2 {
    font-size: 1.8rem;
    color: #ffffff; /* Branco para os títulos */
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #b0b0b0; /* Cinza mais escuro para o parágrafo */
}

a {
    color: #ffffff; /* Branco para links */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Estilos do vídeo */
video {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-bottom: 20px;
    background-color: #000; /* Fundo preto para o vídeo */
}

/* Footer padrão */
.footer-bar-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #1a1a1a; /* Preto mais suave */
    color: #cccccc;
    font-size: 14px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    font-family: Arial, sans-serif;
}

.footer-bar-mobile a {
    color: #ffffff; /* Branco para links no footer */
    text-decoration: none;
    margin: 5px 10px;
    font-size: 14px;
}

.footer-bar-mobile a:hover {
    text-decoration: underline;
}
