/* =========================================================
   PSS 2026
   PAINEL INSTITUCIONAL TECNOLÓGICO
   SEMED CANAÃ DOS CARAJÁS
========================================================= */

.pss-tech-section {
    --pss-navy-1000: #020b18;
    --pss-navy-950: #041427;
    --pss-navy-900: #082340;
    --pss-navy-850: #0b3154;

    --pss-blue: #2489ed;
    --pss-blue-light: #8fd0ff;

    --pss-teal: #12b7a2;
    --pss-teal-light: #9bf2e5;

    --pss-purple: #7359d5;
    --pss-purple-light: #c6b8ff;

    --pss-green: #21bd79;
    --pss-yellow: #e5ae3c;
    --pss-red: #e45d68;

    --pss-white: #ffffff;
    --pss-text: rgba(255, 255, 255, 0.82);
    --pss-muted: rgba(255, 255, 255, 0.56);
    --pss-border: rgba(255, 255, 255, 0.11);

    position: relative;
    isolation: isolate;

    padding:
        clamp(5.5rem, 9vw, 9rem)
        0;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 8% 7%,
            rgba(36, 137, 237, 0.31),
            transparent 30%
        ),
        radial-gradient(
            circle at 93% 10%,
            rgba(115, 89, 213, 0.22),
            transparent 27%
        ),
        radial-gradient(
            circle at 82% 95%,
            rgba(18, 183, 162, 0.21),
            transparent 31%
        ),
        linear-gradient(
            135deg,
            var(--pss-navy-1000) 0%,
            var(--pss-navy-950) 31%,
            var(--pss-navy-900) 67%,
            #064356 100%
        );
}

.pss-tech-section,
.pss-tech-section *,
.pss-tech-section *::before,
.pss-tech-section *::after {
    box-sizing: border-box;
}

.pss-tech-section button,
.pss-tech-section a {
    font: inherit;
}

.pss-tech-section a {
    text-decoration: none;
}


/* =========================================================
   AMBIENTE TECNOLÓGICO
========================================================= */

.pss-tech-background {
    position: absolute;
    z-index: -1;
    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.pss-tech-grid {
    position: absolute;
    inset: 0;

    opacity: 0.34;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.04) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            180deg,
            transparent,
            #000 12%,
            #000 88%,
            transparent
        );

    -webkit-mask-image:
        linear-gradient(
            180deg,
            transparent,
            #000 12%,
            #000 88%,
            transparent
        );
}

.pss-tech-scanline {
    position: absolute;
    top: -20%;
    left: 0;

    width: 100%;
    height: 140px;

    opacity: 0.2;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(122, 207, 255, 0.15),
            transparent
        );

    animation:
        pssTechScan
        9s linear infinite;
}


/* =========================================================
   ÓRBITAS
========================================================= */

.pss-tech-orbit {
    position: absolute;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}

.pss-tech-orbit.is-one {
    top: -360px;
    left: -310px;

    width: 790px;
    height: 790px;

    box-shadow:
        0 0 0 70px rgba(36, 137, 237, 0.018),
        0 0 0 140px rgba(36, 137, 237, 0.01);
}

.pss-tech-orbit.is-two {
    right: -410px;
    bottom: -440px;

    width: 900px;
    height: 900px;

    border-color:
        rgba(18, 183, 162, 0.08);

    box-shadow:
        0 0 0 80px rgba(18, 183, 162, 0.018),
        0 0 0 160px rgba(18, 183, 162, 0.01);
}


/* =========================================================
   LUZES
========================================================= */

.pss-tech-glow {
    position: absolute;

    border-radius: 50%;

    filter: blur(105px);
}

.pss-tech-glow.is-blue {
    top: -220px;
    left: 15%;

    width: 510px;
    height: 430px;

    background:
        rgba(36, 137, 237, 0.2);
}

.pss-tech-glow.is-teal {
    right: 15%;
    bottom: -260px;

    width: 520px;
    height: 440px;

    background:
        rgba(18, 183, 162, 0.18);
}

.pss-tech-glow.is-purple {
    top: 17%;
    right: -140px;

    width: 430px;
    height: 430px;

    background:
        rgba(115, 89, 213, 0.16);
}


/* =========================================================
   LINHAS DE DADOS
========================================================= */

.pss-tech-data-line {
    position: absolute;

    height: 1px;

    opacity: 0.34;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(128, 209, 255, 0.75),
            transparent
        );
}

.pss-tech-data-line::after {
    content: "";

    position: absolute;
    top: 50%;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--pss-blue-light);

    box-shadow:
        0 0 15px rgba(143, 208, 255, 0.85);

    transform: translateY(-50%);
}

.pss-tech-data-line.is-one {
    top: 19%;
    right: 8%;

    width: 260px;

    transform: rotate(-22deg);
}

.pss-tech-data-line.is-one::after {
    right: 0;
}

.pss-tech-data-line.is-two {
    bottom: 16%;
    left: 6%;

    width: 220px;

    transform: rotate(18deg);
}

