* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', Times, serif; /* Para o estilo clássico da logo */
}

header {
    text-align: center;
    padding: 10px 0 20px;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin-top: 40px;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'Times New Roman', Times, serif; /* Para o estilo clássico da logo */
    border: none;          /* Remove qualquer borda */
    
}

/* Seção de Título com Linha */
.section-title {
    display: flex;
    align-items: center;
    margin: 40px 10%;
    font-size: 2.2rem;
}

.section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #000;
    margin-left: 20px;
}

/* Grid de Imagens Superiores */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 80%;
    margin: 0 auto;
}

.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.card p {
    font-size: 1.2rem;
    margin-top: 10px;
    line-height: 1.4;
    text-align: center;
}

/* Lista de Notícias Inferior */
.list-section {
    width: 80%;
    margin: 50px auto;
}

.list-item {
    display: flex;
    gap: 20px;
    border-top: 1px solid #eee;
    padding: 20px 0;
}

.list-item img {
    width: 300px;
}

.category {
    color: blue;
    font-size: 1.75rem;
    font-weight: bold;
}

.item-content h3 {
    font-size: 1.5rem;
    margin: 10px 0;
}

/* Rodapé */
footer {
    background-color: #000;
    color: #fff;
    padding: 60px 0 20px;
    text-align: center;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 40px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    margin: 0 10px;
    font-family: 'Times New Roman', Times, serif; /* Para o estilo clássico da logo */
   
}


.social-medias {
  display: flex;
  align-items: center;
  gap: 15px; /* Espaçamento entre os ícones */
}

.social-medias a {
  color: #000000; /* Cor preta idêntica à imagem */
  font-size: 18px; /* Tamanho proporcional dos ícones */
  text-decoration: none;
  transition: opacity 0.2s ease-in-out;
}

/* Efeito opcional para melhorar a experiência do usuário */
.social-medias a:hover {
  opacity: 0.7; 
}


