/* CONFIGURAÇÕES GERAIS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #0b0b0b; /* Fundo preto escuro */
    color: #ffffff; /* Texto branco padrão */
    padding-bottom: 50px;
}

/* CORES EM DESTAQUE */
.highlight {
    color: #e1ff00; /* Amarelo limão/neon */
}

/* HEADER / MENU */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    border-bottom: 1px solid #222;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 50px;
    height: 50px;
    border: 2px solid #ffd700;
    border-radius: 8px;
    object-fit: cover;
}

.title {
    font-size: 1.2rem;
    font-weight: 600;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav a:hover {
    color: #e1ff00;
}

/* CONTAINER PRINCIPAL */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* INTRODUÇÃO */
.intro {
    text-align: center;
    margin-bottom: 40px;
}

.badge {
    background-color: #e1ff00;
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 15px;
}

.intro h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.description {
    color: #aaaaaa;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* CAIXA DE INFORMAÇÕES DESTAQUE */
.info-card {
    background-color: #1a1a1a; /* Fundo cinza escuro do bloco */
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 60px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0; /* Remove margem do último item */
}

.info-item .icon {
    background-color: #2a2a2a;
    padding: 10px;
    border-radius: 8px;
    margin-right: 15px;
    font-size: 1.2rem;
}

.info-item h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-item p {
    color: #bbbbbb;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* LINHA DO TEMPO */
.timeline {
    margin-top: 40px;
}

.timeline h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

/* Alinhamento alternado das linhas */
.timeline-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

/* Classe utilitária para inverter a ordem dos elementos */
.timeline-row.reverse {
    flex-direction: row-reverse;
}

/* Mídias da linha do tempo */
.timeline-media {
    width: 45%;
}

.image-placeholder {
    width: 100%;
    height: 200px; /* Altura fixa para manter o alinhamento */
    background-color: #333;
    border-radius: 10px;
    overflow: hidden; /* Corta o que passar das bordas arredondadas */
    border: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
}
.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
}

.year {
    display: block;
    color: #e1ff00;
    font-weight: bold;
    margin-top: 8px;
    font-size: 1.1rem;
}

/* Balões de texto da linha do tempo */
.timeline-text {
    width: 48%;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #dddddd;
    border-left: 4px solid #e1ff00; /* Detalhe amarelo na borda */
}

/* Ajuste simples para o lado invertido */
.timeline-row.reverse .timeline-text {
    border-left: none;
    border-right: 4px solid #e1ff00;
}