.pss-tech-data-line.is-two::after {
    left: 0;
}


/* =========================================================
   CABEÇALHO
========================================================= */

.pss-tech-heading {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: end;
    gap:
        clamp(2rem, 5vw, 5rem);

    margin-bottom:
        clamp(2rem, 5vw, 3.5rem);

    padding-bottom: 1.8rem;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.1);
}

.pss-tech-heading-content {
    max-width: 920px;
}

.pss-tech-heading-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.58rem;

    min-height: 36px;

    padding:
        0.38rem
        0.82rem
        0.38rem
        0.4rem;

    border:
        1px solid rgba(155, 242, 229, 0.17);

    border-radius: 999px;

    color: var(--pss-teal-light);

    background:
        rgba(18, 183, 162, 0.08);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.07);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    font-size: 0.57rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pss-tech-heading-eyebrow-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--pss-blue),
            var(--pss-purple)
        );

    box-shadow:
        0 8px 18px rgba(36, 137, 237, 0.28);

    font-size: 0.52rem;
}

.pss-tech-heading h2 {
    max-width: 950px;

    margin:
        1rem
        0
        0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(2.8rem, 6vw, 5.7rem);

    font-weight: 500;
    line-height: 0.96;
    letter-spacing: -0.065em;

    text-wrap: balance;
}

.pss-tech-heading h2 strong {
    color: transparent;

    background:
        linear-gradient(
            100deg,
            var(--pss-blue-light),
            var(--pss-purple-light),
            var(--pss-teal-light)
        );

    background-clip: text;
    -webkit-background-clip: text;

    font-weight: 600;
}

.pss-tech-heading p {
    max-width: 800px;

    margin:
        1.1rem
        0
        0;

    color: var(--pss-muted);

    font-size: 0.88rem;
    line-height: 1.85;
}


/* =========================================================
   STATUS DO CABEÇALHO
========================================================= */

.pss-tech-heading-status {
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 0.75rem;

    min-width: 260px;
    padding: 1rem;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.045)
        );

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.23),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
}

.pss-tech-heading-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 15px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--pss-blue),
            var(--pss-teal)
        );

    box-shadow:
        0 14px 28px rgba(30, 130, 193, 0.3);

    font-size: 0.84rem;
}

.pss-tech-heading-status small,
.pss-tech-heading-status strong {
    display: block;
}

.pss-tech-heading-status small {
    color: var(--pss-teal-light);

    font-size: 0.43rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pss-tech-heading-status strong {
    margin-top: 0.15rem;

    color: #ffffff;

    font-size: 0.66rem;
    font-weight: 740;
    line-height: 1.4;
}

.pss-tech-heading-status-check {
    color: var(--pss-green);

    font-size: 0.84rem;
}


/* =========================================================
   PAINEL PRINCIPAL
========================================================= */

.pss-tech-section .pss-home-shell {
    position: relative;
    isolation: isolate;

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(390px, 0.85fr);

    align-items: stretch;
    gap: 0;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 34px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.1),
            rgba(255, 255, 255, 0.045)
        );

    box-shadow:
        0 46px 115px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);
}

.pss-tech-shell-line {
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
    left: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            var(--pss-blue),
            var(--pss-purple),
            var(--pss-teal)
        );
}


/* =========================================================
   CONTEÚDO PRINCIPAL
========================================================= */

.pss-tech-section .pss-home-content {
    min-width: 0;

    padding:
        clamp(1.6rem, 4vw, 3.2rem);

    background:
        linear-gradient(
            145deg,
            rgba(3, 18, 35, 0.64),
            rgba(7, 43, 67, 0.45)
        );
}


/* =========================================================
   BARRA DE COMANDO
========================================================= */

.pss-tech-command-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    margin-bottom: 1.5rem;
    padding-bottom: 1rem;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.09);
}

.pss-tech-command-brand {
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 0.7rem;
}

.pss-tech-command-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 13px;

    color: var(--pss-blue-light);

    background:
        rgba(36, 137, 237, 0.1);

    font-size: 0.72rem;
}

.pss-tech-command-brand small,
.pss-tech-command-brand strong {
    display: block;
}

