/* Reset de estilos padrão do navegador */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilos para o corpo da página */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Estilos para o cabeçalho */
header {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 2rem 0;
}

header h1 {
    font-size: 2.5rem;
}

/* Estilos para o rodapé */
footer {
    text-align: center;
    padding: 1rem 0;
    background-color: #333;
    color: #fff;
}

/* Estilos para a navegação, se houver */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
}

nav li {
    margin: 0 15px;
}

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #5c5c5c;
}

/* Estilos para a seção da linha do tempo */
.timeline {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}

.timeline-item {
    display: flex;
    align-items: center; /* Alinhar verticalmente no centro */
    width: 80%;
    margin: 20px auto; /* Centralizar horizontalmente e ajustar as margens superior/inferior */
    padding: 20px;
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.timeline-date {
    flex: 1;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.timeline-content {
    flex: 3;
    padding-left: 20px;
}

.timeline-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.timeline-item.show {
    opacity: 1;
    transform: translateY(0);
}

/* Estilos para a seção de introdução (sobre) */
.about {
    text-align: center;
    padding: 50px 0;
}

.about-content {
    max-width: 600px;
    margin: 0 auto;
}

.about img {
    display: block;
    margin: 0 auto;
    max-width: 50%;
    border: 3px solid #5c5c5c;
}

.about p {
    margin-top: 20px;
}

.timeline-title {
    text-align: center;
    font-size: 2rem;
    margin-top: 40px;
    opacity: 0.95;
    color: #5c5c5c; /* Cor diferente, você pode escolher a que preferir */
    /* Outros estilos específicos para este título */
}

.timeline-content img {
    margin: 10px auto;
    max-width: 50%;
    height: auto;
    border: 2px solid #5c5c5c;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}