/* ==============================
   Estilo Geral
================================= */
body {
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ==============================
   Cabeçalho
================================= */
header {
    width: 100%;
    background: #1f1f1f;
    padding: 20px 0;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ==============================
   Conteúdo Principal
================================= */
.content {
    max-width: 800px;
    width: 90%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ==============================
   Seções de Informações
================================= */
.info-section {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.info-section h2 {
    color: #007bff;
    margin-bottom: 10px;
}

.info-section p {
    font-size: 16px;
    line-height: 1.5;
}

/* ==============================
   Botões
================================= */
a#docs-button, 
a[target="_blank"] {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    color: white;
    background: #007bff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
}

a#docs-button:hover, 
a[target="_blank"]:hover {
    background: #0056b3;
}

/* ==============================
   Centralizar o vídeo na tela
================================= */
.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* O vídeo ocupará toda a altura da tela */
}

/* Ajuste na .video-container */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Limita a largura para não ficar exagerado */
    padding-bottom: 45%; /* Ajuste na proporção */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}