:root {
    --bg: #f8fafc;
    --bg-dark: #020617;
    --card: rgba(255, 255, 255, 0.88);
    --text: #0f172a;
    --muted: #64748b;
    --line: rgba(15, 23, 42, 0.10);
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --green: #16a34a;
    --purple: #7c3aed;
    --shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
    --radius: 28px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .14), transparent 34%),
        radial-gradient(circle at top right, rgba(22, 163, 74, .10), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 45%, #eef2ff 100%);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.bg-orb {
    position: fixed;
    width: 340px;
    height: 340px;
    border-radius: 999px;
    filter: blur(50px);
    opacity: .25;
    pointer-events: none;
    animation: orb 12s ease-in-out infinite alternate;
}

.bg-orb-one {
    background: var(--primary);
    top: -140px;
    left: -120px;
}

.bg-orb-two {
    background: var(--green);
    right: -150px;
    bottom: -130px;
    animation-delay: 1.6s;
}

@keyframes orb {
    to {
        transform: translate3d(40px, 35px, 0) scale(1.08);
    }
}

.site-header {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto 0;
    min-height: 72px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 16px 50px rgba(15, 23, 42, .08);
    position: relative;
    z-index: 5;
}

.site-header.compact {
    margin-top: 16px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 1.18rem;
    letter-spacing: -0.04em;
}

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--green));
    box-shadow: 0 12px 26px rgba(37, 99, 235, .25);
    font-size: .92rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: .94rem;
    transition: .2s ease;
}

.nav a:hover {
    background: #eef2ff;
    color: var(--primary);
}

.hero {
    width: min(1180px, calc(100% - 32px));
    margin: 72px auto 40px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
}

.hero-content {
    animation: fadeUp .8s ease both;
}

.badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: #eff6ff;
    border: 1px solid #dbeafe;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: .9rem;
    margin-bottom: 22px;
}

.badge span {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: var(--green);
    box-shadow: 0 0 0 7px rgba(22, 163, 74, .12);
    animation: pulse 1.7s infinite;
}

@keyframes pulse {
    50% {
        transform: scale(.72);
        opacity: .75;
    }
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(2.7rem, 6vw, 5.8rem);
    line-height: .92;
    letter-spacing: -0.075em;
    margin-bottom: 24px;
}

.hero p {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.75;
    margin-bottom: 28px;
}

.search-card {
    max-width: 760px;
    padding: 18px;
    border-radius: var(--radius);
    background: var(--card);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.search-card.inner {
    max-width: none;
    box-shadow: none;
    background: rgba(255,255,255,.78);
}

.search-card label {
    display: block;
    color: var(--muted);
    font-weight: 800;
    font-size: .9rem;
    margin-bottom: 10px;
}

.search-row {
    display: flex;
    gap: 10px;
}

.search-row input {
    width: 100%;
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0 16px;
    font-size: 1rem;
    outline: none;
    background: white;
    transition: .18s ease;
}

.search-row input:focus {
    border-color: rgba(37, 99, 235, .55);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, .10);
}

.search-row button,
.button-main {
    min-height: 58px;
    border: 0;
    border-radius: 18px;
    padding: 0 22px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(37, 99, 235, .24);
    transition: .18s ease;
    white-space: nowrap;
}

.search-row button:hover,
.button-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(37, 99, 235, .34);
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.search-tags span {
    padding: 8px 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    font-size: .84rem;
    font-weight: 800;
}

.preview-panel {
    padding: 24px;
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(15,23,42,.94), rgba(30,41,59,.92));
    box-shadow: var(--shadow);
    color: white;
    border: 1px solid rgba(255,255,255,.12);
    animation: fadeUp .8s ease .16s both;
}

.preview-search {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    color: #dbeafe;
    overflow: hidden;
}

.typing {
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #bfdbfe;
    animation: typing 4.4s steps(32, end) infinite, caret .7s step-end infinite;
}

@keyframes typing {
    0% { width: 0; }
    50%, 76% { width: 31ch; }
    100% { width: 0; }
}

@keyframes caret {
    50% { border-color: transparent; }
}

.preview-result {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.075);
    border: 1px solid rgba(255,255,255,.10);
    margin-top: 14px;
    animation: floatCard 5s ease-in-out infinite;
}

.preview-result:nth-child(3) {
    animation-delay: .5s;
}

.preview-result:nth-child(4) {
    animation-delay: 1s;
}

.preview-result strong {
    display: block;
    margin-bottom: 6px;
}

.preview-result p {
    color: #cbd5e1;
    line-height: 1.5;
}

@keyframes floatCard {
    50% {
        transform: translateY(-5px);
    }
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 50px auto;
}

.section-title {
    max-width: 720px;
    margin-bottom: 22px;
}

.section-title span,
.page-heading span,
.results-header span,
.result-type {
    display: inline-block;
    color: var(--primary);
    font-weight: 900;
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.section-title h2,
.page-heading h1,
.results-header h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 12px;
}

