/* Estilo Geral */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Navbar */
.navbar {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .logo h1 {
    margin: 0;
    font-size: 1.8em;
}

.navbar ul {
    list-style-type: none;
    padding: 0;
}

.navbar li {
    display: inline;
    margin: 0 10px;
}

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

.navbar a:hover {
    text-decoration: underline;
}

/* Hero Section */
.hero {
    background-image: url('banner.jpg');
    background-size: cover;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-text h2 {
    font-size: 2.5em;
}

.hero .btn {
    background-color: #4CAF50;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    margin-top: 20px;
}

.hero .btn:hover {
    background-color: #45a049;
}

/* Seção de Introdução */
.intro {
    padding: 40px;
    text-align: center;
    background-color: #e9f7e4;
}

.intro h2 {
    font-size: 2em;
}

.intro p {
    font-size: 1.2em;
    line-height: 1.6;
}

/* Seção de Notícias */
.noticias {
    padding: 40px;
    text-align: center;
}

.noticias ul {
    list-style-type: none;
    padding: 0;
}

.noticias li {
    margin: 10px 0;
}

.noticias a {
    color: #4CAF50;
    text-decoration: none;
}

.noticias a:hover {
    text-decoration: underline;
}

/* Seção Sobre */
.sobre {
    padding: 40px;
    background-color: #fff;
}

.sobre h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.sobre h3 {
    font-size: 1.8em;
    margin-top: 30px;
}

.sobre p {
    font-size: 1.2em;
    line-height: 1.6;
}

.sobre ul {
    list-style-type: disc;
    padding-left: 20px;
}

.sobre ul li {
    font-size: 1.2em;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}
