* {
    outline: none;
}
ul {
    padding: 0;
}
li {
    list-style: none;
}
body {
    margin: 0;
    font-family: 'PT Sans', sans-serif;
    background: #F5F5F5;
}
html{
    scroll-behavior: smooth;
}
button:focus {
    outline: none;
}
a,
a:hover,
button {
    text-decoration: none!important;
    cursor: pointer!important;
    transition: .5s;
}
b,
strong {
    font-weight: 700;
}

iframe {
    margin: 40px auto;
    display: table;
}

h1 {
    font-size: 40px;
    color: #001219;
    text-align: center;
    margin: 0 0 30px;
}

.botoes {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
button.btn-programacao {
    width: 30%;
    background: transparent;
    padding: 0;
    box-shadow: none;
    border: none;
}
button.btn-programacao:hover {
    background: transparent!important;
}
button.btn-programacao img {
    width: 100%;
}

footer {
    background: url(../img/bg-footer.jpg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 60px;
    margin-top: 60px;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    background-color: transparent;
    border: none;
}

.noticias img {
    width: 100%;
    border-radius: 5px;
}
.noticias h4 {
    font-size: 18px;
    font-weight: bold;
    color: #002531;
    margin-top: 10px;
}
.noticias p {
    font-size: 12px;
    color: #002531;
    margin: 0 0 10px;
}
.noticias h5 {
    font-size: 16px;
    color: #F6D568;
    background: #002531;
    display: table;
    padding: 10px 30px;
    border-radius: 5px;
    margin: 0 auto;
}

@media (max-width: 600px) {
    .conteudo img{
        object-fit: cover !important;
    }
    iframe {
        width: 100%;
        height: 250px;
    }
    .botoes {
        display: block;
    }
    button.btn-programacao {
        width: 100%;
        margin-bottom: 15px;
    }
}
.conteudo img{
    object-fit: contain;
}