/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Merriweather", serif;
    background: #0b0527;
    color: #363d4f;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 20px;
}

/* Container central */
.container {
    background: #0a2867;
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 900px;
    width: 100%;
}

/* Título */
.container h1 {
    text-align: center;
    color: #fefefe;
    margin-bottom: 15px;
    font-size: 1.8rem;
    border-bottom: 2px solid #73b933;
    padding-bottom: 10px;
}

/* Lista em grid */
.link-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* Estilo dos links */
.link-list a {
    text-decoration: none;
    color: #042645;
    font-size: 1rem;
    padding: 18px;
    display: block;
    border-radius: 6px;
    background: #e7eae7;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Hover agradável */
.link-list a:hover {
    background-color: #cad5e4;
  color: #03133f;
  transition: transform 0.2s ease, background-color 0.2s ease;
  padding: 20px;
  border-radius: 8px;
}
