body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
}

header {
    background-color: #2a9d8f;
    color: white;
    padding: 1rem;
    text-align: center;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 1rem;
    
}

nav ul li a {
    color: white;
    text-decoration: none;
}

section {
    padding: 2rem;
}

h2 {
    color: #264653;
}

#apps ul {
    list-style-type: disc;
    margin-left: 1.5rem;
}

button {
    background-color: #e76f51;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #f4a261;
}

#contatoForm label {
    display: block;
    margin-top: 1rem;
}

#contatoForm input, #contatoForm textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ccc;
}

footer {
    background-color: #264653;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Estilos para as setas */
.seta {
    font-size: 18px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Ocultar conteúdo da seção inicialmente */
.conteudo-oculto {
    display: none;
}

.conteudo-visivel {
    display: block;
    padding-top: 10px;
}

/* Estilos para cada notícia */
.noticia {
    margin-bottom: 15px;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.noticia:last-child {
    border-bottom: none;
}

.link-reportagem {
    color: #0066cc;
    text-decoration: underline;
}

.link-reportagem:hover {
    color: #004080;
}

/* Estilos para as imagens */
.imagem {
    margin-bottom: 15px;
}

.imagem img {
    width: 80%;
    height: auto;
    border-radius: 8px;
}

.legenda {
    text-align: center;
    font-style: italic;
    color: #555;
    margin-top: 5px;
}