.pss-tech-command-brand small {
    color: var(--pss-teal-light);

    font-size: 0.4rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pss-tech-command-brand strong {
    margin-top: 0.15rem;

    color: rgba(255, 255, 255, 0.84);

    font-size: 0.62rem;
    font-weight: 720;
}

.pss-tech-command-lights {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.pss-tech-command-lights span {
    width: 7px;
    height: 7px;

    border-radius: 50%;
}

.pss-tech-command-lights span:nth-child(1) {
    background: #ef777f;
}

.pss-tech-command-lights span:nth-child(2) {
    background: #efc05a;
}

.pss-tech-command-lights span:nth-child(3) {
    background: #51d49a;
}


/* =========================================================
   IDENTIFICAÇÃO
========================================================= */

.pss-tech-section .pss-home-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.pss-tech-section .pss-home-label,
.pss-tech-section .pss-home-edital {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;

    min-height: 32px;

    padding:
        0.38rem
        0.65rem;

    border-radius: 999px;

    font-size: 0.47rem;
    font-weight: 820;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pss-tech-section .pss-home-label {
    border:
        1px solid rgba(155, 242, 229, 0.16);

    color: var(--pss-teal-light);

    background:
        rgba(18, 183, 162, 0.08);
}

.pss-tech-section .pss-home-edital {
    border:
        1px solid rgba(143, 208, 255, 0.16);

    color: var(--pss-blue-light);

    background:
        rgba(36, 137, 237, 0.08);
}

.pss-tech-section .pss-home-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;

    margin-top: 1.5rem;

    color: var(--pss-teal-light);

    font-size: 0.52rem;
    font-weight: 850;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pss-tech-section .pss-home-eyebrow > span {
    position: relative;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--pss-teal);

    box-shadow:
        0 0 13px rgba(18, 183, 162, 0.8);
}

.pss-tech-section .pss-home-eyebrow > span::after {
    content: "";

    position: absolute;
    inset: -4px;

    border:
        1px solid rgba(18, 183, 162, 0.3);

    border-radius: inherit;

    animation:
        pssTechPulse
        2.3s ease-out infinite;
}


/* =========================================================
   TÍTULO
========================================================= */

.pss-tech-section .pss-home-content h3 {
    max-width: 800px;

    margin:
        0.85rem
        0
        0;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(2.45rem, 5vw, 4.6rem);

    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.058em;

    text-wrap: balance;
}

.pss-tech-section .pss-home-content h3 strong {
    display: block;

    color: transparent;

    background:
        linear-gradient(
            100deg,
            var(--pss-blue-light),
            var(--pss-purple-light),
            var(--pss-teal-light)
        );

    background-clip: text;
    -webkit-background-clip: text;

    font-weight: 600;
}

.pss-tech-description {
    max-width: 760px;

    margin:
        1.1rem
        0
        0;

    color: var(--pss-muted);

    font-size: 0.83rem;
    line-height: 1.82;
}

.pss-tech-description strong {
    color: rgba(255, 255, 255, 0.9);

    font-weight: 760;
}


/* =========================================================
   STATUS
========================================================= */

.pss-tech-section .pss-home-statuses {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0.7rem;

    margin-top: 1.5rem;
}

.pss-tech-section .pss-home-statuses > span {
    --status-color: 36, 137, 237;

    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 0.65rem;

    min-width: 0;
    padding: 0.75rem;

    border:
        1px solid rgba(var(--status-color), 0.15);

    border-radius: 15px;

    color: #ffffff;

    background:
        rgba(var(--status-color), 0.065);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.pss-tech-section .pss-home-statuses > span.is-success {
    --status-color: 33, 189, 121;
}

.pss-tech-section .pss-home-statuses > span.is-warning {
    --status-color: 229, 174, 60;
}

.pss-tech-status-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border-radius: 12px;

    color: rgb(var(--status-color));

    background:
        rgba(var(--status-color), 0.12);

    font-size: 0.65rem;
}

.pss-tech-section .pss-home-statuses small,
.pss-tech-section .pss-home-statuses strong {
    display: block;
}

.pss-tech-section .pss-home-statuses small {
    color: rgba(255, 255, 255, 0.39);

    font-size: 0.38rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pss-tech-section .pss-home-statuses strong {
    margin-top: 0.12rem;

    color: rgba(255, 255, 255, 0.84);

    font-size: 0.58rem;
    font-weight: 720;
    line-height: 1.35;
}


/* =========================================================
   DOCUMENTOS
========================================================= */

.pss-tech-documents {
    margin-top: 1.4rem;
    padding: 1rem;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 20px;

    background:
        rgba(255, 255, 255, 0.045);
}

.pss-tech-documents-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;

    margin-bottom: 0.85rem;
    padding-bottom: 0.8rem;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.pss-tech-documents-heading span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;

    color: var(--pss-teal-light);

    font-size: 0.4rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pss-tech-documents-heading strong {
    display: block;

    margin-top: 0.18rem;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.64rem;
    font-weight: 720;
}

.pss-tech-documents-count {
    padding:
        0.32rem
        0.5rem;

    border:
        1px solid rgba(143, 208, 255, 0.14);

    border-radius: 999px;

    color: var(--pss-blue-light) !important;

    background:
        rgba(36, 137, 237, 0.08);

    white-space: nowrap;
}

.pss-tech-documents-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0.7rem;
}

.pss-tech-document-card {
    --document-color: 36, 137, 237;

    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 0.7rem;

    min-width: 0;
    padding: 0.8rem;

    border:
        1px solid rgba(var(--document-color), 0.16);

    border-radius: 15px;

    color: #ffffff;

    background:
        rgba(var(--document-color), 0.065);

    transition:
        border-color 220ms ease,
        background-color 220ms ease,
        box-shadow 220ms ease,
        transform 220ms ease;
}

.pss-tech-document-card.is-errata {
    --document-color: 229, 174, 60;
}

.pss-tech-document-card:hover {
    border-color:
        rgba(var(--document-color), 0.34);

    color: #ffffff;

    background:
        rgba(var(--document-color), 0.11);

    box-shadow:
        0 16px 35px rgba(0, 0, 0, 0.16);

    transform: translateY(-3px);
}

.pss-tech-document-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 43px;
    height: 43px;

    border-radius: 13px;

    color: rgb(var(--document-color));

    background:
        rgba(var(--document-color), 0.13);

    font-size: 0.76rem;
}

.pss-tech-document-content {
    min-width: 0;
}

.pss-tech-document-content small,
.pss-tech-document-content strong,
.pss-tech-document-content > span {
    display: block;
}

.pss-tech-document-content small {
    color: rgba(255, 255, 255, 0.38);

    font-size: 0.37rem;
    font-weight: 850;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.pss-tech-document-content strong {
    margin-top: 0.12rem;

    color: rgba(255, 255, 255, 0.88);

    font-size: 0.62rem;
    font-weight: 760;
}

.pss-tech-document-content > span {
    margin-top: 0.15rem;

    color: rgba(255, 255, 255, 0.48);

    font-size: 0.46rem;
    line-height: 1.4;
}

.pss-tech-document-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 33px;
    height: 33px;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 10px;

    color: rgba(255, 255, 255, 0.72);

    background:
        rgba(255, 255, 255, 0.05);

    font-size: 0.55rem;
}


/* =========================================================
   AÇÕES PRINCIPAIS
========================================================= */

.pss-tech-section .pss-home-actions {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0.75rem;

    margin-top: 1.4rem;
}

.pss-tech-section .pss-home-primary-action,
.pss-tech-results-action {
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 0.75rem;

    min-width: 0;
    min-height: 64px;
    padding: 0.7rem;

    border:
        1px solid rgba(143, 208, 255, 0.16);

    border-radius: 16px;

    color: #ffffff;

    background:
        linear-gradient(
            105deg,
            rgba(36, 137, 237, 0.88),
            rgba(18, 183, 162, 0.88)
        );

    box-shadow:
        0 17px 36px rgba(20, 106, 166, 0.24);

    cursor: pointer;

    text-align: left;

    transition:
        box-shadow 220ms ease,
        transform 220ms ease;
}

.pss-tech-section .pss-home-primary-action.is-registration {
    background:
        linear-gradient(
            105deg,
            rgba(33, 189, 121, 0.92),
            rgba(18, 183, 162, 0.9)
        );
}

.pss-tech-results-action {
    border-color:
        rgba(198, 184, 255, 0.16);

    background:
        linear-gradient(
            105deg,
            rgba(115, 89, 213, 0.86),
            rgba(36, 137, 237, 0.84)
        );
}

.pss-tech-section .pss-home-primary-action:hover,
.pss-tech-results-action:hover {
    color: #ffffff;

    box-shadow:
        0 24px 46px rgba(20, 106, 166, 0.34);

    transform: translateY(-4px);
}

.pss-tech-action-main-icon,
.pss-tech-results-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.13);

    font-size: 0.7rem;
}

