/* Estilos gerais */
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cabeçalho */
header {
    background-color: #005f73;
    color: #fff;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    font-size: 28px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #0a9396;
}

/* Seção hero */
.hero {
    background-color: #94d2bd;
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #0a3c4e;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #124559;
}

/* Seções gerais */
section {
    padding: 50px 0;
    background-color: #f8f8f8;
}

section:nth-of-type(even) {
    background-color: #e9e9e9;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
    color: #005f73;
}

section p {
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
}

.contact-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.contact-list li {
    margin: 10px 0;
    font-size: 16px;
}

/* Ligações dentro da lista de contactos e notícias */
.contact-list a {
    color: #005f73;
    text-decoration: none;
    font-weight: bold;
}

.contact-list a:hover {
    text-decoration: underline;
}

/* Rodapé */
footer {
    background-color: #005f73;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    margin: 0;
    font-size: 14px;
}