/* header.css */

header {
    background-color: #d11919;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Agrupa a logo e o título lado a lado */
.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;

}

/* Tamanho da Jolly Roger no header */
.header-logo img {
    width: 50px;
    height: 50px;
}

header h1 {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav a:hover {
    color: yellow;
}

nav a.ativo {
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 2px;
}
