@font-face{
            font-family: 'Lemon Milk';
            src: url('/fontes/lemonmilk-bold.woff2') format('woff2');
            font-weight: 700;
            font-display: swap;
        }
        @font-face{
            font-family: 'Ekster';
            src: url('/fontes/ekster-regular.woff2') format('woff2');
            font-weight: 400;
            font-display: swap;
        }
        @font-face{
            font-family: 'Ekster';
            src: url('/fontes/ekster-medium.woff2') format('woff2');
            font-weight: 500;
            font-display: swap;
        }
        @font-face{
            font-family: 'Ekster';
            src: url('/fontes/ekster-bold.woff2') format('woff2');
            font-weight: 700;
            font-display: swap;
        }

        #block-cta-empresa #cta-section{
            --cta-navy: #253064;
            --cta-gold:  #D89A14;
            --cta-white: #ffffff;
            width: 100%;
            background: var(--cta-navy);
            padding: 100px clamp(24px, 7.3vw, 140px) 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
            font-family: 'Ekster', sans-serif;
            box-sizing: border-box;
        }

        #block-cta-empresa #cta-section *,
#block-cta-empresa #cta-section *::before,
#block-cta-empresa #cta-section *::after{
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        #block-cta-empresa #cta-section .cta-inner{
            max-width: 1640px;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: 60px;
        }

        /* Header: Título + Botões */
        #block-cta-empresa #cta-section .cta-header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            gap: 40px;
            opacity: 0;
        }

        #block-cta-empresa #cta-section .cta-title{
            font-family: 'Lemon Milk', sans-serif;
            font-size: clamp(24px, 2.5vw, 36px);
            color: var(--cta-white);
            text-transform: uppercase;
            line-height: 1.2;
            max-width: 800px;
            flex: 1;
            letter-spacing: 0.5px;
        }

        #block-cta-empresa #cta-section .cta-buttons{
            display: flex;
            gap: 20px;
            flex-shrink: 0;
        }

        #block-cta-empresa #cta-section .cta-btn{
            font-family: 'Lemon Milk', sans-serif;
            font-size: 14px;
            font-weight: 700;
            padding: 18px 35px;
            border-radius: 10px;
            text-transform: uppercase;
            text-decoration: none;
            letter-spacing: 1px;
            transition: all 0.4s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        #block-cta-empresa #cta-section .cta-btn-gold{
            background: var(--cta-gold);
            color: var(--cta-white);
            border: 1px solid rgba(216,154,20,0.5);
            overflow: hidden;
            isolation: isolate;
            position: relative;
        }

        #block-cta-empresa #cta-section .cta-btn-gold::before{
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 10px;
            box-shadow: 0 0 15px var(--cta-gold);
            opacity: 0;
            z-index: -1;
        }

        #block-cta-empresa #cta-section .cta-btn-gold:hover{
            background: #f7b11d;
            box-shadow: 0 0 10px rgba(216,154,20,0.75), 0 0 28px rgba(216,154,20,0.35);
        }

        #block-cta-empresa #cta-section .cta-btn-gold:hover::before{
            animation: cta-empresa__cta-pulse 1.2s ease-out infinite;
        }

        @keyframes cta-empresa__cta-pulse{
            0%   { transform: scale(1);    opacity: 0.08; }
            100% { transform: scale(1.03); opacity: 0; }
        }

        /* Shine no botão dourado */
        #block-cta-empresa #cta-section .cta-sheen{
            position: absolute;
            inset: 0;
            overflow: hidden;
            border-radius: 10px;
            pointer-events: none;
            z-index: 1;
        }

        #block-cta-empresa #cta-section .cta-sheen::after{
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: -35%;
            width: 34%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
            transform: translateX(-160%) skewX(-22deg);
            transition: transform 0.6s ease;
            opacity: 0;
            filter: blur(1px);
        }

        #block-cta-empresa #cta-section .cta-btn-gold:hover .cta-sheen::after{
            transform: translateX(420%) skewX(-22deg);
            opacity: 1;
        }

        #block-cta-empresa #cta-section .cta-btn-white{
            background: var(--cta-white);
            color: var(--cta-navy);
            border: 1px solid var(--cta-white);
        }

        #block-cta-empresa #cta-section .cta-btn-white:hover{
            box-shadow: 0 0 20px rgba(255,255,255,0.3);
        }

        /* Frame acende quando o botão dourado está em hover */
        #block-cta-empresa #cta-section:has(.cta-btn-gold:hover) .cta-frame{
            border-color: var(--cta-white);
            box-shadow: 0 0 30px rgba(255,255,255,0.2), inset 0 0 20px rgba(255,255,255,0.1);
        }

        /* Moldura trançada */
        #block-cta-empresa #cta-section .cta-frame{
            position: relative;
            width: 100%;
            height: 340px;
            border: 1.5px solid var(--cta-gold);
            border-bottom: none;
            border-radius: 20px 20px 0 0;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 60px;
            overflow: visible;
            opacity: 0;
            transition: border-color 0.8s ease, box-shadow 0.8s ease;
        }

        /* Brilho caminhando na borda */
        #block-cta-empresa #cta-section .cta-frame::after{
            content: '';
            position: absolute;
            top: -1.5px;
            left: -1.5px;
            right: -1.5px;
            bottom: 0;
            border-radius: 20px 20px 0 0;
            padding: 1.5px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(255,255,255,0) 45%,
                rgba(255,255,255,1) 50%,
                rgba(255,255,255,0) 55%,
                transparent 100%);
            background-size: 300% 100%;
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: cta-empresa__cta-shine 8s infinite cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 2;
        }

        @keyframes cta-empresa__cta-shine{
            0%   { background-position: 150% 0; }
            100% { background-position: -150% 0; }
        }

        #block-cta-empresa #cta-section .cta-slogan{
            max-width: 180px;
            width: 100%;
            height: auto;
            filter: brightness(0) invert(1);
            opacity: 0.8;
        }

        /* ── MOBILE ──────────────────────────────────────── */
        @media (max-width: 992px){
            #block-cta-empresa #cta-section .cta-header{
                flex-direction: column;
                align-items: center;
                gap: 30px;
                text-align: center;
            }
            #block-cta-empresa #cta-section .cta-title{ max-width: 100%; text-align: center; }
        }

        @media (max-width: 600px){
            #block-cta-empresa #cta-section{ padding: 80px 24px 0; }
            #block-cta-empresa #cta-section .cta-buttons{ flex-direction: column; width: 100%; align-items: center; }
            #block-cta-empresa #cta-section .cta-btn{ width: 100%; }
            #block-cta-empresa #cta-section .cta-frame{ height: 260px; }
            #block-cta-empresa #cta-section .cta-slogan{ max-width: 130px; max-height: 110px; height: auto; width: auto; }
        }