/* =========================================
   1. VARIÁVEIS E RESET
   ========================================= */
:root {
    /* Cores da Marca */
    --brand-color: #f3780a;
    --brand-dark: #cc4400;
    --brand-gradient: linear-gradient(135deg, #FF5500 0%, #cc4400 100%);
    /* Cores Institucionais e Funcionais */
    --partner-color: #004481;
    /* Estrutura e Texto */
    --bg-body: #F9FAFB;
    --white: #ffffff;
    --text-dark: #111827;
    --text-body: #374151;
    --text-gray: #6B7280;
    /* UI Elements */
    --dark-section: #111827;
    --ad-bg: #e5e7eb;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Gotham', system-ui, -apple-system, sans-serif;
    background-color: var(--bg-body);
    color: var(--text-body);
    line-height: 1.6;
    padding-bottom: 50px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

    a:hover {
        color: #635345;
    }

img {
    max-width: 100%;
    display: block;
}

strong {
    color: var(--text-dark);
}

/* =========================================
   2. HEADER & NAVEGAÇÃO (GLOBAL)
   ========================================= */
header {
    background: #f3780a;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links.desktop-only {
    color: white;
}

/* --- LOGO DO HEADER --- */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--text-dark);
    line-height: 1;
}

    .logo-text span {
        color: var(--brand-color);
    }

.nav-links {
    display: flex;
    gap: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    color: white;
}

/* =========================================
   3. LAYOUT PRINCIPAL
   ========================================= */
.main-wrapper {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    display: flex;
    grid-template-columns: 8fr 4fr;
    gap: 3rem;
    align-items: start;
}

/* Utilitários */
.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border-left: 5px solid var(--brand-color);
    padding-left: 15px;
    line-height: 1;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-link {
    font-size: 0.9rem;
    color: var(--brand-color);
    font-weight: 600;
    text-transform: uppercase;
}

/* Utilitário para Stretched Link */
.stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    content: "";
}

/* =========================================
   4. HOME: SLIDER & MODULOS
   ========================================= */
/* Slider */
#bc_carrossel2026 {
    position: relative;
}

.slider-wrapper {
    max-width: 1200px;
    margin: 20px auto 0;
    padding: 0 20px;
    position: relative;
}

.slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

    .slider::-webkit-scrollbar {
        display: none;
    }

.slide {
    flex: 0 0 100%;
    height: 400px;
    scroll-snap-align: start;
    position: relative;
    cursor: pointer;
}

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: white;
    pointer-events: none;
}

    .slide-content * {
        pointer-events: auto;
    }

.slide-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

    .arrow.left {
        left: 20px;
    }

    .arrow.right {
        right: 20px;
    }

    .arrow:hover {
        background: rgba(0, 0, 0, 0.7);
    }

/* Bento Grid */
.bento-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* CARD VERTICAL (Destaque Principal)
   Atualizado: Fonte padronizada e ajuste de imagem 
*/
.card-vertical {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    height: 520px;
    position: relative;
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
}

    .card-vertical:hover {
        transform: translateY(-5px);
    }

    /* Imagem */
    .card-vertical > a:not(.stretched-link) {
        height: 55%;
        width: 100%;
        display: block;
        overflow: hidden;
    }



    .card-vertical img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center; /* Evita cortar rostos */
        transition: transform 0.5s ease;
    }

    .card-vertical:hover img {
        transform: scale(1.05);
    }

    /* Conteúdo */
    .card-vertical .content {
        height: 45%;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 2;
        pointer-events: none;
    }

    /* Título com fonte padronizada */
    .card-vertical h3 {
        font-size: 1.1rem;
        font-family: 'Gotham', system-ui, sans-serif;
        line-height: 1.4;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0 0 12px 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-vertical p {
        font-size: 0.95rem;
        color: var(--text-gray);
        line-height: 1.6;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* STACKED CARDS (Em Alta no VB - Direita)
   Layout Vertical: Imagem Topo / Texto Baixo
*/
.stacked-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 520px;
}

.card-horizontal {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    flex: 1;
    display: flex;
    flex-direction: column; /* Vertical */
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 1px solid #eee;
}

    .card-horizontal:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        border-color: transparent;
    }

    .card-horizontal img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .card-horizontal .content {
        width: 100%;
        padding: 1.2rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
    }

    .card-horizontal h3 {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1.35;
        margin-bottom: 8px;
        color: var(--text-dark);
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card-horizontal p {
        font-size: 0.9rem;
        color: var(--text-gray);
        line-height: 1.5;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

.tag {
    color: var(--brand-color);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

/* =========================================
   LISTA COMPACTA (GIRO VB - card-list)
   ========================================= */
.list-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.card-list {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 15px;
    min-height: 130px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    overflow: hidden;
    gap: 15px;
}

    .card-list:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
        border-color: transparent;
        cursor: pointer;
    }

    /* Coluna Imagem */
    .card-list > a {
        flex-shrink: 0;
        width: 150px;
        height: 100px;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        position: static;
    }

    .card-list img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s;
        border-radius: 8px;
    }

    .card-list:hover img {
        transform: scale(1.05);
    }

    /* Coluna Texto */
    .card-list > div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        padding-bottom: 15px;
        pointer-events: none;
        z-index: 2;
    }

    .card-list .meta-info {
        font-size: 0.7rem;
        color: var(--brand-color);
        font-weight: 800;
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .card-list h4 {
        font-size: 1rem;
        font-family: 'Gotham', system-ui, sans-serif;
        line-height: 1.4;
        font-weight: 600;
        color: var(--text-dark);
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Botão Ler Mais */
    .card-list::after {
        content: "Ler mais →";
        position: absolute;
        bottom: 10px;
        right: 15px;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--brand-color);
        text-transform: uppercase;
        transition: transform 0.2s;
        background: white;
        padding-left: 5px;
        z-index: 2;
        pointer-events: none;
    }

    .card-list:hover::after {
        transform: translateX(3px);
    }

/* Video Section */
.video-section {
    background: var(--dark-section);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .video-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: var(--brand-color);
        opacity: 0.2;
        border-radius: 50%;
        filter: blur(60px);
    }

.video-grid {
    display: block;
    width: 100%;
    margin-top: 1.5rem;
}

.video-card {
    cursor: pointer;
}

.video-thumb {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
}

    .video-thumb img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        transition: 0.3s;
    }