.section-title p,
.page-heading p {
    color: var(--muted);
    line-height: 1.7;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.features article,
.search-page-card,
.result-card,
.detail-card,
.empty-state,
.alert,
.process-hero {
    background: rgba(255,255,255,.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 16px 60px rgba(15,23,42,.08);
    backdrop-filter: blur(18px);
}

.features article {
    padding: 24px;
    transition: .18s ease;
}

.features article:hover {
    transform: translateY(-4px);
}

.features article span {
    color: var(--green);
    font-weight: 900;
}

.features article h3 {
    margin: 12px 0 8px;
    font-size: 1.25rem;
}

.features article p {
    color: var(--muted);
    line-height: 1.65;
}

.page-shell {
    width: min(1050px, calc(100% - 32px));
    margin: 42px auto;
}

.search-page-card,
.process-hero {
    padding: clamp(22px, 4vw, 38px);
    animation: fadeUp .65s ease both;
}

.small-margin {
    margin-top: 22px;
}

.alert {
    margin-top: 18px;
    padding: 18px;
    color: #991b1b;
    background: #fef2f2;
    border-color: #fecaca;
    font-weight: 800;
}

.results-header {
    margin: 28px 0 14px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: end;
}

.results-header strong {
    padding: 10px 14px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #15803d;
}

.results-list {
    display: grid;
    gap: 14px;
}

.result-card {
    padding: 22px;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    animation: fadeUp .5s ease both;
}

.result-card h3 {
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.result-card h3 a {
    color: #0f172a;
}

.result-card h3 a:hover {
    color: var(--primary);
}

.result-main > p,
.snippet,
.muted,
.long-text {
    color: var(--muted);
    line-height: 1.65;
}

.mini-info {
    margin-top: 10px;
    color: #334155;
    font-size: .95rem;
}

.snippet {
    margin-top: 10px;
}

.open-link {
    align-self: center;
    white-space: nowrap;
    padding: 12px 14px;
    border-radius: 999px;
    color: var(--primary);
    background: #eff6ff;
    font-weight: 900;
}

.empty-state {
    padding: 42px;
    text-align: center;
    margin-top: 20px;
}

.empty-state.big {
    max-width: 680px;
    margin: 70px auto;
}

.empty-state h1 {
    font-size: 5rem;
    letter-spacing: -0.08em;
    color: var(--primary);
}

.empty-state h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.process-hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 12px;
}

.process-hero p {
    color: var(--muted);
    line-height: 1.7;
}

.details-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.detail-card {
    padding: 24px;
    margin-top: 18px;
}

.detail-card.full {
    width: 100%;
}

.detail-card h2 {
    font-size: 1.35rem;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.data-list {
    display: grid;
    gap: 12px;
}

.data-list div {
    padding: 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--line);
}

.data-list dt {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}

.data-list dd {
    font-weight: 800;
}

.people-list {
    display: grid;
    gap: 10px;
}

.people-list div {
    padding: 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--line);
}

.people-list strong,
.people-list span {
    display: block;
}

.people-list span {
    color: var(--muted);
    margin-top: 4px;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline article {
    position: relative;
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid var(--line);
}

.timeline time {
    display: inline-block;
    color: var(--primary);
    font-weight: 900;
    font-size: .88rem;
    margin-bottom: 8px;
}

.timeline h3 {
    margin-bottom: 8px;
}

.timeline p,
.timeline span {
    color: var(--muted);
    line-height: 1.6;
}

.footer {
    width: min(1180px, calc(100% - 32px));
    margin: 44px auto 24px;
    color: var(--muted);
    text-align: center;
    font-size: .92rem;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .site-header {
        border-radius: 24px;
        align-items: flex-start;
        gap: 12px;
        flex-direction: column;
    }

    .nav {
        width: 100%;
        overflow-x: auto;
    }

    .hero {
        margin-top: 42px;
        grid-template-columns: 1fr;
    }

    .search-row,
    .result-card,
    .results-header {
        flex-direction: column;
        align-items: stretch;
    }

    .search-row button {
        width: 100%;
    }

    .features,
    .details-grid {
        grid-template-columns: 1fr;
    }

    .open-link {
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
    }
}
.top-search-header {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    min-height: 74px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
}

.top-search-form {
    height: 56px;
    display: grid;
    grid-template-columns: 110px 1fr 58px;
    background: #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
}

.top-search-form select,
.top-search-form input,
.top-search-form button {
    border: 0;
    background: transparent;
    outline: none;
    font-size: .96rem;
}

.top-search-form select {
    padding: 0 14px;
    border-right: 1px solid rgba(15, 23, 42, .08);
}

.top-search-form input {
    padding: 0 18px;
}

.top-search-form button {
    cursor: pointer;
    font-size: 1.25rem;
    color: #d97706;
}

.search-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 58px auto 30px;
    display: grid;
    grid-template-columns: 190px 1fr 230px;
    gap: 34px;
    align-items: start;
}

.filters-sidebar {
    position: sticky;
    top: 18px;
}

.filters-sidebar h2 {
    font-size: .9rem;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.filter-nav,
.filter-group {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.filter-nav a,
.filter-group a,
.filter-group label {
    color: #334155;
    font-size: .96rem;
}

.filter-nav a.active,
.filter-nav a:hover,
.filter-group a.active,
.filter-group a:hover {
    color: #dc2626;
}

.filter-group h3 {
    font-size: .8rem;
    text-transform: uppercase;
    color: #111827;
    margin-bottom: 4px;
}

.filter-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.35;
    color: #64748b;
}

.results-topline {
    margin-bottom: 24px;
    color: #0f172a;
    text-transform: uppercase;
    font-size: .92rem;
}

.monitor-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    margin-bottom: 26px;
    background: white;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.monitor-card div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-items: center;
}

.monitor-card div span {
    grid-row: span 2;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: #fffbeb;
    border-radius: 10px;
}

.monitor-card p {
    color: #64748b;
    font-size: .88rem;
}

.monitor-card button,
.monitor-button {
    border: 1px solid #cbd5e1;
    background: white;
    color: #334155;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.result-section-title {
    margin: 26px 0 12px;
    color: #64748b;
    font-weight: 900;
    text-transform: uppercase;
    font-size: .78rem;
    letter-spacing: .08em;
}

.search-result-item {
    padding: 0 0 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(15, 23, 42, .12);
}

.search-result-item h2 {
    font-size: 1.18rem;
    line-height: 1.25;
    margin-bottom: 5px;
}

.search-result-item h2 a {
    color: #036579;
    font-weight: 900;
}

.search-result-item h2 a:hover {
    color: #0f766e;
}

.result-url {
    display: block;
    color: #0f172a;
    font-size: .9rem;
    margin-bottom: 10px;
    word-break: break-all;
}

.result-meta {
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.5;
}

.result-snippet {
    color: #0f172a;
    line-height: 1.65;
}

.right-placeholder {
    min-height: 450px;
    background: #ddd;
    display: grid;
    place-items: center;
    color: #94a3b8;
    text-align: center;
}

.right-placeholder div {
    max-width: 150px;
}

.right-placeholder span {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
}

.mobile-search-card {
    display: none;
}

.profile-layout {
    width: min(1050px, calc(100% - 32px));
    margin: 42px auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 34px;
    align-items: start;
}

.notice-card {
    padding: 14px 16px;
    border-radius: 12px;
    background: #fef2f2;
    color: #7f1d1d;
    margin-bottom: 18px;
    font-size: .92rem;
}

.profile-hero-card,
.process-list-card,
.side-card {
    background: white;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.profile-hero-card {
    padding: 28px;
}

.profile-type {
    display: block;
    color: #64748b;
    font-weight: 800;
    margin-bottom: 8px;
}

.profile-hero-card h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: -0.06em;
    margin-bottom: 8px;
}

.profile-doc {
    color: #64748b;
    margin-bottom: 18px;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(15, 23, 42, .10);
    border-bottom: 1px solid rgba(15, 23, 42, .10);
    margin: 20px 0;
}

.profile-stats div {
    min-width: 0;
}

.profile-stats strong {
    display: block;
    font-size: 1.4rem;
    color: #0f172a;
    overflow-wrap: anywhere;
}

.profile-stats span {
    color: #64748b;
    font-size: .86rem;
}

.profile-summary {
    color: #334155;
    line-height: 1.75;
    margin-bottom: 18px;
}

.profile-processes {
    margin-top: 30px;
}

.profile-processes h2 {
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.process-list-card {
    padding: 20px;
    margin-bottom: 16px;
}

.process-status {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #15803d;
    font-size: .78rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.process-list-card h3 {
    font-size: 1.2rem;
    margin-bottom: 14px;
}

.process-list-card h3 a {
    color: #036579;
}

.process-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.process-card-grid div {
    border-left: 3px solid #f59e0b;
    padding-left: 10px;
}

.process-card-grid span {
    display: block;
    color: #64748b;
    font-size: .78rem;
    margin-bottom: 4px;
}

.process-card-grid strong {
    display: block;
    font-size: .9rem;
    color: #0f172a;
}

.profile-sidebar {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 16px;
}

.side-card {
    padding: 18px;
}

.side-card h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.side-card p {
    color: #64748b;
    line-height: 1.65;
    font-size: .92rem;
}

@media (max-width: 980px) {
    .top-search-header {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .search-layout {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }

    .filters-sidebar,
    .right-placeholder {
        display: none;
    }

    .mobile-search-card {
        display: flex;
        gap: 10px;
        margin-bottom: 18px;
    }

    .mobile-search-card input {
        width: 100%;
        min-height: 48px;
        border: 1px solid rgba(15, 23, 42, .12);
        border-radius: 12px;
        padding: 0 12px;
    }

    .mobile-search-card button {
        border: 0;
        border-radius: 12px;
        padding: 0 16px;
        background: var(--primary);
        color: white;
        font-weight: 800;
    }

    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: static;
    }

    .process-card-grid,
    .profile-stats {
        grid-template-columns: 1fr;
    }

    .top-search-form {
        grid-template-columns: 90px 1fr 48px;
    }
}
/* ===== DadosJus visual refresh ===== */

body {
    background:
        radial-gradient(circle at 10% 0%, rgba(37, 99, 235, .10), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(20, 184, 166, .12), transparent 26%),
        linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.dj-topbar {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
    padding: 12px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 12px;
    z-index: 30;
}

.dj-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
    font-weight: 950;
    font-size: 1.12rem;
    letter-spacing: -0.04em;
}

.dj-brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: #fff;
    background:
        linear-gradient(135deg, #0f766e 0%, #2563eb 55%, #7c3aed 100%);
    box-shadow: 0 14px 34px rgba(37, 99, 235, .25);
    font-size: .9rem;
}

.dj-top-search {
    display: grid;
    grid-template-columns: 116px 1fr auto;
    align-items: center;
    min-height: 52px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 18px;
    background: #f1f5f9;
}

.dj-top-search select,
.dj-top-search input,
.dj-top-search button {
    height: 52px;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: .95rem;
}

.dj-top-search select {
    padding: 0 14px;
    border-right: 1px solid rgba(15, 23, 42, .08);
    color: #334155;
}

.dj-top-search input {
    padding: 0 16px;
    color: #0f172a;
}

.dj-top-search button {
    margin-right: 6px;
    height: 40px;
    padding: 0 18px;
    border-radius: 14px;
    background: #0f766e;
    color: #fff;
    font-weight: 900;
    cursor: pointer;
    transition: .2s ease;
}

.dj-top-search button:hover {
    transform: translateY(-1px);
    background: #115e59;
}

.dj-detail-layout {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.dj-detail-main {
    min-width: 0;
}

.dj-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0 0 16px;
    color: #64748b;
    font-size: .9rem;
}

.dj-breadcrumb a {
    color: #0f766e;
    font-weight: 800;
}

.dj-breadcrumb strong {
    color: #0f172a;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.dj-hero-card,
.dj-content-card,
.dj-side-card,
.dj-info-card,
.dj-process-card {
    background: rgba(255, 255, 255, .92);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    backdrop-filter: blur(16px);
}

.dj-hero-card {
    padding: clamp(24px, 4vw, 38px);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
}

.dj-hero-card::after {
    content: "";
    position: absolute;
    inset: auto -80px -120px auto;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(37, 99, 235, .16), transparent 70%);
    pointer-events: none;
}

.dj-status-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.dj-status-pill {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #047857;
    font-size: .82rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.dj-soft-date {
    color: #64748b;
    font-size: .9rem;
    font-weight: 700;
}

.dj-hero-card h1 {
    max-width: 920px;
    margin-bottom: 14px;
    color: #0f172a;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.07em;
    overflow-wrap: anywhere;
}

.dj-hero-summary {
    max-width: 850px;
    color: #334155;
    font-size: 1.02rem;
    line-height: 1.8;
}

.dj-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.dj-primary-button,
.dj-secondary-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 18px;
    font-weight: 950;
    cursor: pointer;
    transition: .2s ease;
}

.dj-primary-button {
    color: white;
    background: linear-gradient(135deg, #0f766e, #2563eb);
    box-shadow: 0 16px 34px rgba(37, 99, 235, .24);
}

.dj-secondary-button {
    color: #0f172a;
    background: white;
    border: 1px solid rgba(15, 23, 42, .14);
}

.dj-primary-button:hover,
.dj-secondary-button:hover {
    transform: translateY(-2px);
}

.dj-info-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.dj-info-card {
    padding: 18px;
    border-radius: 22px;
}

.dj-info-card span {
    display: block;
    color: #64748b;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 8px;
}

.dj-info-card strong {
    display: block;
    color: #0f172a;
    font-size: 1rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.dj-content-card {
    margin-top: 18px;
    padding: clamp(22px, 3vw, 30px);
    border-radius: 28px;
}

.dj-section-heading {
    margin-bottom: 18px;
}

.dj-section-heading span {
    display: inline-block;
    margin-bottom: 7px;
    color: #0f766e;
    font-size: .8rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.dj-section-heading h2 {
    color: #0f172a;
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    letter-spacing: -0.045em;
}

.dj-long-text {
    color: #334155;
    line-height: 1.85;
    white-space: pre-line;
}

.dj-empty-box {
    padding: 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px dashed rgba(15, 23, 42, .16);
}

.dj-empty-box strong {
    display: block;
    margin-bottom: 6px;
    color: #0f172a;
}

.dj-empty-box p {
    color: #64748b;
    line-height: 1.6;
}

.dj-timeline {
    position: relative;
    display: grid;
    gap: 14px;
}

.dj-timeline article {
    position: relative;
    padding: 18px 18px 18px 22px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
}

.dj-timeline article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 18px;
    bottom: 18px;
    width: 4px;
    border-radius: 99px;
    background: linear-gradient(180deg, #0f766e, #2563eb);
}

.dj-timeline time {
    display: inline-flex;
    margin-bottom: 8px;
    color: #0f766e;
    font-size: .84rem;
    font-weight: 950;
}

.dj-timeline h3 {
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 1.05rem;
}

.dj-timeline p,
.dj-timeline span {
    color: #475569;
    line-height: 1.7;
}

.dj-timeline span {
    display: block;
    margin-top: 8px;
    font-size: .88rem;
}

.dj-detail-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 16px;
}

.dj-side-card {
    padding: 20px;
    border-radius: 24px;
}

.dj-side-card h2 {
    margin-bottom: 12px;
    color: #0f172a;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.dj-side-card p,
.dj-muted {
    color: #64748b;
    line-height: 1.65;
    font-size: .94rem;
}

.dj-people-group {
    padding-top: 12px;
    margin-top: 12px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.dj-people-group:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: 0;
}

.dj-people-group h3 {
    margin-bottom: 10px;
    color: #64748b;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.dj-person-mini {
    display: block;
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .06);
    margin-bottom: 8px;
    transition: .2s ease;
}

.dj-person-mini:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 118, 110, .28);
    background: #f0fdfa;
}

.dj-person-mini strong {
    display: block;
    color: #0f172a;
    font-size: .95rem;
    line-height: 1.35;
}

.dj-person-mini span {
    display: block;
    color: #64748b;
    margin-top: 3px;
    font-size: .84rem;
}

.dj-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dj-chip-list a {
    padding: 8px 10px;
    border-radius: 999px;
    background: #eef2ff;
    color: #1d4ed8;
    font-size: .84rem;
    font-weight: 800;
}

.dj-origin-card {
    background: linear-gradient(180deg, #eff6ff, #ffffff);
}

.dj-person-stats {
    margin: 24px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.dj-person-stats article {
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
}

.dj-person-stats strong {
    display: block;
    color: #0f172a;
    font-size: 1.8rem;
    letter-spacing: -0.05em;
}

.dj-person-stats span {
    color: #64748b;
    font-weight: 800;
    font-size: .9rem;
}

.dj-role-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.dj-role-grid article {
    padding: 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
}

.dj-role-grid span {
    display: block;
    min-height: 36px;
    color: #64748b;
    font-size: .85rem;
    font-weight: 800;
}

.dj-role-grid strong {
    display: block;
    color: #0f766e;
    font-size: 1.7rem;
    letter-spacing: -0.04em;
}

.dj-role-grid small {
    color: #64748b;
}

.dj-process-list {
    display: grid;
    gap: 16px;
}

.dj-process-card {
    padding: 20px;
    border-radius: 24px;
}

.dj-process-card-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.dj-process-card-head span {
    color: #047857;
    font-size: .84rem;
    font-weight: 950;
}

.dj-process-card-head a {
    color: #2563eb;
    font-size: .9rem;
    font-weight: 950;
}

.dj-process-card h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
    overflow-wrap: anywhere;
}

.dj-process-card h3 a {
    color: #075985;
}

.dj-process-card h3 a:hover {
    color: #0f766e;
}

.dj-process-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.dj-process-facts div {
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .06);
}

.dj-process-facts span {
    display: block;
    color: #64748b;
    font-size: .76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 5px;
}

.dj-process-facts strong {
    display: block;
    color: #0f172a;
    font-size: .9rem;
    line-height: 1.35;
}

.dj-process-card p {
    color: #475569;
    line-height: 1.7;
    margin-top: 8px;
}

.dj-side-list {
    display: grid;
    gap: 10px;
}

.dj-side-list div {
    padding: 12px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .06);
}

.dj-side-list span {
    display: block;
    color: #64748b;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 5px;
}

.dj-side-list strong {
    display: block;
    color: #0f172a;
}

.dj-footer {
    width: min(1180px, calc(100% - 32px));
    margin: 40px auto 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, .08);
    color: #64748b;
    text-align: center;
    font-size: .9rem;
}

@media (max-width: 1020px) {
    .dj-topbar {
        position: static;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dj-detail-layout {
        grid-template-columns: 1fr;
    }

    .dj-detail-sidebar {
        position: static;
    }

    .dj-info-grid,
    .dj-process-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .dj-role-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dj-topbar {
        width: min(100% - 20px, 1180px);
        margin-top: 10px;
        border-radius: 18px;
    }

    .dj-top-search {
        grid-template-columns: 1fr;
        height: auto;
        padding: 8px;
        gap: 8px;
        background: #f8fafc;
    }

    .dj-top-search select,
    .dj-top-search input,
    .dj-top-search button {
        width: 100%;
        height: 46px;
        border-radius: 12px;
        background: white;
        border: 1px solid rgba(15, 23, 42, .08);
    }

    .dj-top-search button {
        margin: 0;
        background: #0f766e;
    }

    .dj-detail-layout {
        width: min(100% - 20px, 1180px);
        margin-top: 20px;
    }

    .dj-hero-card,
    .dj-content-card,
    .dj-side-card {
        border-radius: 20px;
    }

    .dj-info-grid,
    .dj-person-stats,
    .dj-role-grid,
    .dj-process-facts {
        grid-template-columns: 1fr;
    }

    .dj-action-row {
        flex-direction: column;
    }

    .dj-primary-button,
    .dj-secondary-button {
        width: 100%;
    }
}
/* ===== DadosJus Home Premium ===== */

.dj-home-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 8% 10%, rgba(15, 118, 110, .16), transparent 30%),
        radial-gradient(circle at 88% 6%, rgba(37, 99, 235, .16), transparent 28%),
        radial-gradient(circle at 50% 100%, rgba(124, 58, 237, .10), transparent 34%),
        linear-gradient(180deg, #f8fafc 0%, #eef6ff 52%, #f8fafc 100%);
    color: #0f172a;
}

.dj-home-grid-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
    z-index: -3;
}

