@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=IBM+Plex+Serif:wght@600;700&display=swap');

:root {
    --godoi-ink: #061826;
    --godoi-muted: #526579;
    --godoi-line: rgba(12, 37, 58, 0.11);
    --godoi-blue: #005c86;
    --godoi-cyan: #10b7d8;
    --godoi-gold: #d6a84f;
    --godoi-surface: rgba(255, 255, 255, 0.93);
    --godoi-surface-strong: #ffffff;
    --godoi-shadow: 0 18px 44px rgba(3, 20, 37, 0.10);
    --godoi-radius: 22px;
}

html {
    scroll-behavior: smooth;
}

.godoi-body {
    min-height: 100vh;
    color: var(--godoi-ink);
    font-family: "IBM Plex Sans", sans-serif;
    background:
        radial-gradient(circle at 10% 5%, rgba(16, 183, 216, 0.18), transparent 30rem),
        radial-gradient(circle at 88% 12%, rgba(214, 168, 79, 0.17), transparent 28rem),
        linear-gradient(135deg, #f8fbfd 0%, #eef5f8 48%, #f7f3ea 100%);
    position: relative;
}

.godoi-body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(7, 20, 34, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 20, 34, 0.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 82%);
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.06);
}

.app-main {
    width: min(100%, 1280px);
}

.brand-mark {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08), 0 12px 26px rgba(15, 23, 42, 0.08);
}

.nav-menu .nav-link,
.nav-menu summary {
    border-radius: 999px;
    color: #172033;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.nav-menu .nav-link:hover,
.nav-menu summary:hover,
.nav-menu details[open] > summary {
    color: var(--godoi-blue) !important;
    background: rgba(16, 183, 216, 0.12) !important;
    box-shadow: inset 0 0 0 1px rgba(16, 183, 216, 0.2);
    transform: translateY(-1px);
}

.nav-menu details > div {
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    border-radius: 22px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16) !important;
    backdrop-filter: blur(16px);
}

.nav-menu details > div a,
.nav-menu details > div button {
    border-radius: 16px !important;
    transition: background 160ms ease, transform 160ms ease;
}

.nav-menu details > div a:hover,
.nav-menu details > div button:hover {
    transform: translateX(2px);
}

.godoi-hero {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
        radial-gradient(circle at 80% 20%, rgba(16, 183, 216, 0.24), transparent 22rem);
    box-shadow: var(--godoi-shadow);
}

.godoi-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    border: 1px solid rgba(16, 183, 216, 0.2);
    background: radial-gradient(circle, rgba(16, 183, 216, 0.18), transparent 68%);
}

.godoi-eyebrow {
    color: var(--godoi-blue);
    letter-spacing: 0.16em;
}

.godoi-title {
    font-family: "IBM Plex Serif", serif;
    letter-spacing: -0.045em;
}

.godoi-gradient-text {
    color: transparent;
    background: linear-gradient(110deg, var(--godoi-blue), #0798b7 55%, var(--godoi-gold));
    -webkit-background-clip: text;
    background-clip: text;
}

.godoi-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    padding: 0.85rem 1.15rem;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.godoi-button-primary {
    color: #fff;
    background: linear-gradient(135deg, #00658e, #0da8c5);
    box-shadow: 0 18px 34px rgba(0, 101, 142, 0.28);
}

.godoi-button-secondary {
    color: var(--godoi-ink);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
}

.godoi-button:hover {
    transform: translateY(-2px);
}

.godoi-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 28px;
    background: var(--godoi-surface);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.godoi-card:hover {
    border-color: rgba(16, 183, 216, 0.34);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
    transform: translateY(-3px);
}

.godoi-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--godoi-blue), var(--godoi-cyan), var(--godoi-gold));
}

.godoi-panel {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 30px;
    background:
        linear-gradient(145deg, rgba(7, 20, 34, 0.96), rgba(0, 79, 112, 0.9)),
        radial-gradient(circle at 20% 10%, rgba(16, 183, 216, 0.36), transparent 20rem);
    color: #fff;
    box-shadow: 0 26px 70px rgba(7, 20, 34, 0.24);
}

.godoi-chip {
    border-radius: 999px;
    background: rgba(16, 183, 216, 0.12);
    color: #075d75;
}

.godoi-file-dropzone {
    position: relative;
    display: grid;
    gap: 0.75rem;
    border: 1.5px dashed rgba(0, 92, 134, 0.38);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(16, 183, 216, 0.08), rgba(255, 255, 255, 0.86)),
        rgba(255, 255, 255, 0.88);
    padding: 1rem;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.godoi-file-dropzone:hover,
.godoi-file-dropzone.is-dragover {
    border-color: rgba(0, 92, 134, 0.86);
    background:
        linear-gradient(135deg, rgba(16, 183, 216, 0.15), rgba(255, 255, 255, 0.94)),
        rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(0, 92, 134, 0.12);
    transform: translateY(-1px);
}

.godoi-file-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.godoi-file-dropzone-content {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    pointer-events: none;
}

.godoi-file-dropzone-icon {
    display: grid;
    width: 2.9rem;
    height: 2.9rem;
    min-width: 2.9rem;
    place-items: center;
    border-radius: 16px;
    color: #005c86;
    background: rgba(16, 183, 216, 0.16);
    box-shadow: inset 0 0 0 1px rgba(16, 183, 216, 0.18);
}

.godoi-file-dropzone-title {
    display: block;
    font-weight: 800;
    color: var(--godoi-ink);
}

.godoi-file-dropzone-hint,
.godoi-file-dropzone-name {
    display: block;
    margin-top: 0.15rem;
    color: var(--godoi-muted);
    font-size: 0.875rem;
}

.godoi-file-dropzone-name {
    font-weight: 700;
    color: #00658e;
    word-break: break-word;
}

.godoi-contact-strip {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.07);
}

