
.popular-widget {
    background: #fff;
}

.popular-widget__header {
    margin-bottom: 28px;
}

.popular-widget__title {
    position: relative;
    margin: 0;
    padding: 14px 18px;
    border: 1px solid #e9e9e9;
    border-left: none;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: #333;
    background: #fff;
}

.popular-widget__title::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: 0;
    width: 6px;
    background: #3d3d3d;
}

.popular-widget__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.popular-widget__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.popular-widget__rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border-radius: 3px;
    background: #a8a8a8;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

.popular-widget__content {
    flex: 1;
    min-width: 0;
}

.popular-widget__link {
    display: block;
    color: #333;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
    text-decoration: none;
    word-break: normal;
    overflow-wrap: break-word;
}

.popular-widget__link:hover {
    color: #8e1b7a;
    text-decoration: none;
}

.popular-widget__meta {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.3;
    color: #8b8b8b;
}

.popular-widget__empty {
    margin: 0;
    color: #777;
    font-size: 14px;
}

/* ============================================
   SPONSOR ITEM BOX — Sidebar Produto
   ============================================ */

.sponsor-item-box {
    background: #fff;
    border: 1px solid #8e1479;
    border-radius: 6px;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

/* --- Cabeçalho: Título acima da foto --- */
.sponsor-item-box__header {
    padding: 16px 16px 12px 16px;
    background: #fff;
    border-bottom: none; /* Mantêm visual limpo sem divisão dura na imagem */
}

/* O título herdará a tipografia primária da notícia, mas num tamanho controlado */
.sponsor-item-box__title {
    margin: 0;
    font-family: inherit; /* Puxa a mesma família carregada na página principal */
    font-size: 20px; /* Pouco menor que o H3 da notícia principal que parece estar em 24px/28px */
    font-weight: 600;
    line-height: 1.3;
    color: #222;
}

.sponsor-item-box__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sponsor-item-box__title a:hover {
    color: #8e1479; /* Cor do seu brand */
}

/* --- Mídia (Imagem do produto) --- */
.sponsor-item-box__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.sponsor-item-box__media a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.sponsor-item-box__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Garante que as bordas da foto promocional não sejam cortadas */
    transition: transform 0.3s ease;
    padding: 10px; /* Adiciona um pequeno respiro interno */
}

.sponsor-item-box__media a:hover .sponsor-item-box__img {
    transform: scale(1.05); /* Efeito delicado de zoom no hover */
}

/* --- Rodapé (Botão de ação e preço oculto) --- */
.sponsor-item-box__footer {
    padding: 16px;
}

.sponsor-item-box__price {
    font-size: 20px;
    font-weight: 700;
    color: #8e1479;
    margin-bottom: 14px;
    text-align: center;
}

.sponsor-item-box__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #8e1479; /* Cor dos botões principais na página */
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    padding: 12px 20px;
    transition: background-color 0.25s ease;
    width: 100%; /* Botão em bloco total */
}

.sponsor-item-box__btn:hover {
    background-color: #6e0f5d;
    color: #fff;
    text-decoration: none;
}

/* --- Responsivo --- */
@media (max-width: 991px) {
    .sponsor-item-box {
        margin-top: 30px;
        position: static;
    }
}

/* ============================================
   PÁGINAS INSTITUCIONAIS
   ============================================ */

.institutional {
    padding: 60px 0;
    background: #f9f9fb;
}

.institutional__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.institutional__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #222;
}

.institutional__content {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

/* subtítulos */
.institutional__content h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #8e1479;
}

/* parágrafos */
.institutional__content p {
    margin-bottom: 16px;
}

/* listas */
.institutional__content ul {
    margin: 10px 0 20px 20px;
}

.institutional__content li {
    margin-bottom: 8px;
}

/* separação visual leve */
.institutional__content h2 + p {
    margin-top: 0;
}

.footer-logo {
    max-width: 250px;
    height: auto;
    display: block;
}
