@charset "utf-8";
/* CSS Document */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}
.top-bar {
    width: 100%;
    height: 10px; /* Altura da tarja azul */
    background-color: #007dcb;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
header {
    position: fixed;
    top: 5px; /* Ajusta para a tarja azul */
    width: 100%;
    background-color: white;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 999;
}
.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}
.logo {
    margin-right: auto;
}
.logo img {
    height: 40px;
}
nav {
    margin-left: auto;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}
nav ul li {
    margin: 0 15px;
}
nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    transition: background-color 0.3s ease;
}
nav ul li a:hover {
    background-color: #e9e9e9;
    border-radius: 5px;
}
main {
    margin-top: 80px; /* Espaço suficiente para o cabeçalho fixo e a tarja azul */
    display: flex;
    justify-content: center;
    padding: 20px;
    max-width: 960px;
}
.training {
    max-width: 960px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.video-container {
    width: 100%;
    margin-bottom: 20px;
    background-color: #e9e9e9;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
video {
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.description {
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.4;
}
/* Oculta o botão de download nos navegadores que suportam a abordagem */
video::-internal-media-controls-download-button {
    display: none;
}
video::-webkit-media-controls-enclosure {
    overflow: hidden;
}
video::-webkit-media-controls-panel {
    width: calc(100% + 30px); /* Ajusta conforme necessário */
}
.vjs-download-button {
    display: none !important;
}