.pss-tech-section .pss-home-actions small,
.pss-tech-section .pss-home-actions strong {
    display: block;
}

.pss-tech-section .pss-home-actions small {
    color: rgba(255, 255, 255, 0.61);

    font-size: 0.37rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pss-tech-section .pss-home-actions strong {
    margin-top: 0.12rem;

    color: #ffffff;

    font-size: 0.6rem;
    font-weight: 760;
}


/* =========================================================
   PAINEL LATERAL
========================================================= */

.pss-tech-section .pss-home-side {
    position: relative;
    isolation: isolate;

    min-width: 0;
    padding:
        clamp(1.6rem, 3.5vw, 2.6rem);

    overflow: hidden;

    border-left:
        1px solid rgba(255, 255, 255, 0.09);

    background:
        linear-gradient(
            160deg,
            rgba(8, 32, 57, 0.82),
            rgba(8, 70, 80, 0.58)
        );
}

.pss-tech-side-background {
    position: absolute;
    z-index: -1;
    inset: 0;

    overflow: hidden;

    pointer-events: none;
}

.pss-tech-side-background span {
    position: absolute;

    border:
        1px solid rgba(255, 255, 255, 0.07);

    border-radius: 50%;
}

.pss-tech-side-background span:first-child {
    top: -180px;
    right: -160px;

    width: 400px;
    height: 400px;

    box-shadow:
        0 0 0 45px rgba(18, 183, 162, 0.018),
        0 0 0 90px rgba(18, 183, 162, 0.01);
}

.pss-tech-side-background span:last-child {
    bottom: -210px;
    left: -190px;

    width: 450px;
    height: 450px;

    border-color:
        rgba(36, 137, 237, 0.07);
}


/* =========================================================
   NÚMERO DA CHAMADA
========================================================= */

.pss-tech-call-number {
    position: relative;

    display: flex;
    align-items: flex-end;

    min-height: 130px;
    padding-bottom: 1rem;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.09);
}