.video-card:hover .video-thumb img {
    transform: scale(1.05);
    opacity: 0.8;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--brand-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.5);
    color: white;
}

.video-card h4 {
    font-size: 1rem;
    line-height: 1.4;
    color: #eee;
}

.instagram-media {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    border-radius: 12px !important;
    margin: 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

/* Grid Padrão (Últimas) */
.standard-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.card-standard {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: 0.2s;
    display: block;
    text-decoration: none;
    color: inherit;
}

    .card-standard:hover {
        transform: translateY(-5px);
        cursor: pointer;
    }

    .card-standard img {
        height: 160px;
        width: 100%;
        object-fit: cover;
    }

    .card-standard .content {
        padding: 1.2rem;
    }

    .card-standard h4 {
        font-size: 17px;
        font-family: 'Gotham', system-ui, sans-serif; /* Força a mesma fonte */
        line-height: 1.4;
        font-weight: 600; /* Ajustado para 600 para igualar ao card-vertical */
        color: var(--text-dark); /* Use a variável para manter a cor consistente */
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

/* =========================================
   5. PÁGINA: CONTEÚDO PATROCINADO
   ========================================= */
.page-header {
    background-color: var(--white);
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 3rem 0 1rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.header-badge {
    display: inline-block;
    background: #FFF0E6;
    color: var(--brand-color);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.text-highlight {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.page-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Filtro de Parceiros */
.partners-bar {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 70px;
    z-index: 900;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partners-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #999;
    font-weight: 700;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.partners-list {
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: thin;
}

.partner-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    user-select: none;
}

    .partner-chip:hover {
        border-color: var(--brand-color);
        color: var(--brand-color);
        background: #fff5f0;
        transform: translateY(-1px);
    }

    .partner-chip.active {
        background: var(--text-dark);
        color: white;
        border-color: var(--text-dark);
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

/* Área dos Patrocinadores */
.sponsor-group {
    margin-bottom: 3rem;
    animation: fadeIn 0.5s ease;
}

.sponsor-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.sponsor-logo-box {
    height: 50px;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.sponsor-logo-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.sponsor-title-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
    align-items: start;
}

/* Cards Patrocinados */
.card-sponsored {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .card-sponsored:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        border-color: transparent;
    }

.card-img {
    height: 120px;
    width: 100%;
    object-fit: cover;
}

.card-body {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-size: 0.65rem;
}

.sponsor-name {
    color: var(--brand-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.date {
    color: #aaa;
}

.card-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
    color: var(--text-dark);
    min-height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    margin-top: auto;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.7;
}

    .read-more:hover {
        opacity: 1;
        color: var(--brand-color);
    }

/* Hero Patrocinado */
.sponsored-hero {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: all 0.3s;
}

.hero-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    min-height: 250px;
}

.hero-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.label-sponsored {
    background: #222;
    color: #FFD700;
    width: fit-content;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.hero-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.hero-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* =========================================
   6. PÁGINAS INTERNAS (NOTÍCIAS & ARTIGOS)
   ========================================= */
.article-header {
    margin-bottom: 2rem;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 600;
}

    .breadcrumb span {
        color: var(--brand-color);
    }

h1.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.article-lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.author-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.date-info {
    color: #999;
}

.share-buttons {
    margin-left: auto;
    display: flex;
    gap: 10px;
}

.btn-share {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    transition: 0.2s;
}

    .btn-share:hover {
        background: var(--brand-color);
        color: white;
        border-color: var(--brand-color);
    }

.featured-image-container {
    margin-bottom: 2.5rem;
}

    .featured-image-container img {
        border-radius: 12px;
        width: 100%;
    }

.image-caption {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-body);
}

    .article-content p {
        margin-bottom: 1.5rem;
    }

    .article-content h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-top: 2.5rem;
        margin-bottom: 1rem;
    }

        .article-content h2.partner-style {
            color: var(--partner-color);
        }

    .article-content ul {
        margin-bottom: 1.5rem;
        padding-left: 20px;
    }

    .article-content li {
        margin-bottom: 0.5rem;
    }

blockquote {
    background: #fff;
    border-left: 5px solid var(--brand-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-radius: 0 12px 12px 0;
}

.read-also-box {
    background: #f1f5f9;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
}

    .read-also-box h4 {
        text-transform: uppercase;
        color: var(--brand-color);
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .read-also-box a {
        font-weight: 700;
        font-size: 1.1rem;
        text-decoration: underline;
        text-decoration-color: var(--brand-color);
    }

.sponsored-alert {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.partner-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.partner-text {
    font-size: 0.9rem;
    color: #555;
}

    .partner-text strong {
        color: var(--partner-color);
        font-weight: 800;
        text-transform: uppercase;
    }

.cta-box {
    background: #f0f7ff;
    border-left: 5px solid var(--partner-color);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    text-align: center;
}

    .cta-box h3 {
        color: var(--partner-color);
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

.btn-cta {
    display: inline-block;
    background: var(--partner-color);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 15px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 68, 129, 0.3);
}

    .btn-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 68, 129, 0.4);
    }

/* =========================================
   7. SIDEBAR & WIDGETS
   ========================================= */
aside {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: fit-content;
}

.ad-vertical {
    background-color: var(--ad-bg);
    width: 300px;
    height: 250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #777;
    font-weight: bold;
    border: 1px dashed #bbb;
}

.ad-square {
    background: var(--ad-bg);
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #888;
    font-weight: bold;
    margin-bottom: 2rem;
    border: 1px dashed #ccc;
}

.ad-horizontal {
    width: 100%;
    background-color: var(--ad-bg);
    border: 1px dashed #aaa;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    margin-bottom: 2rem;
    color: #777;
    font-weight: bold;
}

.ad-in-article {
    background: var(--ad-bg);
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    border-radius: 8px;
    color: #777;
    font-weight: bold;
    text-transform: uppercase;
}

.newsletter-box {
    background: #1F2937;
    padding: 1.2rem;
    border-radius: 10px;
    color: white;
    text-align: center;
}

    .newsletter-box h4 {
        font-size: 1rem;
        margin-bottom: 8px;
        color: white;
    }

    .newsletter-box input {
        width: 100%;
        padding: 8px;
        margin: 8px 0;
        border-radius: 6px;
        border: none;
        font-size: 0.9rem;
    }

    .newsletter-box button {
        width: 100%;
        background: var(--brand-color);
        color: white;
        padding: 8px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        font-size: 0.9rem;
    }

.student-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.progress-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: conic-gradient(var(--brand-color) 75%, #eee 0);
    margin: 0 auto 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-inner {
    width: 65px;
    height: 65px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--brand-color);
}

.ranking-list {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.rank-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
}

.rank-pos {
    font-weight: 900;
    color: #FFD700;
    width: 25px;
}

.brand-widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #eee;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.brand-widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.brand-widget h4 {
    font-size: 1rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 0.5px;
}

.brand-item {
    display: block;
    margin-bottom: 15px;
}

    .brand-item:last-child {
        margin-bottom: 0;
    }

    .brand-item h5 {
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 5px;
        transition: 0.2s;
        color: var(--text-dark);
    }

    .brand-item:hover h5 {
        color: var(--partner-color);
    }

    .brand-item span {
        font-size: 0.75rem;
        color: #aaa;
    }

/* =========================================
   SIDEBAR / UNICAMP (Card Limpo)
   #bc_agencia_eptv_com_imagem
   ========================================= */

/* Transforma a linha (row) em um card individual */
#bc_agencia_eptv_com_imagem .row {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    align-items: center;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    /* Efeito Hover no card */
    #bc_agencia_eptv_com_imagem .row:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        border-color: transparent;
    }

/* Ajuste da Imagem Lateral */
#bc_agencia_eptv_com_imagem .ajusta-ultimas img {
    border-radius: 8px;
    height: 75px;
    width: 100%;
    object-fit: cover;
    margin: 0;
}

/* Limpeza do Badge de Horário (Time) */
#bc_agencia_eptv_com_imagem .date.badge {
    background-color: transparent !important;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0;
    margin-bottom: 5px;
    display: block;
    text-align: left;
}

/* Título mais leve e limpo */
#bc_agencia_eptv_com_imagem .h6,
#bc_agencia_eptv_com_imagem .h6 a {
    font-family: 'Gotham', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
    text-decoration: none;
    margin: 0;
    padding: 0 !important;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    #bc_agencia_eptv_com_imagem .h6 a:hover {
        color: var(--brand-color);
    }

/* Remove margens e paddings extras do HTML original dentro desse bloco */
#bc_agencia_eptv_com_imagem .col-9.ps-3 {
    padding-left: 15px !important;
}