.godoi-layout-v2 {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.godoi-side-identity {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    border-radius: 34px;
    color: #fff;
    background:
        linear-gradient(160deg, rgba(7, 20, 34, 0.98), rgba(0, 92, 134, 0.92)),
        radial-gradient(circle at 20% 0%, rgba(16, 183, 216, 0.42), transparent 20rem);
    box-shadow: 0 28px 70px rgba(7, 20, 34, 0.22);
}

.godoi-side-identity::after {
    content: "";
    position: absolute;
    inset: auto -35% -20% 15%;
    height: 310px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, rgba(16, 183, 216, 0.28), rgba(214, 168, 79, 0.35));
    transform: rotate(-12deg);
}

.godoi-side-number {
    font-family: "Newsreader", serif;
    line-height: 0.85;
    letter-spacing: -0.08em;
}

.godoi-main-board {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: var(--godoi-shadow);
    backdrop-filter: blur(16px);
}

.godoi-service-row {
    display: grid;
    grid-template-columns: 4.75rem minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.72);
    padding: 1rem;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.godoi-service-row:hover {
    transform: translateX(4px);
    border-color: rgba(16, 183, 216, 0.34);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.09);
}

.godoi-service-index {
    display: flex;
    height: 4.2rem;
    width: 4.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--godoi-blue), var(--godoi-cyan));
}

.godoi-process-line {
    position: relative;
}

.godoi-process-line::before {
    content: "";
    position: absolute;
    left: 1.2rem;
    top: 1.3rem;
    bottom: 1.3rem;
    width: 1px;
    background: linear-gradient(to bottom, var(--godoi-cyan), rgba(16, 183, 216, 0));
}

.godoi-home-v3 {
    display: grid;
    gap: 1.4rem;
}

.godoi-home-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 1.5rem;
    align-items: stretch;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 252, 253, 0.88)),
        radial-gradient(circle at 88% 18%, rgba(16, 183, 216, 0.18), transparent 26rem);
    box-shadow: var(--godoi-shadow);
}

.godoi-home-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(to bottom, var(--godoi-blue), var(--godoi-cyan), var(--godoi-gold));
}

.godoi-hero-title {
    font-family: "Newsreader", serif;
    letter-spacing: -0.055em;
}

.godoi-status-card {
    border-radius: 30px;
    color: #fff;
    background:
        linear-gradient(155deg, rgba(7, 20, 34, 0.96), rgba(0, 92, 134, 0.92)),
        radial-gradient(circle at 85% 8%, rgba(214, 168, 79, 0.28), transparent 14rem);
    box-shadow: 0 22px 50px rgba(7, 20, 34, 0.2);
}

.godoi-mini-metric {
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.godoi-section-card {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
    backdrop-filter: blur(14px);
}

.godoi-report-tile {
    position: relative;
    overflow: hidden;
    min-height: 190px;
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, 0.09);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 253, 0.82));
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.godoi-report-tile::after {
    content: "";
    position: absolute;
    right: -34px;
    top: -34px;
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: rgba(16, 183, 216, 0.12);
}

.godoi-report-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(16, 183, 216, 0.34);
    box-shadow: 0 20px 46px rgba(15, 23, 42, 0.11);
}

.godoi-step-card {
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.godoi-step-badge {
    display: flex;
    width: 2.55rem;
    height: 2.55rem;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--godoi-blue), var(--godoi-cyan));
}

@media (max-width: 1024px) {
    .godoi-layout-v2 {
        grid-template-columns: 1fr;
    }

    .godoi-home-hero {
        grid-template-columns: 1fr;
    }

    .godoi-side-identity {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .godoi-service-row {
        grid-template-columns: 1fr;
    }

    .godoi-service-index {
        height: 3.2rem;
        width: 3.2rem;
        border-radius: 18px;
    }
}

.app-main .bg-white {
    background-color: rgba(255, 255, 255, 0.86) !important;
    backdrop-filter: blur(10px);
}

.app-main .border-zinc-200,
.app-main .border-slate-200 {
    border-color: rgba(15, 23, 42, 0.11) !important;
}

.app-main .shadow-sm {
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07) !important;
}

.app-main article.rounded,
.app-main article.rounded-lg,
.app-main section.rounded,
.app-main section.rounded-lg,
.app-main div.rounded-lg.bg-white {
    border-radius: 24px !important;
}

.app-main table {
    overflow: hidden;
    border-radius: 18px;
}

.app-main thead tr {
    background: rgba(7, 20, 34, 0.055) !important;
}

.app-main a.bg-cyan-700,
.app-main button.bg-cyan-700,
.app-main a.bg-cyan-800,
.app-main button.bg-cyan-800 {
    border: 0 !important;
    background: linear-gradient(135deg, #00658e, #0da8c5) !important;
    box-shadow: 0 14px 30px rgba(0, 101, 142, 0.22);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.app-main a.bg-cyan-700:hover,
.app-main button.bg-cyan-700:hover,
.app-main a.bg-cyan-800:hover,
.app-main button.bg-cyan-800:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(0, 101, 142, 0.28);
}

input,
select,
textarea {
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(16, 183, 216, 0.74) !important;
    box-shadow: 0 0 0 4px rgba(16, 183, 216, 0.14) !important;
    outline: none !important;
}

@media (max-width: 768px) {
    .app-header {
        position: relative;
    }

    .godoi-hero {
        border-radius: 24px;
    }
}

/* Professional clear theme - 2026-06-27 */
:root {
    --godoi-ink: #071522;
    --godoi-muted: #5d6c7c;
    --godoi-line: #d9e2ea;
    --godoi-blue: #064f6f;
    --godoi-cyan: #0788a6;
    --godoi-gold: #b4872f;
    --godoi-bg: #f3f6f8;
    --godoi-card: #ffffff;
    --godoi-soft: #edf4f7;
    --godoi-shadow: 0 12px 30px rgba(7, 21, 34, 0.08);
}

.godoi-body {
    min-height: 100vh;
    color: var(--godoi-ink);
    font-family: "IBM Plex Sans", sans-serif !important;
    background:
        linear-gradient(90deg, rgba(6, 79, 111, 0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(6, 79, 111, 0.04) 1px, transparent 1px),
        linear-gradient(180deg, #f9fbfc 0%, var(--godoi-bg) 44%, #eef3f6 100%) !important;
    background-size: 44px 44px, 44px 44px, auto !important;
}

.godoi-body::before {
    display: none !important;
}

.app-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid var(--godoi-line) !important;
    background: rgba(255, 255, 255, 0.97) !important;
    box-shadow: 0 1px 0 rgba(7, 21, 34, 0.04) !important;
    backdrop-filter: blur(12px);
}

.app-header::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--godoi-blue), var(--godoi-cyan), var(--godoi-gold));
}