.pss-tech-call-number-label {
    position: absolute;
    top: 0;
    left: 0;

    color: var(--pss-teal-light);

    font-size: 0.43rem;
    font-weight: 850;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pss-tech-section .pss-home-number {
    color: transparent;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            var(--pss-blue-light),
            var(--pss-teal-light)
        );

    background-clip: text;
    -webkit-background-clip: text;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size:
        clamp(6rem, 10vw, 9rem);

    font-weight: 700;
    line-height: 0.72;
    letter-spacing: -0.08em;
}

.pss-tech-call-number-suffix {
    margin:
        0
        0
        0.3rem
        0.25rem;

    color: var(--pss-teal-light);

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: 2rem;
}

.pss-tech-call-number-status {
    position: absolute;
    right: 0;
    bottom: 1rem;

    display: inline-flex;
    align-items: center;
    gap: 0.4rem;

    min-height: 30px;
    padding:
        0.35rem
        0.55rem;

    border:
        1px solid rgba(33, 189, 121, 0.18);

    border-radius: 999px;

    color: #8af0b9;

    background:
        rgba(33, 189, 121, 0.09);

    font-size: 0.42rem;
    font-weight: 850;
    text-transform: uppercase;
}

.pss-tech-call-number-status > span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--pss-green);

    box-shadow:
        0 0 12px rgba(33, 189, 121, 0.8);
}


/* =========================================================
   CABEÇALHO LATERAL
========================================================= */

.pss-tech-section .pss-home-side-head {
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 0.75rem;

    margin-top: 1.3rem;
}

.pss-tech-section .pss-home-side-head > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 47px;
    height: 47px;

    border-radius: 15px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--pss-blue),
            var(--pss-purple)
        );

    box-shadow:
        0 14px 28px rgba(60, 100, 210, 0.27);

    font-size: 0.78rem;
}

.pss-tech-section .pss-home-side-head small,
.pss-tech-section .pss-home-side-head strong {
    display: block;
}

.pss-tech-section .pss-home-side-head small {
    color: var(--pss-teal-light);

    font-size: 0.41rem;
    font-weight: 850;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.pss-tech-section .pss-home-side-head strong {
    margin-top: 0.14rem;

    color: #ffffff;

    font-size: 0.68rem;
    font-weight: 740;
}


/* =========================================================
   LINHA DO TEMPO
========================================================= */

.pss-tech-timeline {
    position: relative;

    display: grid;
    gap: 0.15rem;

    margin-top: 1.35rem;
}

.pss-tech-timeline::before {
    content: "";

    position: absolute;
    top: 22px;
    bottom: 22px;
    left: 18px;

    width: 1px;

    background:
        linear-gradient(
            180deg,
            var(--pss-green),
            var(--pss-yellow),
            rgba(143, 208, 255, 0.25)
        );
}

.pss-tech-timeline-item {
    --timeline-color: 36, 137, 237;

    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 0.7rem;

    padding:
        0.65rem
        0;

}

.pss-tech-timeline-item.is-complete {
    --timeline-color: 33, 189, 121;
}

.pss-tech-timeline-item.is-warning {
    --timeline-color: 229, 174, 60;
}

.pss-tech-timeline-marker {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    border:
        1px solid rgba(var(--timeline-color), 0.22);

    border-radius: 12px;

    color: rgb(var(--timeline-color));

    background:
        rgb(7, 34, 59);

    box-shadow:
        0 0 0 5px rgba(7, 34, 59, 0.92);

    font-size: 0.58rem;
}

.pss-tech-timeline-item small,
.pss-tech-timeline-item strong,
.pss-tech-timeline-item div > span {
    display: block;
}

.pss-tech-timeline-item small {
    color: rgba(255, 255, 255, 0.37);

    font-size: 0.36rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pss-tech-timeline-item strong {
    margin-top: 0.1rem;

    color: rgba(255, 255, 255, 0.84);

    font-size: 0.58rem;
    font-weight: 740;
}

.pss-tech-timeline-item div > span {
    margin-top: 0.12rem;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.45rem;
}


/* =========================================================
   DETALHES
========================================================= */

.pss-tech-section .pss-home-details {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 0.65rem;

    margin:
        1.3rem
        0
        0;
}

.pss-tech-section .pss-home-details > div {
    min-width: 0;
    padding: 0.7rem;

    border:
        1px solid rgba(255, 255, 255, 0.09);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.045);
}

.pss-tech-section .pss-home-details dt {
    display: flex;
    align-items: center;
    gap: 0.38rem;

    color: rgba(255, 255, 255, 0.39);

    font-size: 0.38rem;
    font-weight: 850;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.pss-tech-section .pss-home-details dt i {
    color: var(--pss-blue-light);
}

.pss-tech-section .pss-home-details dd {
    margin:
        0.28rem
        0
        0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 0.55rem;
    font-weight: 700;
    line-height: 1.45;
}


/* =========================================================
   ALERTA
========================================================= */

.pss-tech-section .pss-home-alert {
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: start;
    gap: 0.75rem;

    margin-top: 1.15rem;
    padding: 0.9rem;

    border:
        1px solid rgba(229, 174, 60, 0.19);

    border-radius: 16px;

    background:
        linear-gradient(
            115deg,
            rgba(229, 174, 60, 0.11),
            rgba(229, 174, 60, 0.05)
        );
}

.pss-tech-alert-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 13px;

    color: #f2c667;

    background:
        rgba(229, 174, 60, 0.13);

    font-size: 0.68rem;
}

.pss-tech-section .pss-home-alert strong {
    display: block;

    color: #f4d58e;

    font-size: 0.55rem;
    font-weight: 780;
}

.pss-tech-section .pss-home-alert p {
    margin:
        0.3rem
        0
        0;

    color: rgba(255, 255, 255, 0.54);

    font-size: 0.48rem;
    line-height: 1.58;
}


/* =========================================================
   AUTENTICIDADE
========================================================= */

.pss-tech-authentication {
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr)
        auto;

    align-items: center;
    gap: 0.65rem;

    margin-top: 1rem;
    padding: 0.75rem;

    border:
        1px solid rgba(33, 189, 121, 0.14);

    border-radius: 15px;

    background:
        rgba(33, 189, 121, 0.055);
}