/* =========================================
   8. RESPONSIVIDADE
   ========================================= */
@media (max-width: 900px) {
    .main-wrapper {
        grid-template-columns: 1fr;
    }

    .bento-section, .video-grid, .standard-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-vertical {
        height: auto;
    }

        .card-vertical img {
            height: 250px;
        }

    .stacked-cards {
        height: auto;
    }

    .card-horizontal {
        height: auto;
        flex-direction: column;
    }

        .card-horizontal img {
            width: 100%;
            height: 180px;
        }

    .sponsored-hero {
        display: flex;
        flex-direction: column;
    }

    .hero-img {
        height: 200px;
    }

    .page-title, h1.article-title {
        font-size: 2rem;
    }

    .partners-bar {
        top: 60px;
    }

    aside {
        position: static;
        margin-top: 2rem;
    }

    .cta-box {
        text-align: left;
    }

    .ad-vertical {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 600px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .header-content {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        font-size: 0.8rem;
        gap: 15px;
    }
}

/* =========================================
   9. FOOTER
   ========================================= */
.site-footer {
    place-items: center;
    width: 100%;
    background-color: #111;
    color: #fff;
    font-family: 'Arial', sans-serif;
    margin-top: 50px;
    margin-bottom: -55px;
}

.footer-content {
    padding: 60px 20px 20px 46px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

    .footer-logo span {
        color: var(--brand-color, #ff6b00);
    }

.footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social a {
        color: #fff;
        background: rgba(255,255,255,0.1);
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
    }

        .footer-social a:hover {
            background: var(--brand-color, #ff6b00);
            transform: translateY(-3px);
        }

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

    .footer-col ul li {
        margin-bottom: 10px;
    }

        .footer-col ul li a {
            color: #aaa;
            text-decoration: none;
            font-size: 0.95rem;
            transition: 0.2s;
        }

            .footer-col ul li a:hover {
                color: var(--brand-color, #ff6b00);
                padding-left: 5px;
            }

.newsletter-col p {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-form {
    display: flex;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 5px;
}

    .footer-form input {
        background: transparent;
        border: none;
        color: #fff;
        padding: 8px 10px;
        width: 100%;
        outline: none;
    }

    .footer-form button {
        background: var(--brand-color, #ff6b00);
        color: white;
        border: none;
        padding: 8px 15px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: 0.3s;
    }

        .footer-form button:hover {
            background: #fff;
            color: #000;
        }

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

.footer-row-single {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    flex-wrap: nowrap;
    width: 100%;
}

.footer-logo-link svg {
    height: 35px;
    width: auto;
    fill: #f0f0f0;
    display: block;
}

.footer-copy {
    color: #999;
    font-size: 0.85rem;
    font-weight: 300;
    white-space: nowrap;
}

.footer-separator {
    width: 1px;
    height: 18px;
    background-color: #666;
}

.footer-link-qs {
    color: #f0f0f0;
    font-size: 0.85rem;
    font-weight: 400;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
}

    .footer-link-qs:hover {
        color: #fff;
        text-decoration: underline;
    }

.footer-line {
    height: 1px;
    width: 100px;
    background-color: #555;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-row-single {
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-line {
        display: none;
    }
}


.card-vertical, .card-horizontal, article {
    position: relative;
}

.imagem-interna img {
    border-radius: 12px;
    width: 100%;
}

.imagem-interna figcaption {
    font-size: 0.85rem;
    color: #888;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

.html-div.xdj266r.x14z9mp.xat24cr {
    display: none;
}

/* =========================================
   FORÇAR PADRÃO VISUAL (CARD-VERTICAL STYLE)
   ========================================= */

/* Aplica a fonte Inter em todos os títulos e corpo */
body, h1, h2, h3, h4, h5, h6, p, span, a, li, button, input {
    font-family: 'Gotham', system-ui, -apple-system, sans-serif !important;
}

/* Garante que os títulos tenham o peso visual do card-vertical */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
}

/* Ajuste fino para os cards standard ficarem idênticos em peso */
.card-standard h4,
.card-horizontal h3,
.card-list h4,
.video-card h4 {
    font-weight: 600 !important; /* Peso do card-vertical */
}



div#google_ads_iframe_\/9981223\/RM1_0__container__ {
    justify-self: center;
}


.rm {
    text-align-last: center;
}



div#RM1 {
    padding: 10px;
    border: 10px;
    border-radius: 10px;
    background-color: #f9fafb !important
    border: 1px solid var(--bs-gray-300);
}



/* =========================================
   ESTILIZAÇÃO SIDEBAR ÚLTIMAS NOTÍCIAS
   (Replica estilo do #bc_agencia_eptv_com_imagem)
   ========================================= */

/* Título da Seção (Ajuste opcional para combinar com o site) */
.latest-news-sidebar h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-left: 4px solid var(--brand-color);
    padding-left: 10px;
}

/* O Card (Link) */
.sidebar-item {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px; /* Espaço entre os cards */
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    /* Hover Effect no Card */
    .sidebar-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        border-color: transparent;
    }

    /* Imagem */
    .sidebar-item img {
        flex-shrink: 0; /* Impede que a imagem encolha */
        width: 90px; /* Largura fixa igual ao original */
        height: 75px; /* Altura ajustada */
        object-fit: cover;
        border-radius: 8px;
        margin-right: 15px; /* Simula o espaçamento do grid bootstrap */
    }

    /* Container de Texto (Direita) */
    .sidebar-item div {
        display: flex;
        flex-direction: column;
        flex: 1;
        justify-content: center;
    }

        /* Data (Span) 
       Usamos 'order: -1' para garantir que ela apareça ACIMA do título,
       igual ao modelo de referência, mesmo estando embaixo no HTML.
    */
        .sidebar-item div span {
            order: -1;
            color: #9ca3af; /* Cor cinza do original */
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 5px;
            display: block;
            line-height: 1;
        }

    /* Título (H4) */
    .sidebar-item h4 {
        font-family: 'Gotham', system-ui, sans-serif;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-dark);
        line-height: 1.4;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.2s;
    }

    /* Hover no Título */
    .sidebar-item:hover h4 {
        color: var(--brand-color);
    }


/* =========================================
   ESTILIZAÇÃO SIDEBAR ÚLTIMAS NOTÍCIAS
   (Replica estilo do #bc_agencia_eptv_com_imagem)
   ========================================= */

/* Título da Seção (Ajuste opcional para combinar com o site) */
.latest-news-sidebar h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-left: 4px solid var(--brand-color);
    padding-left: 10px;
}

/* O Card (Link) */
.sidebar-item {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px; /* Espaço entre os cards */
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

    /* Hover Effect no Card */
    .sidebar-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        border-color: transparent;
    }

    /* Imagem */
    .sidebar-item img {
        flex-shrink: 0; /* Impede que a imagem encolha */
        width: 90px; /* Largura fixa igual ao original */
        height: 75px; /* Altura ajustada */
        object-fit: cover;
        border-radius: 8px;
        margin-right: 15px; /* Simula o espaçamento do grid bootstrap */
    }

    /* Container de Texto (Direita) */
    .sidebar-item div {
        display: flex;
        flex-direction: column;
        flex: 1;
        justify-content: center;
    }

        /* Data (Span) 
       Usamos 'order: -1' para garantir que ela apareça ACIMA do título,
       igual ao modelo de referência, mesmo estando embaixo no HTML.
    */
        .sidebar-item div span {
            order: -1;
            color: #9ca3af; /* Cor cinza do original */
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 5px;
            display: block;
            line-height: 1;
        }

    /* Título (H4) */
    .sidebar-item h4 {
        font-family: 'Gotham', system-ui, sans-serif;
        font-size: 0.95rem;
        font-weight: 500;
        color: var(--text-dark);
        line-height: 1.4;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        transition: color 0.2s;
    }

    /* Hover no Título */
    .sidebar-item:hover h4 {
        color: var(--brand-color);
    }

u {
    text-decoration: revert;
}

/* =========================================
   SIDEBAR FIXA (STICKY)
   ========================================= */
/* Aplica apenas em telas maiores que 992px (Desktop) para não quebrar o mobile */
@media (min-width: 992px) {
    .sidebar-sticky-wrapper {
        /* Ativa o comportamento de fixação */
        position: -webkit-sticky; /* Para Safari */
        position: sticky;
        /* Distância do topo da tela onde ela vai travar. 
           Calculado: Altura do Header (~80px) + Margem de respiro (30px) */
        top: 110px;
        /* Garante que o elemento tenha apenas a altura do seu conteúdo,
           permitindo que ele "navegue" dentro da col-md-4 */
        height: fit-content;
        /* Garante que fique abaixo do Header (z-index 1000) mas acima do conteúdo normal */
        z-index: 900;
        /* Pequeno ajuste para garantir alinhamento visual */
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Garante que os containers pais não bloqueiem o sticky */
body, html, .main-wrapper, .section, .row, .container {
    overflow: visible !important;
}






/* =========================================
   ESTILO DOS BOTÕES DE COMPARTILHAMENTO
   ========================================= */

.share-buttons {
    display: flex;
    gap: 12px; /* Espaçamento entre os botões */
    margin-left: auto; /* Mantém alinhado à direita se estiver num flex container */
    align-items: center;
}

.btn-share {
    width: 42px; /* Aumentei um pouco para melhor clique */
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Design Base: Fundo Branco com Sombra Suave */
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    /* Transição suave para todas as propriedades */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    cursor: pointer;
}

    /* Tamanho e cor do ícone SVG */
    .btn-share svg {
        width: 18px;
        height: 18px;
        fill: currentColor; /* O ícone herda a cor do texto do botão */
        transition: transform 0.3s ease;
    }

    /* =========================================
   CORES DAS REDES SOCIAIS (Estado Normal)
   ========================================= */

    /* WhatsApp - Verde */
    .btn-share.whatsapp {
        color: #25D366;
        border-color: rgba(37, 211, 102, 0.2); /* Borda sutil da cor da marca */
    }

    /* Twitter / X - Preto (ou Cinza Escuro) */
    .btn-share.twitter {
        color: #000000;
        border-color: rgba(0, 0, 0, 0.1);
    }

    /* Facebook - Azul */
    .btn-share.facebook {
        color: #1877F2;
        border-color: rgba(24, 119, 242, 0.2);
    }

    /* =========================================
   HOVER (Ao passar o mouse)
   ========================================= */

    .btn-share:hover {
        transform: translateY(-4px); /* O botão "flutua" para cima */
        box-shadow: 0 6px 12px rgba(0,0,0,0.15); /* Sombra aumenta */
        border-color: transparent;
        color: white; /* Ícone fica branco */
    }

    /* Cores de Fundo no Hover */
    .btn-share.whatsapp:hover {
        background-color: #25D366;
        box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4); /* Glow verde */
    }

    .btn-share.twitter:hover {
        background-color: #000000;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Glow preto */
    }

    .btn-share.facebook:hover {
        background-color: #1877F2;
        box-shadow: 0 6px 15px rgba(24, 119, 242, 0.4); /* Glow azul */
    }

    /* Pequeno zoom no ícone ao passar o mouse */
    .btn-share:hover svg {
        transform: scale(1.1);
    }



/* =========================================
   MENU MOBILE - 
   ========================================= */

@media (max-width: 900px) {

    /* 1. Ajuste do Container do Header para permitir o posicionamento */
    header {
        position: relative; /* Necessário para o menu absoluto */
        cursor: pointer; /* Indica que é clicável */
    }

    .header-content {
        /* Garante que o conteúdo fique organizado */
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }

        /* 2. Criação do Ícone Hamburguinho via CSS */
        /* Usamos o ::after do header-content para desenhar o botão */
        .header-content::after {
            content: '';
            display: block;
            width: 30px;
            height: 4px;
            background: white; /* Barra do meio */
            border-radius: 2px;
            /* As sombras criam as barras de cima e de baixo */
            box-shadow: 0 -10px 0 0 white, 0 10px 0 0 white;
            transition: all 0.3s;
            order: 2; /* Joga para a direita */
        }

    /* 3. Estilização do Menu (Gaveta) */
    /* Por padrão, escondemos o menu .desktop-only no mobile */
    .nav-links.desktop-only {
        display: none; /* Escondido inicialmente */
        /* Layout da gaveta */
        position: absolute;
        top: 100%; /* Logo abaixo do header */
        left: 0;
        width: 100%;
        background-color: white; /* Fundo branco */
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        border-top: 1px solid #eee;
        z-index: 9999;
    }

    /* 4. O TRUQUE: Exibir o menu ao tocar no Header */
    /* Quando o header estiver ativo (toque) ou hover, mostramos o menu */
    header:hover .nav-links.desktop-only,
    header:active .nav-links.desktop-only,
    header:focus-within .nav-links.desktop-only {
        display: flex; /* Torna visível */
        animation: slideDown 0.3s ease forwards;
    }

    /* Estilo dos Links dentro do Menu Mobile */
    .nav-links.desktop-only a {
        color: var(--text-dark); /* Texto escuro no fundo branco */
        font-size: 1.1rem;
        padding: 15px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

        .nav-links.desktop-only a:hover {
            background-color: #f9f9f9;
            color: var(--brand-color);
        }

    /* Pequena animação de entrada */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Esconde os ícones sociais no mobile para limpar a visão */
    .social-links.desktop-only {
        display: none;
    }
}



/* ==========================================================================
   1. ESTRUTURA EXTERNA (Os containers principais)
   Aplica a todos os RMs (0-5) e todos os slbs (0-5)
   ========================================================================== */
#RM0, #RM1, #RM2, #RM3, #RM4, #RM5,
.slb, .slb1, .slb2, .slb3, .slb4, .slb5,
#opec, .container.ads {
    background-color: #ff000000 !important; /* Fundo transparente */
    border: 1px solid #e2e2e200 !important; /* Borda transparente */
    padding: 10px;
    border-radius: 10px;
    box-shadow: none !important; /* Remove sombras se houver */
}

    /* ==========================================================================
   2. O "FIX" PARA O HTML INLINE (Divs internas como #BOTTOM)
   Isso remove o cinza (rgb 247, 247, 247) que está "preso" no HTML
   ========================================================================== */
    #RM0 div, #RM1 div, #RM2 div, #RM3 div, #RM4 div, #RM5 div,
    .slb div, .slb1 div, .slb2 div, .slb3 div, .slb4 div, .slb5 div,
    #BOTTOM {
        background-color: transparent !important;
        background: none !important;
        border: none !important;
        margin: 0 !important; /* Opcional: ajusta alinhamento */
    }

    /* ==========================================================================
   3. TEXTOS E PARÁGRAFOS (P)
   Remove o fundo branco e a cor do texto "Publicidade"
   ========================================================================== */
    #RM0 p, #RM1 p, #RM2 p, #RM3 p, #RM4 p, #RM5 p,
    .slb p, .slb1 p, .slb2 p, .slb3 p, .slb4 p, .slb5 p,
    #opec p, .container.ads p {
        text-align: center !important;
        color: #f5f5dc00 !important; /* Texto invisível/transparente */
        background-color: #ff000000 !important; /* Fundo transparente */
        font-size: 0 !important; /* (Opcional) Esconde totalmente o texto */
    }


/* =========================================
   0. CARREGAMENTO DE FONTES (GOTHAM)
   ========================================= */

@font-face {
    font-family: 'Gotham';
    src: url('fonts/gotham-book-webfont.woff2') format('woff2'), url('fonts/gotham-book-webfont.woff') format('woff');
    font-weight: 400; /* Define este arquivo como o peso padrão/normal */
    font-style: normal;
    font-display: swap;
}

/* =========================================
   FORÇAR PADRÃO VISUAL
   ========================================= */
body, h1, h2, h3, h4, h5, h6, p, span, a, li, button, input {
    font-family: 'Gotham', system-ui, -apple-system, sans-serif !important;
}




/* =========================================
   FAIXA DE DESTAQUE (CTA BAR)
   ========================================= */

.cta-bar-wrapper {
    background-color: var(--dark-section, #111827); /* Fundo Escuro Premium */
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 18px 0;
    position: relative;
    z-index: 900;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.cta-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Grupo de Texto (Esquerda) */
.cta-text-group {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 1rem;
}

/* O Badge "NOVIDADE" */
.cta-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--brand-color, #ff7d02);
    font-weight: 800;
    font-size: 0.7rem;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 125, 2, 0.3);
}

.cta-message {
    font-weight: 400;
    letter-spacing: 0.3px;
}

    .cta-message strong {
        color: white;
        font-weight: 700;
    }

/* O BOTÃO MODERNO (Direita) */
.cta-button-pulse {
    background: var(--brand-gradient, linear-gradient(135deg, #FF5500 0%, #cc4400 100%));
    color: white;
    text-decoration: none;
    padding: 12px 32px;
    border-radius: 50px; /* Pílula */
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3); /* Sombra Laranja (Glow) */
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

    /* Efeito Hover do Botão */
    .cta-button-pulse:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 85, 0, 0.5); /* Aumenta o brilho */
        color: white;
    }

    .cta-button-pulse svg {
        transition: transform 0.3s ease;
    }

    .cta-button-pulse:hover svg {
        transform: translateX(4px);
    }

/* Animação Sutil de "Atenção" no Botão */
@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 85, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 85, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 85, 0, 0);
    }
}