.app-header > div {
    min-height: 72px;
}

.brand-mark {
    min-width: 110px !important;
    border: 1px solid rgba(7, 21, 34, 0.08) !important;
    border-radius: 10px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.nav-menu {
    align-items: center;
    color: var(--godoi-ink);
}

.nav-menu .nav-link,
.nav-menu summary {
    border-radius: 8px !important;
    color: #213244 !important;
    letter-spacing: -0.01em;
    transition: background 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.nav-menu .nav-link:hover,
.nav-menu details[open] > summary,
.nav-menu summary:hover {
    background: #e9f6f9 !important;
    color: var(--godoi-blue) !important;
    box-shadow: inset 0 0 0 1px rgba(7, 136, 166, 0.14);
}

.nav-menu details > div {
    border: 1px solid var(--godoi-line) !important;
    border-radius: 12px !important;
    background: #fff !important;
    box-shadow: 0 18px 42px rgba(7, 21, 34, 0.14) !important;
}

.nav-menu details > div a,
.nav-menu details > div button {
    border-radius: 8px !important;
    color: #243547;
    font-weight: 600;
}

.nav-menu details > div a:hover,
.nav-menu details > div button:hover {
    background: #eef8fb !important;
    color: var(--godoi-blue) !important;
}

.app-main {
    width: min(100%, 1240px);
    max-width: 1240px;
}

.app-main .bg-white {
    background-color: #fff !important;
    backdrop-filter: none !important;
}

.app-main .shadow-sm,
.app-main .shadow,
.app-main .shadow-lg {
    box-shadow: var(--godoi-shadow) !important;
}

.app-main article.rounded,
.app-main article.rounded-lg,
.app-main section.rounded,
.app-main section.rounded-lg,
.app-main div.rounded-lg.bg-white,
.app-main div.rounded.border,
.app-main form.rounded,
.app-main form.rounded-lg {
    border-radius: 14px !important;
    border-color: var(--godoi-line) !important;
}

.app-main h1,
.app-main h2,
.app-main h3 {
    letter-spacing: -0.035em;
}

.app-main table {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--godoi-line);
    border-radius: 10px !important;
    background: #fff;
    box-shadow: 0 8px 22px rgba(7, 21, 34, 0.04);
}

.app-main thead tr,
.app-main th {
    background: #eef3f7 !important;
    color: #233648 !important;
    font-weight: 700 !important;
}

.app-main td,
.app-main th {
    border-color: var(--godoi-line) !important;
}

input,
select,
textarea {
    border-radius: 9px !important;
    border-color: #cbd7e2 !important;
    background-color: #fff !important;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--godoi-cyan) !important;
    box-shadow: 0 0 0 3px rgba(7, 136, 166, 0.16) !important;
    outline: none !important;
}

.app-main a.bg-cyan-700,
.app-main button.bg-cyan-700,
.app-main a.bg-cyan-800,
.app-main button.bg-cyan-800 {
    border: 1px solid #064f6f !important;
    border-radius: 9px !important;
    background: #064f6f !important;
    box-shadow: 0 10px 22px rgba(6, 79, 111, 0.18) !important;
}

.app-main a.bg-cyan-700:hover,
.app-main button.bg-cyan-700:hover,
.app-main a.bg-cyan-800:hover,
.app-main button.bg-cyan-800:hover {
    background: #083c54 !important;
    transform: translateY(-1px);
}

.godoi-pro-page {
    display: grid;
    gap: 22px;
}

.godoi-pro-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    gap: 24px;
    overflow: hidden;
    border: 1px solid var(--godoi-line);
    border-radius: 18px;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9)),
        linear-gradient(90deg, rgba(7, 136, 166, 0.08), rgba(180, 135, 47, 0.08));
    box-shadow: var(--godoi-shadow);
}

.godoi-pro-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 7px;
    background: linear-gradient(180deg, var(--godoi-blue), var(--godoi-cyan), var(--godoi-gold));
}

.godoi-pro-hero-copy {
    padding: clamp(2rem, 4vw, 4.5rem);
}

.godoi-pro-kicker {
    margin: 0;
    color: var(--godoi-blue);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.godoi-pro-hero h1 {
    max-width: 800px;
    margin: 1rem 0 0;
    color: var(--godoi-ink);
    font-family: "IBM Plex Serif", serif;
    font-size: clamp(2.4rem, 6vw, 5.7rem);
    font-weight: 700;
    letter-spacing: -0.06em;
    line-height: 0.98;
}

.godoi-pro-lead {
    max-width: 760px;
    margin: 1.35rem 0 0;
    color: #405165;
    font-size: clamp(1rem, 1.45vw, 1.18rem);
    line-height: 1.85;
}

.godoi-pro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.8rem;
}

.godoi-pro-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 9px;
    padding: 0.72rem 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.godoi-pro-button:hover {
    transform: translateY(-1px);
}

.godoi-pro-button-primary {
    border: 1px solid var(--godoi-blue);
    background: var(--godoi-blue);
    color: #fff;
    box-shadow: 0 12px 24px rgba(6, 79, 111, 0.22);
}

.godoi-pro-button-primary:hover {
    background: #083c54;
}

.godoi-pro-button-secondary {
    border: 1px solid #c7d4df;
    background: #fff;
    color: var(--godoi-ink);
}

