.header_layout_1 .btns_group>li:last-child{
            display: block !important;
        }
                
        /* =========================================
           SEÇÃO DE OPORTUNIDADES
        ========================================= */
        
        .featured-cards-section {
            background: #f8f9fa !important;
            padding: 60px 0;
            width: 100%;
            overflow: hidden;
            box-sizing: border-box;
        }
        
        .featured-cards-section *,
        .featured-cards-section *::before,
        .featured-cards-section *::after {
            box-sizing: border-box;
        }
        
        /* CONTAINER */
        
        .featured-cards-section .container {
            width: 100%;
            max-width: 1140px;
            margin: 0 auto;
            padding-left: 15px;
            padding-right: 15px;
        }
        
        /* LINHA DOS CARDS */
        
        .featured-cards-section .row {
            width: 100%;
            margin-left: 0;
            margin-right: 0;
            justify-content: center;
        }
        
        /* =========================================
           CARD
        ========================================= */
        
        .featured-card {
            position: relative;
        
            width: 100%;
            max-width: 360px;
        
            margin: 0 auto;
        
            background: #ffffff;
        
            border: 1px solid #e5e5e5;
            border-top: 4px solid #8234C5;
        
            border-radius: 14px;
        
            overflow: hidden;
        
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        
            transition:
                transform 0.25s ease,
                box-shadow 0.25s ease,
                border-color 0.25s ease;
        }
        
        .featured-card:hover {
            transform: translateY(-5px);
        
            border-color: #8234C5;
        
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
        }
        
        /* =========================================
           BADGE OPORTUNIDADE
        ========================================= */
        
        .featured-card-badge {
            display: inline-flex;
            align-items: center;
        
            background: rgba(130, 52, 197, 0.10);
        
            color: #8234C5;
        
            font-size: 10px;
            font-weight: 800;
        
            letter-spacing: 1px;
        
            padding: 7px 14px;
        
            border-radius: 0 0 10px 0;
        }
        
        .featured-card-badge::before {
            content: "★";
            margin-right: 5px;
            font-size: 9px;
        }
        
        /* =========================================
           CONTEÚDO DO CARD
        ========================================= */
        
        .featured-card-body {
            padding: 18px 20px 20px;
        }
        
        /* TIPO */
        
        .featured-card-type {
            display: block;
        
            color: #6c757d;
        
            font-size: 10px;
            font-weight: 700;
        
            letter-spacing: 0.6px;
        
            margin-bottom: 8px;
        }
        
        /* TÍTULO */
        
        .featured-card h3 {
            color: #263238;
        
            font-size: 23px;
            font-weight: 800;
        
            line-height: 1.2;
        
            margin: 0 0 12px;
        }
        
        /* =========================================
           ADMINISTRADORA
        ========================================= */
        
        .featured-card-admin {
            display: flex;
            align-items: center;
        
            gap: 5px;
        
            margin-bottom: 14px;
        
            color: #6c757d;
        
            font-size: 12px;
        }
        
        .featured-card-admin strong {
            color: #8234C5;
        
            font-size: 12px;
            font-weight: 800;
        }
        
        /* =========================================
           INFORMAÇÕES
        ========================================= */
        
        .featured-card-info {
            display: grid;
        
            grid-template-columns: repeat(2, minmax(0, 1fr));
        
            gap: 8px;
        
            margin-bottom: 8px;
        }
        
        .featured-card-info > div {
            min-width: 0;
        
            background: #f8f9fa;
        
            border: 1px solid #e9ecef;
        
            border-radius: 9px;
        
            padding: 9px 10px;
        }
        
        .featured-card-info small {
            display: block;
        
            color: #777;
        
            font-size: 9px;
            font-weight: 600;
        
            margin-bottom: 3px;
        }
        
        .featured-card-info strong {
            display: block;
        
            color: #263238;
        
            font-size: 13px;
            font-weight: 800;
        
            line-height: 1.3;
        }
        
        .featured-card-info .status {
            color: #8234C5;
        }
        
        /* =========================================
           BOTÃO
        ========================================= */
        
        .featured-card-button {
            display: flex;
        
            align-items: center;
            justify-content: center;
        
            width: 100%;
        
            margin-top: 14px;
        
            padding: 11px 15px;
        
            background: #ffffff;
            color: #8234C5;
        
            border: 1px solid #8234C5;
        
            border-radius: 8px;
        
            font-size: 13px;
            font-weight: 700;
        
            text-decoration: none;
        
            transition:
                background 0.25s ease,
                color 0.25s ease,
                box-shadow 0.25s ease;
        }
        
        .featured-card-button::before {
            content: "→";
            margin-right: 7px;
            font-size: 15px;
        }
        
        .featured-card-button:hover {
            background: #8234C5;
            color: #ffffff;
        
            box-shadow: 0 6px 18px rgba(130, 52, 197, 0.20);
        }
        
        /* =========================================
           RESPONSIVO
        ========================================= */
        
        @media (max-width: 991px) {
        
            .featured-card {
                max-width: 100%;
            }
        
        }
        
        @media (max-width: 767px) {
        
            .featured-cards-section {
                padding: 40px 0;
            }
        
            .featured-cards-section .container {
                padding-left: 12px;
                padding-right: 12px;
            }
        
            .featured-card {
                max-width: 380px;
            }
        
        }
        
        @media (max-width: 480px) {
        
            .featured-card-body {
                padding: 16px;
            }
        
            .featured-card h3 {
                font-size: 20px;
            }
        
        }