/**
 * Novo Layout - Política & Acessórios
 * Bootstrap 5 Based Layout
 * Data: 14/12/2025
 */

/* =====================================================
   GERAL
   ===================================================== */

body {
    background-color: #f5f5f5;
}

/* =====================================================
   TOPBAR
   ===================================================== */

.topbar {
    font-size: 0.875rem;
}

/* =====================================================
   LOGO E HEADER
   ===================================================== */

.site-logo img {
    max-height: 70px;
}

/* =====================================================
   TÍTULOS DE SEÇÃO
   ===================================================== */

.section-title {
    border-left: 4px solid #d20000;
    padding-left: .75rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: .05em;
    color: #444;
}

.section-title span {
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: none;
    color: #888;
}

/* =====================================================
   BADGES DE CATEGORIA
   ===================================================== */

.badge-section {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* =====================================================
   CARDS DE NOTÍCIAS
   ===================================================== */

.card-news {
    border: none;
    border-radius: .5rem;
    box-shadow: 0 0.125rem 0.4rem rgba(0, 0, 0, 0.07);
    overflow: hidden;
    background-color: #fff;
}

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

.card-news-body {
    padding: 0.75rem 0.75rem 1rem;
}

.card-news-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.card-news-meta {
    font-size: 0.75rem;
    color: #777;
}

.card-news-text {
    font-size: 0.85rem;
    color: #555;
}

/* =====================================================
   HERO SECTION (DESTAQUE PRINCIPAL)
   ===================================================== */

.hero-main img {
    height: 350px;
}

.hero-main .card-news-title {
    font-size: 1.4rem;
}

/* =====================================================
   CARDS SECUNDÁRIOS (NO AR AGORA)
   ===================================================== */

.hero-secondary img {
    height: 200px;
}

/* =====================================================
   BANNERS
   ===================================================== */

.banner-box {
    background-color: #fff;
    border-radius: .5rem;
    box-shadow: 0 0.125rem 0.4rem rgba(0, 0, 0, 0.07);
    padding: .75rem;
}

/* =====================================================
   ÚLTIMAS NOTÍCIAS (SIDEBAR)
   ===================================================== */

.list-latest a {
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
}

.list-latest a:hover {
    text-decoration: underline;
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background-color: #111;
    color: #ccc;
    padding: 2rem 0 1.5rem;
    font-size: 0.9rem;
}

.footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* =====================================================
   VÍDEOS (CARROSSEL HORIZONTAL)
   ===================================================== */

.videos-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 1rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.videos-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.videos-carousel .card {
    flex: 0 0 260px;
    width: 260px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s;
}

.carousel-arrow:hover {
    background-color: rgba(210, 0, 0, 0.9);
}

.carousel-arrow-left {
    left: -20px;
}

.carousel-arrow-right {
    right: -20px;
}

/* =====================================================
   RESPONSIVIDADE
   ===================================================== */

@media (max-width: 767.98px) {
    .hero-main img {
        height: 220px;
    }

    .hero-secondary img {
        height: 140px;
    }
}
