/* REQUISITO: Uso de fonte externa (Roboto) e fonte secundária (Montserrat) */
/* REQUISITO: Cores diferentes para fundo e fonte com contraste adequado */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f2f5;
    color: #1a1a1b;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* REQUISITO: Seletor por ID */
#cabecalho-principal {
    background-color: #003566; /* Azul escuro acadêmico */
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    border-bottom: 5px solid #ffc300;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    /* REQUISITO: Opção de estilo à fonte (Negrito) */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* REQUISITO: Seletor por Classe */
.secao-info {
    background-color: #ffffff;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* REQUISITO: Uso de decoração de texto */
.titulo-decorado {
    color: #003566;
    border-left: 5px solid #ffc300;
    padding-left: 10px;
    text-decoration: overline #ffc300;
}

/* REQUISITO: Opção de estilo à fonte (Itálico) */
.texto-italico {
    font-style: italic;
    color: #555;
}

/* REQUISITO: Seletor por Elemento */
strong {
    color: #d90429; /* Destaque para a maratona */
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #666;
}

/* REQUISITO: Seletor por Atributo */
a[target="_blank"] {
    font-weight: bold;
    text-decoration: none;
}

/* REQUISITO: Alterar cor de links ao passar o mouse (Pseudo-classe) */
a:link {
    color: #003566;
}

a:hover {
    color: #ffc300;
    transition: 0.3s;
}

/* REQUISITO: Uso de seletor por elemento para listas */
li {
    margin-bottom: 8px;
}

.item-destaque {
    list-style-type: square;
    color: #003566;
}