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;
}

h2 {
    text-align: center;
}

.center {
    text-align: center;
}

.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;
}

.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;
    
}

/* Iframe centralizado */
iframe {
    max-width: 100%;
    height: 600px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 40px auto;
}

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: black;
    height: 250px;
    color: white;
    padding: 20px;
}

footer img {
    width: 25px;
    height: 25px;
    display: block;
    margin-top: 100px;
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
}

footer a {
    text-align: center;
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: fuchsia;
}

footer p {
    margin-top: 2px;
    margin-bottom: 2px;
}

footer .copyright {
    margin-top: 10px;
    font-family: 'Times New Roman', Times, serif;
}

/* --------- RESPONSIVIDADE ----------- */

/* Ajustes para telas médias (tablets) */
@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 {
        height: 400px;
    }

    footer {
        height: auto;
        padding: 30px 10px;
    }

    footer img {
        margin-top: 20px;
        width: 30px;
        height: 30px;
    }

   