        /* =====================================================================
           ██ HERO — TELA CHEIA SPLIT
           A navbar tem ~81px. Calculamos 100dvh - 81px para preencher
           exatamente o espaço visível sem scroll.
        ===================================================================== */
        .catalog-hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            height: calc(100dvh - 21px);
            min-height: 560px;
            /* empurra abaixo da navbar fixa */
        }

        /* ── Coluna esquerda: visual verde ──────────────────────────── */
        .catalog-visual {
            position: relative;
            background: var(--verde);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 64px 80px;
            overflow: hidden;
        }

        /* Gradiente decorativo */
        .catalog-visual::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 30% 10% at 28% 89%, rgba(10, 107, 45, 0.55) 0%, transparent 100%),
                radial-gradient(ellipse 40% 18% at 80% 10%, rgba(2, 77, 32, 0.18) 0%, transparent 60%);
            pointer-events: none;
        }

        /* Grid lines decorativas */
        .visual-grid {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .visual-grid-h {
            position: absolute;
            left: 0;
            right: 0;
            height: 1px;
            background: rgba(255, 255, 255, 0.04);
        }

        .visual-grid-h:nth-child(1) {
            top: 33.33%;
        }

        .visual-grid-h:nth-child(2) {
            top: 66.66%;
        }

        .visual-grid-v {
            position: absolute;
            top: 0;
            bottom: 0;
            width: 1px;
            background: rgba(255, 255, 255, 0.04);
        }

        .visual-grid-v:nth-child(3) {
            left: 33.33%;
        }

        .visual-grid-v:nth-child(4) {
            left: 66.66%;
        }

        /* Ano decorativo */
        .catalog-year {
            position: absolute;
            top: 50%;
            right: -50px;
            transform: translateY(-50%) rotate(90deg);
            font-family: var(--font-titulo);
            font-weight: 700;
            font-size: clamp(80px, 10vw, 150px);
            color: rgba(255, 255, 255, 0.04);
            letter-spacing: -4px;
            user-select: none;
            pointer-events: none;
            white-space: nowrap;
        }

        /* Capa do catálogo — foto PNG real */
        .catalog-cover {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -52%);
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .catalog-cover-img {
            width: 620px;
            object-fit: cover;
            object-position: center top;
            display: block;
            transition: transform 0.7s var(--ease), filter 0.7s var(--ease);
        }

        .catalog-cover-img:hover {
            filter:
                drop-shadow(0 12px 40px rgba(0, 0, 0, 0.45)) drop-shadow(0 20px 70px rgba(0, 0, 0, 0.28));
        }

        /* Sombra do livro */
        .catalog-cover-shadow {
            width: 10px;
            height: 12px;
            background: rgba(0, 0, 0, 0.25);
            border-radius: 50%;
            filter: blur(12px);
            margin-top: 6px;
            transition: var(--smooth);
        }

        .catalog-cover:hover .catalog-cover-shadow {
            transform: scaleX(0.78);
            opacity: 0.60;
        }

        /* Indicador lateral */
        .visual-aside {
            position: absolute;
            right: 28px;
            bottom: 64px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 14px;
            z-index: 3;
        }

        .visual-aside-line {
            width: 1px;
            height: 48px;
            background: rgba(255, 255, 255, 0.10);
            position: relative;
            overflow: hidden;
        }

        .visual-aside-line::after {
            content: '';
            position: absolute;
            top: -100%;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.40);
            animation: scrollDrop 2.4s ease-in-out infinite;
        }

        @keyframes scrollDrop {
            0% {
                top: -100%;
            }

            100% {
                top: 100%;
            }
        }

        .visual-aside-label {
            font-family: var(--font-corpo);
            font-size: 8px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.18);
            writing-mode: vertical-rl;
        }

        /* Texto inferior */
        .visual-footer {
            position: relative;
            z-index: 3;
        }

        .visual-eyebrow {
            font-family: var(--font-corpo);
            font-size: 12px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.28);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .visual-eyebrow::before {
            content: '';
            display: block;
            width: 20px;
            height: 1px;
            background: rgba(255, 255, 255, 0.18);
        }

        .visual-title {
            font-family: var(--font-titulo);
            font-weight: 600;
            font-size: clamp(24px, 2.8vw, 40px);
            color: var(--branco);
            letter-spacing: -0.5px;
            line-height: 1.1;
        }

        .visual-title em {
            font-style: italic;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.38);
        }

        /* ── Coluna direita: conteúdo off-white ──────────────────────── */
        .catalog-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 64px 80px;
            background: var(--off-white);
            position: relative;
        }

        .back-link {
            position: absolute;
            top: 120px;
            left: 40px;
            z-index: 10;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: var(--font-corpo);
            font-size: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            padding: 10px 18px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            transition: var(--fast);
        }

        .back-link:hover {
            color: #ffffff;
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.35);
            gap: 14px;
        }

        .back-link svg {
            width: 14px;
            height: 14px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5px;
        }

        .catalog-eyebrow {
            font-family: var(--font-corpo);
            font-size: 13px;
            letter-spacing: 4px;
            text-transform: uppercase;
            color: var(--cinza);
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .catalog-eyebrow::before {
            content: '';
            display: block;
            width: 24px;
            height: 1px;
            background: var(--cinza);
        }

        .catalog-heading {
            font-family: var(--font-titulo);
            font-weight: 600;
            font-size: clamp(30px, 3.2vw, 50px);
            color: var(--verde-medio);
            letter-spacing: -1px;
            line-height: 1.05;
            margin-bottom: 20px;
        }

        .catalog-heading em {
            font-style: italic;
            font-weight: 400;
            color: var(--cinza);
        }

        .catalog-desc {
            font-family: var(--font-corpo);
            font-size: 18px;
            letter-spacing: 0.3px;
            color: var(--cinza);
            line-height: 1.3;
            margin-bottom: 44px;
            max-width: 380px;
        }

        /* Highlights */
        .catalog-highlights {
            display: flex;
            align-items: center;
            gap: 32px;
            margin-bottom: 44px;
        }

        .highlight-item {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .highlight-num {
            font-family: var(--font-titulo);
            font-weight: 700;
            font-size: 26px;
            color: var(--verde-medio);
            letter-spacing: -1px;
            line-height: 1;
        }

        .highlight-label {
            font-family: var(--font-corpo);
            font-size: 9px;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--cinza);
        }

        .highlight-divider {
            width: 1px;
            height: 36px;
            background: var(--borda-forte);
        }

        /* Divisória */
        .section-divider {
            width: 100%;
            height: 1px;
            background: var(--borda);
            margin-bottom: 40px;
        }

        /* Botão de download */
        .btn-download {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 18px 48px;
            background: var(--verde-medio);
            color: var(--branco);
            font-family: var(--font-titulo);
            font-weight: 600;
            font-size: 11px;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            border: 1px solid var(--verde-medio);
            cursor: pointer;
            transition: var(--smooth);
            text-decoration: none;
            max-width: 420px;
        }

        .btn-download:hover {
            background: transparent;
            color: var(--verde-medio);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-download svg {
            width: 18px;
            height: 18px;
            stroke: currentColor;
            fill: none;
            stroke-width: 1.5px;
            transition: transform 0.4s var(--ease);
            flex-shrink: 0;
        }

        .btn-download:hover svg {
            transform: translateY(3px);
        }

        /* Nota de segurança */
        .download-note {
            margin-top: 20px;
            font-family: var(--font-corpo);
            font-size: 10px;
            letter-spacing: 1px;
            color: var(--bege);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .download-note svg {
            width: 12px;
            height: 12px;
            stroke: var(--bege);
            fill: none;
            stroke-width: 1.5px;
            flex-shrink: 0;
        }

        /* =====================================================================
           ██ RESPONSIVIDADE
        ===================================================================== */
        @media (max-width: 1024px) {

            .catalog-hero {
                grid-template-columns: 1fr;
                height: auto;
                margin-top: 73px;
            }

            .catalog-visual {
                min-height: 55vh;
                padding: 64px 40px;
            }

            /* Capa permanece com tamanho original — clipped pelo overflow:hidden do pai */

            .catalog-content {
                padding: 64px 40px;
            }

        }
        
        @media (max-width: 768px) {
            .page-catalogo .page-wrap {
                padding-top: 0;
            }

                    
            .catalog-hero {
                margin-top: 61px;
                grid-template-columns: 1fr;
                height: auto;
            }

            .catalog-visual {
                min-height: 56svh;
                padding: 48px 24px 40px;
            }

            /* Evita overflow horizontal do "2026" decorativo */
            .catalog-year {
                font-size: clamp(60px, 18vw, 100px);
                right: -30px;
            }

            .catalog-content {
                padding: 44px 24px 52px;
            }

            /* Botão voltar: mantém absolute mas menor e reposicionado */
            .back-link {
                position: absolute;
                top: 34px;
                left: 20px;
                padding: 8px 14px;
                font-size: 9px;
                gap: 8px;
            }
            
            .back-link span{
                display: none;
            }

            .visual-footer {
                margin-top: 16px;
            }

            .catalog-eyebrow {
                font-size: 11px;
            }

            .catalog-highlights {
                flex-wrap: wrap;
                gap: 20px;
            }

            .highlight-divider {
                display: none;
            }

            .catalog-desc {
                font-size: 15px;
                max-width: 100%;
            }

            .btn-download {
                max-width: 100%;
                width: 100%;
                padding: 16px 24px;
            }

        }

        @media (max-width: 480px) {
            .catalog-visual {
                min-height: 52vh;
                padding: 40px 20px 36px;
            }

            .catalog-year {
                font-size: 14vw;
            }

            .visual-aside {
                display: none;
            }

            .visual-title {
                font-size: clamp(20px, 6vw, 28px);
            }

            .catalog-content {
                padding: 36px 20px 48px;
            }

            .catalog-heading {
                font-size: clamp(28px, 8vw, 40px);
            }

            .highlight-num {
                font-size: 22px;
            }

            .btn-download {
                font-size: 10px;
                letter-spacing: 1.5px;
                gap: 10px;
            }
        }
        
        @media (max-width: 768px) {
            .page-catalogo .page-wrap {
                padding-top: 0;
            }
            
            .visual-title{
                display: none;
            }
            .visual-eyebrow{
                display: none;
            }
            
        }
        
        @media (max-width: 768px) {
            .catalog-cover-img {
                width: 75vw;
                max-width: 320px;
            }
        }
        
        /* Botão de download */
        .btn-download.df-popup-button {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 14px !important;
            padding: 18px 48px !important;
            background: var(--verde-medio) !important;
            color: var(--branco) !important;
            font-family: var(--font-titulo) !important;
            font-weight: 600 !important;
            font-size: 11px !important;
            letter-spacing: 2.5px !important;
            text-transform: uppercase !important;
            border: 1px solid var(--verde-medio) !important;
            cursor: pointer !important;
            transition: var(--smooth) !important;
            text-decoration: none !important;
            max-width: 420px !important;
            border-radius: 0 !important; /* caso o plugin aplique border-radius próprio */
            box-shadow: none !important; /* caso o plugin aplique sombra própria */
        }
        
        .btn-download.df-popup-button:hover {
            background: transparent !important;
            color: var(--verde-medio) !important;
            transform: translateY(-2px) !important;
            box-shadow: var(--shadow-md) !important;
        }