.cta-button-pulse {
    animation: pulse-border 2s infinite;
}

/* RESPONSIVIDADE (Mobile) */
@media (max-width: 768px) {
    .cta-bar-content {
        flex-direction: column; /* Empilha um em cima do outro */
        text-align: center;
        gap: 15px;
    }

    .cta-text-group {
        flex-direction: column;
        gap: 8px;
    }

    .cta-button-pulse {
        width: 100%; /* Botão largura total no celular */
        justify-content: center;
    }
}






















<style >
/* CSS ORIGINAL DO RANKING (MANTIDO)
        */
.ranking-list {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.ranking-list h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.tab {
    padding: 10px 20px;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    bottom: -2px;
}

    .tab:hover {
        color: var(--tab-active);
    }

    .tab.active {
        color: var(--tab-active);
        border-bottom-color: var(--tab-active);
    }

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ranking-item {
    padding: 12px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ranking-position {
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 35px;
    text-align: center;
}

.ranking-info {
    flex: 1;
}

.ranking-name {
    font-weight: 600;
    margin-bottom: 3px;
    font-size: 1rem;
}

.ranking-score {
    font-size: 0.9rem;
    color: #666;
}

.link-completo {
    display: block;
    margin-top: 15px;
    text-align: center;
    color: var(--brand-color);
    font-size: 0.9rem;
    font-weight: bold;
    text-decoration: none;
}

    .link-completo:hover {
        text-decoration: underline;
    }

.rank-name {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: inline-block;
}

/* =========================================
           NOVO CSS DO CARD SPOTLIGHT (ADICIONADO)
           =========================================
        */
.card-spotlight {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin-top: 30px; /* Espaço para separar do Ranking */
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

    .card-spotlight:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px -10px rgba(0, 68, 129, 0.2);
    }

.spotlight-header {
    height: 200px;
    position: relative;
    overflow: hidden;
}

    .spotlight-header img.cover-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.7s ease;
    }

.card-spotlight:hover .spotlight-header img.cover-img {
    transform: scale(1.08);
}

.spotlight-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

.spotlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: #004481; /* Azul Parceiro */
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 30px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    letter-spacing: 0.5px;
}

