        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            font-size: 14px;
            line-height: 1.5;
            color: #333;
            background: #fff;
            -webkit-font-smoothing: antialiased;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        /* HEADER STICKY */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }
        
        /* TOP BAR - VERMELHO G1 */
        .top-bar {
            background-color: #c4170c;
            height: 40px;
            display: flex;
            align-items: center;
        }
        
        .top-bar-content {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .top-bar-left {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        /* MENU HAMBURGUER */
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: #fff;
        }
        
        .menu-toggle svg {
            width: 24px;
            height: 24px;
        }
        
        /* LINKS REDE GLOBO */
        .top-bar-links {
            display: flex;
            align-items: center;
            gap: 20px;
            list-style: none;
        }
        
        .top-bar-links a {
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            opacity: 0.9;
            transition: opacity 0.2s ease;
        }
        
        .top-bar-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }
        
        .top-bar-links .divider {
            color: rgba(255,255,255,0.3);
            font-size: 12px;
        }
        
        /* TOP BAR RIGHT - DATA */
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        
        .top-bar-date {
            color: rgba(255,255,255,0.9);
            font-size: 12px;
        }
        
        /* HEADER BANNER */
        .header-banner {
            background: #f5f5f5;
            text-align: center;
        }
        
        .header-banner .bjp-ad {
            padding: 0;
            background: transparent;
        }
        
        .header-banner .bjp-ad__container {
            max-width: 100% !important;
        }
        
        .header-banner .bjp-ad__image {
            max-height: 90px;
            width: auto;
            object-fit: contain;
        }
        
        /* MAIN HEADER */
        .main-header {
            background: #fff;
            height: 80px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid #eee;
        }
        
        .main-header-content {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }
        
        /* LOGO */
        .logo-area {
            flex-shrink: 0;
        }
        
        .logo-area img {
            height: 50px;
            width: auto;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.1;
        }
        
        .logo-text .site-name {
            font-size: 32px;
            font-weight: 800;
            color: #c4170c;
            letter-spacing: -1px;
        }
        
        .logo-text .site-tagline {
            font-size: 10px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        /* MENU DE CATEGORIAS */
        .category-menu {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            overflow: hidden;
        }
        
        .category-menu ul {
            display: flex;
            align-items: center;
            gap: 24px;
            list-style: none;
        }
        
        .category-menu ul li {
            position: relative;
        }
        
        .category-menu ul li a {
            font-size: 14px;
            font-weight: 600;
            color: #333;
            padding: 8px 0;
            display: block;
            transition: color 0.2s ease;
        }
        
        .category-menu ul li a:hover {
            color: #c4170c;
        }
        
        .category-menu ul li a.active {
            color: #c4170c;
        }
        
        /* DROPDOWN */
        .category-menu .has-dropdown > a {
            display: flex;
            align-items: center;
            gap: 4px;
        }
        
        .category-menu .has-dropdown > a::after {
            content: '▼';
            font-size: 8px;
            color: #999;
        }
        
        .category-menu .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            min-width: 180px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            display: none;
            z-index: 100;
        }
        
        .category-menu .has-dropdown:hover .dropdown {
            display: block;
        }
        
        .category-menu .dropdown a {
            display: block;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 600;
            border-bottom: 1px solid #eee;
            color: #333;
        }
        
        .category-menu .dropdown a:last-child {
            border-bottom: none;
        }
        
        .category-menu .dropdown a:hover {
            background: #fef2f2;
            color: #c4170c;
        }
        
        .category-menu .dropdown .view-all {
            background: #f5f5f5;
            color: #c4170c;
            font-weight: 700;
        }
        
        /* SEARCH AREA */
        .search-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .search-form {
            display: flex;
            align-items: center;
            background: #f5f5f5;
            border-radius: 4px;
            padding: 4px 8px;
            transition: all 0.2s ease;
        }
        
        .search-form:focus-within {
            background: #fff;
            box-shadow: 0 0 0 2px #c4170c;
        }
        
        .search-form input {
            border: none;
            background: transparent;
            padding: 6px 8px;
            font-size: 13px;
            width: 180px;
            outline: none;
        }
        
        .search-form input::placeholder {
            color: #999;
        }
        
        .search-form button {
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
            color: #666;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .search-form button:hover {
            color: #c4170c;
        }
        
        .search-form button svg {
            width: 18px;
            height: 18px;
        }
        
        /* SOCIAL ICONS */
        .social-icons {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .social-icons a {
            color: #666;
            transition: color 0.2s ease;
        }
        
        .social-icons a:hover {
            color: #c4170c;
        }
        
        .social-icons svg {
            width: 20px;
            height: 20px;
        }
        
        /* MOBILE SEARCH ICON */
        .mobile-search-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: #333;
        }
        
        /* SIDEBAR MOBILE */
        .sidebar-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.5);
            z-index: 1001;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .sidebar-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .mobile-sidebar {
            position: fixed;
            top: 0;
            left: -300px;
            width: 300px;
            height: 100%;
            background: #fff;
            z-index: 1002;
            overflow-y: auto;
            transition: left 0.3s ease;
        }
        
        .mobile-sidebar.active {
            left: 0;
        }
        
        .mobile-sidebar-header {
            background: #c4170c;
            color: #fff;
            padding: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .mobile-sidebar-header h3 {
            font-size: 16px;
            font-weight: 600;
        }
        
        .mobile-sidebar-close {
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
            padding: 4px;
        }
        
        .mobile-sidebar-nav {
            padding: 16px 0;
        }
        
        .mobile-sidebar-nav a {
            display: flex;
            align-items: center;
            padding: 12px 16px;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            border-bottom: 1px solid #eee;
            transition: all 0.2s ease;
        }
        
        .mobile-sidebar-nav a:hover {
            background: #fef2f2;
            color: #c4170c;
        }
        
        .mobile-sidebar-nav a.home-link {
            background: #f5f5f5;
            font-weight: 700;
            color: #c4170c;
        }
        
        .mobile-sidebar-submenu {
            padding-left: 16px;
        }
        
        .mobile-sidebar-submenu a {
            font-weight: 400;
            font-size: 13px;
        }
        
        /* MOBILE SEARCH */
        .mobile-search {
            display: none;
            padding: 16px;
            background: #f5f5f5;
            border-bottom: 1px solid #ddd;
        }
        
        .mobile-search form {
            display: flex;
            gap: 8px;
        }
        
        .mobile-search input {
            flex: 1;
            padding: 10px 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            outline: none;
        }
        
        .mobile-search input:focus {
            border-color: #c4170c;
        }
        
        .mobile-search button {
            background: #c4170c;
            color: #fff;
            border: none;
            padding: 10px 16px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
        }
        
        /* RESPONSIVO */
        @media (max-width: 1024px) {
            .top-bar-links {
                gap: 12px;
            }
            
            .category-menu ul {
                gap: 16px;
            }
            
            .search-form input {
                width: 140px;
            }
        }
        
        @media (max-width: 768px) {
            .top-bar {
                height: 44px;
            }
            
            .top-bar-content {
                padding: 0 12px;
            }
            
            .top-bar-links {
                display: none;
            }
            
            .top-bar-date {
                display: none;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .main-header {
                height: 60px;
            }
            
            .main-header-content {
                padding: 0 12px;
                gap: 12px;
            }
            
            .logo-area img {
                height: 40px;
            }
            
            .logo-text .site-name {
                font-size: 24px;
            }
            
            .category-menu {
                display: none;
            }
            
            .search-area .search-form,
            .search-area .social-icons {
                display: none;
            }
            
            .mobile-search-btn {
                display: flex;
            }
            
            .mobile-search {
                display: block;
            }
            
            .mobile-sidebar {
                width: 280px;
                left: -280px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-area img {
                height: 36px;
            }
            
            .logo-text .site-name {
                font-size: 20px;
            }
        }
        
        /* FOOTER */
        .site-footer {
            background: #003366;
            color: #fff;
            margin-top: 48px;
        }
        
        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 48px 16px 24px;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        
        .footer-section h4 {
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 16px;
            color: #fff;
        }
        
        .footer-section ul {
            list-style: none;
        }
        
        .footer-section ul li {
            margin-bottom: 8px;
        }
        
        .footer-section ul li a {
            color: rgba(255,255,255,0.7);
            font-size: 13px;
            transition: color 0.2s ease;
        }
        
        .footer-section ul li a:hover {
            color: #fff;
            text-decoration: underline;
        }
        
        .footer-section p {
            color: rgba(255,255,255,0.7);
            font-size: 13px;
            line-height: 1.6;
        }
        
        .footer-logo {
            margin-bottom: 16px;
        }
        
        .footer-logo img {
            height: 40px;
            filter: brightness(0) invert(1);
        }
        
        .footer-social {
            display: flex;
            gap: 16px;
            margin-top: 16px;
        }
        
        .footer-social a {
            color: rgba(255,255,255,0.7);
            transition: color 0.2s ease;
        }
        
        .footer-social a:hover {
            color: #fff;
        }
        
        .footer-social svg {
            width: 24px;
            height: 24px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 12px;
            color: rgba(255,255,255,0.7);
            font-size: 13px;
        }
        
        .footer-contact-item svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 24px 16px;
            text-align: center;
        }
        
        .footer-bottom-content {
            max-width: 1280px;
            margin: 0 auto;
        }
        
        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 12px;
        }
        
        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-top: 12px;
        }
        
        .footer-bottom-links a {
            color: rgba(255,255,255,0.5);
            font-size: 12px;
            transition: color 0.2s ease;
        }
        
        .footer-bottom-links a:hover {
            color: #fff;
        }
        
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            
            .footer-content {
                padding: 32px 16px 16px;
            }
        }
        
        /* MAIN CONTENT AREA */
        .main-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 24px 16px;
        }
