:root {
    --primary: #124475;
    --accent: #bc540a;
    --bg: #f5f6f7;
}

body {
    background: var(--bg);
    font-family: system-ui;
    color: var(--primary);
}


/* NAV */

.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.menu-link {
    font-weight: 600;
    transition: 0.2s;
}

a {
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: var(--accent);
}

.menu-link:hover {
    color: var(--accent) !important;
}


/* FEATURE */

.feature {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    color: var(--primary);
}

.feature img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}


/* Mobile */

@media (max-width: 768px) {
    .feature img {
        height: 380px;
        /* ajuste aqui como quiser */
    }
}

.feature h1,
h2,
h3 {
    font-size: 22px;
    font-weight: 800;
    padding: 15px;
    margin: 0;
}

.feature p {
    padding: 5px 17px 2px 17px;
}


/* BOX */

.box {
    background: #fff;
    border-radius: 14px;
    padding: 15px;
    border: 1px solid #eee;
    margin-bottom: 16px;
}


/* TAGS */

.tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid #ddd;
    font-size: 12px;
    margin-right: 5px;
    color: var(--primary);
}

.tag:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}


/* MAIS VISTOS */

.rank-card {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 10px 0;
    align-items: flex-start;
}

.rank-img {
    flex: 0 0 80px;
    width: 80px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
}

.rank-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rank-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.rank-title {
    font-size: 13px;
    font-weight: 700;
}

.rank-desc {
    font-size: 12px;
    color: #666;
}


/* AUTHOR */

.author-box {
    display: flex;
    gap: 16px;
    align-items: center;
}

.author-box img {
    width: auto;
    height: 80px;
    border-radius: 5%;
    border: 3px solid var(--accent);
}


/* CATEGORIAS */

.cat-item {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: var(--primary);
    padding: 6px 0;
    font-weight: 500;
}

.cat-item span {
    font-size: 12px;
    background: #eee;
    padding: 2px 8px;
    border-radius: 999px;
}


/* RELACIONADOS */

.related-item {
    display: block;
    padding: 6px 0;
    font-size: 13px;
    color: var(--primary);
}

.related-item:hover {
    color: var(--accent);
}


/* RECENTES */

.recent-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.2s;
}

.recent-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.recent-card img {
    width: 100%;
    aspect-ratio: 860 / 480;
    object-fit: cover;
    display: block;
}

.recent-title {
    font-size: 16px;
    font-weight: 700;
    padding: 2px 10px;
    color: #666;
}

.recent-categorias {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 10px;
    color: #666;
}

.recent-resumo {
    font-size: 12px;
    font-weight: 500;
    padding: 2px 10px 10px 10px;
    color: #666;
}

.recent-atualizado-em {
    font-size: 10px;
    font-weight: 500;
    padding: 0px 10px;
    color: #666;
}

.recent-card:hover .recent-title,
.recent-card:hover .recent-resumo,
.recent-card:hover .recent-atualizado-em,
.recent-card:hover .recent-categorias {
    color: var(--accent);
}


/* FOOTER */

footer {
    background: #fff;
    border-top: 1px solid #eee;
    margin-top: 40px;
    padding: 40px 0 20px;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-link {
    display: block;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 6px;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
    color: #666;
    text-align: center;
}