* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

.container-header {
    background-color: #e7dbc2;
    padding: 10px 0;
    text-align: center;
}

.logo-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.logo {
    max-width: 200px;
    margin-right: 20px;
    width: 100%;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

nav ul li {
    margin: 10px 15px;
}

nav ul li a {
    color: #005ca5;
    text-decoration: none;
    font-size: 1.2em;
}

.container {
    width: 85%;
    margin: 0 auto;
    padding: 20px 0;
}

h2 {
    margin-bottom: 20px;
    color: #005ca5;
}

h3 {
    margin-bottom: 15px;
    color: #005ca5;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

.hero {
    background-color: #e4e4e4;
    padding: 30px 0;
    color: #005ca5;
    text-align: center;
}

.hero h1 {
    font-size: 2.5em;
}

.hero p {
    font-size: 1.2em;
    margin: 20px 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

table, th, td {
    border: 1px solid #005ca5;
}

th, td {
    padding: 15px;
    text-align: left;
}

/* Remoção da largura fixa das colunas na tabela de datas importantes */
.table-datas th, .table-datas td {
    width: auto;
}

.btn {
    padding: 10px 20px;
    background-color: #005ca5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    width: fit-content;
    margin: 20px auto;
    display: block;
}

.palestrantes {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.palestrante {
    text-align: center;
    margin: 0 10px;
}

.foto-palestrante {
    width: 150px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

section {
    padding: 30px 0;
}

.video-ajustado {
    width: 20%; /* Ajuste do tamanho para 20% da largura da página */
    height: auto;
    display: block;
    margin: 20px auto;
}

footer {
    background-color: #005ca5;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.organizadores {
    padding: 30px 0;
    background-color: #f4f4f4;
}

.organizadores-texto {
    margin-bottom: 20px;
}

.organizadores-logo {
    text-align: left; /* Alinhamento à esquerda */
}

.img-logo {
    display: block;
    margin-left: 0;
    height: auto;
}

/* Responsividade */
@media (max-width: 768px) {
    .palestrantes {
        flex-direction: column;
        align-items: center;
    }

    .palestrante {
        margin-bottom: 20px;
    }

    .img-logo {
        width: 100%; /* Mantém a imagem sem definir um tamanho específico */
    }

    .btn {
        width: 100%; /* Deixar o botão responsivo */
    }
}
