/* Estilo geral */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: rgb(27,28,28);
    color: rgb(178,178,178);
}

/* Seção da Capa */
#capa {
    width: 100%;
    height: auto;
}

#capa .imagem-capa {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

/* Menu de Navegação */
nav {
    background: rgb(13,33,106);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

nav .menu {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
}

nav .menu li {
    margin: 0 15px;
}

nav .menu a {
    color: rgb(178,178,178);
    text-decoration: none;
    font-weight: bold;
}

nav .menu a:hover {
    color: rgb(52,69,122);
}

/* Conteúdo das Abas */
.tab-content {
    display: none;
    padding: 2rem;
    background-color: rgb(52,52,52);
    margin: 1rem;
    border-radius: 10px;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    color: rgb(123,139,187);
}

.tab-content ul {
    list-style: square;
    padding-left: 20px;
}

/* Estilo para a seção Produtos */
.videos-container {
    display: flex; /* Organiza os vídeos lado a lado */
    gap: 20px; /* Espaçamento entre os vídeos */
    justify-content: center; /* Centraliza os vídeos na tela */
    flex-wrap: wrap; /* Permite quebra de linha em telas pequenas */
    margin-top: 1rem;
}

.videos-container video {
    width: 45%; /* Cada vídeo ocupa 45% da largura */
    border-radius: 10px; /* Bordas arredondadas */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Sombra para destacar */
}

/* Formulário */
form {
    background-color: rgb(27,28,28);
    padding: 1rem;
    border-radius: 10px;
    max-width: 400px;
    margin: auto;
    color: rgb(178,178,178);
}

form input, form textarea, form button {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgb(92,92,92);
    border-radius: 5px;
    background-color: rgb(52,52,52);
    color: rgb(178,178,178);
}

form button {
    background-color: rgb(13,33,106);
    color: rgb(123,139,187);
    font-weight: bold;
}

form button:hover {
    background-color: rgb(52,69,122);
}

/* Rodapé */
footer {
    background: rgb(4,4,4);
    color: rgb(178,178,178);
    text-align: center;
    padding: 1rem 0;
}
