/* ==========================================
   CONFIGURAÇÕES GERAIS
========================================== */

:root {
    --green-950: #073c2b;
    --green-900: #0a4a35;
    --green-800: #0f6045;
    --green-700: #157252;
    --green-600: #1a8660;
    --green-500: #27a577;

    --green-100: #dff2e9;
    --green-50: #eef8f3;

    --text: #14251e;
    --text-soft: #68766f;

    --border: #dce6e1;

    --background: #f8fbf9;

    --white: #ffffff;

    --shadow:
        0 20px 50px rgba(6, 63, 44, 0.08);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    min-height: 100vh;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(39, 165, 119, 0.08),
            transparent 30%
        ),
        var(--background);

    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
    text-decoration: none;
}


svg {
    display: block;
}


/* ==========================================
   HEADER
   MOBILE FIRST
========================================== */

.header {
    width: min(100% - 40px, 1280px);

    margin: 0 auto;

    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.brand {
    display: inline-flex;
    align-items: center;

    gap: 11px;
}


.brand-symbol {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    color: var(--white);

    font-weight: 700;
    font-size: 19px;

    background:
        linear-gradient(
            145deg,
            var(--green-700),
            var(--green-900)
        );

    box-shadow:
        0 8px 20px rgba(10, 74, 53, 0.18);
}


.brand-text {
    display: flex;
    flex-direction: column;
}


.brand-text strong {
    font-size: 15px;

    letter-spacing: 1.3px;

    color: var(--green-900);
}


.brand-text span {
    margin-top: 2px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #819087;
}


.header-security {
    display: none;

    align-items: center;

    gap: 7px;

    font-size: 12px;

    color: var(--text-soft);
}


.header-security svg {
    width: 17px;
    height: 17px;

    color: var(--green-700);
}


/* ==========================================
   MAIN
========================================== */

main {
    width: min(100% - 40px, 1280px);

    margin: 0 auto;
}


/* ==========================================
   HERO
========================================== */

.hero {
    display: flex;
    flex-direction: column;

    gap: 48px;

    padding-top: 38px;
}


/* ==========================================
   TAG
========================================== */

.eyebrow {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 8px 12px;

    margin-bottom: 23px;

    border: 1px solid rgba(21, 114, 82, 0.07);

    border-radius: 100px;

    background: var(--green-50);

    color: var(--green-700);

    font-size: 11px;

    font-weight: 650;

    letter-spacing: 0.2px;
}


.eyebrow-dot {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--green-500);

    box-shadow:
        0 0 0 4px rgba(39, 165, 119, 0.1);
}


/* ==========================================
   TÍTULO
========================================== */

.hero h1 {
    max-width: 650px;

    font-size: clamp(42px, 12vw, 64px);

    line-height: 0.99;

    letter-spacing: -2.7px;

    font-weight: 700;
}


.hero h1 span {
    display: block;

    color: var(--green-600);
}


/* ==========================================
   TEXTO PRINCIPAL
========================================== */

.hero-description {
    max-width: 580px;

    margin-top: 25px;

    color: var(--text-soft);

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================================
   BOTÕES
========================================== */

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;

    margin-top: 28px;
}

.button {
    width: 100%;
    min-height: 48px;

    padding: 0 18px;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    font-size: 13px;
    font-weight: 650;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.button svg {
    width: 17px;
    height: 17px;

    flex-shrink: 0;
}

/* PRINCIPAL */

.button-primary {
    justify-content: space-between;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--green-700),
            var(--green-900)
        );

    box-shadow:
        0 8px 20px rgba(10, 74, 53, 0.14);
}

.button-primary:hover {
    transform: translateY(-1px);

    box-shadow:
        0 10px 25px rgba(10, 74, 53, 0.20);
}

/* SECUNDÁRIO */

.button-secondary {
    min-height: 45px;

    border: 1px solid #dce6e1;

    background: rgba(255, 255, 255, 0.55);

    color: #41564d;

    font-size: 12.5px;
}

.button-secondary:hover {
    border-color: #a5c7b8;

    background: white;

    color: var(--green-700);
}


/* ==========================================
   BENEFÍCIOS / CONFIANÇA
========================================== */

.trust-grid {
    margin-top: 42px;

    display: grid;

    gap: 14px;
}


.trust-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 15px;

    border: 1px solid rgba(219, 230, 225, 0.75);

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.58);
}


.trust-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: var(--green-700);

    background: var(--green-50);
}


.trust-icon svg {
    width: 18px;
    height: 18px;
}


.trust-item strong {
    display: block;

    margin-top: 1px;

    font-size: 13px;

    font-weight: 700;
}


.trust-item p {
    margin-top: 4px;

    max-width: 270px;

    color: #7a8881;

    font-size: 11px;

    line-height: 1.5;
}


/* ==========================================
   CARD VERDE
========================================== */

.hero-card {
    position: relative;

    min-height: 380px;

    overflow: hidden;

    display: flex;
    align-items: flex-end;

    padding: 32px 27px;

    border-radius: 26px;

    color: var(--white);

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(74, 214, 157, 0.28),
            transparent 34%
        ),
        linear-gradient(
            150deg,
            #115d43,
            #073b2b 80%
        );

    box-shadow:
        0 30px 70px rgba(7, 60, 43, 0.15);
}


.card-content {
    position: relative;

    z-index: 3;
}


.card-icon {
    width: 56px;
    height: 56px;

    margin-bottom: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.13);

    border-radius: 17px;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
}


.card-icon svg {
    width: 27px;
    height: 27px;
}


.card-label {
    display: block;

    margin-bottom: 11px;

    color: #8ed5b9;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.hero-card h2 {
    max-width: 350px;

    font-size: 29px;

    line-height: 1.1;

    letter-spacing: -1px;
}


.hero-card p {
    max-width: 400px;

    margin-top: 16px;

    color: rgba(226, 244, 237, 0.75);

    font-size: 13px;

    line-height: 1.65;
}


.card-divider {
    width: 100%;

    height: 1px;

    margin: 28px 0 18px;

    background:
        rgba(255, 255, 255, 0.1);
}


.card-values {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    color: rgba(181, 225, 207, 0.67);

    font-size: 10px;

    font-weight: 600;
}


.card-values i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: rgba(181, 225, 207, 0.4);
}


/* DECORAÇÃO DO CARD */

.card-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.decoration-one {
    width: 240px;
    height: 240px;

    top: -105px;
    right: -80px;

    border:
        1px solid rgba(255, 255, 255, 0.08);
}


.decoration-two {
    width: 350px;
    height: 350px;

    top: -155px;
    right: -130px;

    border:
        1px solid rgba(255, 255, 255, 0.045);
}


/* ==========================================
   AVISO DE PRIVACIDADE
========================================== */

.privacy-note {
    margin-top: 50px;

    display: flex;
    align-items: flex-start;

    gap: 13px;

    padding: 18px;

    border: 1px solid var(--border);

    border-radius: 15px;

    background: rgba(255, 255, 255, 0.55);
}


.privacy-icon {
    width: 34px;
    height: 34px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--green-700);

    background: var(--green-50);

    border-radius: 10px;
}


.privacy-icon svg {
    width: 17px;
    height: 17px;
}


.privacy-note strong {
    font-size: 12px;
}


.privacy-note p {
    margin-top: 4px;

    color: #7b8982;

    font-size: 11px;

    line-height: 1.55;
}


/* ==========================================
   FOOTER
========================================== */

footer {
    width: min(100% - 40px, 1280px);

    margin: 55px auto 0;

    padding: 25px 0 30px;

    border-top: 1px solid rgba(219, 230, 225, 0.8);

    display: flex;
    flex-direction: column;

    gap: 15px;

    color: #8a9790;

    font-size: 10px;
}


.footer-brand {
    display: flex;
    flex-direction: column;
}


.footer-brand strong {
    color: var(--green-800);

    font-size: 11px;

    letter-spacing: 1px;
}


.footer-brand span {
    margin-top: 2px;

    font-size: 9px;
}

.footer-actions {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.footer-admin-link {
    width: fit-content;

    display: inline-flex;
    align-items: center;

    gap: 6px;

    color: #6f7e76;

    font-size: 10px;
    font-weight: 650;

    transition: color 0.2s ease;
}

.footer-admin-link:hover {
    color: var(--green-700);
}

.footer-admin-link svg {
    width: 14px;
    height: 14px;
}


/* ==========================================
   TABLET
========================================== */

@media (min-width: 600px) {

    .header,
    main,
    footer {
        width: min(100% - 70px, 1280px);
    }


    .header-security {
        display: flex;
    }


    .hero-actions {
        width: fit-content;
        flex-direction: row;
    }

    .button {
        width: auto;
        min-width: 165px;
    }

    .button-primary {
        min-width: 180px;
    }


    .trust-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }


    .trust-item {
        padding: 0;

        border: none;

        background: transparent;
    }


    .privacy-note {
        max-width: 700px;
    }


    footer {
        flex-direction: row;

        justify-content: space-between;

        align-items: center;
    }

    .footer-actions {
        align-items: flex-end;
    }

}


/* ==========================================
   DESKTOP
========================================== */

@media (min-width: 950px) {

    .header {
        min-height: 105px;
    }


    .hero {
        padding-top: 65px;

        display: grid;

        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(340px, 0.78fr);

        align-items: center;

        gap: clamp(60px, 8vw, 120px);
    }


    .hero h1 {
        font-size: clamp(56px, 5vw, 75px);

        letter-spacing: -4px;
    }


    .hero-description {
        font-size: 16px;
    }


    .trust-grid {
        margin-top: 60px;

        gap: 25px;
    }


    .hero-card {
        min-height: 470px;

        padding: 44px;
    }


    .hero-card h2 {
        font-size: 34px;
    }


    .privacy-note {
        margin-top: 75px;
    }


    footer {
        margin-top: 65px;
    }

}


/* ==========================================
   TELAS GRANDES
========================================== */

@media (min-width: 1300px) {

    .hero {
        min-height: 620px;

        padding-top: 30px;
    }


    .hero-card {
        min-height: 500px;
    }

}


/* ==========================================
   PÁGINA DE RELATO
========================================== */

.report-page {
    width: min(100% - 40px, 760px);

    margin: 0 auto;

    padding-top: 20px;
    padding-bottom: 60px;
}

/* VOLTAR */

.back-link {
    width: fit-content;

    display: flex;
    align-items: center;

    gap: 7px;

    color: #68776f;

    font-size: 12px;
    font-weight: 600;

    transition: color 0.2s ease;
}

.back-link:hover {
    color: var(--green-700);
}

.back-link svg {
    width: 17px;
    height: 17px;
}

/* ==========================================
   PROGRESSO
========================================== */

.progress-area {
    margin-top: 32px;
}

.progress-info {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    color: #86928c;

    font-size: 10px;

    font-weight: 600;
}

.progress-track {
    width: 100%;
    height: 4px;

    margin-top: 10px;

    overflow: hidden;

    border-radius: 100px;

    background: #e6eee9;
}

.progress-value {
    width: 20%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            var(--green-600),
            var(--green-800)
        );
}

/* ==========================================
   INTRODUÇÃO
========================================== */

.report-intro {
    margin-top: 46px;
}

.report-label {
    color: var(--green-600);

    font-size: 9px;

    font-weight: 750;

    letter-spacing: 2px;
}

.report-intro h1 {
    max-width: 580px;

    margin-top: 11px;

    font-size: clamp(34px, 9vw, 46px);

    line-height: 1.05;

    letter-spacing: -2px;

    color: var(--text);
}

.report-intro p {
    max-width: 590px;

    margin-top: 18px;

    color: var(--text-soft);

    font-size: 13px;

    line-height: 1.65;
}

/* ==========================================
   CARDS DE ESCOLHA
========================================== */

.identity-options {
    display: grid;

    gap: 13px;

    margin-top: 34px;
}

.identity-card {
    width: 100%;

    padding: 20px;

    border: 1px solid #dde7e2;

    border-radius: 16px;

    background: rgba(255, 255, 255, 0.75);

    color: var(--text);

    text-align: left;

    font-family: inherit;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.identity-card:hover {
    border-color: #b9d4c7;

    background: #ffffff;
}

.identity-card.selected {
    border-color: var(--green-600);

    background:
        linear-gradient(
            145deg,
            rgba(239, 249, 244, 0.95),
            rgba(255, 255, 255, 0.95)
        );

    box-shadow:
        0 10px 30px rgba(13, 92, 65, 0.08);
}

.identity-top {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}

.identity-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 12px;

    background: var(--green-50);

    color: var(--green-700);
}

.identity-icon svg {
    width: 20px;
    height: 20px;
}

/* RADIO */

.radio-circle {
    width: 20px;
    height: 20px;

    padding: 4px;

    border-radius: 50%;

    border: 1.5px solid #c8d5ce;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.radio-circle span {
    display: block;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background: transparent;
}