.pss-tech-authentication > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    border-radius: 12px;

    color: #74eaaa;

    background:
        rgba(33, 189, 121, 0.11);

    font-size: 0.62rem;
}

.pss-tech-authentication small,
.pss-tech-authentication strong {
    display: block;
}

.pss-tech-authentication small {
    color: rgba(255, 255, 255, 0.36);

    font-size: 0.36rem;
    font-weight: 850;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.pss-tech-authentication strong {
    margin-top: 0.12rem;

    color: rgba(255, 255, 255, 0.76);

    font-size: 0.52rem;
    font-weight: 700;
}

.pss-tech-authentication > i {
    color: var(--pss-green);

    font-size: 0.72rem;
}


/* =========================================================
   RODAPÉ TECNOLÓGICO
========================================================= */

.pss-tech-footer {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    margin-top: 1.3rem;

    overflow: hidden;

    border:
        1px solid rgba(255, 255, 255, 0.1);

    border-radius: 22px;

    background:
        rgba(255, 255, 255, 0.045);

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.pss-tech-footer > div {
    display: grid;
    grid-template-columns:
        auto minmax(0, 1fr);

    align-items: center;
    gap: 0.7rem;

    min-width: 0;
    padding: 1rem;
}

.pss-tech-footer > div + div {
    border-left:
        1px solid rgba(255, 255, 255, 0.09);
}

.pss-tech-footer > div > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 13px;

    color: var(--pss-teal-light);

    background:
        rgba(18, 183, 162, 0.09);

    font-size: 0.66rem;
}

.pss-tech-footer p {
    min-width: 0;
    margin: 0;
}

.pss-tech-footer small,
.pss-tech-footer strong {
    display: block;
}

.pss-tech-footer small {
    color: rgba(255, 255, 255, 0.37);

    font-size: 0.38rem;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pss-tech-footer strong {
    margin-top: 0.12rem;

    color: rgba(255, 255, 255, 0.77);

    font-size: 0.54rem;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   ANIMAÇÕES
========================================================= */

@keyframes pssTechScan {
    0% {
        transform: translateY(-160%);
    }

    100% {
        transform: translateY(950%);
    }
}

@keyframes pssTechPulse {
    0% {
        opacity: 0.8;
        transform: scale(0.75);
    }

    70% {
        opacity: 0;
        transform: scale(1.9);
    }

    100% {
        opacity: 0;
        transform: scale(1.9);
    }
}


/* =========================================================
   RESPONSIVIDADE
========================================================= */

@media (max-width: 1199.98px) {
    .pss-tech-section .pss-home-shell {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.85fr);
    }

    .pss-tech-section .pss-home-content {
        padding: 2rem;
    }

    .pss-tech-section .pss-home-side {
        padding: 2rem 1.5rem;
    }
}


@media (max-width: 991.98px) {
    .pss-tech-heading {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .pss-tech-heading-status {
        justify-self: start;
    }

    .pss-tech-section .pss-home-shell {
        grid-template-columns: 1fr;
    }

    .pss-tech-section .pss-home-side {
        border-top:
            1px solid rgba(255, 255, 255, 0.09);

        border-left: 0;
    }

    .pss-tech-section .pss-home-number {
        font-size: 7rem;
    }
}


@media (max-width: 767.98px) {
    .pss-tech-section {
        padding:
            4.5rem
            0;
    }

    .pss-tech-section .pss-home-shell {
        border-radius: 27px;
    }

    .pss-tech-section .pss-home-statuses,
    .pss-tech-documents-grid,
    .pss-tech-section .pss-home-actions {
        grid-template-columns: 1fr;
    }

    .pss-tech-footer {
        grid-template-columns: 1fr;
    }

    .pss-tech-footer > div + div {
        border-top:
            1px solid rgba(255, 255, 255, 0.09);

        border-left: 0;
    }
}


@media (max-width: 575.98px) {
    .pss-tech-heading h2 {
        font-size:
            clamp(2.5rem, 14vw, 4rem);
    }

    .pss-tech-heading-status {
        width: 100%;
        min-width: 0;
    }

    .pss-tech-section .pss-home-shell {
        border-radius: 23px;
    }

    .pss-tech-section .pss-home-content,
    .pss-tech-section .pss-home-side {
        padding: 1.2rem;
    }

    .pss-tech-command-bar {
        align-items: flex-start;
    }

    .pss-tech-section .pss-home-topline {
        align-items: stretch;
        flex-direction: column;
    }

    .pss-tech-section .pss-home-label,
    .pss-tech-section .pss-home-edital {
        width: 100%;
    }

    .pss-tech-section .pss-home-content h3 {
        font-size:
            clamp(2.25rem, 12vw, 3.3rem);
    }

    .pss-tech-section .pss-home-details {
        grid-template-columns: 1fr;
    }

    .pss-tech-call-number {
        min-height: 115px;
    }

    .pss-tech-section .pss-home-number {
        font-size: 6rem;
    }

    .pss-tech-call-number-status {
        bottom: 0.8rem;
    }

    .pss-tech-documents-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .pss-tech-documents-count {
        align-self: flex-start;
    }
}


/* =========================================================
   ACESSIBILIDADE
========================================================= */

.pss-tech-section button:focus-visible,
.pss-tech-section a:focus-visible {
    outline:
        4px solid rgba(143, 208, 255, 0.34);

    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .pss-tech-scanline,
    .pss-tech-section .pss-home-eyebrow > span::after {
        animation: none;
    }

    .pss-tech-document-card,
    .pss-tech-section .pss-home-primary-action,
    .pss-tech-results-action {
        transition: none !important;
    }
}




/* =========================================================
   CORREÇÃO DE CONFLITOS COM O CSS ANTIGO DO PSS
   Mantém textos, status e botão de resultado visíveis
========================================================= */

/* =========================================================
   STATUS DA CONVOCAÇÃO
========================================================= */

#pss-2026.pss-tech-section
.pss-home-statuses > span {
    position: relative;

    display: grid !important;
    grid-template-columns:
        auto minmax(0, 1fr) !important;

    align-items: center !important;
    gap: 0.65rem !important;

    min-width: 0 !important;
    min-height: 62px !important;

    padding: 0.75rem !important;

    border-radius: 15px !important;

    color: #ffffff !important;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04) !important;
}


/* Remove a faixa branca aplicada ao span que contém os textos */
#pss-2026.pss-tech-section
.pss-home-statuses > span >
span:not(.pss-tech-status-icon) {
    position: static !important;

    display: block !important;

    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: visible !important;

    border: 0 !important;
    border-radius: 0 !important;

    color: inherit !important;

    background: transparent !important;

    box-shadow: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;
}


/* Remove pseudo-elementos antigos */
#pss-2026.pss-tech-section
.pss-home-statuses > span >
span:not(.pss-tech-status-icon)::before,

#pss-2026.pss-tech-section
.pss-home-statuses > span >
span:not(.pss-tech-status-icon)::after {
    content: none !important;
    display: none !important;
}


/* Ícone do status */
#pss-2026.pss-tech-section
.pss-home-statuses
.pss-tech-status-icon {
    position: static !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 38px !important;

    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 12px !important;

    color: rgb(var(--status-color)) !important;

    background:
        rgba(var(--status-color), 0.13) !important;

    box-shadow: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none !important;
}


/* Textos internos */
#pss-2026.pss-tech-section
.pss-home-statuses small {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    color:
        rgba(255, 255, 255, 0.48) !important;

    background: transparent !important;

    font-size: 0.4rem !important;
    font-weight: 850 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.07em !important;
    text-transform: uppercase !important;

    opacity: 1 !important;
    visibility: visible !important;
}

#pss-2026.pss-tech-section
.pss-home-statuses strong {
    display: block !important;

    width: auto !important;
    height: auto !important;

    margin: 0.15rem 0 0 !important;
    padding: 0 !important;

    color:
        rgba(255, 255, 255, 0.92) !important;

    background: transparent !important;

    font-size: 0.59rem !important;
    font-weight: 750 !important;
    line-height: 1.4 !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* =========================================================
   CORES DOS QUATRO STATUS
========================================================= */

#pss-2026.pss-tech-section
.pss-home-statuses > span.is-success {
    --status-color: 33, 189, 121;

    border:
        1px solid rgba(33, 189, 121, 0.22) !important;

    background:
        linear-gradient(
            115deg,
            rgba(33, 189, 121, 0.13),
            rgba(33, 189, 121, 0.055)
        ) !important;
}

#pss-2026.pss-tech-section
.pss-home-statuses > span.is-warning {
    --status-color: 229, 174, 60;

    border:
        1px solid rgba(229, 174, 60, 0.22) !important;

    background:
        linear-gradient(
            115deg,
            rgba(229, 174, 60, 0.13),
            rgba(229, 174, 60, 0.055)
        ) !important;
}

#pss-2026.pss-tech-section
.pss-home-statuses > span:not(.is-success):not(.is-warning) {
    --status-color: 36, 137, 237;

    border:
        1px solid rgba(36, 137, 237, 0.2) !important;

    background:
        linear-gradient(
            115deg,
            rgba(36, 137, 237, 0.12),
            rgba(36, 137, 237, 0.05)
        ) !important;
}


/* =========================================================
   BOTÃO ACOMPANHAR RESULTADO
========================================================= */

#pss-2026.pss-tech-section
.pss-home-actions >
a.pss-tech-results-action {
    grid-column: 1 / -1 !important;

    position: relative !important;

    display: grid !important;
    grid-template-columns:
        auto minmax(0, 1fr) auto !important;

    align-items: center !important;
    gap: 0.75rem !important;

    width: 100% !important;
    min-width: 0 !important;
    min-height: 66px !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0.7rem !important;

    overflow: hidden !important;

    border:
        1px solid rgba(198, 184, 255, 0.24) !important;

    border-radius: 17px !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            105deg,
            #7359d5 0%,
            #377edc 52%,
            #12a9a0 100%
        ) !important;

    box-shadow:
        0 18px 38px rgba(49, 82, 180, 0.3) !important;

    text-align: left !important;
    text-decoration: none !important;

    opacity: 1 !important;
    visibility: visible !important;

    transform: none;

    transition:
        box-shadow 220ms ease,
        transform 220ms ease !important;
}

#pss-2026.pss-tech-section
.pss-home-actions >
a.pss-tech-results-action::before {
    content: "";

    position: absolute;
    top: -80px;
    right: -55px;

    width: 190px;
    height: 190px;

    border:
        1px solid rgba(255, 255, 255, 0.11);

    border-radius: 50%;

    box-shadow:
        0 0 0 28px rgba(255, 255, 255, 0.025),
        0 0 0 56px rgba(255, 255, 255, 0.014);

    pointer-events: none;
}

#pss-2026.pss-tech-section
.pss-home-actions >
a.pss-tech-results-action:hover {
    color: #ffffff !important;

    box-shadow:
        0 26px 50px rgba(49, 82, 180, 0.4) !important;

    transform: translateY(-4px) !important;
}


/* Ícone esquerdo */
#pss-2026.pss-tech-section
.pss-tech-results-action
.pss-tech-results-icon {
    position: relative !important;
    z-index: 2;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 44px !important;

    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;

    margin: 0 !important;
    padding: 0 !important;

    border:
        1px solid rgba(255, 255, 255, 0.18) !important;

    border-radius: 13px !important;

    color: #ffffff !important;

    background:
        rgba(255, 255, 255, 0.14) !important;

    box-shadow: none !important;

    font-size: 0.72rem !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* Bloco textual do botão */
#pss-2026.pss-tech-section
.pss-tech-results-action >
span:not(.pss-tech-results-icon) {
    position: relative !important;
    z-index: 2;

    display: block !important;

    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    color: #ffffff !important;

    background: transparent !important;

    box-shadow: none !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* Rótulo */
#pss-2026.pss-tech-section
.pss-tech-results-action small {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    color:
        rgba(255, 255, 255, 0.68) !important;

    background: transparent !important;

    font-size: 0.4rem !important;
    font-weight: 820 !important;
    line-height: 1.35 !important;
    letter-spacing: 0.065em !important;
    text-transform: uppercase !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* Título */
#pss-2026.pss-tech-section
.pss-tech-results-action strong {
    display: block !important;

    margin: 0.16rem 0 0 !important;
    padding: 0 !important;

    color: #ffffff !important;

    background: transparent !important;

    font-size: 0.64rem !important;
    font-weight: 780 !important;
    line-height: 1.4 !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* Ícone final */
#pss-2026.pss-tech-section
.pss-tech-results-action > i {
    position: relative !important;
    z-index: 2;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 34px !important;
    height: 34px !important;

    border:
        1px solid rgba(255, 255, 255, 0.17) !important;

    border-radius: 11px !important;

    color: #ffffff !important;

    background:
        rgba(255, 255, 255, 0.12) !important;

    font-size: 0.58rem !important;
}


/* =========================================================
   PROTEÇÃO DOS BOTÕES PRINCIPAIS
========================================================= */

#pss-2026.pss-tech-section
.pss-home-primary-action >
span:not(.pss-tech-action-main-icon) {
    display: block !important;

    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    color: #ffffff !important;

    background: transparent !important;

    box-shadow: none !important;

    opacity: 1 !important;
    visibility: visible !important;
}


/* =========================================================
   RESPONSIVIDADE DA CORREÇÃO
========================================================= */

@media (max-width: 767.98px) {
    #pss-2026.pss-tech-section
    .pss-home-statuses {
        grid-template-columns: 1fr !important;
    }

    #pss-2026.pss-tech-section
    .pss-home-actions >
    a.pss-tech-results-action {
        grid-column: auto !important;
    }
}