        /* ------------------------------------------
           RESET + BASE
        ------------------------------------------- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', Arial, sans-serif;
            background: #ffffff;
            color: #333;
            -webkit-font-smoothing: antialiased;
        }

        :root {
            --max-width: 1296px;
            --border-color: #e5e5e5;
            --gray-icon: #666;
            
    
            --blue-icon: #0669de; 

            
            --g1: #c4170c;
            --oglobo: #1f4e96;
            --valor: #006847;
            --ge: #06aa48;
            --cartola: #e47522;
            --globoplay: #ff3819;
            --gshow: #ec7d00;
            --receitas: #a502a8;
            --quem: #222;
            --blue-link: #0669de;
        }

        img {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: opacity 0.2s;
        }

        a:hover {
            opacity: 0.9;
        }

        ul {
            list-style: none;
        }

        /* ------------------------------------------
           CABEÇALHO
        ------------------------------------------- */
        header {
            background: transparent;
            width: 100%;
        }

        .header-top-strip {
            max-width: var(--max-width);
            width: 96%;
            margin: 0 auto;
            background: #fff;
            height: 72px;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            padding: 0 24px;
        }

        .menu-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .menu-icon-box {
            width: 18px;
            height: 14px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .menu-line {
            width: 100%;
            height: 2px;
            background-color: blue; 
            border-radius: 1px;
        }

        .menu-text {
            font-weight: 700;
            color: var(--oglobo);
            font-size: 13px;
            letter-spacing: -0.3px;
        }

        .logo-area-abs {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            height: 45px;
            width: auto;
        }

        .logo-img {
            height: 100%;
            width: auto;
            object-fit: contain;
        }

        .right-area {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-widget {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 700;
            color: var(--gray-icon);
            cursor: pointer;
        }

      
        .search-icon-css {
            width: 16px;
            height: 16px;
            border: 2px solid var(--blue-icon); 
            border-radius: 50%;
            position: relative;
            box-sizing: border-box;
        }

        .search-icon-css::after {
            content: '';
            position: absolute;
            width: 5px;
            height: 2px;
            background: var(--blue-icon);
            bottom: -1px;
            right: -3px;
            transform: rotate(45deg);
        }

        .links-bar-strip {
            max-width: var(--max-width);
            width: 96%;
            margin: 0 auto;
            background: #fff;
            border-bottom: 1px solid #f9f9f9;
            padding: 12px 24px;
        }

        .links-nav {
            display: flex;
            justify-content: space-between;
            overflow-x: auto;
            scrollbar-width: none;
        }

        .links-nav::-webkit-scrollbar {
            display: none;
        }

        .link-item {
            font-size: 15px;
            font-weight: 800;
            text-transform: lowercase;
            letter-spacing: -0.5px;
            white-space: nowrap;
            margin-right: 20px;
        }

        .link-item:last-child {
            margin-right: 0;
        }

        .color-g1 { color: var(--g1); }
        .color-oglobo { color: var(--oglobo); }
        .color-valor { color: var(--valor); }
        .color-ge { color: var(--ge); }
        .color-cartola { color: var(--cartola); }
        .color-globoplay { color: var(--globoplay); }
        .color-gshow { color: var(--gshow); }
        .color-receitas { color: var(--receitas); }

        /* ------------------------------------------
           BARRA DE CLIMA
        ------------------------------------------- */
        .weather-bar {
            max-width: var(--max-width);
            width: 96%;
            margin: 0 auto 24px auto;
            background: #fff;
            padding: 4px 24px 12px 24px;
            display: flex;
            justify-content: flex-start;
            border-bottom-left-radius: 8px;
            border-bottom-right-radius: 8px;
        }

        .weather-widget-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .weather-icon-sun {
            width: 20px;
            height: 20px;
            background: #ffbd00;
            border-radius: 50%;
            box-shadow: 0 0 6px rgba(255, 189, 0, 0.6);
        }

        .temp-group {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            font-size: 13px;
        }

        .temp-max { color: #d32f2f; display: flex; align-items: center; }
        .temp-min { color: #1976d2; display: flex; align-items: center; }

        .arrow-up::before { content: '▲'; font-size: 8px; margin-right: 2px; }
        .arrow-down::before { content: '▼'; font-size: 8px; margin-right: 2px; }

        .location-group {
            display: flex;
            align-items: center;
            padding-left: 12px;
            border-left: 1px solid #ddd;
            font-size: 13px;
            gap: 4px;
        }

        .weather-label { color: #555; font-weight: 400; }
        .weather-city-style {
            color: var(--blue-link);
            text-decoration: underline;
            font-weight: 700;
            cursor: pointer;
        }

        /* ------------------------------------------
           BANNER
        ------------------------------------------- */
        .banner-wrapper-centered {
            max-width: var(--max-width);
            width: 96%;
            margin: 0 auto 24px auto;
        }

        .banner {
            width: 100%;
            height: 250px;
            background: #000 url('imagens/exemplo-de-banner-do-mcdonald-s.png') center center no-repeat;
            background-size: 100% 100%;
            border-radius: 8px;
            position: relative;
        }

        .ad-overlay-icons {
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            border-bottom-left-radius: 0px;
            border-top-right-radius: 6px;
            padding: 0;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
            height: 24px;
        }

        .ad-icon-btn {
            width: 26px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border-left: 1px solid #eee;
        }

        .ad-icon-btn:first-child { border-left: none; }
        .ad-icon-btn:hover { background: #f5f5f5; }

        .ad-svg, .ad-svg-menu { width: 16px; height: 16px; fill: #00aaff; }

        /* ------------------------------------------
           LAYOUT GRID
        ------------------------------------------- */
        .main-layout-centered {
            max-width: var(--max-width);
            width: 96%;
            margin: 0 auto 60px auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 24px;
            align-items: start;
        }

        .card {
            display: flex;
            flex-direction: column;
            gap: 12px;
            background: #fff;
            padding: 16px;
            border-radius: 8px;
        }

        .card-no-pad {
            padding: 0;
            background: transparent;
            gap: 16px;
        }

        .img-box {
            border-radius: 6px;
            overflow: hidden;
            background: #ddd;
            position: relative;
        }

        .aspect-video { aspect-ratio: 16/9; }

        .kicker {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            margin-bottom: 4px;
            display: block;
        }

        .title-xl {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.1;
            color: var(--g1);
            letter-spacing: -1px;
        }

        .title-md { font-size: 18px; font-weight: 700; line-height: 1.3; }
        .title-sm { font-size: 16px; font-weight: 700; line-height: 1.35; color: #333; }

        .news-list li {
            font-size: 14px;
            color: #555;
            margin-top: 8px;
            padding-left: 12px;
            position: relative;
            line-height: 1.4;
        }

        .news-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #333;
            font-weight: bold;
        }

        .subtext { font-size: 12px; color: #666; margin-top: 4px; }

        .grid-3-cols {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 16px;
            padding-top: 16px;
            border-top: 1px solid #e5e5e5;
        }

        .card-side {
            display: flex;
            flex-direction: row;
            gap: 12px;
            align-items: flex-start;
            padding-top: 12px;
            border-top: 1px solid #eee;
        }

        .card-side .img-box { width: 90px; height: 90px; flex-shrink: 0; }
        .card-side .content { flex: 1; }

        .t-ge { color: var(--ge); }
        .t-gshow { color: var(--gshow); }

        /* Responsivo */
        @media (max-width: 1024px) {
            .main-layout-centered { grid-template-columns: 1.5fr 1fr; }
            .col-right { display: none; }
            .grid-3-cols { grid-template-columns: 1fr; }
            .header-top-strip, .links-bar-strip, .weather-bar { width: 100%; }
        }

        @media (max-width: 768px) {
            .header-top-strip { padding: 0 16px; height: 64px; }
            .right-area { display: none; }
            .links-bar-strip { padding: 12px 16px; }
            .main-layout-centered { grid-template-columns: 1fr; }
            .col-right { display: block; }
            .banner { aspect-ratio: 16/9; height: auto; }
            .title-xl { font-size: 24px; }
            .centered-container, .banner-wrapper-centered, .main-layout-centered { width: 100%; max-width: 100%; }
            body { background: #fff; }
            .weather-bar { justify-content: center; }
            .location-group { padding-left: 0; border-left: none; display: flex; flex-direction: column; gap: 0; align-items: flex-start; margin-left: 10px; }
            .weather-label { display: none; }
        }