/* Estilo geral */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: url('../src/img_concursos_01.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    display: flex;
    justify-content: flex-start; /* Alinha o conteúdo à esquerda */
    align-items: center;
}

/* Header */
.logo-container {
    max-width: 250px; /* Ajuste o valor conforme necessário */
}

.logo-container a:hover {
    opacity: 0.8; /* Adiciona um efeito ao passar o mouse */
}

.logo {
    width: 100%;
    height: auto;
}


/* Banner */
.banner {
    text-align: center;
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.5);
    margin: 20px auto;
    border-radius: 10px;
    max-width: 800px;
}

.banner h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.banner p {
    font-size: 1.2em;
}

/* Info Section */
.info-section {
    background: rgba(0, 0, 0, 0.8);
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 10px;
}

.info-section h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.info-section p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.links {
    list-style: none;
    padding: 0;
}

.links li {
    margin: 10px 0;
}

.links a {
    color: #00d1b2;
    text-decoration: none;
    font-size: 1.2em;
}

.links a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.7);
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Footer */
.footer {
    text-align: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.9em;
    position: fixed; /* Fixa o footer na base da janela */
    bottom: 0;
    width: 100%;
    z-index: 10; /* Garante que esteja acima de outros elementos */
}