.dj-home-orb {
    position: fixed;
    width: 360px;
    height: 360px;
    border-radius: 999px;
    filter: blur(50px);
    opacity: .24;
    pointer-events: none;
    animation: djHomeOrb 12s ease-in-out infinite alternate;
    z-index: -2;
}

.dj-home-orb-one {
    top: -160px;
    left: -110px;
    background: #0f766e;
}

.dj-home-orb-two {
    right: -150px;
    bottom: -150px;
    background: #2563eb;
    animation-delay: 2s;
}

@keyframes djHomeOrb {
    to {
        transform: translate3d(42px, 36px, 0) scale(1.08);
    }
}

.dj-home-header {
    width: min(1180px, calc(100% - 32px));
    margin: 18px auto 0;
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .08);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 14px;
    z-index: 50;
}

.dj-home-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #0f172a;
}

.dj-home-brand span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: white;
    font-weight: 950;
    background: linear-gradient(135deg, #0f766e, #2563eb 58%, #7c3aed);
    box-shadow: 0 14px 34px rgba(37, 99, 235, .26);
}

.dj-home-brand strong {
    font-size: 1.15rem;
    letter-spacing: -0.04em;
}

.dj-home-nav {
    display: flex;
    justify-content: center;
    gap: 6px;
}

.dj-home-nav a {
    padding: 10px 13px;
    border-radius: 999px;
    color: #475569;
    font-size: .93rem;
    font-weight: 800;
    transition: .2s ease;
}

