.section-premium {
        background: linear-gradient(145deg, #ffffff, #f8f9fa);
        border-radius: 40px;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    }
    
    .btn-erp-glow {
        position: relative;
        width: 180px;
        height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 30px;
        border: 1px solid #eee;
        transition: all 0.4s ease;
        text-decoration: none;
        z-index: 1;
    }

    .btn-erp-glow::before {
        content: '';
        position: absolute;
        top: -2px; left: -2px; right: -2px; bottom: -2px;
        background: linear-gradient(45deg, #0d6efd, #0dcaf0);
        z-index: -1;
        border-radius: 32px;
        filter: blur(10px);
        opacity: 0.2;
        transition: opacity 0.4s ease;
    }

    .btn-erp-glow:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
    }

    .btn-erp-glow:hover::before {
        opacity: 0.6;
    }

    .modulo-card {
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 20px;
        padding: 1.25rem;
        transition: all 0.3s ease;
        width: 100%;
        text-align: left;
    }

    .modulo-card:hover {
        background: #fdfdfd;
        border-color: #0d6efd;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }

    .icon-box {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

    .modulo-card:hover .icon-box {
        background-color: #0d6efd !important;
        color: #fff !important;
    }

    .divider-custom {
        width: 1px;
        height: 150px;
        background: linear-gradient(to bottom, transparent, #dee2e6, transparent);
    }


    .btn-erp-modern {
        position: relative;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 160px;
        height: 160px;
        background: #ffffff;
        border: 1px solid #e9ecef; /* Borda bem clarinha */
        border-radius: 40px; /* Bordas bem arredondadas */
        text-decoration: none;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        overflow: hidden;
    }

    /* Texto principal */
    .erp-text {
        font-size: 3.5rem;
        font-weight: 900;
        background: linear-gradient(135deg, #0d6efd 0%, #003d99 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        letter-spacing: -3px;
        line-height: 1;
        transition: transform 0.5s ease;
    }

    /* Tag sutil acima do texto */
    .erp-badge {
        font-size: 0.65rem;
        font-weight: 700;
        letter-spacing: 2px;
        color: #adb5bd;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    /* Efeito de hover */
    .btn-erp-modern:hover {
        border-color: #0d6efd;
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(13, 110, 253, 0.1);
    }

    .btn-erp-modern:hover .erp-text {
        transform: scale(1.1);
    }

    /* Brilho interno sutil */
    .btn-erp-modern::after {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background: radial-gradient(circle at top left, rgba(13, 110, 253, 0.05), transparent);
        pointer-events: none;
    }
