/*
Theme Name: Portal News
Theme URI: https://seusite.com
Author: Seu Nome
Description: Tema moderno de notícias estilo CNN Brasil e G1, com suporte a Web Stories, Destaques e Vídeos.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: portalnews
*/

/* --- ANIMAÇÕES E SCROLLBARS --- */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-ticker {
    animation: ticker 35s linear infinite;
    display: flex;
    width: max-content;
}

.animate-ticker:hover {
    animation-play-state: paused;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* --- ESTILOS PARA OS MENUS DINÂMICOS DO WORDPRESS --- */

/* Menu Horizontal Superior */
.header-nav ul {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}
.header-nav li a {
    transition: color 0.2s;
}
.header-nav li a:hover {
    color: #d1d5db; /* gray-300 */
}

/* Menu Lateral Vertical */
.sidebar-nav-ul li {
    position: relative;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-left: 6px solid #c4170c;
    margin-bottom: 2px;
    transition: background-color 0.2s;
}
.sidebar-nav-ul li:hover {
    background-color: #f3f4f6; /* gray-100 */
}
.sidebar-nav-ul li a {
    font-weight: 700;
    font-size: 14.5px;
    color: #1f2937; /* gray-800 */
    display: block;
    width: 100%;
}
.sidebar-nav-ul li:hover a {
    color: #000;
}

/* Estilo para a Custom Logo */
.logo-wrapper img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}