.dj-home-nav a:hover {
    background: #f0fdfa;
    color: #0f766e;
}

.dj-home-header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    color: white;
    background: #0f766e;
    font-size: .9rem;
    font-weight: 950;
    transition: .2s ease;
}

.dj-home-header-cta:hover {
    transform: translateY(-2px);
    background: #115e59;
}

.dj-home-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 78px auto 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: 36px;
    align-items: center;
}

.dj-home-hero-content {
    animation: djHomeFadeUp .8s ease both;
}

.dj-home-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    background: rgba(240, 253, 250, .94);
    border: 1px solid rgba(15, 118, 110, .18);
    color: #0f766e;
    font-size: .88rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 22px;
}

.dj-home-badge span {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #10b981;
    box-shadow: 0 0 0 7px rgba(16, 185, 129, .13);
    animation: djHomePulse 1.8s ease-in-out infinite;
}

@keyframes djHomePulse {
    50% {
        transform: scale(.72);
        opacity: .7;
    }
}

.dj-home-hero h1 {
    max-width: 820px;
    font-size: clamp(2.75rem, 6.8vw, 6.2rem);
    line-height: .91;
    letter-spacing: -0.085em;
    color: #0f172a;
    margin-bottom: 24px;
}

.dj-home-hero-content > p {
    max-width: 710px;
    color: #475569;
    font-size: clamp(1rem, 2vw, 1.18rem);
    line-height: 1.8;
    margin-bottom: 28px;
}

