body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1; /* O vídeo ficará atrás do botão */
}

#video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#fullscreen-btn {
    position: fixed; /* Mantém o botão fixo no lugar, mesmo ao rolar a página */
    bottom: 2px;    /* Posição 20px do rodapé */
    left: 50%;       /* Centralizado horizontalmente */
    transform: translateX(-50%); /* Centraliza completamente */
    z-index: 3;      /* O botão ficará acima do vídeo e do menu */
    padding: 10px 20px;
	 height: 30px;
    background-color: rgba(0, 123, 255, 0.8); /* Torna o botão levemente translúcido */
    color: #fff;
    border: none;
    border-radius: 5px;
}

.menu-translucent {
    width: 96%;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2); /* Translucidez */
    backdrop-filter: blur(5px); /* Efeito de vidro fosco */
    z-index: 2; /* Ficar atrás do botão */
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.menu-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn {
    font-size: 1.2em;
    height: 50px; /* Definir altura maior para os botões */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2); /* Translucidez */
    backdrop-filter: blur(5px); /* Efeito de vidro fosco */
	 color: #ffffff;
	 font-weight: normal;
}

.row {
    margin-bottom: 10px;
}

a {
    text-decoration: none; /* Remove o sublinhado padrão */
    color: inherit; /* Garante que a cor do link seja herdada do elemento pai */
}

a:hover {
    color: inherit; /* Garante que a cor do link ao passar o mouse também seja herdada do elemento pai */
    text-decoration: none; /* Mantém sem sublinhado ao passar o mouse */
}