
        .dp-container-principal {
            position: relative;
            width: 100vw;
            max-width: 100%;
            min-height: 500px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-sizing: border-box;
            padding-left: 0;
            padding-right: 0;
            margin: 0;
        }

        .dp-background-fullwidth {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100vw;
            height: 382px;
            background: linear-gradient(180deg, #1FA043 4.77%, #119583 99.9%);
            transform: translate(-50%, -50%);
            z-index: 0;
            border-radius: 8px;
        }

        .dp-container-central {
            position: relative;
            width: 1076px;
            height: 442px;
            border-radius: 8px;
            padding: 32px 24px 40px 24px;
            background: linear-gradient(180deg, #1FA043 4.77%, #119583 99.9%);
            color: white;
            z-index: 1;
            text-align: center;
            font-family: 'Kanit', sans-serif;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .dp-container-superior {
            width: 1028px;
            height: 79px;
            margin: 0 auto 24px auto;
        }

        .dp-container-superior h2 {
            font-weight: 600;
            font-size: 40px;
            line-height: 103%;
            margin: 0;
        }

        .dp-container-superior p {
            font-weight: 400;
            font-size: 20px;
            margin: 0;
        }

        .dp-container-inferior {
            width: 1028px;
            height: 267px;
            margin: 0 auto;
        }

        .dp-inner-container {
            width: 1028px;
            height: 186px;
            padding: 0 72px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* Contêiner do ícone com distância do topo e centralização */
        .portal-desempenho-icon-container {
            width: 47.78px;
            height: 47.78px;
            margin: 24.75px auto 9.52px auto;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .portal-desempenho-icon-btn {
            font-family: 'Material Symbols Outlined';
            font-size: 24px !important;
            font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24 !important;
            line-height: 1;
            color: #FEFEFE;
        }

        .portal-desempenho-icon {
            font-family: 'Material Symbols Outlined';
            font-size: 48px !important;
            font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 40 !important;
            line-height: 1;
            color: #FEFEFE;
        }

        .dp-metric {
            width: 221px;
            height: 185.5625px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 1;
        }

        .dp-metric-number {
            font-size: 48px;
            font-weight: 700;
        }

        .dp-metric-label {
            font-size: 18px;
            margin-top: 4.76px;
        }

        .portal-desempenho-evaluate-btn-wrapper {
            display: flex;
            justify-content: center;
            margin-top: 16px;
        }

        .portal-desempenho-evaluate-btn {
            width: 241px;
            height: 57px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 8px;
            border: 2px solid #FEFEFE;
            background: transparent;
            color: #fff;
            font-family: 'Kanit', sans-serif;
            font-weight: 600;
            font-size: 18px;
            cursor: pointer;
            padding: 8px 44px 8px 34px;
            transition: outline 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
        }

        .portal-desempenho-evaluate-btn:hover {
            border: 2px solid #BCE4C1;
            background: transparent;
        }

        .portal-desempenho-evaluate-btn:focus-visible,
        .portal-desempenho-evaluate-btn:focus {
            outline: 2px solid #545FFF;
            outline-offset: 6px;
            border: 2px solid #FEFEFE;
            background: transparent;
        }

        .portal-desempenho-evaluate-btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Responsividade */
        @media (max-width: 1100px) {

            .dp-container-central,
            .dp-inner-container,
            .dp-container-superior,
            .dp-container-inferior {
                width: 98vw !important;
                min-width: 300px !important;
            }
        }

        @media (max-width: 700px) {
            .dp-inner-container {
                flex-direction: column;
            }

            .dp-metric {
                margin-bottom: 12px;
            }
        }

        #portal-desempenho-feedback-form-wrapper {
            margin-top: 20px;
        }

        #portal-desempenho-feedback-form textarea {
            width: 100%;
            height: 100px;
            margin-bottom: 10px;
            padding: 10px;
            border-radius: 8px;
            border: 1px solid #ccc;
        }

        #portal-desempenho-feedback-form button {
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            background: #1FA043;
            color: white;
            cursor: pointer;
        }