.dj-home-search {
    max-width: 820px;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 26px 80px rgba(15, 23, 42, .12);
    backdrop-filter: blur(18px);
}

.dj-home-search label {
    display: block;
    margin: 0 0 10px 4px;
    color: #64748b;
    font-size: .86rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.dj-home-search div {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 10px;
}

.dj-home-search select,
.dj-home-search input,
.dj-home-search button {
    min-height: 58px;
    border: 1px solid rgba(15, 23, 42, .10);
    border-radius: 18px;
    outline: none;
    font-size: 1rem;
}

.dj-home-search select {
    padding: 0 12px;
    background: #f8fafc;
    color: #334155;
}

.dj-home-search input {
    width: 100%;
    padding: 0 16px;
    background: white;
    color: #0f172a;
    transition: .2s ease;
}

.dj-home-search input:focus {
    border-color: rgba(15, 118, 110, .45);
    box-shadow: 0 0 0 5px rgba(15, 118, 110, .10);
}

.dj-home-search button {
    padding: 0 22px;
    border: 0;
    color: white;
    background: linear-gradient(135deg, #0f766e, #2563eb);
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 16px 34px rgba(37, 99, 235, .24);
    transition: .2s ease;
}

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

.dj-home-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-top: 16px;
    color: #64748b;
    font-size: .9rem;
}

.dj-home-suggestions span {
    font-weight: 800;
}

.dj-home-suggestions a {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 23, 42, .08);
    color: #0f766e;
    font-weight: 850;
    transition: .2s ease;
}

