html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

h1, h1 a{
    text-transform: uppercase;
    border-bottom: 1px solid #ddd;
    color: #2f3640;
    font-family: "Open Sans", "Helvetica Neue", "Arial", "Verdana", "Geneva", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    padding-bottom: 5px;
    margin-bottom: 12px;
    text-decoration: none;
}

h2, h2 a{
    /* text-transform: uppercase;
    border-bottom: 1px solid #ddd; */
    color: #2f3640;
    font-family: "Open Sans", "Helvetica Neue", "Arial", "Verdana", "Geneva", sans-serif;
    font-size: 16px;
    font-weight: 600;
    /* line-height: 20px;
    padding-bottom: 5px; */
    margin-bottom: 12px;
    text-decoration: none;
}

footer{
    background-color: #2c3e50;
    color: #ffffff;
}

.title-banner{
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    color: var(--bs-heading-color);
}

.title-section{
    border-left: 4px solid;
    padding-left: 12px;
    font-weight: 800;
    font-size: 24px;
}

.footer-links a{
    text-decoration: none;
    color: white;
}

.navbar{
    background-color: #00aae6;
}

.btn-translate{
    border: none;
    background-color: transparent !important;
}

.btn-translate:hover, .btn-translate:active{
    background-color: transparent !important;
}

.btn-more{
    /* background-color: #00455d; */
    color: #2f3640;
    background-color: transparent;
    padding: 5px 15px;
    border-radius: 8px;
    border: none;
    font-weight: 800;
    /* text-transform: uppercase; */
    font-size: 12px;
}

.hidden-mobile {
    display: block !important;
}

.hidden-desktop {
    display: block !important;
}

.row-ads{
    margin-top: 0px !important;
}

.list-sidebar{
    color: #2f3640;
    font-size: 14px;
    margin-top: 14px;
}

.header {
    background: linear-gradient(135deg, #2196F3, #00BCD4);
    color: white;
    padding: 40px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hidden-mobile {
        display: none !important;
    }

    .options-mobile{
        display: flex !important;
    }
}

/* Oculta em desktops (telas maiores ou iguais a 768px) */
@media (min-width: 768px) {
    .hidden-desktop {
        display: none !important;
    }

    .row-ads{
        margin-top: 1.5rem !important;
    }

    .options-mobile{
        display: none !important;
    }
}

