 .cta-percentfy {
            width: 100%;
            padding: 160px 20px;
            background: url('img/fechamento.png') center/cover no-repeat;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* overlay suave para leitura */
        .cta-percentfy::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(
                circle at center,
                rgba(0,0,0,0.10) 0%,
                rgba(0,0,0,0.60) 70%,
                rgba(0,0,0,0.85) 100%
            );
            backdrop-filter: blur(2px);
        }

        /* conteúdo centralizado */
        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            padding: 40px 30px;
            border-radius: 12px;
            background: rgba(0, 0, 0, 0.476);
            box-shadow: 0 0 40px rgba(0,0,0,0.4);
            backdrop-filter: blur(6px);
        }

        .cta-content h2 {
            font-family: 'HK Modular', 'League Spartan', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
            line-height: 1.25;
            text-shadow: 0 0 20px rgba(0,0,0,0.6);
        }

        .cta-content p span {
            color: #ffffff;
            position: relative;
            display: inline-block;
        }

        .cta-content p span::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, 
                #00d4ff 0%, 
                #06b6d4 50%,
                rgba(6, 182, 212, 0) 100%
            );
            border-radius: 2px;
            box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
        }

        .cta-content p {
            font-size: 1.3rem;
            color: #e5e5e5;
            margin-bottom: 35px;
        }

        /* Botão principal */
        .cta-btn {
            display: block;
            width: 100%;
            max-width: 100%;
            padding: 18px 45px;
            background: linear-gradient(180deg, #0e7490, #06b6d4, #22d3ee);
            color: #000000;
            border-radius: 60px;
            font-size: 1.15rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            transition: 0.25s ease-in-out;
            box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
            text-decoration: none;
            margin-bottom: 20px;
        }

        .cta-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 0 30px rgba(34, 211, 238, 0.7);
        }

        /* Grid de botões secundários */
        .cta-buttons-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
            max-width: 100%;
        }

        /* Botões secundários */
        .cta-btn-secondary {
            display: inline-block;
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: #fff;
            border-radius: 60px;
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: 0.25s ease-in-out;
            text-decoration: none;
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

       

        /* Responsivo */
@media (max-width: 768px) {
    .cta-percentfy {
        padding: 100px 20px;
        background: url('img/fechamento-mobile.png') center/cover no-repeat;
    }

    .cta-buttons-grid {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-percentfy {
        padding: 80px 15px;
    }
    
   
    .cta-content {
        background: #00000025;
        padding: 30px 20px;
         box-shadow: 0 0 40px rgba(0,0,0,0.4);
          backdrop-filter: blur(2px);
    }
    
    .cta-content h2 {
        font-size: 1.6rem;
    }
    
    .cta-btn {
        padding: 16px 35px;
        font-size: 1rem;
    }
}