.identity-card.selected .radio-circle {
    border-color: var(--green-600);
}

.identity-card.selected .radio-circle span {
    background: var(--green-600);
}

/* TEXTO */

.identity-content {
    margin-top: 18px;
}

.identity-content strong {
    display: block;

    font-size: 15px;

    font-weight: 700;
}

.identity-content p {
    max-width: 540px;

    margin-top: 7px;

    color: #77857e;

    font-size: 12px;

    line-height: 1.55;
}

/* INFORMAÇÃO INFERIOR */

.identity-detail {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-top: 19px;

    padding-top: 15px;

    border-top: 1px solid #edf1ef;

    color: #809088;

    font-size: 10px;

    line-height: 1.5;
}

.identity-detail svg {
    width: 15px;
    height: 15px;

    flex-shrink: 0;

    margin-top: 1px;

    color: var(--green-600);
}

/* ==========================================
   CONTINUAR
========================================== */

.report-navigation {
    margin-top: 25px;
}

.continue-button {
    width: 100%;
    min-height: 50px;

    padding: 0 18px;

    border: none;

    border-radius: 11px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            135deg,
            var(--green-700),
            var(--green-900)
        );

    color: white;

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 8px 22px rgba(10, 74, 53, 0.14);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.continue-button svg {
    width: 17px;
    height: 17px;
}

.continue-button:not(:disabled):hover {
    transform: translateY(-1px);

    box-shadow:
        0 11px 28px rgba(10, 74, 53, 0.19);
}

.continue-button:disabled {
    cursor: not-allowed;

    opacity: 0.35;

    box-shadow: none;
}

/* ==========================================
   AVISO INFERIOR
========================================== */

.report-privacy {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: 20px;

    color: #8b9791;
}

.report-privacy svg {
    width: 15px;
    height: 15px;

    flex-shrink: 0;

    color: var(--green-600);
}

.report-privacy p {
    max-width: 500px;

    font-size: 10px;

    line-height: 1.5;
}

/* ==========================================
   TABLET / DESKTOP
========================================== */

@media (min-width: 700px) {

    .report-page {
        padding-top: 35px;
    }

    .report-intro {
        margin-top: 55px;
    }

    .identity-options {
        grid-template-columns: 1fr 1fr;

        gap: 16px;
    }

    .identity-card {
        min-height: 260px;

        display: flex;
        flex-direction: column;
    }

    .identity-detail {
        margin-top: auto;
    }

    .report-navigation {
        display: flex;
        justify-content: flex-end;

        margin-top: 28px;
    }

    .continue-button {
        width: 180px;
    }

}


/* ==========================================
   ETAPA 2 - DETALHES DO RELATO
========================================== */

.progress-40 {
    width: 40%;
}

/* FORMULÁRIO */

.details-form {
    margin-top: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;

    margin-bottom: 8px;

    color: #344b41;

    font-size: 12px;
    font-weight: 700;
}