.dj-home-suggestions a:hover {
    transform: translateY(-1px);
    background: #f0fdfa;
}

.dj-home-preview {
    padding: 24px;
    border-radius: 32px;
    background:
        linear-gradient(145deg, rgba(15, 23, 42, .96), rgba(30, 41, 59, .94));
    color: white;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 30px 90px rgba(15, 23, 42, .26);
    animation: djHomeFadeUp .8s ease .16s both;
    overflow: hidden;
    position: relative;
}

.dj-home-preview::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(34, 211, 238, .18);
    filter: blur(8px);
}

.dj-home-preview-top {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #cbd5e1;
    font-size: .88rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.dj-home-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 7px rgba(34, 197, 94, .13);
}

.dj-home-preview-search {
    position: relative;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
    margin-bottom: 14px;
}

.dj-home-typing {
    color: #e0f2fe;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid #bae6fd;
    animation: djHomeTyping 4.2s steps(32, end) infinite, djHomeCaret .7s step-end infinite;
}

@keyframes djHomeTyping {
    0% {
        width: 0;
    }

    50%, 76% {
        width: 31ch;
    }

    100% {
        width: 0;
    }
}

@keyframes djHomeCaret {
    50% {
        border-color: transparent;
    }
}

.dj-home-preview-card {
    position: relative;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(255, 255, 255, .10);
    margin-top: 12px;
    animation: djHomeFloat 5s ease-in-out infinite;
}