.spotlight-logo-circle {
    position: absolute;
    bottom: -20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 2px;
}

    .spotlight-logo-circle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 50%;
        padding: 8px;
        background: #fff;
    }

.spotlight-body {
    padding: 35px 20px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.spotlight-meta {
    font-size: 0.75rem;
    color: #004481;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spotlight-title {
    font-family: 'Gotham', system-ui, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 10px;
}

.spotlight-desc {
    font-size: 0.9rem;
    color: #6B7280;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.spotlight-btn {
    margin-top: auto;
    background: #f3f4f6;
    color: #111827;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s;
    text-decoration: none; /* Importante para links */
}

    .spotlight-btn:hover {
        background: #004481;
        color: white;
        text-decoration: none;
    }




.btn-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

    .btn-whatsapp:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }


.partner-widget-wrapper {
    margin-top: 20px;
    font-family: 'Gotham', system-ui, sans-serif;
}

.partner-box-thumb {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid #f3780a; /* Linha Laranja */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    overflow: hidden;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

    .partner-box-thumb:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 15px rgba(243, 120, 10, 0.15); /* Glow Laranja */
        border-color: #f3780a;
    }

/* Cabeçalho Centralizado */
.partner-thumb-header {
    background: #f9fafb;
    padding: 5px 10px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.partner-thumb-label {
    font-size: 0.6rem;
    font-weight: 800;
    color: #f3780a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Layout Horizontal (Imagem + Texto) */
.partner-thumb-body {
    display: flex;
    align-items: center; /* Centraliza verticalmente */
    padding: 10px;
    gap: 12px;
}

/* A Miniatura */
.partner-mini-img {
    width: 85px; /* Tamanho fixo e compacto */
    height: 85px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0; /* Garante que não esmague */
    border: 1px solid #eee;
}

/* Coluna de Texto */
.partner-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.partner-thumb-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark, #111827);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.partner-box-thumb:hover .partner-thumb-title {
    color: #f3780a;
}

.partner-thumb-desc {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Link "Saiba Mais" */
.partner-thumb-link {
    font-size: 0.7rem;
    font-weight: 700;
    color: #f3780a;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 3px;
}

    .partner-thumb-link svg {
        transition: transform 0.2s;
    }

.partner-box-thumb:hover .partner-thumb-link svg {
    transform: translateX(3px);
}

.partner-box-thumb {
    position: relative;
}

.bento-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    margin-top: 40px;
}











/* =========================================
   PÁGINA QUEM SOMOS (Escopo Isolado)
   ========================================= */

#corpo-quem-somos {
    --vb-orange: #ff7d02;
    --vb-dark: #2c2c2c;
    --vb-gray: #f4f4f4;
}

    /* --- Hero Section & Textos --- */
    #corpo-quem-somos .about-hero {
        padding: 80px 0 60px;
        text-align: center;
        background: linear-gradient(to bottom, #fff, #f9f9f9);
        border-bottom: 1px solid #eee;
    }

        #corpo-quem-somos .about-hero h1 {
            font-family: 'Oswald', sans-serif !important;
            font-size: 3.5rem;
            color: var(--vb-dark);
            margin-bottom: 20px;
            text-transform: uppercase;
            font-weight: 700;
        }

        #corpo-quem-somos .about-hero p {
            font-family: 'Open Sans', sans-serif !important;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: #666;
        }

    #corpo-quem-somos .divider {
        height: 4px;
        width: 80px;
        background-color: var(--vb-orange);
        margin: 30px auto;
    }

    #corpo-quem-somos .content-section {
        padding: 80px 0;
        background-color: #fff;
    }

    #corpo-quem-somos .row-image-text {
        display: flex;
        align-items: center;
        margin-bottom: 80px;
        gap: 50px;
    }

        #corpo-quem-somos .row-image-text.reverse {
            flex-direction: row-reverse;
        }

    #corpo-quem-somos .text-block h2 {
        font-family: 'Oswald', sans-serif !important;
        font-size: 2.2rem;
        margin-bottom: 20px;
        position: relative;
        text-transform: uppercase;
        color: var(--vb-dark);
    }

        #corpo-quem-somos .text-block h2::after {
            content: '';
            display: block;
            width: 50px;
            height: 3px;
            background: var(--vb-orange);
            margin-top: 10px;
        }

    #corpo-quem-somos .text-block p {
        font-family: 'Open Sans', sans-serif !important;
        font-size: 1.1rem;
        line-height: 1.8;
        color: #555;
        margin-bottom: 15px;
    }

    #corpo-quem-somos .img-block {
        flex: 1;
    }

        #corpo-quem-somos .img-block img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

    /* --- GALERIA COM LEGENDAS --- */
    #corpo-quem-somos .gallery-section {
        background-color: var(--vb-dark);
        color: white;
        padding: 80px 0;
    }

    #corpo-quem-somos .gallery-header {
        text-align: center;
        margin-bottom: 50px;
    }

    #corpo-quem-somos .gallery-title {
        font-family: 'Oswald', sans-serif !important;
        text-transform: uppercase;
        margin-bottom: 10px;
        color: white;
    }

    #corpo-quem-somos .gallery-subtitle {
        color: #ccc;
        font-family: 'Open Sans', sans-serif !important;
    }

    /* Grid da Galeria */
    #corpo-quem-somos .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    #corpo-quem-somos .gallery-card {
        position: relative;
        height: 300px;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        transition: transform 0.3s ease;
    }

        /* Classes de Tamanho */
        #corpo-quem-somos .gallery-card.wide {
            grid-column: span 2;
        }

        #corpo-quem-somos .gallery-card.tall {
            grid-row: span 2;
            height: 620px;
        }

        #corpo-quem-somos .gallery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 125, 2, 0.4);
        }

        #corpo-quem-somos .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        #corpo-quem-somos .gallery-card:hover img {
            transform: scale(1.08);
        }

    /* --- LEGENDA E OVERLAY --- */
    #corpo-quem-somos .card-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 20px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    #corpo-quem-somos .gallery-card:hover .card-overlay {
        opacity: 1;
    }

    #corpo-quem-somos .card-caption-title {
        font-family: 'Oswald', sans-serif !important;
        font-size: 1.1rem;
        color: var(--vb-orange);
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 5px;
        transform: translateY(20px);
        transition: transform 0.3s ease 0.1s;
    }

    #corpo-quem-somos .card-caption-text {
        font-family: 'Open Sans', sans-serif !important;
        font-size: 0.9rem;
        color: white;
        transform: translateY(20px);
        transition: transform 0.3s ease 0.2s;
    }

    #corpo-quem-somos .gallery-card:hover .card-caption-title,
    #corpo-quem-somos .gallery-card:hover .card-caption-text {
        transform: translateY(0);
    }

    #corpo-quem-somos .zoom-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.5);
        color: white;
        font-size: 2rem;
        border: 2px solid white;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.3s ease;
    }

    #corpo-quem-somos .gallery-card:hover .zoom-icon {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    /* --- SEÇÃO DE VÍDEOS DARK --- */
    #corpo-quem-somos .video-section-dark {
        background-color: var(--vb-dark);
        padding: 80px 0;
        border-top: 1px solid #444;
    }

    #corpo-quem-somos .video-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    #corpo-quem-somos .video-card {
        position: relative;
        height: auto;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
        transition: transform 0.3s ease;
        border: 1px solid #444;
        background-color: #222;
        display: flex;
        flex-direction: column;
    }

        #corpo-quem-somos .video-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 125, 2, 0.4);
            border-color: var(--vb-orange);
        }

    #corpo-quem-somos .video-card-image-wrapper {
        position: relative;
        width: 100%;
        height: 180px;
    }

    #corpo-quem-somos .video-card img {
        width: 100%;
        height: 100%;
        object-fit: fill;
        opacity: 0.8;
        transition: opacity 0.3s;
    }

    #corpo-quem-somos .video-card:hover img {
        opacity: 1;
    }

    #corpo-quem-somos .video-title {
        padding: 15px;
        color: #fff;
        font-family: 'Open Sans', sans-serif !important;
        font-size: 0.9rem;
        line-height: 1.4;
        background-color: #222;
        flex-grow: 1;
    }

    #corpo-quem-somos .play-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: var(--vb-orange);
        font-size: 2.5rem;
        z-index: 10;
        text-shadow: 0 2px 5px rgba(0,0,0,0.8);
        pointer-events: none;
    }

    /* --- LIGHTBOX --- */
    #corpo-quem-somos #lightbox {
        position: fixed;
        z-index: 9999;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.95);
        display: none;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        #corpo-quem-somos #lightbox img {
            max-width: 90%;
            max-height: 80vh;
            border: 2px solid white;
            border-radius: 4px;
        }

    #corpo-quem-somos #lightbox-caption {
        color: white;
        margin-top: 15px;
        font-family: 'Oswald', sans-serif !important;
        font-size: 1.2rem;
    }

    #corpo-quem-somos .close-btn {
        position: absolute;
        top: 20px;
        right: 30px;
        color: white;
        font-size: 3rem;
        cursor: pointer;
    }

/* Responsividade Quem Somos */
@media (max-width: 992px) {
    #corpo-quem-somos .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    #corpo-quem-somos .row-image-text,
    #corpo-quem-somos .row-image-text.reverse {
        flex-direction: column;
    }

    #corpo-quem-somos .gallery-card.wide,
    #corpo-quem-somos .gallery-card.tall {
        grid-column: span 1;
        grid-row: span 1;
        height: 300px;
    }

    #corpo-quem-somos .about-hero h1 {
        font-size: 2.5rem;
    }

    #corpo-quem-somos .video-grid {
        grid-template-columns: 1fr;
    }
}