.godoi-pro-command {
    margin: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: linear-gradient(180deg, #092237, #06314a);
    color: #fff;
    box-shadow: 0 18px 44px rgba(7, 21, 34, 0.18);
}

.godoi-pro-command-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 1.25rem;
}

.godoi-pro-command-head span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.godoi-pro-command-head strong {
    color: #fff;
}

.godoi-pro-command-list {
    display: grid;
    gap: 0.8rem;
    padding: 1.25rem;
}

.godoi-pro-command-list div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 0.85rem;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.85rem;
}

.godoi-pro-command-list span {
    color: #72d7ea;
    font-weight: 700;
}

.godoi-pro-command-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
    line-height: 1.55;
}

.godoi-pro-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.godoi-pro-summary article,
.godoi-pro-section,
.godoi-pro-contact {
    border: 1px solid var(--godoi-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(7, 21, 34, 0.055);
}

.godoi-pro-summary article {
    padding: 1.25rem;
}

.godoi-pro-summary span,
.godoi-pro-module small {
    color: var(--godoi-cyan);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.godoi-pro-summary strong {
    display: block;
    margin-top: 0.45rem;
    color: var(--godoi-ink);
    font-size: 1.25rem;
}

.godoi-pro-summary p {
    margin: 0.55rem 0 0;
    color: var(--godoi-muted);
    line-height: 1.65;
}

.godoi-pro-section {
    padding: clamp(1.25rem, 2.6vw, 2rem);
}

.godoi-pro-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.godoi-pro-section-head h2 {
    margin: 0.35rem 0 0;
    color: var(--godoi-ink);
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.045em;
}

.godoi-pro-section-head > span {
    border: 1px solid #cbe6ed;
    border-radius: 999px;
    background: #eefbfe;
    color: var(--godoi-blue);
    padding: 0.45rem 0.8rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.godoi-pro-modules {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.godoi-pro-module {
    display: flex;
    min-height: 210px;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--godoi-line);
    border-radius: 14px;
    background: linear-gradient(180deg, #fff, #f8fbfc);
    padding: 1.2rem;
    transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.godoi-pro-module:hover {
    border-color: rgba(7, 136, 166, 0.45);
    box-shadow: 0 16px 30px rgba(7, 21, 34, 0.08);
    transform: translateY(-2px);
}

.godoi-pro-module h3 {
    margin: 0.7rem 0 0;
    color: var(--godoi-ink);
    font-size: 1.15rem;
    font-weight: 700;
}

.godoi-pro-module p {
    margin: 0.7rem 0 0;
    color: var(--godoi-muted);
    font-size: 0.92rem;
    line-height: 1.65;
}

.godoi-pro-module a {
    width: fit-content;
    margin-top: 1rem;
    border-bottom: 2px solid rgba(7, 136, 166, 0.3);
    color: var(--godoi-blue);
    font-weight: 700;
    text-decoration: none;
}

.godoi-pro-flow {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.godoi-pro-flow article {
    border-left: 3px solid var(--godoi-cyan);
    border-radius: 12px;
    background: #f8fbfc;
    padding: 1.15rem;
}

.godoi-pro-flow span {
    display: inline-flex;
    height: 34px;
    width: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e5f7fb;
    color: var(--godoi-blue);
    font-weight: 700;
}

.godoi-pro-flow h3 {
    margin: 0.8rem 0 0;
    font-weight: 700;
}

.godoi-pro-flow p,
.godoi-pro-contact p {
    color: var(--godoi-muted);
    line-height: 1.65;
}

.godoi-pro-contact {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
    padding: clamp(1.25rem, 2.6vw, 2rem);
}

.godoi-pro-contact h2 {
    margin: 0.35rem 0 0;
    color: var(--godoi-ink);
    font-size: 1.15rem;
}

@keyframes godoiProEnter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.godoi-pro-hero,
.godoi-pro-summary article,
.godoi-pro-section,
.godoi-pro-contact {
    animation: godoiProEnter 420ms ease both;
}

@media (max-width: 1024px) {
    .godoi-pro-hero,
    .godoi-pro-summary,
    .godoi-pro-modules,
    .godoi-pro-flow,
    .godoi-pro-contact {
        grid-template-columns: 1fr;
    }

    .godoi-pro-command {
        margin: 0 1rem 1rem;
    }
}

@media (max-width: 768px) {
    .app-header {
        position: relative;
    }

    .app-header > div {
        min-height: auto;
    }

    .nav-menu {
        width: 100%;
        justify-content: flex-start;
    }

    .godoi-pro-hero {
        border-radius: 14px;
    }

    .godoi-pro-hero-copy {
        padding: 1.5rem;
    }

    .godoi-pro-command-list div {
        grid-template-columns: 1fr;
    }
}

/* Sidebar and operational dashboard - 2026-06-28 */
.app-header-inner {
    max-width: 1480px;
}

.nav-menu .is-active {
    background: #e9f6f9 !important;
    color: var(--godoi-blue) !important;
    box-shadow: inset 0 0 0 1px rgba(7, 136, 166, 0.18);
}

.app-shell {
    display: grid;
    grid-template-columns: 286px minmax(0, 1fr);
    gap: 24px;
    width: min(100%, 1480px);
    margin: 0 auto;
    padding: 24px 16px 40px;
}

.app-sidebar {
    position: sticky;
    top: 94px;
    align-self: start;
    max-height: calc(100vh - 118px);
    overflow: auto;
    border: 1px solid var(--godoi-line);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 251, 253, 0.96)),
        #fff;
    box-shadow: 0 12px 28px rgba(7, 21, 34, 0.07);
    padding: 10px;
}

.app-sidebar-user {
    border: 1px solid rgba(6, 79, 111, 0.10);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(6, 79, 111, 0.08), rgba(7, 136, 166, 0.05)),
        #fff;
    margin-bottom: 10px;
    padding: 18px;
}

.app-sidebar-user span,
.app-sidebar-user small {
    display: block;
    color: #68798b;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.app-sidebar-user strong {
    display: block;
    margin-top: 0.35rem;
    color: var(--godoi-ink);
    font-size: 1rem;
    line-height: 1.25;
}

.app-sidebar-user small {
    margin-top: 0.45rem;
    color: var(--godoi-blue);
}

.app-sidebar-group {
    border-top: 1px solid rgba(204, 217, 226, 0.72);
    padding: 14px 0 12px;
}

.app-sidebar-user + .app-sidebar-group {
    border-top: 0;
    padding-top: 4px;
}

.app-sidebar-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 7px;
    padding: 0 0.55rem;
    color: #718397;
    font-size: 0.69rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    line-height: 1.3;
    text-transform: uppercase;
}

.app-sidebar-heading::before {
    content: "";
    width: 0.38rem;
    height: 0.38rem;
    flex: 0 0 0.38rem;
    border-radius: 999px;
    background: #c9d7e0;
}

.app-sidebar-group.is-active-group .app-sidebar-heading {
    color: var(--godoi-blue);
}

.app-sidebar-group.is-active-group .app-sidebar-heading::before {
    background: linear-gradient(135deg, var(--godoi-cyan), var(--godoi-blue));
    box-shadow: 0 0 0 4px rgba(7, 136, 166, 0.10);
}

.app-sidebar-links {
    display: grid;
    gap: 4px;
}

.app-side-link {
    display: flex;
    align-items: center;
    min-height: 37px;
    border: 1px solid transparent;
    border-radius: 13px;
    color: #2d4054;
    font-size: 0.9rem;
    font-weight: 760;
    letter-spacing: -0.012em;
    line-height: 1.25;
    padding: 0.58rem 0.72rem 0.58rem 0.95rem;
    text-decoration: none;
    transition: background 150ms ease, border-color 150ms ease, color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.app-side-link:hover {
    border-color: rgba(7, 136, 166, 0.15);
    background: #f1f9fb;
    color: var(--godoi-blue);
    transform: translateX(2px);
}

.app-side-link.is-active {
    border-color: rgba(7, 136, 166, 0.22);
    background:
        linear-gradient(90deg, rgba(6, 79, 111, 0.14), rgba(7, 136, 166, 0.08)),
        #f8fdff;
    color: var(--godoi-blue);
    box-shadow: inset 3px 0 0 var(--godoi-cyan), 0 10px 22px rgba(6, 79, 111, 0.08);
}

.app-main-with-sidebar {
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 0 !important;
}

.dashboard-hero,
.dashboard-panel,
.dashboard-checklist {
    border: 1px solid var(--godoi-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 28px rgba(7, 21, 34, 0.065);
}

.dashboard-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 20px;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

.dashboard-hero h1 {
    margin: 0.45rem 0 0;
    color: var(--godoi-ink);
    font-family: "IBM Plex Serif", serif;
    font-size: clamp(2.1rem, 4vw, 3.9rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 1;
}

.dashboard-hero p {
    max-width: 760px;
    margin: 0.95rem 0 0;
    color: #4d5f72;
    line-height: 1.75;
}

.dashboard-kicker {
    margin: 0;
    color: var(--godoi-blue);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dashboard-hero-card {
    align-self: stretch;
    border: 1px solid rgba(6, 79, 111, 0.16);
    border-radius: 14px;
    background: linear-gradient(180deg, #092237, #06314a);
    color: #fff;
    padding: 1.15rem;
}

.dashboard-hero-card span,
.dashboard-hero-card small {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-hero-card strong {
    display: block;
    margin: 0.8rem 0;
    font-size: 1.35rem;
    line-height: 1.2;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.dashboard-stat {
    display: block;
    min-height: 156px;
    border: 1px solid var(--godoi-line);
    border-radius: 14px;
    background: #fff;
    color: var(--godoi-ink);
    padding: 1rem;
    text-decoration: none;
    transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.dashboard-stat:hover {
    border-color: rgba(7, 136, 166, 0.45);
    box-shadow: 0 16px 30px rgba(7, 21, 34, 0.08);
    transform: translateY(-2px);
}

.dashboard-stat span {
    display: block;
    color: #627386;
    font-size: 0.76rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-stat strong {
    display: block;
    margin-top: 0.75rem;
    color: var(--godoi-ink);
    font-size: 2.4rem;
    line-height: 1;
}

.dashboard-stat small {
    display: block;
    margin-top: 0.85rem;
    color: #5b6b7d;
    line-height: 1.5;
}

.dashboard-stat-blue {
    box-shadow: inset 0 4px 0 var(--godoi-blue);
}

.dashboard-stat-cyan {
    box-shadow: inset 0 4px 0 var(--godoi-cyan);
}

.dashboard-stat-gold {
    box-shadow: inset 0 4px 0 var(--godoi-gold);
}

.dashboard-stat-slate {
    box-shadow: inset 0 4px 0 #64748b;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 18px;
    margin-top: 18px;
}

.dashboard-panel {
    padding: clamp(1rem, 2vw, 1.35rem);
}

.dashboard-panel-large {
    min-height: 420px;
}

.dashboard-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.dashboard-panel-head h2 {
    margin: 0.3rem 0 0;
    color: var(--godoi-ink);
    font-size: 1.35rem;
    font-weight: 750;
}

.dashboard-panel-head a {
    color: var(--godoi-blue);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
}

.dashboard-document-list,
.dashboard-actions,
.dashboard-deadline-list {
    display: grid;
    gap: 10px;
}

.dashboard-document,
.dashboard-actions a,
.dashboard-deadline {
    border: 1px solid #e3ebf1;
    border-radius: 12px;
    background: #fbfdfe;
}

.dashboard-document {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 1rem;
    color: inherit;
    padding: 0.95rem;
    text-decoration: none;
    transition: border-color 150ms ease, background 150ms ease;
}

.dashboard-document:hover {
    border-color: rgba(7, 136, 166, 0.45);
    background: #f4fbfd;
}

.dashboard-document span,
.dashboard-document small,
.dashboard-document em {
    display: block;
}

.dashboard-document span {
    color: var(--godoi-cyan);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dashboard-document strong {
    display: block;
    margin-top: 0.25rem;
    color: var(--godoi-ink);
    font-size: 1rem;
    line-height: 1.35;
}

.dashboard-document small {
    margin-top: 0.25rem;
    color: #65778a;
    font-size: 0.84rem;
}

.dashboard-document em {
    width: fit-content;
    border-radius: 999px;
    background: #edf4f7;
    color: #35485a;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    padding: 0.25rem 0.55rem;
}

.dashboard-published {
    color: #047857 !important;
    font-weight: 700;
}

.dashboard-actions a {
    display: block;
    padding: 0.95rem;
    text-decoration: none;
    transition: border-color 150ms ease, transform 150ms ease;
}

.dashboard-actions a:hover {
    border-color: rgba(7, 136, 166, 0.45);
    transform: translateY(-1px);
}

.dashboard-actions strong,
.dashboard-actions span {
    display: block;
}

.dashboard-actions strong {
    color: var(--godoi-ink);
}

.dashboard-actions span {
    margin-top: 0.25rem;
    color: #66788b;
    font-size: 0.88rem;
    line-height: 1.5;
}

.dashboard-deadline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem;
    border-left: 4px solid #9aa8b5;
}

.dashboard-deadline strong,
.dashboard-deadline small {
    display: block;
}

.dashboard-deadline strong {
    color: var(--godoi-ink);
    line-height: 1.35;
}

.dashboard-deadline small {
    margin-top: 0.25rem;
    color: #66788b;
    font-size: 0.82rem;
}

.dashboard-deadline span {
    white-space: nowrap;
    color: #293b4d;
    font-weight: 750;
}

.dashboard-deadline-danger {
    border-left-color: #dc2626;
    background: #fff7f7;
}

.dashboard-deadline-warning {
    border-left-color: #d97706;
    background: #fffaf0;
}

.dashboard-deadline-ok {
    border-left-color: #059669;
    background: #f3fcf8;
}

.dashboard-empty {
    border: 1px dashed #cbd7e2;
    border-radius: 12px;
    background: #f8fbfc;
    color: #607286;
    padding: 1rem;
}

.dashboard-checklist {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 20px;
    margin-top: 18px;
    padding: clamp(1rem, 2vw, 1.35rem);
}

.dashboard-checklist h2 {
    margin: 0.35rem 0 0;
    color: var(--godoi-ink);
    font-size: 1.35rem;
    font-weight: 750;
}

.dashboard-checklist-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.dashboard-checklist-grid span {
    border: 1px solid #e2ebf2;
    border-radius: 10px;
    background: #fbfdfe;
    color: #2e4052;
    font-size: 0.9rem;
    font-weight: 650;
    padding: 0.8rem 0.9rem;
}

@media (max-width: 1180px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .app-sidebar {
        position: static;
        max-height: none;
    }

    .app-sidebar-group {
        display: inline-block;
        width: min(100%, 340px);
        vertical-align: top;
    }

    .dashboard-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    .dashboard-hero,
    .dashboard-grid,
    .dashboard-checklist {
        grid-template-columns: 1fr;
    }

    .dashboard-stats,
    .dashboard-checklist-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-document {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .app-shell {
        padding: 14px 10px 28px;
    }

    .dashboard-stats,
    .dashboard-checklist-grid {
        grid-template-columns: 1fr;
    }
}

/* Public home: clean institutional entry with subtle motion. */
.public-home-shell {
    position: relative;
    isolation: isolate;
}

.public-home-orb {
    position: absolute;
    z-index: -1;
    width: 18rem;
    height: 18rem;
    border-radius: 999px;
    filter: blur(10px);
    opacity: 0.42;
    animation: publicHomeFloat 9s ease-in-out infinite;
}

.public-home-orb-a {
    top: 0;
    right: 8%;
    background: radial-gradient(circle, rgba(16, 183, 216, 0.28), transparent 66%);
}

.public-home-orb-b {
    bottom: 8%;
    left: -4%;
    background: radial-gradient(circle, rgba(214, 168, 79, 0.2), transparent 64%);
    animation-delay: -3s;
}

.public-home-hero {
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 2rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 253, 0.9)),
        radial-gradient(circle at 12% 0%, rgba(16, 183, 216, 0.12), transparent 30rem);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
    animation: publicHomeReveal 620ms ease both;
}

.public-home-copy {
    padding: clamp(1.75rem, 4.5vw, 4.5rem);
}

.public-home-badge {
    display: inline-flex;
    border: 1px solid rgba(8, 145, 178, 0.2);
    border-radius: 999px;
    background: rgba(236, 254, 255, 0.82);
    color: #075985;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    padding: 0.65rem 0.9rem;
    text-transform: uppercase;
    animation: publicHomeFadeUp 520ms ease 120ms both;
}

.public-home-title {
    max-width: 760px;
    margin: 1.8rem 0 0;
    color: #061424;
    font-size: clamp(2.4rem, 6vw, 5.8rem);
    font-weight: 950;
    letter-spacing: -0.065em;
    line-height: 0.96;
    animation: publicHomeFadeUp 560ms ease 210ms both;
}

.public-home-lead {
    max-width: 680px;
    margin: 1.3rem 0 0;
    color: #526276;
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.85;
    animation: publicHomeFadeUp 560ms ease 300ms both;
}

.public-home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.8rem;
    animation: publicHomeFadeUp 560ms ease 390ms both;
}

.public-home-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border-radius: 1rem;
    font-size: 0.94rem;
    font-weight: 900;
    padding: 0.8rem 1.1rem;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.public-home-button:hover {
    transform: translateY(-2px);
}

.public-home-button-primary {
    background: linear-gradient(135deg, #083c54, #047b9c);
    color: #fff;
    box-shadow: 0 18px 32px rgba(8, 60, 84, 0.22);
}

.public-home-button-primary:hover {
    box-shadow: 0 22px 44px rgba(8, 60, 84, 0.28);
}

.public-home-button-secondary {
    border: 1px solid #cbd5e1;
    background: rgba(255, 255, 255, 0.86);
    color: #0f172a;
}

.public-home-button-secondary:hover {
    border-color: #0891b2;
    color: #075985;
}

.public-home-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.8rem;
    animation: publicHomeFadeUp 560ms ease 480ms both;
}

.public-home-trust span {
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.06);
    color: #334155;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 0.45rem 0.75rem;
}

.public-home-panel {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(145deg, rgba(4, 12, 24, 0.98), rgba(8, 60, 84, 0.96)),
        radial-gradient(circle at 20% 10%, rgba(16, 183, 216, 0.22), transparent 22rem);
    color: #fff;
    padding: clamp(1.75rem, 3.5vw, 3rem);
}

.public-home-panel-glow {
    position: absolute;
    inset: -40% -45% auto auto;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(16, 183, 216, 0.34), transparent 62%);
    animation: publicHomePulse 5.5s ease-in-out infinite;
}

.public-home-logo {
    position: relative;
    z-index: 1;
    width: auto;
    height: 4rem;
    border-radius: 1rem;
    background: #fff;
    padding: 0.5rem;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
    animation: publicHomeFadeUp 560ms ease 350ms both;
}

.public-home-panel-content {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.public-home-panel-content div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 1rem;
    animation: publicHomeFadeUp 560ms ease both;
}

.public-home-panel-content div:nth-child(1) {
    animation-delay: 450ms;
}

.public-home-panel-content div:nth-child(2) {
    animation-delay: 540ms;
}

.public-home-panel-content div:nth-child(3) {
    animation-delay: 630ms;
}

.public-home-panel-content p {
    margin: 0;
    color: #a5f3fc;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.public-home-panel-content strong,
.public-home-panel-content span {
    display: block;
}

.public-home-panel-content strong {
    margin-top: 0.55rem;
    color: #fff;
    line-height: 1.35;
}

.public-home-panel-content span {
    margin-top: 0.35rem;
    color: rgba(226, 232, 240, 0.82);
    font-size: 0.88rem;
    line-height: 1.45;
}

.public-home-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.public-home-card {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
    padding: 1.35rem;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
    animation: publicHomeFadeUp 560ms ease both;
}

.public-home-card:hover {
    border-color: rgba(8, 145, 178, 0.34);
    box-shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
    transform: translateY(-3px);
}

.public-home-card span {
    color: #075985;
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.public-home-card h2 {
    margin: 0.6rem 0 0;
    color: #061424;
    font-size: 1.22rem;
    font-weight: 950;
}

.public-home-card p {
    margin: 0.55rem 0 0;
    color: #5b6b7d;
    font-size: 0.94rem;
    line-height: 1.65;
}

.public-home-delay-1 {
    animation-delay: 650ms;
}

.public-home-delay-2 {
    animation-delay: 760ms;
}

.public-home-delay-3 {
    animation-delay: 870ms;
}

@keyframes publicHomeReveal {
    from {
        opacity: 0;
        transform: translateY(18px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes publicHomeFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes publicHomeFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(18px, -16px, 0) scale(1.06);
    }
}

@keyframes publicHomePulse {
    0%,
    100% {
        opacity: 0.42;
        transform: scale(1);
    }
    50% {
        opacity: 0.72;
        transform: scale(1.08);
    }
}

@media (max-width: 960px) {
    .public-home-hero,
    .public-home-cards {
        grid-template-columns: 1fr;
    }

    .public-home-panel {
        border-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-home-shell *,
    .public-home-shell *::before,
    .public-home-shell *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }
}

/* Painel logado amplo - evita corte de tabelas, filtros e colunas de ações. */
.app-header-inner {
    width: calc(100vw - 32px);
    max-width: none !important;
}

.app-shell {
    width: calc(100vw - 32px) !important;
    max-width: none !important;
    grid-template-columns: 286px minmax(0, 1fr);
}

.app-main,
.app-main-with-sidebar {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

.app-main > * {
    max-width: 100%;
    min-width: 0;
}

.app-main .overflow-x-auto {
    max-width: 100%;
    scrollbar-gutter: stable both-edges;
}

@media (max-width: 1180px) {
    .app-header-inner,
    .app-shell {
        width: calc(100vw - 20px) !important;
    }
}

/* Painel logado amplo - revisao PWA 2026-07-13.
   Mantem o menu lateral e libera o conteudo para ocupar a tela inteira,
   evitando corte em tabelas longas, filtros e colunas de acoes. */
.app-header-inner {
    width: calc(100vw - 32px) !important;
    max-width: none !important;
}

.app-shell {
    width: calc(100vw - 32px) !important;
    max-width: none !important;
    grid-template-columns: 286px minmax(0, 1fr) !important;
    align-items: start;
}

.app-main,
.app-main-with-sidebar {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

.app-main > * {
    max-width: 100%;
    min-width: 0;
}

.app-main .overflow-x-auto,
.app-main .data-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable both-edges;
}

.app-main table {
    table-layout: auto;
}

.app-main td,
.app-main th {
    overflow-wrap: anywhere;
    word-break: normal;
    vertical-align: top;
}

.app-main .data-table-wrap table {
    min-width: 1120px;
}

.app-main .file-cell-title,
.app-main .file-cell-reference {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 1180px) {
    .app-header-inner,
    .app-shell {
        width: calc(100vw - 20px) !important;
    }

    .app-shell {
        grid-template-columns: minmax(0, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .app-header-inner,
    .app-shell {
        width: 100vw !important;
    }
}

/* Godoi Clear Pro - identidade visual final do painel logado e area publica. */
.godoi-body {
    background:
        radial-gradient(circle at 12% 0%, rgba(16, 183, 216, 0.10), transparent 28rem),
        radial-gradient(circle at 92% 10%, rgba(214, 168, 79, 0.08), transparent 28rem),
        linear-gradient(180deg, #f8fbfd 0%, #eef4f7 100%) !important;
    color: var(--godoi-ink);
    font-family: "IBM Plex Sans", sans-serif !important;
}

.godoi-body::before {
    display: block !important;
    background-image:
        linear-gradient(rgba(6, 24, 38, 0.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 24, 38, 0.022) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), transparent 76%);
}

.app-header {
    border-bottom: 1px solid rgba(12, 37, 58, 0.10) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 8px 24px rgba(3, 20, 37, 0.045) !important;
}

.app-header::before {
    height: 3px;
    background: linear-gradient(90deg, #06314a, var(--godoi-blue), var(--godoi-cyan));
}

.app-header-inner {
    width: min(calc(100vw - 32px), 1760px) !important;
    max-width: 1760px !important;
}

.brand-mark {
    min-width: 112px !important;
    border: 1px solid rgba(12, 37, 58, 0.08) !important;
    border-radius: 14px !important;
    background: #fff !important;
    box-shadow: 0 10px 24px rgba(6, 24, 38, 0.06) !important;
}

.nav-menu .nav-link,
.nav-menu summary {
    border-radius: 12px !important;
    color: #213244 !important;
    font-weight: 800 !important;
}

.nav-menu .nav-link:hover,
.nav-menu details[open] > summary,
.nav-menu summary:hover,
.nav-menu .is-active {
    background: #e8f6f9 !important;
    color: var(--godoi-blue) !important;
    box-shadow: inset 0 0 0 1px rgba(7, 136, 166, 0.16) !important;
}

.app-shell {
    grid-template-columns: 294px minmax(0, 1fr) !important;
    gap: 28px !important;
    width: min(calc(100vw - 32px), 1760px) !important;
    max-width: 1760px !important;
    padding: 22px 0 42px !important;
}

.app-sidebar {
    top: 88px !important;
    max-height: calc(100vh - 106px) !important;
    border: 1px solid rgba(12, 37, 58, 0.10) !important;
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 16px 40px rgba(7, 21, 34, 0.075) !important;
    padding: 12px !important;
    scrollbar-color: rgba(0, 92, 134, 0.38) transparent;
}

.app-sidebar-user {
    border: 1px solid rgba(16, 183, 216, 0.16) !important;
    border-radius: 18px !important;
    background:
        linear-gradient(135deg, #061826 0%, #06314a 54%, #075c81 100%) !important;
    color: #fff !important;
    margin-bottom: 12px !important;
    padding: 16px !important;
    box-shadow: 0 14px 26px rgba(6, 24, 38, 0.14);
}

.app-sidebar-user span,
.app-sidebar-user small {
    color: rgba(255, 255, 255, 0.72) !important;
}

.app-sidebar-user strong {
    color: #fff !important;
}

.app-sidebar-user small {
    color: #9fe9f6 !important;
}

.app-sidebar-group {
    border-top: 1px solid rgba(204, 217, 226, 0.58) !important;
    padding: 13px 0 11px !important;
}

.app-sidebar-user + .app-sidebar-group {
    border-top: 0 !important;
}

.app-sidebar-heading {
    margin-bottom: 8px !important;
    padding: 0 0.35rem !important;
    color: #73869a !important;
    font-size: 0.68rem !important;
    font-weight: 900 !important;
    letter-spacing: 0.14em !important;
}

.app-sidebar-heading::before {
    width: 0.42rem !important;
    height: 0.42rem !important;
    flex-basis: 0.42rem !important;
    background: #c6d4df !important;
}

.app-sidebar-group.is-active-group .app-sidebar-heading {
    color: var(--godoi-blue) !important;
}

.app-sidebar-links {
    gap: 5px !important;
}

.app-side-link {
    min-height: 40px !important;
    border-radius: 13px !important;
    color: #263a4f !important;
    font-size: 0.91rem !important;
    font-weight: 750 !important;
    letter-spacing: -0.015em !important;
    padding: 0.62rem 0.78rem 0.62rem 0.92rem !important;
}

.app-side-link:hover {
    border-color: rgba(7, 136, 166, 0.18) !important;
    background: #f0f8fb !important;
    color: var(--godoi-blue) !important;
    transform: translateX(2px);
}

.app-side-link.is-active {
    border-color: rgba(7, 136, 166, 0.24) !important;
    background:
        linear-gradient(90deg, rgba(0, 92, 134, 0.14), rgba(16, 183, 216, 0.08)),
        #f8fdff !important;
    color: var(--godoi-blue) !important;
    box-shadow: inset 4px 0 0 var(--godoi-cyan), 0 10px 22px rgba(6, 79, 111, 0.08) !important;
}

.app-main,
.app-main-with-sidebar {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
}

.app-main-with-sidebar {
    overflow-x: auto;
}

.app-main section,
.app-main article,
.app-main form,
.app-main .rounded,
.app-main .dashboard-panel,
.app-main .dashboard-hero,
.app-main .dashboard-checklist {
    border-color: rgba(12, 37, 58, 0.10);
}

.app-main .bg-white,
.dashboard-panel,
.dashboard-hero,
.dashboard-checklist,
.godoi-card {
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 14px 32px rgba(7, 21, 34, 0.07) !important;
}

.app-main h1,
.app-main h2,
.app-main h3 {
    color: #061826;
    letter-spacing: -0.035em;
}

.app-main table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
}

.app-main th {
    background: #eef5f8 !important;
    color: #163046 !important;
    font-weight: 900 !important;
}

.app-main td,
.app-main th {
    border-color: rgba(12, 37, 58, 0.10) !important;
}

.app-main .overflow-x-auto,
.app-main .data-table-wrap {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-gutter: stable both-edges;
}

@media (max-width: 1180px) {
    .app-header-inner,
    .app-shell {
        width: min(calc(100vw - 20px), 100%) !important;
    }

    .app-shell {
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .app-sidebar {
        position: static !important;
        max-height: none !important;
    }

    .app-sidebar-group {
        display: block !important;
        width: 100% !important;
    }
}

@media (max-width: 640px) {
    .app-header-inner,
    .app-shell {
        width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}
