﻿
@font-face {
    font-family: 'Futura';
    src: url('Futura Medium.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body, html {
    height: 100%; /* Ensures the body and html elements cover the full height of the viewport */
    margin: 0; /* Removes default browser margins, preventing extra whitespace */
    padding-bottom: 25px;
}

body {
    background-position: center; /* Centers the image horizontally and vertically */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-size: cover; /* Scales the image to cover the entire container while maintaining its aspect ratio */
    background-attachment: fixed; /* Keeps the background fixed in place when content scrolls */
    background-image: url("imagens/tela_home.jpg"); /* Specify the path to your image file */
    font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
}

#video {
    height: 100%;
    width: 100%;
    position: relative; 
    overflow: hidden;
}
    #video iframe {
        object-fit: cover; /* Garante que o vídeo preencha o contêiner sem distorção */
        width: 100%;
        height: 100%;
    }

.header-minimalist {
    display: flex;
    justify-content: space-between; /* Distribui o logo e os links */
    align-items: center; /* Alinha verticalmente */
    padding: 10px 5%; /* Espaçamento interno */
   
    box-shadow: 0 2px 4px rgba(0,0,0,0.05); /* Sombra sutil */
   
}

.logo a {
    text-decoration: none;
    color: #333; /* Cor escura para contraste */
    font-size: 1.5rem; /* Tamanho do logo */
    font-weight: bold;
}

.nav-links a {
    text-decoration: none;
    color: white;
    margin-left: 20px; /* Espaçamento entre os links */
    font-size: 1.2rem;
    transition: color 0.3s;
}

    .nav-links a:hover {
        color: greenyellow; /* Cor ao passar o mouse */
    }

#esquerda {
    color: white;
    font-size: 2rem;
    top: 25%;
    left: 5%;
    position: absolute;
}



#fonte {
    color: white;
    font-size: 1.5rem;
}

.table-container {
    width: 100%;
    overflow-x: auto; /* Adiciona barra de rolagem horizontal se necessário */
    font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
}

table {
    width: 100%; /* Ocupa a largura do contêiner */
    min-width: 600px; /* Impede que a tabela fique muito estreita no celular */
    font-family: 'Futura', 'Trebuchet MS', Arial, sans-serif;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    text-align: right;
    padding: 5px 0;
   
}

/* Estilização do conteúdo do footer */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Estilização da navegação do footer */
.footer-nav {
    margin-top: 1px;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.footer-nav a:hover {
    text-decoration: underline;
}
