body {
    background-image: url('/img/background.jpg'); /* Substitua pelo caminho da sua imagem */
    background-size: cover; /* Ajusta a imagem para cobrir toda a tela */
    background-position: center; /* Centraliza a imagem */
    background-attachment: fixed; /* Mantém a imagem fixa ao rolar a página */
    background-repeat: no-repeat; /* Evita repetição da imagem */
}

header {
    background-color: #004080;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.logo img {
    width: 150px;
}

nav ul {
    list-style-type: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

main {
    padding: 20px;
    text-align: center;
}

main h1, main h2 {
    color: #004080;
}

.button {
    display: block; /* Garante que os botões fiquem em uma única linha */
    padding: 10px 20px;
    margin: 10px 0;
    background-color: #004080;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    width: 100%; /* Ocupa toda a largura do pai */
    max-width: 400px; /* Limita a largura máxima */
    box-sizing: border-box; /* Garante que o padding seja incluído na largura */
}

.no-mobile {
    display: inline-block;
}

.video-buttons {
    display: flex;
    flex-direction: column; /* Organiza os botões em uma coluna */
    align-items: center; /* Centraliza os botões */
    list-style-type: none; /* Remove os pontos */
    padding: 0; /* Remove o espaçamento padrão */
}

.video-buttons li {
    margin: 10px 0; /* Espaçamento vertical entre os botões */
    width: 100%; /* Garante que cada botão ocupe 100% da largura */
    max-width: 400px; /* Define uma largura máxima */
}

.video-buttons a {
    display: block;
    padding: 10px 20px;
    background-color: #004080;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    width: 100%; /* Garante que o botão ocupe toda a largura do pai */
    box-sizing: border-box; /* Inclui o padding na largura */
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 30px 0;
}

.feature-item {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    margin: 10px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.feature-item h3 {
    margin-bottom: 15px;
}

.feature-item table {
    width: 100%;
    margin-bottom: 20px;
}

.feature-item td {
    padding: 5px 0;
    border-bottom: 1px solid #ddd;
}

@media (max-width: 768px) {
    .no-mobile {
        display: none;
    }

    .video-buttons {
        padding: 0 10px; /* Adiciona um pouco de espaçamento nas laterais */
    }

    .button, .video-buttons a {
        max-width: 100%; /* Garante que os botões ocupem toda a largura disponível em telas menores */
    }
}

footer {
    background-color: #f1f1f1;
    padding: 10px 0;
    text-align: center;
}

footer .social-media a {
    margin: 0 10px;
    color: #004080;
    text-decoration: none;
}