.dj-home-preview-card:nth-of-type(2) {
    animation-delay: .5s;
}

.dj-home-preview-card:nth-of-type(3) {
    animation-delay: 1s;
}

.dj-home-preview-card span {
    display: inline-block;
    margin-bottom: 7px;
    color: #93c5fd;
    font-size: .78rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.dj-home-preview-card strong {
    display: block;
    color: #fff;
    margin-bottom: 6px;
    font-size: 1.05rem;
    overflow-wrap: anywhere;
}

.dj-home-preview-card p {
    color: #cbd5e1;
    line-height: 1.55;
    font-size: .94rem;
}

@keyframes djHomeFloat {
    50% {
        transform: translateY(-5px);
    }
}

.dj-home-stats {
    width: min(1180px, calc(100% - 32px));
    margin: 20px auto 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dj-home-stats article {
    padding: 22px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .84);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .07);
    backdrop-filter: blur(16px);
}

.dj-home-stats strong {
    display: block;
    color: #0f172a;
    font-size: 1.12rem;
    margin-bottom: 8px;
}

.dj-home-stats span {
    color: #64748b;
    line-height: 1.6;
}

.dj-home-section,
.dj-home-split,
.dj-home-trust,
.dj-home-final-cta,
.dj-home-footer {
    width: min(1180px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.dj-home-section,
.dj-home-trust {
    margin-top: 70px;
}

.dj-home-section-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.dj-home-section-heading span,
.dj-home-small-label {
    display: inline-block;
    color: #0f766e;
    font-size: .82rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.dj-home-section-heading h2,
.dj-home-split h2,
.dj-home-final-cta h2 {
    color: #0f172a;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1;
    letter-spacing: -0.06em;
    margin-bottom: 14px;
}

.dj-home-section-heading p,
.dj-home-split p,
.dj-home-final-cta p {
    color: #64748b;
    line-height: 1.75;
    font-size: 1.02rem;
}

.dj-home-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dj-home-steps article,
.dj-home-glass-card,
.dj-home-trust-grid article {
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 18px 60px rgba(15, 23, 42, .07);
    backdrop-filter: blur(16px);
}

.dj-home-steps article {
    padding: 24px;
    border-radius: 26px;
    transition: .2s ease;
}

.dj-home-steps article:hover {
    transform: translateY(-4px);
}

.dj-home-steps div {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 16px;
    color: white;
    background: linear-gradient(135deg, #0f766e, #2563eb);
    font-weight: 950;
}

.dj-home-steps h3,
.dj-home-trust-grid h3 {
    color: #0f172a;
    font-size: 1.18rem;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.dj-home-steps p,
.dj-home-trust-grid p {
    color: #64748b;
    line-height: 1.65;
}

.dj-home-split {
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr .82fr;
    gap: 28px;
    align-items: center;
}

.dj-home-source-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.dj-home-source-list div {
    padding: 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(15, 23, 42, .08);
}

.dj-home-source-list strong {
    display: block;
    color: #0f172a;
    margin-bottom: 5px;
}

.dj-home-source-list span {
    color: #64748b;
}

.dj-home-glass-card {
    padding: 28px;
    border-radius: 30px;
}

.dj-home-glass-card h3 {
    color: #0f172a;
    font-size: 1.5rem;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.dj-home-glass-card ul {
    display: grid;
    gap: 12px;
    list-style: none;
}

.dj-home-glass-card li {
    position: relative;
    padding-left: 28px;
    color: #334155;
    line-height: 1.5;
}

.dj-home-glass-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: white;
    background: #0f766e;
    font-size: .78rem;
    font-weight: 950;
}

.dj-home-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.dj-home-trust-grid article {
    padding: 24px;
    border-radius: 26px;
}

.dj-home-final-cta {
    margin-top: 80px;
    padding: clamp(28px, 5vw, 52px);
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(96, 165, 250, .24), transparent 35%),
        linear-gradient(135deg, #0f172a, #164e63);
    color: white;
    text-align: center;
    box-shadow: 0 28px 90px rgba(15, 23, 42, .22);
}

.dj-home-final-cta h2 {
    color: white;
}

.dj-home-final-cta p {
    color: #cbd5e1;
    margin-bottom: 22px;
}

.dj-home-final-cta form {
    max-width: 620px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 10px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .12);
}

.dj-home-final-cta input,
.dj-home-final-cta button {
    min-height: 52px;
    border: 0;
    border-radius: 16px;
    outline: none;
    font-size: 1rem;
}

.dj-home-final-cta input {
    padding: 0 16px;
}

.dj-home-final-cta button {
    padding: 0 20px;
    color: white;
    background: #0f766e;
    font-weight: 950;
    cursor: pointer;
}

.dj-home-footer {
    margin-top: 50px;
    margin-bottom: 28px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(15, 23, 42, .10);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    color: #64748b;
}

.dj-home-footer strong {
    display: block;
    color: #0f172a;
    margin-bottom: 4px;
}

.dj-home-footer p {
    line-height: 1.5;
}

.dj-home-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.dj-home-footer nav a {
    color: #0f766e;
    font-weight: 850;
}

.dj-home-footer > p {
    grid-column: 1 / -1;
    font-size: .9rem;
}

@keyframes djHomeFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 980px) {
    .dj-home-header {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .dj-home-nav {
        justify-content: flex-start;
        overflow-x: auto;
        width: 100%;
        padding-bottom: 2px;
    }

    .dj-home-header-cta {
        width: 100%;
    }

    .dj-home-hero {
        margin-top: 42px;
        grid-template-columns: 1fr;
    }

    .dj-home-stats,
    .dj-home-steps,
    .dj-home-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .dj-home-split {
        grid-template-columns: 1fr;
    }

    .dj-home-footer {
        grid-template-columns: 1fr;
    }

    .dj-home-footer nav {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .dj-home-header,
    .dj-home-hero,
    .dj-home-stats,
    .dj-home-section,
    .dj-home-split,
    .dj-home-trust,
    .dj-home-final-cta,
    .dj-home-footer {
        width: min(100% - 20px, 1180px);
    }

    .dj-home-header {
        position: static;
        margin-top: 10px;
    }

    .dj-home-hero h1 {
        font-size: clamp(2.6rem, 15vw, 4rem);
    }

    .dj-home-search div {
        grid-template-columns: 1fr;
    }

    .dj-home-search select,
    .dj-home-search input,
    .dj-home-search button {
        width: 100%;
    }

    .dj-home-preview {
        border-radius: 24px;
        padding: 18px;
    }

    .dj-home-stats,
    .dj-home-steps,
    .dj-home-trust-grid {
        grid-template-columns: 1fr;
    }

    .dj-home-final-cta form {
        grid-template-columns: 1fr;
    }

    .dj-home-nav a {
        white-space: nowrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dj-home-orb,
    .dj-home-badge span,
    .dj-home-typing,
    .dj-home-preview-card,
    .dj-home-hero-content,
    .dj-home-preview {
        animation: none !important;
    }
}