.form-group input {
    width: 100%;
    height: 50px;

    padding: 0 15px;

    border: 1px solid #dce6e1;

    border-radius: 11px;

    outline: none;

    background: rgba(255, 255, 255, 0.78);

    color: var(--text);

    font-family: inherit;
    font-size: 13px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-group input::placeholder {
    color: #a0aaa5;
}

.form-group input:focus {
    border-color: var(--green-600);

    background: white;

    box-shadow:
        0 0 0 4px rgba(26, 134, 96, 0.08);
}

.form-group small {
    display: block;

    margin-top: 7px;

    color: #8a9690;

    font-size: 9.5px;

    line-height: 1.5;
}

/* ==========================================
   SEÇÃO
========================================== */

.form-section {
    margin-top: 42px;
}

.form-section-heading {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 20px;
}

.section-number {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    background: var(--green-50);

    color: var(--green-700);

    font-size: 9px;
    font-weight: 800;
}

.form-section-heading h2 {
    font-size: 16px;

    line-height: 1.3;

    letter-spacing: -0.3px;
}

.form-section-heading p {
    margin-top: 4px;

    color: #89958f;

    font-size: 10px;
}

/* ==========================================
   OPÇÕES DE ASSUNTO
========================================== */

.subject-grid {
    display: grid;

    gap: 8px;
}

.subject-option {
    min-height: 48px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 11px 13px;

    border: 1px solid #e0e8e4;

    border-radius: 11px;

    background: rgba(255, 255, 255, 0.65);

    color: #465950;

    font-size: 11.5px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.subject-option:hover {
    border-color: #b8d2c5;

    background: white;
}

.subject-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.subject-check {
    position: relative;

    width: 18px;
    height: 18px;

    flex-shrink: 0;

    border: 1.5px solid #c3d1ca;

    border-radius: 5px;

    transition: 0.2s ease;
}

.subject-option:has(input:checked) {
    border-color: #76b99e;

    background: #f0f8f4;

    color: var(--green-900);
}

.subject-option input:checked + .subject-check {
    border-color: var(--green-600);

    background: var(--green-600);
}

.subject-option input:checked + .subject-check::after {
    content: "";

    position: absolute;

    width: 6px;
    height: 3px;

    top: 5px;
    left: 4px;

    border-left: 1.7px solid white;
    border-bottom: 1.7px solid white;

    transform: rotate(-45deg);
}

/* OUTRO */

.other-subject-field {
    margin-top: 14px;
}

/* ==========================================
   DESKTOP
========================================== */

@media (min-width: 700px) {

    .details-form {
        margin-top: 40px;
    }

    .subject-grid {
        grid-template-columns: 1fr 1fr;

        gap: 10px;
    }

    .subject-option {
        min-height: 53px;
    }

}


/* ==========================================
   ETAPA 3 - OCORRÊNCIA
========================================== */

.progress-60 {
    width: 60%;
}

/* ==========================================
   LEMBRETE DE ANONIMATO
========================================== */

.anonymous-reminder {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-top: 28px;

    padding: 15px;

    border: 1px solid #cde4d9;

    border-radius: 13px;

    background: #f0f8f4;
}

.anonymous-reminder-icon {
    width: 36px;
    height: 36px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #dff2e9;

    color: var(--green-700);
}

.anonymous-reminder-icon svg {
    width: 18px;
    height: 18px;
}

.anonymous-reminder strong {
    display: block;

    color: var(--green-900);

    font-size: 11px;
}

.anonymous-reminder p {
    margin-top: 4px;

    color: #668075;

    font-size: 10px;

    line-height: 1.55;
}

/* ==========================================
   FORMULÁRIO
========================================== */

.occurrence-form {
    margin-top: 35px;
}

.required-mark {
    color: var(--green-600);
}

/* ==========================================
   TEXTAREA
========================================== */

.textarea-wrapper {
    overflow: hidden;

    border: 1px solid #dce6e1;

    border-radius: 13px;

    background: rgba(255, 255, 255, 0.78);

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.textarea-wrapper:focus-within {
    border-color: var(--green-600);

    background: white;

    box-shadow:
        0 0 0 4px rgba(26, 134, 96, 0.08);
}

.textarea-wrapper textarea {
    width: 100%;

    min-height: 190px;

    padding: 15px;

    resize: vertical;

    border: none;
    outline: none;

    background: transparent;

    color: var(--text);

    font-family: inherit;

    font-size: 13px;

    line-height: 1.6;
}

.textarea-wrapper textarea::placeholder {
    color: #a1aca6;
}

.textarea-footer {
    display: flex;

    justify-content: space-between;
    align-items: flex-end;

    gap: 15px;

    padding: 10px 13px;

    border-top: 1px solid #edf1ef;

    color: #929d97;

    font-size: 9px;

    line-height: 1.4;
}

.textarea-footer span:first-child {
    max-width: 70%;
}

#descriptionCounter {
    flex-shrink: 0;

    font-variant-numeric: tabular-nums;
}

/* ==========================================
   CONTEXTO
========================================== */

.occurrence-context {
    margin-top: 40px;
}

.context-grid {
    display: grid;

    gap: 0;
}

/* ==========================================
   PERGUNTAS
========================================== */

.occurrence-question {
    margin-top: 42px;
}

.choice-list {
    display: grid;

    gap: 8px;
}

.choice-option {
    min-height: 49px;

    display: flex;
    align-items: center;

    gap: 11px;

    padding: 10px 13px;

    border: 1px solid #e0e8e4;

    border-radius: 11px;

    background:
        rgba(255, 255, 255, 0.65);

    color: #465950;

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.choice-option:hover {
    border-color: #b8d2c5;

    background: white;
}

.choice-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.choice-radio {
    position: relative;

    width: 19px;
    height: 19px;

    flex-shrink: 0;

    padding: 4px;

    border: 1.5px solid #c3d1ca;

    border-radius: 50%;

    transition:
        border-color 0.2s ease;
}

.choice-radio::after {
    content: "";

    display: block;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    background: transparent;

    transition:
        background 0.2s ease;
}

.choice-option:has(input:checked) {
    border-color: #75b99d;

    background: #f0f8f4;

    color: var(--green-900);
}

.choice-option input:checked + .choice-radio {
    border-color: var(--green-600);
}

.choice-option input:checked +
.choice-radio::after {
    background: var(--green-600);
}

.choice-text {
    font-size: 11.5px;

    font-weight: 600;
}

/* ==========================================
   TABLET
========================================== */

@media (min-width: 700px) {

    .occurrence-form {
        margin-top: 42px;
    }

    .context-grid {
        grid-template-columns:
            0.75fr
            1.25fr;

        gap: 14px;
    }

    .choice-list {
        grid-template-columns:
            1fr
            1fr;

        gap: 9px;
    }

    .choice-list-short {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .textarea-wrapper textarea {
        min-height: 210px;
    }

}


/* ==========================================
   ETAPA 4 - INFORMAÇÕES ADICIONAIS
========================================== */

.progress-80 {
    width: 80%;
}

.additional-form {
    margin-top: 30px;
}

.first-question {
    margin-top: 0;
}

/* ==========================================
   ALERTA DE EMERGÊNCIA
========================================== */

.emergency-warning {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-top: 16px;

    padding: 16px;

    border: 1px solid #e8c8c2;

    border-radius: 13px;

    background: #fff7f5;
}

.emergency-icon {
    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #fbe6e2;

    color: #a8493d;
}

.emergency-icon svg {
    width: 20px;
    height: 20px;
}

.emergency-warning strong {
    display: block;

    color: #823a31;

    font-size: 12px;
}

.emergency-warning p {
    margin-top: 5px;

    color: #815d57;

    font-size: 10.5px;

    line-height: 1.55;
}

.emergency-warning .emergency-emphasis {
    color: #74342c;

    font-weight: 700;
}

/* ==========================================
   ÁREA DE UPLOAD
========================================== */

.upload-area {
    min-height: 120px;

    display: flex;
    align-items: center;

    gap: 14px;

    padding: 18px;

    border: 1.5px dashed #cbdad2;

    border-radius: 14px;

    background:
        rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}

.upload-area:hover {
    border-color: #82bba4;

    background: #f6fbf8;
}

.upload-icon {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: var(--green-50);

    color: var(--green-700);
}

.upload-icon svg {
    width: 20px;
    height: 20px;
}

.upload-text {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.upload-text strong {
    color: #354d42;

    font-size: 12px;
}

.upload-text span {
    color: #89968f;

    font-size: 10px;

    line-height: 1.45;
}

/* ==========================================
   ARQUIVOS SELECIONADOS
========================================== */

.selected-files {
    margin-top: 10px;

    display: grid;

    gap: 7px;
}

.selected-file {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 10px;

    padding: 10px 12px;

    border: 1px solid #e1e9e5;

    border-radius: 9px;

    background: rgba(255, 255, 255, 0.7);

    font-size: 10px;
}

.selected-file-name {
    overflow: hidden;

    color: #506159;

    text-overflow: ellipsis;

    white-space: nowrap;
}

.selected-file-size {
    flex-shrink: 0;

    color: #97a29d;
}

/* ==========================================
   DESKTOP
========================================== */

@media (min-width: 700px) {

    .additional-form {
        margin-top: 40px;
    }

    .communication-list {
        grid-template-columns:
            1fr
            1fr;
    }

    .upload-area {
        min-height: 130px;

        padding: 22px;
    }

}


/* ==========================================
   ETAPA 5 - FINALIZAÇÃO
========================================== */

.progress-100 {
    width: 100%;
}

.final-form {
    margin-top: 32px;
}

.final-first-question {
    margin-top: 0;
}

.final-section {
    margin-top: 45px;
}

/* ==========================================
   CONTATO
========================================== */

.contact-box {
    margin-top: 15px;

    padding: 17px;

    border: 1px solid #dce8e2;

    border-radius: 13px;

    background: #f8fbf9;
}

.contact-box .form-group {
    margin-bottom: 0;
}

/* ==========================================
   RESUMO
========================================== */

.review-card {
    overflow: hidden;

    border: 1px solid #e0e8e4;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.7);
}

.review-row {
    display: flex;

    flex-direction: column;

    gap: 4px;

    padding: 14px 15px;

    border-bottom: 1px solid #edf1ef;
}

.review-row:last-child {
    border-bottom: none;
}

.review-row span {
    color: #8a9690;

    font-size: 9.5px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.5px;
}

.review-row strong {
    color: #354b41;

    font-size: 12px;

    line-height: 1.45;
}

/* ==========================================
   CONFIDENCIALIDADE
========================================== */

.confidentiality-card {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    padding: 17px;

    border: 1px solid #d3e5dc;

    border-radius: 14px;

    background: #f2f8f5;
}

.confidentiality-icon {
    width: 39px;
    height: 39px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: #dff2e9;

    color: var(--green-700);
}

.confidentiality-icon svg {
    width: 20px;
    height: 20px;
}

.confidentiality-content {
    display: grid;

    gap: 10px;
}

.confidentiality-content p {
    color: #63766d;

    font-size: 10.5px;

    line-height: 1.6;
}

/* ==========================================
   CHECKBOX DE ACEITE
========================================== */

.consent-option {
    display: flex;

    align-items: flex-start;

    gap: 11px;

    margin-top: 15px;

    padding: 14px;

    border: 1px solid #e0e8e4;

    border-radius: 11px;

    background: white;

    color: #42564d;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.5;

    cursor: pointer;
}

.consent-option input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.consent-check {
    position: relative;

    width: 19px;
    height: 19px;

    flex-shrink: 0;

    border: 1.5px solid #becdc5;

    border-radius: 5px;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}

.consent-option input:checked +
.consent-check {
    border-color: var(--green-600);

    background: var(--green-600);
}

.consent-option input:checked +
.consent-check::after {
    content: "";

    position: absolute;

    width: 6px;
    height: 3px;

    left: 4px;
    top: 5px;

    border-left: 1.7px solid white;
    border-bottom: 1.7px solid white;

    transform: rotate(-45deg);
}

/* ==========================================
   BOTÃO ENVIAR
========================================== */

.final-navigation {
    margin-top: 30px;
}

.submit-report-button {
    width: 100%;
    min-height: 52px;

    padding: 0 18px;

    border: none;

    border-radius: 11px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    color: white;

    background:
        linear-gradient(
            135deg,
            var(--green-700),
            var(--green-900)
        );

    font-family: inherit;

    font-size: 13px;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(10, 74, 53, 0.16);

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.submit-report-button svg {
    width: 18px;
    height: 18px;
}

.submit-report-button:not(:disabled):hover {
    transform: translateY(-1px);

    box-shadow:
        0 13px 30px rgba(10, 74, 53, 0.22);
}

.submit-report-button:disabled {
    opacity: 0.35;

    cursor: not-allowed;

    box-shadow: none;
}

/* ==========================================
   NOTA FINAL
========================================== */

.final-security-note {
    margin-top: 15px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 7px;

    color: #8a9790;

    font-size: 9.5px;
}

.final-security-note svg {
    width: 14px;
    height: 14px;

    color: var(--green-600);
}

/* ==========================================
   TELA DE SUCESSO
========================================== */

.success-screen {
    max-width: 620px;

    margin: 40px auto 0;

    padding-bottom: 60px;

    text-align: center;
}

.success-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    color: white;

    background:
        linear-gradient(
            145deg,
            var(--green-600),
            var(--green-900)
        );

    box-shadow:
        0 15px 35px rgba(10, 74, 53, 0.18);
}

.success-icon svg {
    width: 29px;
    height: 29px;
}

.success-label {
    color: var(--green-600);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 2px;
}

.success-screen h1 {
    margin-top: 12px;

    color: var(--text);

    font-size: clamp(36px, 10vw, 50px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.success-description {
    max-width: 480px;

    margin: 18px auto 0;

    color: var(--text-soft);

    font-size: 12px;

    line-height: 1.65;
}

/* PROTOCOLO */

.protocol-card {
    margin-top: 35px;

    padding: 25px 20px;

    border: 1px solid #dce8e2;

    border-radius: 17px;

    background: white;

    box-shadow:
        0 15px 40px rgba(10, 74, 53, 0.06);
}

.protocol-card > span {
    display: block;

    color: #8d9993;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.protocol-card strong {
    display: block;

    margin-top: 10px;

    color: var(--green-900);

    font-size: clamp(23px, 7vw, 32px);

    letter-spacing: 1px;

    word-break: break-word;
}

.copy-protocol-button {
    margin: 18px auto 0;

    min-height: 39px;

    padding: 0 15px;

    border: 1px solid #dbe6e0;

    border-radius: 9px;

    display: flex;

    align-items: center;

    gap: 8px;

    background: #f8fbf9;

    color: #51645b;

    font-family: inherit;

    font-size: 10.5px;

    font-weight: 650;

    cursor: pointer;
}

.copy-protocol-button svg {
    width: 15px;
    height: 15px;
}

/* AÇÕES */

.success-actions {
    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 20px;
}

.success-footer {
    margin-top: 45px;

    display: flex;

    flex-direction: column;

    gap: 4px;

    color: #8a9790;

    font-size: 9.5px;
}

.success-footer strong {
    color: var(--green-800);
}

/* ==========================================
   DESKTOP
========================================== */

@media (min-width: 700px) {

    .review-row {
        flex-direction: row;

        align-items: center;

        justify-content: space-between;

        gap: 30px;

        padding: 15px 17px;
    }

    .review-row strong {
        max-width: 60%;

        text-align: right;
    }

    .final-navigation {
        display: flex;

        justify-content: flex-end;
    }

    .submit-report-button {
        width: 190px;
    }

    .success-screen {
        margin-top: 70px;
    }

    .success-actions {
        flex-direction: row;

        justify-content: center;
    }

}


/* ==========================================
   ACOMPANHAMENTO DO RELATO
========================================== */

.tracking-page {
    width: min(100% - 40px, 720px);

    margin: 0 auto;

    padding-top: 25px;
    padding-bottom: 70px;
}

.tracking-intro {
    margin-top: 50px;
}

.tracking-intro h1 {
    margin-top: 12px;

    font-size: clamp(38px, 10vw, 50px);

    line-height: 1.04;

    letter-spacing: -2px;
}

.tracking-intro p {
    max-width: 570px;

    margin-top: 18px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}

/* CONSULTA */

.tracking-search {
    margin-top: 40px;
}

.tracking-search > label {
    display: block;

    margin-bottom: 9px;

    color: #344b41;

    font-size: 13px;

    font-weight: 700;
}

.protocol-search-box {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.protocol-search-box input {
    width: 100%;
    height: 56px;

    padding: 0 16px;

    outline: none;

    border: 1px solid #dce6e1;

    border-radius: 12px;

    background: white;

    color: var(--text);

    font-family: inherit;

    font-size: 14px;

    text-transform: uppercase;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.protocol-search-box input:focus {
    border-color: var(--green-600);

    box-shadow:
        0 0 0 4px rgba(26, 134, 96, 0.08);
}

.protocol-search-box button {
    min-height: 54px;

    padding: 0 20px;

    border: none;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--green-700),
            var(--green-900)
        );

    color: white;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.protocol-search-box button:disabled {
    opacity: 0.35;

    cursor: not-allowed;
}

.protocol-help {
    margin-top: 8px;

    color: #929d97;

    font-size: 10.5px;
}

/* ERRO */

.protocol-error {
    margin-top: 22px;

    padding: 17px;

    border: 1px solid #e8c8c2;

    border-radius: 13px;

    background: #fff7f5;
}

.protocol-error strong {
    color: #833c32;

    font-size: 13px;
}

.protocol-error p {
    margin-top: 4px;

    color: #86645e;

    font-size: 11px;
}

/* RESULTADO */

.tracking-result {
    margin-top: 28px;

    padding: 22px;

    border: 1px solid #dce7e1;

    border-radius: 18px;

    background: white;

    box-shadow:
        0 20px 50px rgba(10, 74, 53, 0.07);
}

.tracking-result-header {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.tracking-result-header > div:first-child {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.tracking-result-header span {
    color: #929e98;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.4px;
}

.tracking-result-header strong {
    color: var(--green-900);

    font-size: 17px;
}

.status-badge {
    padding: 7px 11px;

    border-radius: 100px;

    background: var(--green-50);

    color: var(--green-700);

    font-size: 10px;

    font-weight: 700;
}

.tracking-divider {
    height: 1px;

    margin: 20px 0 25px;

    background: #edf1ef;
}

/* TIMELINE */

.tracking-status {
    position: relative;

    display: grid;

    gap: 0;
}

.status-step {
    position: relative;

    display: flex;

    gap: 14px;

    min-height: 85px;
}

.status-step:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 32px;
    left: 15px;

    width: 1px;
    height: calc(100% - 5px);

    background: #dce6e1;
}

.status-point {
    position: relative;

    z-index: 2;

    width: 31px;
    height: 31px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d7e2dc;

    border-radius: 50%;

    background: white;

    color: #98a49e;

    font-size: 10px;

    font-weight: 700;
}

.status-step.active .status-point {
    border-color: var(--green-600);

    background: var(--green-600);

    color: white;

    box-shadow:
        0 0 0 5px rgba(26, 134, 96, 0.08);
}

.status-content {
    padding-top: 4px;
}

.status-content strong {
    color: #41554c;

    font-size: 13px;
}

.status-step.active .status-content strong {
    color: var(--green-800);
}

.status-content p {
    margin-top: 5px;

    color: #8a9690;

    font-size: 10.5px;

    line-height: 1.5;
}

/* SEGURANÇA */

.tracking-security {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-top: 12px;

    padding-top: 17px;

    border-top: 1px solid #edf1ef;

    color: #8b9791;
}

.tracking-security svg {
    width: 15px;
    height: 15px;

    flex-shrink: 0;

    color: var(--green-600);
}

.tracking-security p {
    font-size: 10px;

    line-height: 1.5;
}

/* MOBILE MAIOR */

@media (max-width: 699px) {

    .tracking-page {
        width: calc(100% - 32px);
    }

    .tracking-intro h1 {
        font-size: 43px;
    }

    .tracking-intro p {
        font-size: 15px;
    }

    .tracking-search > label {
        font-size: 14px;
    }

    .protocol-search-box input {
        height: 59px;

        font-size: 15px;
    }

    .protocol-search-box button {
        min-height: 58px;

        font-size: 15px;
    }

    .tracking-result {
        padding: 20px;
    }

    .tracking-result-header strong {
        font-size: 18px;
    }

    .status-point {
        width: 34px;
        height: 34px;
    }

    .status-step:not(:last-child)::after {
        left: 16px;
        top: 35px;
    }

    .status-content strong {
        font-size: 14px;
    }

    .status-content p {
        font-size: 11.5px;
    }

}

/* DESKTOP */

@media (min-width: 700px) {

    .protocol-search-box {
        flex-direction: row;
    }

    .protocol-search-box button {
        width: 145px;
    }

}


/* ==========================================
   MOBILE — TAMANHO MAIOR E MAIS CONFORTÁVEL
========================================== */

@media (max-width: 699px) {

    /* ÁREA GERAL */

    .header,
    main,
    footer {
        width: calc(100% - 32px);
    }

    /* LOGO */

    .brand-symbol {
        width: 49px;
        height: 49px;
        font-size: 22px;
        border-radius: 13px;
    }

    .brand-text strong {
        font-size: 18px;
    }

    .brand-text span {
        font-size: 10.5px;
    }

    /* HOME */

    .hero {
        padding-top: 42px;
        gap: 52px;
    }

    .eyebrow {
        font-size: 13px;
        padding: 10px 14px;
    }

    .hero h1 {
        font-size: clamp(49px, 13.8vw, 73px);
        line-height: 1;
        letter-spacing: -2.8px;
    }

    .hero-description {
        font-size: 17.5px;
        line-height: 1.7;
    }

    /* BOTÕES */

    .hero-actions {
        gap: 12px;
        margin-top: 32px;
    }

    .button {
        min-height: 57px;
        padding: 0 21px;

        border-radius: 11px;

        font-size: 15px;
    }

    .button svg {
        width: 19px;
        height: 19px;
    }

    .button-secondary {
        min-height: 54px;
        font-size: 14.5px;
    }

    /* CARDS HOME */

    .trust-grid {
        gap: 16px;
        margin-top: 47px;
    }

    .trust-item {
        padding: 19px;
        gap: 15px;

        border-radius: 15px;
    }

    .trust-icon {
        width: 45px;
        height: 45px;

        border-radius: 12px;
    }

    .trust-icon svg {
        width: 21px;
        height: 21px;
    }

    .trust-item strong {
        font-size: 15px;
    }

    .trust-item p {
        margin-top: 5px;

        font-size: 13px;
        line-height: 1.55;
    }

    /* CARD VERDE */

    .hero-card {
        min-height: 410px;

        padding: 38px 32px;

        border-radius: 28px;
    }

    .card-icon {
        width: 62px;
        height: 62px;

        border-radius: 18px;
    }

    .card-icon svg {
        width: 30px;
        height: 30px;
    }

    .card-label {
        font-size: 10.5px;
    }

    .hero-card h2 {
        font-size: 34px;
    }

    .hero-card p {
        font-size: 15px;
    }

    .card-values {
        font-size: 12px;
    }

    /* PRIVACIDADE HOME */

    .privacy-note {
        padding: 20px;
        gap: 15px;
    }

    .privacy-icon {
        width: 39px;
        height: 39px;
    }

    .privacy-note strong {
        font-size: 13px;
    }

    .privacy-note p {
        font-size: 12px;
    }

    /* ==========================================
       PÁGINAS DO FORMULÁRIO
    ========================================== */

    .report-page {
        width: calc(100% - 32px);

        padding-bottom: 70px;
    }

    /* VOLTAR */

    .back-link {
        font-size: 14px;
    }

    .back-link svg {
        width: 19px;
        height: 19px;
    }

    /* PROGRESSO */

    .progress-area {
        margin-top: 35px;
    }

    .progress-info {
        font-size: 12px;
    }

    .progress-track {
        height: 5px;
        margin-top: 12px;
    }

    /* TÍTULO DAS ETAPAS */

    .report-intro {
        margin-top: 49px;
    }

    .report-label {
        font-size: 11px;
    }

    .report-intro h1 {
        margin-top: 13px;

        font-size: clamp(40px, 10.7vw, 54px);

        line-height: 1.04;
    }

    .report-intro p {
        margin-top: 20px;

        font-size: 15px;
        line-height: 1.7;
    }

    /* ==========================================
       ANÔNIMO / IDENTIFICADO
    ========================================== */

    .identity-options {
        gap: 15px;

        margin-top: 38px;
    }

    .identity-card {
        padding: 24px;

        border-radius: 17px;
    }

    .identity-icon {
        width: 49px;
        height: 49px;
    }

    .identity-icon svg {
        width: 23px;
        height: 23px;
    }

    .radio-circle {
        width: 22px;
        height: 22px;
    }

    .identity-content {
        margin-top: 20px;
    }

    .identity-content strong {
        font-size: 18px;
    }

    .identity-content p {
        margin-top: 8px;

        font-size: 14px;
        line-height: 1.6;
    }

    .identity-detail {
        margin-top: 21px;
        padding-top: 17px;

        font-size: 12px;
    }

    /* ==========================================
       INPUTS
    ========================================== */

    .details-form,
    .occurrence-form {
        margin-top: 39px;
    }

    .form-group {
        margin-bottom: 23px;
    }

    .form-group label {
        margin-bottom: 9px;

        font-size: 14px;
    }

    .form-group input {
        height: 58px;

        padding: 0 17px;

        border-radius: 12px;

        font-size: 15px;
    }

    .form-group small {
        margin-top: 8px;

        font-size: 11px;
    }

    /* TÍTULOS INTERNOS */

    .form-section {
        margin-top: 48px;
    }

    .form-section-heading {
        gap: 14px;

        margin-bottom: 23px;
    }

    .section-number {
        width: 36px;
        height: 36px;

        border-radius: 10px;

        font-size: 11px;
    }

    .form-section-heading h2 {
        font-size: 19px;

        line-height: 1.3;
    }

    .form-section-heading p {
        margin-top: 5px;

        font-size: 12px;
    }

    /* ==========================================
       OPÇÕES
    ========================================== */

    .subject-grid,
    .choice-list {
        gap: 10px;
    }

    .subject-option,
    .choice-option {
        min-height: 58px;

        padding: 14px 15px;

        border-radius: 12px;

        font-size: 14px;
    }

    .choice-text {
        font-size: 14px;
    }

    .choice-radio {
        width: 22px;
        height: 22px;
    }

    .subject-check {
        width: 21px;
        height: 21px;
    }

    /* ==========================================
       TEXTO DO RELATO
    ========================================== */

    .textarea-wrapper {
        border-radius: 14px;
    }

    .textarea-wrapper textarea {
        min-height: 230px;

        padding: 18px;

        font-size: 15px;
        line-height: 1.65;
    }

    .textarea-footer {
        padding: 12px 14px;

        font-size: 11px;
    }

    /* ==========================================
       AVISOS
    ========================================== */

    .anonymous-reminder,
    .emergency-warning {
        padding: 18px;

        gap: 14px;

        border-radius: 14px;
    }

    .anonymous-reminder-icon,
    .emergency-icon {
        width: 41px;
        height: 41px;
    }

    .anonymous-reminder strong,
    .emergency-warning strong {
        font-size: 13px;
    }

    .anonymous-reminder p,
    .emergency-warning p {
        font-size: 12.5px;

        line-height: 1.6;
    }

    /* ==========================================
       UPLOAD
    ========================================== */

    .upload-area {
        min-height: 145px;

        padding: 23px;

        gap: 16px;

        border-radius: 15px;
    }

    .upload-icon {
        width: 48px;
        height: 48px;
    }

    .upload-icon svg {
        width: 23px;
        height: 23px;
    }

    .upload-text strong {
        font-size: 14px;
    }

    .upload-text span {
        font-size: 12px;
    }

    /* ==========================================
       BOTÃO CONTINUAR
    ========================================== */

    .continue-button,
    .submit-report-button {
        min-height: 58px;

        padding: 0 20px;

        border-radius: 12px;

        font-size: 15px;
    }

    .continue-button svg,
    .submit-report-button svg {
        width: 19px;
        height: 19px;
    }

    /* ==========================================
       ÚLTIMA ETAPA
    ========================================== */

    .contact-box {
        padding: 20px;
    }

    .review-row {
        padding: 17px;
    }

    .review-row span {
        font-size: 11px;
    }

    .review-row strong {
        font-size: 14px;
    }

    .confidentiality-card {
        padding: 19px;
    }

    .confidentiality-icon {
        width: 44px;
        height: 44px;
    }

    .confidentiality-content p {
        font-size: 12.5px;
        line-height: 1.65;
    }

    .consent-option {
        padding: 17px;

        gap: 13px;

        font-size: 13px;
    }

    .consent-check {
        width: 21px;
        height: 21px;
    }

    /* ==========================================
       SUCESSO / PROTOCOLO
    ========================================== */

    .success-icon {
        width: 75px;
        height: 75px;
    }

    .success-label {
        font-size: 10px;
    }

    .success-screen h1 {
        font-size: clamp(40px, 11vw, 55px);
    }

    .success-description {
        font-size: 14px;
    }

    .protocol-card {
        padding: 28px 22px;
    }

    .protocol-card > span {
        font-size: 10px;
    }

    .protocol-card strong {
        font-size: clamp(28px, 8vw, 37px);
    }

    .copy-protocol-button {
        min-height: 44px;

        padding: 0 17px;

        font-size: 12px;
    }

}


/* ==========================================
   STATUS CONCLUÍDO
========================================== */

.status-step.completed .status-point {
    border-color: #7bbca1;

    background: #e6f5ee;

    color: var(--green-700);
}

.status-step.completed .status-content strong {
    color: #567368;
}

.status-step.completed:not(:last-child)::after {
    background: #9acbb6;
}

/* STATUS ATUAL */

.status-step.active:not(:last-child)::after {
    background:
        linear-gradient(
            to bottom,
            var(--green-600) 0%,
            #dce6e1 100%
        );
}


/* ==========================================
   ADMIN - AUTENTICAÇÃO
========================================== */

html.admin-session-pending {
    background: #f3f8f6;
}

html.admin-session-pending body {
    visibility: hidden;
}

.admin-auth-page {
    min-height: 100vh;

    background:
        linear-gradient(
            110deg,
            rgba(231, 245, 238, 0.72),
            rgba(248, 251, 249, 0.2) 48%
        ),
        var(--background);
}

.admin-auth-header {
    width: min(100% - 40px, 1120px);
    min-height: 92px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.admin-environment-label {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #718078;

    font-size: 11px;
    font-weight: 650;
}

.admin-environment-label svg {
    width: 17px;
    height: 17px;

    color: var(--green-700);
}

.admin-auth-layout {
    width: min(100% - 40px, 1120px);
    min-height: calc(100vh - 140px);

    margin: 0 auto;
    padding: 45px 0 75px;

    display: grid;

    gap: 45px;
}

.admin-auth-context {
    align-self: center;
}

.admin-kicker {
    color: var(--green-600);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.8px;
}

.admin-auth-context h1 {
    max-width: 560px;

    margin-top: 13px;

    font-size: clamp(42px, 11vw, 65px);

    line-height: 1;

    letter-spacing: -2px;
}

.admin-auth-context > p {
    max-width: 530px;

    margin-top: 20px;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.7;
}

.admin-restriction-note {
    max-width: 460px;

    margin-top: 32px;
    padding-top: 20px;

    border-top: 1px solid #dce7e1;

    display: flex;
    align-items: flex-start;

    gap: 11px;
}

.admin-restriction-note svg {
    width: 20px;
    height: 20px;

    flex-shrink: 0;

    color: var(--green-700);
}

.admin-restriction-note strong,
.admin-restriction-note span {
    display: block;
}

.admin-restriction-note strong {
    color: #3e554a;

    font-size: 12px;
}

.admin-restriction-note span {
    margin-top: 3px;

    color: #849089;

    font-size: 10.5px;
}

.admin-login-panel {
    align-self: center;

    padding: 26px 22px;

    border: 1px solid #dce7e1;
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.9);

    box-shadow: 0 25px 60px rgba(7, 60, 43, 0.09);
}

.admin-login-heading > span {
    color: #86938c;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.admin-login-heading h2 {
    margin-top: 8px;

    font-size: 24px;

    letter-spacing: -0.5px;
}

.admin-login-panel form {
    margin-top: 28px;
}

.admin-field {
    margin-bottom: 18px;
}

.admin-field label {
    display: block;

    margin-bottom: 8px;

    color: #3b5147;

    font-size: 12px;
    font-weight: 700;
}

.admin-field input {
    width: 100%;
    height: 52px;

    padding: 0 14px;

    border: 1px solid #d7e2dc;
    border-radius: 7px;
    outline: none;

    background: #fbfdfc;

    color: var(--text);

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.admin-field input:focus {
    border-color: var(--green-600);

    box-shadow: 0 0 0 4px rgba(26, 134, 96, 0.08);
}

.admin-login-error {
    margin: 4px 0 15px;
    padding: 11px 12px;

    border: 1px solid #e8c8c2;
    border-radius: 7px;

    background: #fff7f5;

    color: #823a31;

    font-size: 11px;

    line-height: 1.5;
}

.admin-login-button {
    width: 100%;
    min-height: 52px;

    padding: 0 17px;

    border: none;
    border-radius: 7px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: var(--green-900);

    color: white;

    font-family: inherit;
    font-size: 13px;
    font-weight: 750;

    cursor: pointer;
}

.admin-login-button:disabled {
    opacity: 0.55;

    cursor: wait;
}

.admin-login-button svg {
    width: 18px;
    height: 18px;
}

.admin-back-link {
    width: fit-content;

    margin: 20px auto 0;

    display: block;

    color: #7d8a83;

    font-size: 10.5px;
    font-weight: 650;
}

/* ==========================================
   ADMIN - SHELL AUTENTICADO
========================================== */

.admin-shell-page {
    min-height: 100vh;

    background: #f5f8f6;
}

.admin-sidebar {
    padding: 22px 20px;

    border-bottom: 1px solid #dce6e1;

    background: white;
}

.admin-sidebar-brand {
    width: fit-content;
}

.admin-navigation {
    margin-top: 24px;
}

.admin-navigation a {
    min-height: 43px;

    padding: 0 12px;

    display: flex;
    align-items: center;

    gap: 9px;

    border-radius: 6px;

    color: #617169;

    font-size: 12px;
    font-weight: 650;
}

.admin-navigation a.active {
    background: var(--green-50);

    color: var(--green-800);
}

.admin-nav-marker {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--green-600);
}

.admin-sidebar-footer {
    display: none;
}

.admin-main {
    width: min(100% - 32px, 1180px);

    margin: 0 auto;
    padding: 28px 0 60px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.admin-topbar h1 {
    margin-top: 6px;

    font-size: 29px;

    letter-spacing: -1px;
}

.admin-logout-button {
    min-height: 39px;

    padding: 0 14px;

    border: 1px solid #d4dfd9;
    border-radius: 6px;

    background: white;

    color: #5e6e66;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

.admin-welcome {
    margin-top: 34px;
    padding: 26px;

    border-left: 4px solid var(--green-600);

    background: white;
}

.admin-welcome > span {
    color: var(--green-600);

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.admin-welcome h2 {
    margin-top: 8px;

    font-size: 23px;
}

.admin-welcome p {
    margin-top: 8px;

    color: #7d8a83;

    font-size: 12px;
}

@media (min-width: 800px) {

    .admin-auth-layout {
        grid-template-columns: minmax(0, 1fr) 390px;

        align-items: center;

        gap: clamp(70px, 10vw, 145px);
    }

    .admin-login-panel {
        padding: 34px;
    }

    .admin-shell-page {
        display: grid;
        grid-template-columns: 240px minmax(0, 1fr);
    }

    .admin-sidebar {
        min-height: 100vh;

        padding: 28px 22px;

        border-right: 1px solid #dce6e1;
        border-bottom: none;

        display: flex;
        flex-direction: column;

        position: sticky;
        top: 0;
    }

    .admin-sidebar-footer {
        margin-top: auto;
        padding-top: 20px;

        border-top: 1px solid #e4ebe7;

        display: block;
    }

    .admin-sidebar-footer span,
    .admin-sidebar-footer strong {
        display: block;
    }

    .admin-sidebar-footer span {
        color: #929e98;

        font-size: 8px;
        font-weight: 800;

        letter-spacing: 1.3px;
    }

    .admin-sidebar-footer strong {
        margin-top: 6px;

        color: #41564c;

        font-size: 11px;

        line-height: 1.45;
    }

    .admin-main {
        width: min(100% - 70px, 1180px);

        padding-top: 44px;
    }

}


/* ==========================================
   ADMIN - DASHBOARD
========================================== */

.admin-dashboard-section {
    margin-top: 28px;
}

.admin-dashboard-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 18px;
}

.admin-dashboard-heading h2 {
    margin-top: 6px;

    font-size: 25px;
    letter-spacing: -0.7px;
}

.admin-total {
    color: #78877f;

    font-size: 12px;
}

.admin-total strong {
    color: var(--green-800);

    font-size: 22px;
}

.admin-priority-grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 12px;
}

.admin-priority-card {
    min-height: 145px;

    padding: 18px;

    border: 1px solid #dfe8e3;
    border-top: 4px solid #7c8b84;
    border-radius: 8px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    background: white;
    color: #18372b;

    font-family: inherit;
    text-align: left;

    cursor: pointer;
}

.admin-priority-card > span {
    font-size: 12px;
    font-weight: 750;
}

.admin-priority-card > strong {
    margin-top: 10px;

    font-size: 35px;
    line-height: 1;
}

.admin-priority-card > small {
    margin-top: auto;

    color: #839088;

    font-size: 10px;
}

.admin-priority-card.critical {
    border-top-color: #c94747;
}

.admin-priority-card.high {
    border-top-color: #e78232;
}

.admin-priority-card.moderate {
    border-top-color: #d8ad28;
}

.admin-priority-card.routine {
    border-top-color: #279367;
}

.admin-insights-section {
    padding: clamp(20px, 3vw, 30px);

    border: 1px solid #dce7e2;
    border-radius: 12px;

    background:
        linear-gradient(
            145deg,
            rgba(232, 246, 240, 0.65),
            rgba(255, 255, 255, 0) 42%
        ),
        white;
}

.admin-insights-heading {
    align-items: flex-end;
}

.admin-insights-heading p {
    max-width: 570px;
    margin-top: 7px;

    color: #74837b;

    font-size: 11px;
    line-height: 1.55;
}

.admin-company-filter {
    min-width: min(100%, 260px);
}

.admin-company-filter span {
    display: block;
    margin-bottom: 7px;

    color: #617169;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.admin-company-filter select {
    width: 100%;
    min-height: 42px;
    padding: 0 38px 0 12px;

    border: 1px solid #cedcd5;
    border-radius: 7px;

    background: white;
    color: #244538;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;
}

.admin-company-filter select:focus {
    border-color: var(--green-600);
    outline: 3px solid rgba(27, 137, 101, 0.13);
}

.admin-insight-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.admin-insight-card {
    min-height: 126px;
    padding: 17px;

    border: 1px solid #e0e9e5;
    border-radius: 9px;

    display: flex;
    flex-direction: column;

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

.admin-insight-card > span {
    color: #718178;

    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.admin-insight-card > strong {
    margin-top: 10px;

    color: #15392c;

    font-size: 29px;
    line-height: 1.05;
}

.admin-insight-card > small {
    margin-top: auto;
    padding-top: 10px;

    color: #819087;

    font-size: 9px;
    line-height: 1.45;
}

.admin-insight-card-subject > strong {
    font-size: 16px;
    line-height: 1.25;
}

.admin-insight-card-alert {
    border-color: #efd9c7;

    background: #fffaf5;
}

.admin-insight-card-alert > strong {
    color: #a85a23;
}

.admin-insight-grid {
    margin-top: 12px;

    display: grid;
    gap: 12px;
}

.admin-insight-panel {
    min-width: 0;
    padding: 19px;

    border: 1px solid #e0e9e5;
    border-radius: 9px;

    background: white;
}

.admin-insight-panel-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;

    margin-bottom: 20px;
}

.admin-insight-panel-heading span {
    color: var(--green-600);

    font-size: 8px;
    font-weight: 850;
    letter-spacing: 1.2px;
}

.admin-insight-panel-heading h3 {
    margin-top: 5px;

    color: #193b2e;

    font-size: 16px;
}

.admin-insight-panel-heading small {
    color: #829088;

    font-size: 9px;
}

.admin-subject-ranking {
    display: grid;
    gap: 17px;
}

.admin-subject-row-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.admin-subject-identity {
    min-width: 0;

    display: flex;
    align-items: center;
    gap: 9px;
}

.admin-subject-position {
    color: #9ca8a2;

    font-size: 8px;
    font-weight: 800;
}

.admin-subject-identity strong {
    overflow: hidden;

    color: #315045;

    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-subject-result {
    flex-shrink: 0;

    color: #62736b;

    font-size: 9px;
    font-weight: 700;
}

.admin-subject-track {
    height: 7px;
    margin-top: 8px;

    overflow: hidden;

    border-radius: 999px;

    background: #edf3f0;
}

.admin-subject-bar {
    width: 0;
    height: 100%;

    display: block;

    border-radius: inherit;

    background: linear-gradient(90deg, #126849, #2ca878);
}

.admin-company-table-wrap {
    overflow-x: auto;
}

.admin-company-table {
    width: 100%;
    min-width: 610px;

    border-collapse: collapse;
}

.admin-company-table th,
.admin-company-table td {
    padding: 12px 10px;

    border-bottom: 1px solid #edf2ef;

    color: #62736b;

    font-size: 9px;
    text-align: left;
}

.admin-company-table th {
    color: #87938d;

    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.admin-company-table tbody tr.active {
    background: #eff8f4;
}

.admin-company-table button {
    padding: 0;

    border: 0;

    background: transparent;
    color: #1b6048;

    font-family: inherit;
    font-size: 10px;
    font-weight: 750;
    line-height: 1.4;
    text-align: left;

    cursor: pointer;
}

.admin-company-table button:hover {
    text-decoration: underline;
}

.admin-insight-empty {
    padding: 28px 15px;

    border: 1px dashed #d2dfd9;
    border-radius: 8px;

    color: #7d8b84;

    font-size: 10px;
    text-align: center;
}

.admin-insight-note {
    margin-top: 14px;
    padding: 13px 15px;

    border-left: 3px solid #89ae9f;

    background: #f4f8f6;
    color: #6c7e75;

    font-size: 9px;
    line-height: 1.6;
}

@media (min-width: 760px) {

    .admin-insight-summary {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .admin-insight-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    }

}

@media (max-width: 620px) {

    .admin-insights-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-company-filter {
        width: 100%;
    }

    .admin-subject-row-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .admin-subject-result {
        margin-left: 25px;
    }

}

.admin-filter-list {
    display: flex;
    gap: 8px;

    margin-bottom: 15px;
    padding-bottom: 4px;

    overflow-x: auto;
}

.admin-filter-list button {
    min-height: 37px;

    padding: 0 14px;

    border: 1px solid #dce6e1;
    border-radius: 999px;

    flex-shrink: 0;

    background: white;
    color: #687970;

    font-family: inherit;
    font-size: 11px;
    font-weight: 700;

    cursor: pointer;
}

.admin-filter-list button.active {
    border-color: var(--green-700);

    background: var(--green-700);
    color: white;
}

.admin-report-list {
    display: grid;
    gap: 12px;

    scroll-margin-top: 20px;
}

.admin-report-card {
    padding: 18px;

    border: 1px solid #dfe8e3;
    border-left: 4px solid #7c8b84;
    border-radius: 8px;

    background: white;
}

.admin-report-card.critical {
    border-left-color: #c94747;
}

.admin-report-card.high {
    border-left-color: #e78232;
}

.admin-report-card.moderate {
    border-left-color: #d8ad28;
}

.admin-report-card.routine {
    border-left-color: #279367;
}

.admin-report-card-header,
.admin-report-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 14px;
}

.admin-report-card-header time {
    color: #8a9690;

    font-size: 10px;
}

.admin-priority-badge {
    padding: 5px 8px;

    border-radius: 999px;

    background: #eef2f0;
    color: #586860;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.admin-priority-badge.critical {
    background: #fce8e8;
    color: #a83333;
}

.admin-priority-badge.high {
    background: #fff0e2;
    color: #a95417;
}

.admin-priority-badge.moderate {
    background: #fff7d8;
    color: #8a6a00;
}

.admin-priority-badge.routine {
    background: #e8f7f0;
    color: #176e4c;
}

.admin-report-card h3 {
    margin-top: 14px;

    color: #17392d;

    font-size: 17px;
    letter-spacing: 0;
}

.admin-report-organization {
    margin-top: 7px;

    color: #687970;

    font-size: 12px;
}

.admin-report-card-footer {
    margin-top: 18px;
    padding-top: 14px;

    border-top: 1px solid #edf1ef;
}

.admin-status-badge,
.admin-deadline {
    font-size: 10px;
    font-weight: 700;
}

.admin-status-badge {
    color: #60736a;
}

.admin-deadline.on-time {
    color: #277653;
}

.admin-deadline.near {
    color: #ad7318;
}

.admin-deadline.overdue {
    color: #b33c3c;
}

.admin-deadline.neutral {
    color: #89958f;
}

.admin-empty-state,
.admin-list-message {
    padding: 35px 20px;

    border: 1px dashed #cfdbd5;
    border-radius: 8px;

    background: white;

    color: #78877f;

    text-align: center;
}

.admin-empty-state strong,
.admin-empty-state span {
    display: block;
}

.admin-empty-state strong {
    color: #3f554a;
}

.admin-empty-state span {
    margin-top: 7px;

    font-size: 11px;
}

.admin-dashboard-error {
    margin-top: 24px;
    padding: 16px;

    border: 1px solid #ecc9c3;
    border-radius: 8px;

    background: #fff5f3;
    color: #9b3930;
}

.admin-dashboard-error button {
    margin-top: 10px;
    padding: 8px 12px;

    border: 0;
    border-radius: 7px;

    background: #9b3930;
    color: white;

    font-family: inherit;

    cursor: pointer;
}

@media (min-width: 760px) {

    .admin-priority-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));
    }

    .admin-report-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

.admin-report-information {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.admin-delete-report-button {
    min-height: 34px;

    padding: 0 11px;

    border: 1px solid #e6c4bf;
    border-radius: 7px;

    background: #fff7f5;
    color: #a23d34;

    font-family: inherit;
    font-size: 10px;
    font-weight: 750;

    cursor: pointer;
}

.admin-delete-report-button:hover {
    border-color: #c9574c;

    background: #fff0ed;
}

.admin-delete-dialog {
    position: fixed;
    inset: 0;

    width: min(
        calc(100% - 32px),
        470px
    );

    max-height: calc(100dvh - 32px);

    margin: auto;

    padding: 0;

    overflow-y: auto;

    border: 0;
    border-radius: 8px;

    background: white;

    box-shadow:
        0 28px 80px
        rgba(12, 38, 28, 0.25);
}

.admin-delete-dialog::backdrop {
    background:
        rgba(7, 27, 19, 0.58);

    backdrop-filter: blur(3px);
}

.admin-delete-dialog form {
    padding: 28px;
}

.admin-delete-dialog h2 {
    margin-top: 8px;

    font-size: 25px;
}

.admin-delete-dialog p {
    margin-top: 13px;

    color: #718078;

    font-size: 12px;
    line-height: 1.6;
}

.admin-delete-protocol {
    display: block;

    margin-top: 14px;
    padding: 13px;

    border-radius: 8px;

    background: #f3f7f5;
    color: #163d2e;

    font-size: 14px;
    text-align: center;
}

.admin-delete-confirmation {
    margin-top: 20px;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #53675d;

    font-size: 11px;
    line-height: 1.5;

    cursor: pointer;
}

.admin-delete-confirmation input {
    margin-top: 2px;

    accent-color: #b4453b;
}

.admin-delete-error {
    padding: 10px;

    border-radius: 7px;

    background: #fff0ed;

    color: #9f3e35 !important;
}

.admin-delete-actions {
    margin-top: 24px;

    display: flex;
    justify-content: flex-end;

    gap: 9px;
}

.admin-delete-actions button {
    min-height: 40px;

    padding: 0 14px;

    border-radius: 8px;

    font-family: inherit;
    font-size: 11px;
    font-weight: 750;

    cursor: pointer;
}

.admin-delete-cancel {
    border: 1px solid #d9e2dd;

    background: white;
    color: #607169;
}

.admin-delete-confirm {
    border: 0;

    background: #ad4037;
    color: white;
}

.admin-delete-confirm:disabled {
    opacity: 0.45;

    cursor: not-allowed;
}


/* ==========================================
   ADMIN - DETALHES DO RELATO
========================================== */

.admin-report-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 8px;
}

.admin-open-report-button {
    min-height: 34px;

    padding: 0 12px;

    border-radius: 7px;

    display: inline-flex;
    align-items: center;

    background: var(--green-700);
    color: white;

    font-size: 10px;
    font-weight: 750;
}

.admin-report-back {
    display: inline-flex;

    margin-bottom: 24px;

    color: var(--green-700);

    font-size: 11px;
    font-weight: 750;
}

.admin-detail-loading,
.admin-detail-error {
    padding: 35px;

    border: 1px solid #dce6e1;
    border-radius: 8px;

    background: white;

    color: #718078;

    text-align: center;
}

.admin-detail-error strong,
.admin-detail-error a {
    display: block;
}

.admin-detail-error a {
    margin-top: 12px;

    color: var(--green-700);
}

.admin-detail-header {
    padding: 24px;

    border-radius: 8px;

    display: flex;
    flex-direction: column;

    gap: 24px;

    background:
        linear-gradient(
            135deg,
            #0d4e38,
            #176c4e
        );

    color: white;
}

.admin-detail-header h1 {
    margin-top: 12px;

    font-size: clamp(22px, 4vw, 34px);

    letter-spacing: 0;
}

.admin-detail-header p {
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;
}

.admin-detail-deadline {
    padding: 14px;

    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 8px;

    background: rgba(255, 255, 255, 0.08);
}

.admin-detail-deadline span,
.admin-detail-deadline strong {
    display: block;
}

.admin-detail-deadline span {
    color: rgba(255, 255, 255, 0.7);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.1px;
}

.admin-detail-deadline strong {
    margin-top: 7px;

    font-size: 13px;
}

.admin-detail-grid {
    margin-top: 16px;

    display: grid;

    gap: 16px;
}

.admin-detail-card {
    padding: 22px;

    border: 1px solid #dfe8e3;
    border-radius: 8px;

    background: white;
}

.admin-detail-card h2 {
    margin-top: 7px;

    font-size: 20px;
}

.admin-detail-full {
    margin-top: 16px;
}

.admin-detail-list {
    margin-top: 20px;

    display: grid;

    gap: 13px;
}

.admin-detail-list div {
    padding-bottom: 11px;

    border-bottom: 1px solid #edf2ef;
}

.admin-detail-list dt {
    color: #8a9790;

    font-size: 9px;
    font-weight: 750;

    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.admin-detail-list dd {
    margin-top: 5px;

    color: #314b3f;

    font-size: 12px;
    font-weight: 650;

    overflow-wrap: anywhere;
}

.admin-triage-reason {
    margin-top: 20px;
    padding: 15px;

    border-radius: 8px;

    background: #f3f7f5;
}

.admin-triage-reason strong {
    color: #3a5548;

    font-size: 10px;
}

.admin-triage-reason p {
    margin-top: 7px;

    color: #6f7f77;

    font-size: 11px;
    line-height: 1.6;
}

.admin-detail-subjects {
    margin-top: 18px;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.admin-detail-subjects span {
    padding: 6px 9px;

    border-radius: 999px;

    background: var(--green-50);
    color: var(--green-800);

    font-size: 9px;
    font-weight: 700;
}

.admin-report-description {
    margin-top: 20px;

    color: #40594d;

    font-size: 13px;
    line-height: 1.75;

    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.admin-occurrence-list {
    margin-top: 25px;
}

.admin-history-list {
    margin-top: 22px;
}

.admin-history-list article {
    display: grid;
    grid-template-columns: 14px 1fr;

    gap: 12px;

    padding-bottom: 20px;
}

.admin-history-point {
    width: 10px;
    height: 10px;

    margin-top: 4px;

    border: 2px solid white;
    border-radius: 50%;

    background: var(--green-600);

    box-shadow: 0 0 0 2px #b9d9cc;
}

.admin-history-list strong,
.admin-history-list time {
    display: block;
}

.admin-history-list strong {
    color: #29483a;

    font-size: 12px;
}

.admin-history-list time {
    margin-top: 3px;

    color: #929d97;

    font-size: 9px;
}

.admin-history-list p {
    margin-top: 7px;

    color: #687970;

    font-size: 11px;
    line-height: 1.6;
}

@media (max-width: 520px) {

    .admin-report-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-report-actions {
        width: 100%;
    }

    .admin-open-report-button,
    .admin-delete-report-button {
        justify-content: center;
        flex: 1;
    }

}

@media (min-width: 760px) {

    .admin-detail-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .admin-detail-deadline {
        min-width: 230px;
    }

    .admin-detail-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .admin-occurrence-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* ==========================================
   ADMIN - AÇÕES DO CASO
========================================== */

.admin-case-actions {
    margin-top: 16px;
    padding: 22px;

    border: 1px solid #cfe0d7;
    border-radius: 8px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f4f9f6
        );
}

.admin-action-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.admin-action-heading h2 {
    margin-top: 7px;

    font-size: 21px;
}

.admin-action-responsible {
    padding: 7px 10px;

    border-radius: 999px;

    background: var(--green-50);
    color: var(--green-800);

    font-size: 9px;
    font-weight: 750;
}

.admin-action-grid {
    margin-top: 22px;

    display: grid;

    gap: 15px;
}

.admin-priority-action,
.admin-assume-action {
    padding: 18px;

    border: 1px solid #dfe8e3;
    border-radius: 8px;

    background: white;
}

.admin-priority-action label {
    display: block;

    margin-bottom: 7px;

    color: #43594e;

    font-size: 10px;
    font-weight: 750;
}

.admin-priority-action select,
.admin-priority-action textarea {
    width: 100%;

    border: 1px solid #d4dfd9;
    border-radius: 8px;

    background: white;
    color: #2d483b;

    font: inherit;
}

.admin-priority-action select {
    height: 44px;

    padding: 0 11px;
    margin-bottom: 15px;
}

.admin-priority-action textarea {
    min-height: 95px;

    padding: 11px;

    resize: vertical;

    font-size: 11px;
    line-height: 1.5;
}

.admin-priority-action select:focus,
.admin-priority-action textarea:focus {
    outline: none;

    border-color: var(--green-600);

    box-shadow:
        0 0 0 3px
        rgba(26, 134, 96, 0.08);
}

.admin-confirm-priority-button,
.admin-assume-case-button {
    width: 100%;
    min-height: 43px;

    margin-top: 13px;

    border: 0;
    border-radius: 8px;

    background: var(--green-700);
    color: white;

    font-family: inherit;
    font-size: 11px;
    font-weight: 750;

    cursor: pointer;
}

.admin-assume-action > span {
    color: var(--green-600);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 1.1px;
}

.admin-assume-action h3 {
    margin-top: 8px;

    font-size: 18px;
}

.admin-assume-action p {
    margin-top: 9px;

    color: #73827a;

    font-size: 11px;
    line-height: 1.65;
}

.admin-assume-case-button {
    margin-top: 22px;

    background: #173f30;
}

.admin-confirm-priority-button:disabled,
.admin-assume-case-button:disabled {
    opacity: 0.5;

    cursor: not-allowed;
}

.admin-action-feedback {
    margin-top: 15px;
    padding: 11px 13px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 650;
}

.admin-action-feedback.success {
    background: #e9f7f0;
    color: #176e4b;
}

.admin-action-feedback.error {
    background: #fff0ed;
    color: #a34037;
}

@media (max-width: 520px) {

    .admin-action-heading {
        flex-direction: column;
    }

}

@media (min-width: 760px) {

    .admin-action-grid {
        grid-template-columns:
            minmax(0, 1.3fr)
            minmax(260px, 0.7fr);
    }

}


/* ==========================================
   ADMIN - ANDAMENTO DO CASO
========================================== */

.admin-status-action {
    margin-top: 16px;
    padding: 22px;

    border: 1px solid #dce6e1;
    border-radius: 8px;

    background: white;
}

.admin-current-status {
    padding: 7px 10px;

    border-radius: 999px;

    background: #edf6f1;
    color: #176d4c;

    font-size: 9px;
    font-weight: 750;
}

.admin-status-form {
    margin-top: 22px;

    display: grid;

    gap: 16px;
}

.admin-status-field label {
    display: block;

    margin-bottom: 7px;

    color: #40584c;

    font-size: 10px;
    font-weight: 750;
}

.admin-status-field label span {
    color: #b34238;
}

.admin-status-field select,
.admin-status-field textarea,
.admin-status-field input {
    width: 100%;

    border: 1px solid #d4dfd9;
    border-radius: 8px;

    background: white;
    color: #2e493c;

    font: inherit;
}

.admin-status-field select,
.admin-status-field input {
    height: 44px;

    padding: 0 11px;
}

.admin-status-field textarea {
    min-height: 95px;

    padding: 11px;

    resize: vertical;

    font-size: 11px;
    line-height: 1.55;
}

.admin-status-field select:focus,
.admin-status-field textarea:focus,
.admin-status-field input:focus {
    outline: none;

    border-color: var(--green-600);

    box-shadow:
        0 0 0 3px
        rgba(26, 134, 96, 0.08);
}

.admin-update-status-button {
    min-height: 45px;

    border: 0;
    border-radius: 8px;

    background: #173f30;
    color: white;

    font-family: inherit;
    font-size: 11px;
    font-weight: 750;

    cursor: pointer;
}

.admin-update-status-button:disabled {
    opacity: 0.5;

    cursor: wait;
}

.admin-status-feedback {
    margin-top: 15px;
    padding: 11px 13px;

    border-radius: 8px;

    font-size: 11px;
    font-weight: 650;
}

.admin-status-feedback.success {
    background: #e9f7f0;
    color: #176e4b;
}

.admin-status-feedback.error {
    background: #fff0ed;
    color: #a34037;
}

.admin-status-closed {
    margin-top: 20px;
    padding: 18px;

    border: 1px solid #cfe0d7;
    border-radius: 8px;

    background: #f1f8f4;
}

.admin-status-closed strong,
.admin-status-closed span {
    display: block;
}

.admin-status-closed strong {
    color: #225e45;
}

.admin-status-closed span {
    margin-top: 6px;

    color: #718078;

    font-size: 11px;
}

.admin-status-form[hidden],
.admin-status-closed[hidden] {
    display: none !important;
}

.tracking-updates {
    margin-top: 30px;
    padding-top: 25px;

    border-top: 1px solid #dfe8e3;
}

.tracking-updates h2 {
    margin-top: 7px;

    color: #193c2f;

    font-size: 20px;
}

.tracking-update-list {
    margin-top: 17px;

    display: grid;

    gap: 11px;
}

.tracking-update-list article {
    padding: 15px;

    border-left: 3px solid var(--green-600);
    border-radius: 8px;

    background: #f3f8f5;
}

.tracking-update-list time {
    color: #819087;

    font-size: 9px;
    font-weight: 700;
}

.tracking-update-list p {
    margin-top: 7px;

    color: #40594d;

    font-size: 11px;
    line-height: 1.65;
}

@media (min-width: 760px) {

    .admin-status-form {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .admin-status-field:nth-child(3),
    .admin-status-field:nth-child(4),
    .admin-status-field:nth-child(5),
    .admin-update-status-button {
        grid-column: 1 / -1;
    }

}

/* ==========================================
   ADMIN - GESTÃO DE RISCOS PSICOSSOCIAIS
========================================== */

.admin-navigation {
    display: grid;
    gap: 6px;
}

.gro-main {
    max-width: 1320px;
}

.gro-main [hidden] {
    display: none !important;
}

.gro-intro {
    margin-top: 34px;
    padding: clamp(24px, 4vw, 42px);

    border-left: 4px solid var(--green-600);

    background:
        linear-gradient(
            120deg,
            white 0%,
            #f7fbf9 100%
        );

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 28px;
}

.gro-intro h2 {
    margin-top: 8px;

    font-size: clamp(25px, 4vw, 38px);
    letter-spacing: -1.1px;
}

.gro-intro p {
    max-width: 700px;

    margin-top: 12px;

    color: #687a71;

    font-size: 13px;
    line-height: 1.75;
}

.gro-preliminary-badge,
.gro-preview-not-saved {
    padding: 9px 12px;

    border: 1px solid #e5c77e;
    border-radius: 999px;

    background: #fff8e5;
    color: #7f6422;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 0.5px;
    white-space: nowrap;
}

.gro-separation-grid {
    margin-top: 18px;

    display: grid;
    gap: 12px;
}

.gro-separation-grid article {
    padding: 20px;

    border: 1px solid #dfe8e3;
    border-radius: 10px;

    background: white;

    display: flex;
    align-items: flex-start;

    gap: 15px;
}

.gro-card-number {
    min-width: 36px;
    height: 36px;

    border-radius: 8px;

    background: var(--green-50);
    color: var(--green-700);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 10px;
    font-weight: 850;
}

.gro-separation-grid strong {
    color: #193b2e;

    font-size: 13px;
}

.gro-separation-grid p {
    margin-top: 6px;

    color: #718078;

    font-size: 11px;
    line-height: 1.6;
}

.gro-workspace {
    margin-top: 18px;

    display: grid;
    align-items: start;

    gap: 18px;
}

.gro-assessment-form,
.gro-matrix-card,
.gro-live-score,
.gro-method-note,
.gro-preview {
    border: 1px solid #dfe8e3;
    border-radius: 10px;

    background: white;
}

.gro-assessment-form {
    padding: clamp(22px, 4vw, 34px);
}

.gro-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;
}

.gro-section-heading h2 {
    margin-top: 6px;

    color: #17372b;

    font-size: 21px;
    letter-spacing: -0.5px;
}

.gro-section-heading > span {
    color: #89958f;

    font-size: 9px;
}

.gro-score-heading {
    margin-top: 30px;
    padding-top: 26px;

    border-top: 1px solid #e4ebe7;
}

.gro-form-grid {
    margin-top: 20px;

    display: grid;

    gap: 16px;
}

.gro-form-grid label,
.gro-full-field {
    display: grid;
    align-content: start;

    gap: 8px;
}

.gro-form-grid label > span,
.gro-full-field > span {
    color: #40584d;

    font-size: 10px;
    font-weight: 750;
}

.gro-full-field {
    margin-top: 16px;
}

.gro-assessment-form input,
.gro-assessment-form select,
.gro-assessment-form textarea {
    width: 100%;

    border: 1px solid #d6e1db;
    border-radius: 8px;

    background: #fbfdfc;
    color: #1c382d;

    font-family: inherit;
    font-size: 11px;
}

.gro-assessment-form input,
.gro-assessment-form select {
    min-height: 44px;

    padding: 0 12px;
}

.gro-assessment-form textarea {
    padding: 12px;

    resize: vertical;

    line-height: 1.55;
}

.gro-assessment-form input:focus,
.gro-assessment-form select:focus,
.gro-assessment-form textarea:focus {
    border-color: var(--green-500);

    outline: 3px solid rgba(30, 145, 103, 0.12);
}

.gro-dcs-box {
    margin-top: 28px;
    padding: 22px;

    border: 1px solid #d9e7e0;
    border-radius: 9px;

    background: #f7faf8;
}

.gro-dcs-message {
    margin-top: 15px;
    padding: 11px 12px;

    border-radius: 7px;

    background: white;
    color: #66776f;

    font-size: 10px;
    line-height: 1.55;
}

.gro-dcs-message.alert {
    border-left: 3px solid #b9473d;

    background: #fff4f2;
    color: #8e3c34;
}

.gro-deepening-check {
    margin-top: 22px;
    padding: 14px;

    border: 1px solid #dfe7e3;
    border-radius: 8px;

    display: flex;
    align-items: flex-start;

    gap: 10px;

    color: #50665b;

    font-size: 10px;
    line-height: 1.55;

    cursor: pointer;
}

.gro-deepening-check input {
    width: 17px;
    min-height: 17px;

    margin-top: 1px;

    accent-color: var(--green-600);
}

.gro-form-error {
    margin-top: 18px;
    padding: 11px 12px;

    border-radius: 7px;

    background: #fff0ed;
    color: #9f3e35;

    font-size: 10px;
}

.gro-form-actions {
    margin-top: 24px;

    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;

    gap: 10px;
}

.gro-primary-button,
.gro-secondary-button {
    min-height: 43px;

    padding: 0 16px;

    border-radius: 8px;

    font-family: inherit;
    font-size: 10px;
    font-weight: 800;

    cursor: pointer;
}

.gro-primary-button {
    border: 1px solid var(--green-700);

    background: var(--green-700);
    color: white;
}

.gro-secondary-button {
    border: 1px solid #d3ded8;

    background: white;
    color: #5a6e64;
}

.gro-side-panel {
    min-width: 0;

    display: grid;

    gap: 14px;
}

.gro-live-score,
.gro-matrix-card,
.gro-method-note {
    min-width: 0;

    padding: 22px;
}

.gro-live-score {
    border-top: 4px solid var(--green-600);
}

.gro-live-score > strong {
    margin-top: 14px;

    display: block;

    color: #17372b;

    font-size: 42px;
    line-height: 1;
}

.gro-level-badge {
    width: fit-content;

    margin-top: 12px;
    padding: 7px 10px;

    border-radius: 999px;

    display: block;

    font-size: 9px;
    font-weight: 850;
}

.gro-level-badge.neutral {
    background: #eef3f0;
    color: #6f7e76;
}

.gro-level-badge.low {
    background: #e8f6ee;
    color: #20704c;
}

.gro-level-badge.moderate {
    background: #fff5d8;
    color: #8a6b14;
}

.gro-level-badge.high {
    background: #fff0e4;
    color: #a25824;
}

.gro-level-badge.veryHigh {
    background: #fde9e6;
    color: #a33e35;
}

.gro-live-score p {
    margin-top: 13px;

    color: #718078;

    font-size: 10px;
    line-height: 1.6;
}

.gro-matrix-scroll {
    margin-top: 18px;

    overflow-x: auto;
}

.gro-risk-matrix {
    width: 100%;
    min-width: 360px;

    border-collapse: separate;
    border-spacing: 4px;
}

.gro-risk-matrix caption {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;
    clip: rect(0 0 0 0);
}

.gro-risk-matrix th,
.gro-risk-matrix td {
    height: 36px;

    border-radius: 5px;

    text-align: center;

    font-size: 9px;
    font-weight: 800;
}

.gro-risk-matrix th {
    background: #f0f5f2;
    color: #60726a;
}

.gro-risk-matrix td.low,
.gro-matrix-legend .low {
    background: #dff2e7;
    color: #246a4b;
}

.gro-risk-matrix td.moderate,
.gro-matrix-legend .moderate {
    background: #fff1c6;
    color: #806417;
}

.gro-risk-matrix td.high,
.gro-matrix-legend .high {
    background: #fde1ca;
    color: #965020;
}

.gro-risk-matrix td.very-high,
.gro-matrix-legend .very-high {
    background: #f5cbc6;
    color: #8f372f;
}

.gro-matrix-legend {
    margin-top: 13px;

    display: flex;
    flex-wrap: wrap;

    gap: 6px;
}

.gro-matrix-legend span {
    padding: 6px 8px;

    border-radius: 999px;

    font-size: 8px;
    font-weight: 800;
}

.gro-method-note {
    border-left: 4px solid #b68a2d;

    background: #fffdf7;
}

.gro-method-note strong {
    color: #5f4d24;

    font-size: 11px;
}

.gro-method-note p {
    margin-top: 8px;

    color: #766b50;

    font-size: 10px;
    line-height: 1.65;
}

.gro-preview {
    margin-top: 18px;
    padding: clamp(22px, 4vw, 34px);

    scroll-margin-top: 20px;
}

.gro-preview-summary {
    margin-top: 20px;

    display: grid;

    gap: 10px;
}

.gro-preview-summary > div {
    min-height: 110px;

    padding: 18px;

    border: 1px solid #e0e8e4;
    border-radius: 9px;

    display: flex;
    flex-direction: column;
}

.gro-preview-summary span,
.gro-preview-details article > span {
    color: #839189;

    font-size: 8px;
    font-weight: 850;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.gro-preview-summary strong {
    margin-top: 9px;

    color: #17372b;

    font-size: 14px;
}

.gro-preview-summary small {
    margin-top: auto;
    padding-top: 12px;

    color: #75847c;

    font-size: 9px;
}

.gro-preview-result.low {
    border-top: 4px solid #3c9b6c;
}

.gro-preview-result.moderate {
    border-top: 4px solid #c49a2d;
}

.gro-preview-result.high {
    border-top: 4px solid #d67635;
}

.gro-preview-result.veryHigh {
    border-top: 4px solid #b9473d;
}

.gro-preview-details {
    margin-top: 14px;

    display: grid;

    gap: 10px;
}

.gro-preview-details article {
    padding: 17px;

    border-radius: 8px;

    background: #f6f9f7;
}

.gro-preview-details p {
    margin-top: 8px;

    color: #40574c;

    font-size: 11px;
    line-height: 1.6;

    white-space: pre-wrap;
}

.gro-preview-details small {
    margin-top: 7px;

    display: block;

    color: #708078;

    font-size: 9px;
    line-height: 1.55;

    white-space: pre-wrap;
}

.gro-dcs-summary,
.gro-dcs-explanation {
    white-space: normal !important;
}

.gro-alert-text {
    color: #9b4038 !important;
}

.gro-preview-warning {
    margin-top: 16px;
    padding: 16px;

    border-left: 4px solid #c0912a;

    background: #fff9e9;
}

.gro-preview-warning strong {
    color: #654e1d;

    font-size: 10px;
}

.gro-preview-warning p {
    margin-top: 7px;

    color: #76684a;

    font-size: 10px;
    line-height: 1.6;
}

@media (min-width: 680px) {
    .gro-separation-grid,
    .gro-form-grid,
    .gro-preview-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gro-form-grid-three,
    .gro-preview-summary {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .gro-workspace {
        grid-template-columns:
            minmax(0, 1.65fr)
            minmax(310px, 0.75fr);
    }

    .gro-side-panel {
        position: sticky;
        top: 24px;
    }
}

@media (max-width: 679px) {
    .gro-intro,
    .gro-section-heading {
        flex-direction: column;
    }

    .gro-preliminary-badge,
    .gro-preview-not-saved {
        white-space: normal;
    }

    .gro-form-actions button {
        width: 100%;
    }
}

.privacy-note a,
.confidentiality-content a,
.consent-option a {
    color: #087352;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ==========================================
   PRIVACIDADE E DIREITOS DOS TITULARES
========================================== */

.footer-legal-links a {
    width: fit-content;
    color: #50675c;
    font-size: 10px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-page {
    width: min(100% - 40px, 1120px);
    margin: 0 auto;
    padding: 32px 0 30px;
}

.privacy-hero {
    max-width: 760px;
    padding: 42px 0 28px;
}

.privacy-hero h1 {
    margin-top: 13px;
    color: #132b20;
    font-size: clamp(38px, 7vw, 68px);
    line-height: 0.98;
}

.privacy-hero p {
    max-width: 690px;
    margin-top: 22px;
    color: #66786f;
    font-size: clamp(15px, 2.2vw, 20px);
    line-height: 1.65;
}

.privacy-hero small {
    display: block;
    margin-top: 16px;
    color: #86958e;
    font-size: 11px;
}

.privacy-summary,
.rights-guidance {
    margin: 12px 0 35px;
    padding: 24px;
    border: 1px solid #cae2d7;
    border-left: 5px solid #1a916b;
    border-radius: 10px;
    background: #f0f8f4;
}

.privacy-summary strong,
.rights-guidance strong {
    color: #0f694e;
    font-size: 15px;
}

.privacy-summary p,
.rights-guidance p {
    margin-top: 8px;
    color: #587067;
    font-size: 13px;
    line-height: 1.7;
}

.privacy-layout {
    display: grid;
    gap: 30px;
}

.privacy-index {
    height: fit-content;
    padding: 24px;
    border: 1px solid #dce8e2;
    border-radius: 10px;
    background: #fff;
    display: grid;
    gap: 11px;
}

.privacy-index strong {
    margin-bottom: 5px;
    color: #133d2e;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.privacy-index a {
    color: #5c7167;
    font-size: 12px;
    line-height: 1.4;
}

.privacy-index a:hover {
    color: #117354;
}

.privacy-content {
    display: grid;
    gap: 18px;
}

.privacy-content section {
    padding: 26px;
    border: 1px solid #e0e9e4;
    border-radius: 10px;
    background: #fff;
    scroll-margin-top: 24px;
}

.privacy-content h2 {
    color: #173b2d;
    font-size: clamp(20px, 3vw, 27px);
    line-height: 1.2;
}

.privacy-content p,
.privacy-content li {
    color: #5d6f67;
    font-size: 13px;
    line-height: 1.75;
}

.privacy-content p,
.privacy-content ul {
    margin-top: 14px;
}

.privacy-content ul {
    padding-left: 20px;
}

.privacy-content li + li {
    margin-top: 7px;
}

.privacy-content a:not(.button) {
    color: #087352;
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-action {
    margin-top: 20px;
}

.retention-table {
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid #dce8e2;
    border-radius: 8px;
}

.retention-row {
    padding: 14px;
    display: grid;
    gap: 6px;
    border-bottom: 1px solid #e3ece7;
}

.retention-row:last-child {
    border-bottom: 0;
}

.retention-row > :first-child {
    color: #244c3b;
    font-weight: 750;
}

.retention-row > :last-child {
    color: #64766d;
    font-size: 12px;
    line-height: 1.55;
}

.retention-heading {
    display: none;
    background: #f2f7f4;
}

.rights-page {
    max-width: 900px;
}

.rights-form {
    padding: clamp(24px, 5vw, 48px);
    border: 1px solid #dce8e2;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 22px 60px rgba(25, 66, 48, 0.07);
    display: grid;
    gap: 22px;
}

.rights-grid {
    display: grid;
    gap: 20px;
}

.rights-field {
    display: grid;
    gap: 8px;
}

.rights-field label {
    color: #24473a;
    font-size: 12px;
    font-weight: 750;
}

.rights-field input,
.rights-field select,
.rights-field textarea,
.privacy-admin-form select,
.privacy-admin-form textarea {
    width: 100%;
    min-height: 50px;
    padding: 13px 15px;
    border: 1px solid #cfded7;
    border-radius: 7px;
    outline: none;
    background: #fff;
    color: #1f3f32;
    font: inherit;
    font-size: 13px;
}

.rights-field textarea,
.privacy-admin-form textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.rights-field input:focus,
.rights-field select:focus,
.rights-field textarea:focus,
.privacy-admin-form select:focus,
.privacy-admin-form textarea:focus {
    border-color: #16845f;
    box-shadow: 0 0 0 3px rgba(22, 132, 95, 0.12);
}

.rights-field small {
    color: #85938c;
    font-size: 10px;
}

.rights-awareness {
    align-items: flex-start;
}

.rights-awareness a {
    color: #087352;
    font-weight: 750;
    text-decoration: underline;
}

.rights-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.rights-message {
    padding: 13px 15px;
    border-radius: 7px;
    background: #fff0ef;
    color: #a33b35;
    font-size: 12px;
    line-height: 1.5;
}

.rights-submit {
    width: 100%;
}

.rights-success {
    padding: clamp(30px, 7vw, 60px);
    border: 1px solid #cde3d8;
    border-radius: 12px;
    background: #f4faf7;
    text-align: center;
}

.rights-success h2 {
    margin-top: 12px;
    color: #153b2b;
    font-size: clamp(28px, 5vw, 45px);
}

.rights-success > strong {
    margin: 24px auto;
    padding: 18px;
    border: 1px dashed #80ab98;
    border-radius: 8px;
    display: block;
    color: #0a6046;
    font-size: clamp(15px, 3vw, 23px);
    overflow-wrap: anywhere;
}

.rights-success p {
    max-width: 610px;
    margin: 0 auto 25px;
    color: #63766d;
    font-size: 13px;
    line-height: 1.7;
}

/* ==========================================
   ADMINISTRAÇÃO DE SOLICITAÇÕES LGPD
========================================== */

.privacy-admin-guidance {
    border-left-color: #207d60;
}

.admin-privacy-shortcut {
    margin-bottom: 25px;
    padding: 20px;
    border: 1px solid #cfe3d9;
    border-left: 5px solid #18815e;
    border-radius: 8px;
    background: #f4faf7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.admin-privacy-shortcut > div > strong {
    margin-top: 7px;
    display: block;
    color: #173b2d;
    font-size: 17px;
}

.admin-privacy-shortcut p {
    margin-top: 5px;
    color: #65786e;
    font-size: 10px;
}

.admin-privacy-count {
    min-width: 90px;
    padding: 12px;
    border-radius: 7px;
    background: #fff;
    color: #64776d;
    font-size: 9px;
    text-align: center;
}

.admin-privacy-count strong {
    display: block;
    color: #116849;
    font-size: 24px;
}

.privacy-admin-error {
    margin-bottom: 20px;
    padding: 18px;
    border: 1px solid #e9c9c7;
    border-radius: 8px;
    background: #fff5f4;
    color: #9d3b36;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.privacy-admin-error button {
    padding: 9px 13px;
    border: 1px solid currentColor;
    border-radius: 6px;
    background: transparent;
    color: inherit;
    font-weight: 750;
}

.privacy-admin-list {
    display: grid;
    gap: 20px;
}

.privacy-admin-card {
    padding: clamp(20px, 4vw, 32px);
    border: 1px solid #dce8e2;
    border-left: 5px solid #d5a52f;
    border-radius: 9px;
    background: #fff;
}

.privacy-admin-card.status-in_analysis {
    border-left-color: #3988b9;
}

.privacy-admin-card.status-identity_check {
    border-left-color: #bd6c2d;
}

.privacy-admin-card.status-completed {
    border-left-color: #19845f;
}

.privacy-admin-card.status-rejected {
    border-left-color: #9d635f;
}

.privacy-admin-card-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.privacy-admin-card-heading h3 {
    margin-top: 8px;
    color: #173b2d;
    font-size: clamp(16px, 2.5vw, 23px);
    overflow-wrap: anywhere;
}

.privacy-status-badge {
    padding: 8px 10px;
    border-radius: 999px;
    background: #fff5d8;
    color: #8b6819;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
}

.privacy-status-badge.in_analysis {
    background: #e9f5fc;
    color: #286b94;
}

.privacy-status-badge.identity_check {
    background: #fff0e2;
    color: #9a5420;
}

.privacy-status-badge.completed {
    background: #e8f7f0;
    color: #116849;
}

.privacy-status-badge.rejected {
    background: #f8eeee;
    color: #8c4b47;
}

.privacy-admin-details {
    margin-top: 22px;
    display: grid;
    gap: 12px;
}

.privacy-admin-detail {
    padding: 12px;
    border-radius: 6px;
    background: #f6f9f7;
}

.privacy-admin-detail span,
.privacy-admin-description > span {
    display: block;
    color: #7b8b83;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.privacy-admin-detail strong {
    margin-top: 5px;
    display: block;
    color: #344f43;
    font-size: 11px;
    overflow-wrap: anywhere;
}

.privacy-admin-description {
    margin-top: 18px;
    padding: 17px;
    border: 1px solid #e4ece8;
    border-radius: 7px;
}

.privacy-admin-description p {
    margin-top: 8px;
    color: #53675d;
    font-size: 12px;
    line-height: 1.65;
    white-space: pre-wrap;
}

.privacy-admin-form {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e4ece8;
    display: grid;
    gap: 14px;
}

.privacy-admin-form label {
    color: #496056;
    font-size: 10px;
    font-weight: 800;
    display: grid;
    gap: 7px;
}

.privacy-admin-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.privacy-admin-actions .button {
    min-width: 155px;
}

.privacy-admin-save-message {
    color: #17684d;
    font-size: 10px;
    font-weight: 750;
}

@media (min-width: 700px) {

    .rights-grid,
    .privacy-admin-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .retention-row {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 18px;
    }

    .retention-heading {
        display: grid;
    }

}

@media (min-width: 920px) {

    .privacy-page {
        padding-top: 48px;
    }

    .privacy-layout {
        grid-template-columns: 230px minmax(0, 1fr);
        align-items: start;
    }

    .privacy-index {
        position: sticky;
        top: 24px;
    }

}

@media (max-width: 560px) {

    .privacy-admin-card-heading,
    .privacy-admin-actions,
    .privacy-admin-error {
        flex-direction: column;
    }

    .privacy-admin-actions .button {
        width: 100%;
    }

}

/* ==========================================
   GRO - PERSISTÊNCIA E HISTÓRICO
========================================== */

.gro-form-feedback {
    margin-top: 18px;
    padding: 11px 12px;

    border-radius: 7px;

    font-size: 10px;
    line-height: 1.55;
}

.gro-form-feedback.error {
    background: #fff0ed;
    color: #9f3e35;
}

.gro-form-feedback.success {
    border-left: 3px solid #2f8f65;

    background: #eaf7f0;
    color: #216c4b;
}

.gro-primary-button:disabled {
    opacity: 0.65;
    cursor: wait;
}

.gro-saved-assessments {
    margin-top: 18px;
    padding: clamp(22px, 4vw, 34px);

    border: 1px solid #dfe8e3;
    border-radius: 10px;

    background: white;
}

#groSavedCount {
    color: #76877e;

    font-size: 9px;
    font-weight: 750;
}

.gro-saved-list {
    margin-top: 20px;

    display: grid;
    gap: 12px;
}

.gro-saved-empty {
    padding: 22px;

    border: 1px dashed #cfdcd5;
    border-radius: 9px;

    background: #f8fbf9;
    color: #6e8077;

    font-size: 10px;
    text-align: center;
}

.gro-saved-empty.error {
    border-color: #e3bdb8;

    background: #fff4f2;
    color: #91443d;
}

.gro-saved-card {
    padding: 18px;

    border: 1px solid #dfe8e3;
    border-radius: 9px;

    background: #fbfdfc;
}

.gro-saved-card-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 14px;
}

.gro-saved-card-heading > div > span {
    color: #84928b;

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gro-saved-card-heading h3 {
    margin-top: 6px;

    color: #17372b;

    font-size: 15px;
}

.gro-saved-card-heading .gro-level-badge {
    flex: 0 0 auto;

    margin-top: 0;
}

.gro-saved-factor {
    margin-top: 12px;

    color: #40584d;

    font-size: 11px;
    font-weight: 700;
}

.gro-saved-meta {
    margin-top: 12px;

    display: flex;
    flex-wrap: wrap;

    gap: 7px;
}

.gro-saved-meta span {
    padding: 6px 8px;

    border-radius: 999px;

    background: #eef4f1;
    color: #60736a;

    font-size: 8px;
    font-weight: 750;
}

.gro-saved-card details {
    margin-top: 14px;

    border-top: 1px solid #e3ebe7;
}

.gro-saved-card summary {
    padding-top: 13px;

    color: #267456;

    font-size: 9px;
    font-weight: 800;

    cursor: pointer;
}

.gro-saved-details {
    margin-top: 14px;

    display: grid;
    gap: 10px;
}

.gro-saved-details > div {
    padding: 13px;

    border-radius: 7px;

    background: white;
}

.gro-saved-details strong {
    color: #60736a;

    font-size: 8px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.gro-saved-details p {
    margin-top: 7px;

    color: #40574c;

    font-size: 10px;
    line-height: 1.55;

    white-space: pre-wrap;
}

.gro-saved-details small {
    margin-top: 6px;

    display: block;

    color: #728179;

    font-size: 9px;
    line-height: 1.5;

    white-space: pre-wrap;
}

@media (min-width: 760px) {

    .gro-saved-list {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 679px) {

    .gro-saved-card-heading {
        flex-direction: column;
    }

}
html.access-pending body {
    visibility: hidden;
}

.access-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(
            circle at top left,
            rgba(25, 143, 108, 0.12),
            transparent 40%
        ),
        #f3f8f6;
}

.access-shell {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 32px 20px;
}

.access-card {
    width: min(100%, 620px);
    padding: clamp(30px, 6vw, 58px);
    border: 1px solid #d9e7e1;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(19, 54, 43, 0.13);
    text-align: center;
}

.access-brand {
    width: fit-content;
    margin: 0 auto 34px;
    text-align: left;
}

.access-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border-radius: 22px;
    color: #0f7658;
    background: #eaf6f1;
}

.access-icon svg {
    width: 34px;
    height: 34px;
}

.access-eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #168565;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.access-card h1 {
    margin: 0 0 18px;
    color: #102d24;
    font-size: clamp(2rem, 6vw, 3.25rem);
    line-height: 1.05;
}

.access-card > p {
    margin: 0 auto;
    color: #63766f;
    font-size: 1.05rem;
    line-height: 1.65;
}

.access-note {
    margin: 28px 0;
    padding: 18px 20px;
    border-radius: 16px;
    color: #31594c;
    background: #eef7f3;
    line-height: 1.55;
}

.access-button {
    width: 100%;
    justify-content: center;
}

.access-legal-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 26px;
}

.access-legal-links a {
    color: #61736c;
    font-size: 0.88rem;
}

.access-loader {
    width: 54px;
    height: 54px;
    margin: 0 auto 26px;
    border: 5px solid #dcece6;
    border-top-color: #178563;
    border-radius: 50%;
    animation: access-spin 0.85s linear infinite;
}

.invite-status-error {
    color: #a13c38 !important;
}

@keyframes access-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 520px) {
    .access-shell {
        padding: 18px 14px;
    }

    .access-card {
        border-radius: 22px;
    }
}

