body {
    color: white;
    background-color: black;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}

header img {
    width: 30vw;
    max-width: 150px;
    height: auto;
    border-radius: 50%;
    margin-top: 5%;
}

h1 {
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
}

.center {
    text-align: center;
}

/* Container de notícias */
.outras-noticias-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
}

.outras-noticias-1 h3 a {
    text-decoration: none;
    color: white;
}

/* Bloco de notícia individual */
.outras-noticias-1-single {
    cursor: pointer;
    width: 90%;
    max-width: 500px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border: 2px solid white;
    background-color: #222;
    position: relative;
    overflow: hidden;
}

.outras-noticias-1-single h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 10px;
    color: white;
    width: 100%;
    height: 60px;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 1px 1px 3px #000;
}

/* Rodapé */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color:black;
    padding: 20px;
    color: white;
    text-align: center;
}

footer img {
    width: 25px;
    height: 25px;
    margin: 20px auto 5px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: fuchsia;
}

footer p {
    margin: 2px 0;
}

footer .copyright {
    margin-top: 10px;
    font-family: 'Times New Roman', Times, serif;
}

/* RESPONSIVIDADE PARA TELAS PEQUENAS */
@media (max-width: 768px) {
    .outras-noticias-1-single {
        height: 180px;
    }

    .outras-noticias-1-single h3 {
        font-size: 16px;
        height: 50px;
    }

    header img {
        width: 40vw;
    }

    footer img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .outras-noticias-1-single {
        height: 160px;
    }

    .outras-noticias-1-single h3 {
        font-size: 14px;
        height: 45px;
    }

    h1 {
        font-size: 22px;
    }
}

.iframe-container {
  width: 90%;
  max-width: 650px;
  margin: 0 auto;
  aspect-ratio: 650 / 467; /* mantém proporção */
  position: relative;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.poweredBy {
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  color: #333333;
  margin-top: 10px;
}

.poweredBy a {
  color: #06529D;
  font-weight: bold;
  text-decoration: none;
}

.poweredBy a:hover {
  text-decoration: underline;
}

/* Para telas muito pequenas */
@media (max-width: 400px) {
  .poweredBy {
    font-size: 9px;
    padding: 0 10px;
  }
}


