﻿.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.grid-matriz {
    display: grid;
    grid-template-columns: repeat(18, 50px);
    grid-template-rows: repeat(7, 50px) repeat(1, 10px) repeat(1, 50px) repeat(1, 10px) repeat(1, 50px);
    gap: 5px;
    justify-content: center;
}

.elemento {
    border-radius: 6px;
    padding: 4px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 10px;
    transition: 0.2s;
}

    .elemento:hover {
        transform: scale(1.08);
    }

.numero {
    font-size: 10px;
}

.sigla {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(0, 114, 255, 0.08), transparent 28%),
        linear-gradient(180deg, #f7fbfd 0%, #f2f7f9 100%);
    color: #12324a;
}

.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(10, 76, 140, 0.1);
    box-shadow: 0 10px 30px rgba(18, 50, 74, 0.06);
}

.navbar-custom .container {
    max-width: 100%;
}

.navbar-brand strong {
    font-size: 1.65rem;
    font-weight: 900;
    color: #0072ff;
    letter-spacing: 0.08em;
}

.nav-link {
    font-size: 1rem;
    font-weight: 700;
    color: #24506b;
}

.nav-link:hover,
.nav-link:focus {
    color: #0072ff;
}

.home-hero {
    padding: 7.5rem 0 4rem;
    overflow: hidden;
}

.home-hero-surface {
    position: relative;
    overflow: hidden;
    padding: 4rem 1.5rem;
    border-radius: 36px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.22), transparent 26%),
        linear-gradient(120deg, #0072ff 0%, #0098da 45%, #00c853 100%);
    color: #ffffff;
    box-shadow: 0 28px 70px rgba(0, 95, 191, 0.25);
}

.home-hero-surface::before,
.home-hero-surface::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.home-hero-surface::before {
    width: 20rem;
    height: 20rem;
    top: -8rem;
    left: -5rem;
}

.home-hero-surface::after {
    width: 14rem;
    height: 14rem;
    right: 2rem;
    bottom: -5rem;
}

.home-hero-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.home-hero h1,
.home-hero p,
.home-hero-actions {
    position: relative;
    z-index: 1;
}

.home-hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.4rem);
    font-weight: 900;
    line-height: 1.08;
    max-width: 14ch;
    margin: 1.35rem auto 0;
}

.home-hero p {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.92);
}

.home-hero-actions .btn,
.home-cta-panel .btn {
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(11, 29, 44, 0.18);
}

.home-section {
    padding: 5rem 0;
}

.home-section-soft {
    background: linear-gradient(180deg, rgba(233, 244, 251, 0.72), rgba(245, 250, 251, 0.96));
}

.home-proof {
    background:
        linear-gradient(180deg, rgba(233, 244, 251, 0.72), rgba(240, 249, 243, 0.92));
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #12324a;
    margin-bottom: 2.5rem;
}

.info-card {
    height: 100%;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(10, 76, 140, 0.08);
    box-shadow: 0 18px 44px rgba(18, 50, 74, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 54px rgba(18, 50, 74, 0.12);
    border-color: rgba(0, 114, 255, 0.16);
}

.info-card h5 {
    font-size: 1.38rem;
    font-weight: 800;
    color: #12324a;
    margin-bottom: 0.9rem;
}

.info-card p {
    font-size: 1.08rem;
    color: #4d6779;
    margin-bottom: 0;
}

.counter {
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 900;
    background: linear-gradient(90deg, #0072ff, #00c853);
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-matriz-section {
    position: relative;
}

.home-matriz-media,
.home-matriz-copy {
    height: 100%;
    padding: 1.6rem;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(10, 76, 140, 0.08);
    box-shadow: 0 18px 44px rgba(18, 50, 74, 0.08);
}

.home-matriz-media {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 28rem;
}

.home-matriz-media img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.home-matriz-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-matriz-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 1rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 114, 255, 0.08);
    border: 1px solid rgba(0, 114, 255, 0.12);
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f4e8a;
}

.home-matriz-copy .section-title {
    margin-bottom: 1.25rem !important;
    text-align: left;
}

.home-matriz-copy p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4d6779;
}

.faq-item {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 22px;
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(10, 76, 140, 0.08);
    box-shadow: 0 16px 36px rgba(18, 50, 74, 0.06);
    margin-bottom: 1rem;
}

.faq-item h5 {
    font-size: 1.28rem;
    font-weight: 800;
    color: #12324a;
}

.faq-item p {
    font-size: 1.05rem;
    color: #4d6779;
    margin-bottom: 0;
}

.home-faq-more {
    margin-top: 2rem;
}

.home-cta-final {
    padding: 0 0 5rem;
}

.home-cta-panel {
    padding: 3.5rem 1.5rem;
    border-radius: 34px;
    background:
        linear-gradient(120deg, #0072ff 0%, #0098da 44%, #00c853 100%);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 26px 60px rgba(0, 95, 191, 0.2);
}

.home-cta-panel h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 0;
}

.home-footer {
    padding: 0 0 4rem;
}

.home-footer-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1.75rem 2rem;
    border-radius: 28px;
    background: rgba(15, 23, 42, 0.95);
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2);
}

.home-footer-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.85rem;
}

.home-footer-brand strong {
    font-size: 1.35rem;
    letter-spacing: 0.08em;
}

.home-footer-text {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.78);
}

.home-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.35rem;
    justify-content: flex-end;
}

.home-footer-links a {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.home-footer-links a:hover,
.home-footer-links a:focus {
    color: #8fd3ff;
}

.public-page-shell {
    width: min(100%, 72rem);
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.public-page-hero {
    margin-bottom: 1.75rem;
    padding: 2.5rem;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 28%),
        linear-gradient(120deg, #0072ff 0%, #0098da 48%, #00c853 100%);
    color: #ffffff;
    box-shadow: 0 26px 60px rgba(0, 95, 191, 0.18);
}

.public-page-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.public-page-hero h1 {
    margin-top: 1rem;
    margin-bottom: 0.85rem;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
}

.public-page-hero p {
    max-width: 46rem;
    margin: 0;
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.92);
}

.public-page-content {
    display: grid;
    gap: 1.5rem;
}

.public-content-card,
.public-cta-card {
    padding: 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(10, 76, 140, 0.08);
    box-shadow: 0 18px 44px rgba(18, 50, 74, 0.08);
}

.public-content-card h2,
.public-cta-card h2 {
    margin-bottom: 1rem;
    font-size: 1.7rem;
    font-weight: 800;
    color: #12324a;
}

.public-legal-card h2:not(:first-of-type) {
    margin-top: 2rem;
}

.public-legal-card p {
    line-height: 1.75;
    color: #456178;
}

.public-legal-highlight {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #eef7ff;
    border: 1px solid rgba(0, 114, 255, 0.1);
    color: #12324a !important;
    font-weight: 600;
}

.public-faq-list {
    display: grid;
    gap: 1rem;
}

.public-faq-item {
    padding: 1.35rem 1.4rem;
    border-radius: 18px;
    background: #f8fbff;
    border: 1px solid rgba(148, 163, 184, 0.16);
}

.public-faq-item h3 {
    margin-bottom: 0.55rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: #12324a;
}

.public-faq-item p {
      margin: 0;
      line-height: 1.7;
      color: #4d6779;
  }

.public-faq-bullet-list {
    margin: 0.85rem 0 0;
    padding-left: 1.35rem;
    color: #4d6779;
}

.public-faq-bullet-list li {
    margin-bottom: 0.45rem;
    line-height: 1.65;
}
 
  .public-cta-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
    gap: 1.5rem;
    background:
        linear-gradient(135deg, rgba(0, 114, 255, 0.08), rgba(0, 200, 83, 0.08)),
        rgba(255, 255, 255, 0.98);
}

.public-cta-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.public-document-card {
    padding: 2rem;
}

.public-document-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 900;
    color: #12324a;
}

.public-document-section {
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-size: 1.28rem;
    font-weight: 800;
    color: #12324a;
}

.public-document-subsection {
    margin-top: 1rem;
    margin-bottom: 0.45rem;
    margin-left: 1.25rem;
    font-size: 1rem;
    font-weight: 700;
    color: #214a66;
}

.public-document-subsubsection {
    margin-top: 0.85rem;
    margin-bottom: 0.35rem;
    margin-left: 2.5rem;
    font-size: 0.96rem;
    font-weight: 700;
    color: #315a77;
}

.public-document-paragraph {
    margin-bottom: 0.75rem;
    line-height: 1.75;
    color: #24445c;
    font-size: 1rem;
}

.public-document-level-1 {
    margin-left: 2rem;
}

.public-document-level-2 {
    margin-left: 3.25rem;
}

.ext-period-toggle {
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
    gap: 0.35rem;
}

.ext-period-toggle .mud-toggle-item {
    min-width: 9.5rem;
    border: 0 !important;
    border-radius: 999px !important;
    color: #4b5563;
    font-weight: 700;
    letter-spacing: 0.01em;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ext-period-toggle .mud-toggle-item:hover {
    background: rgba(37, 99, 235, 0.08);
    color: #153157;
}

.ext-period-toggle .mud-toggle-item.mud-toggle-item-selected {
    background: linear-gradient(135deg, #153157 0%, #2563eb 100%);
    color: #ffffff;
    box-shadow: 0 10px 26px rgba(37, 99, 235, 0.24);
}

.ext-period-toggle .mud-toggle-item.mud-toggle-item-selected:hover {
    color: #ffffff;
    transform: translateY(-1px);
}

@media (max-width: 991.98px) {
    .navbar-custom {
        padding-top: 0.9rem !important;
        padding-bottom: 0.9rem !important;
    }

    .navbar-custom .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar-brand strong {
        font-size: 1.35rem;
    }

    .navbar-toggler {
        margin-left: auto;
        padding: 0.45rem 0.7rem;
        border: 1px solid rgba(10, 76, 140, 0.12);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.82);
        box-shadow: none;
    }

    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(0, 114, 255, 0.15);
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.97);
        box-shadow: 0 18px 42px rgba(18, 50, 74, 0.12);
    }

    .navbar-nav {
        gap: 0.25rem;
    }

    .navbar-nav .nav-link {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }

    .navbar-collapse .d-flex {
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .navbar-collapse .btn {
        width: 100%;
        margin-right: 0 !important;
    }

    .home-hero {
        padding-top: 6.5rem;
    }

    .home-footer-panel,
    .public-cta-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .home-hero-surface {
        padding: 3rem 1.1rem;
        border-radius: 28px;
    }

    .home-section {
        padding: 4rem 0;
    }

    .info-card,
    .home-matriz-media,
    .home-matriz-copy,
    .faq-item,
    .home-cta-panel,
    .home-footer-panel,
    .public-page-hero,
    .public-content-card,
    .public-cta-card {
        border-radius: 20px;
    }

    .public-page-shell {
        padding-bottom: 3rem;
    }

    .public-page-hero,
    .public-content-card,
    .public-cta-card,
    .home-footer-panel {
        padding: 1.5rem;
    }
}

.dashboard-secondary-text {
    color: #4b5563 !important;
}

.tenant-summary-page .tenant-summary-filter,
.tenant-summary-page .tenant-summary-hero,
.tenant-summary-page .tenant-summary-panel,
.tenant-summary-page .tenant-summary-empty,
.tenant-summary-page .tenant-summary-month-card,
.tenant-summary-page .tenant-summary-kpi {
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.16);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.tenant-summary-page {
    background:
        radial-gradient(circle at top left, rgba(47, 128, 237, 0.08), transparent 24rem),
        radial-gradient(circle at top right, rgba(56, 178, 109, 0.08), transparent 22rem);
}

.tenant-summary-period-chip {
    font-weight: 700;
}

.tenant-summary-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tenant-summary-top-stack,
.tenant-summary-side-stack,
.tenant-summary-top-stack > .mud-paper,
.tenant-summary-side-stack > .mud-paper {
    height: 100%;
}

.tenant-summary-logo {
    width: 4.25rem;
    height: auto;
}

.tenant-summary-title {
    font-weight: 900;
    color: #153157;
}

.tenant-summary-status {
    min-height: 12rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(240, 253, 244, 1) 0%, rgba(232, 250, 240, 0.95) 100%);
}

.tenant-summary-status-label,
.tenant-summary-meta-label,
.tenant-summary-kpi-label {
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #5b6b80 !important;
}

.tenant-summary-status-value {
    font-weight: 900;
    color: #2f9e57;
}

.tenant-summary-status-text {
    color: #46617a;
}

.tenant-summary-meta {
    height: 100%;
    padding: 0.75rem 0.9rem;
    border-radius: 16px;
    background: #f8fbff;
}

.tenant-summary-meta-value {
    font-weight: 700;
    color: #153157;
}

.tenant-summary-panel-title {
    font-weight: 800;
    color: #153157;
}

.tenant-summary-stretch-item {
    display: flex;
}

.tenant-summary-stretch-item > .mud-paper {
    width: 100%;
    height: 100%;
}

.tenant-summary-process-panel,
.tenant-summary-findings-panel,
.tenant-summary-table-panel,
.tenant-summary-actions-panel {
    display: flex;
    flex-direction: column;
}

.tenant-summary-month-list,
.tenant-summary-breakdown-list,
.tenant-summary-actions-list {
    padding-top: 0.35rem;
}

.tenant-summary-month-card .mud-list-item,
.tenant-summary-breakdown-list .mud-list-item,
.tenant-summary-actions-list .mud-list-item {
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
}

.tenant-summary-list-row,
.tenant-summary-action-row {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.tenant-summary-list-value {
    color: #153157;
    font-weight: 800;
}

.tenant-summary-kpi {
    min-height: 12rem;
}

.tenant-summary-kpi-risk-top {
    min-height: 10.5rem;
}

.tenant-summary-kpi-label {
    margin-top: 0.85rem;
    text-transform: uppercase;
}

.tenant-summary-kpi-value {
    margin-top: 0.3rem;
    font-weight: 900;
    color: #142f56;
}

.tenant-summary-risk-wrapper {
    padding-top: 0.4rem;
}

.tenant-summary-risk-meter {
    position: relative;
    height: 0.7rem;
    border-radius: 999px;
    overflow: hidden;
    background: linear-gradient(90deg, #38b26d 0%, #facc15 50%, #ef4444 100%);
}

.tenant-summary-risk-marker {
    position: absolute;
    top: 50%;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    transform: translateY(-50%);
    background: #000000;
    border: 2px solid #153157;
    box-shadow: 0 2px 8px rgba(21, 49, 87, 0.18);
}

.tenant-summary-table .mud-table-cell {
    vertical-align: top;
}

.tenant-summary-panel .apexcharts-canvas,
.tenant-summary-panel .apexcharts-svg {
    max-width: 100%;
}

.tenant-summary-mini-stat {
    height: 100%;
    padding: 1rem;
    border-radius: 16px;
    background: #f8fbff;
}

.tenant-summary-mini-stat .mud-typography-h4 {
    font-weight: 900;
    color: #17325a;
}

.tenant-summary-action-text {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.tenant-summary-empty {
    text-align: center;
}

@media (max-width: 959.98px) {
    .tenant-summary-brand {
        align-items: flex-start;
        flex-direction: column;
    }

    .tenant-summary-status {
        min-height: auto;
    }

    .tenant-summary-kpi {
        min-height: auto;
    }

    .tenant-summary-list-row,
    .tenant-summary-action-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

.login-page {
    min-height: 100vh;
    padding: 2rem 1rem;
    background:
        radial-gradient(circle at top left, rgba(34, 197, 94, 0.18), transparent 28rem),
        radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.18), transparent 30rem),
        linear-gradient(135deg, #eff6ff 0%, #f8fafc 48%, #ecfeff 100%);
}

.login-grid {
    min-height: calc(100vh - 4rem);
    align-items: center;
}

.login-brand-panel,
.login-card {
    border-radius: 28px;
}

.login-brand-panel {
    padding: 2rem;
    color: #ffffff;
    background:
        linear-gradient(160deg, rgba(15, 23, 42, 0.94) 0%, rgba(30, 64, 175, 0.92) 55%, rgba(8, 145, 178, 0.9) 100%);
    box-shadow: 0 28px 80px rgba(15, 23, 42, 0.22);
}

.login-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(148, 163, 184, 0.2);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
}

.login-brand-mark {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.login-brand-logo {
    height: 3.25rem;
    width: auto;
}

.login-brand-name {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.22rem;
}

.login-brand-chip {
    align-self: flex-start;
    color: #e0f2fe !important;
    border-color: rgba(224, 242, 254, 0.45) !important;
}

.login-brand-title {
    color: #ffffff;
    line-height: 1.15;
}

.login-brand-text {
    margin-top: 0.85rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.login-brand-points {
    margin-top: 0.5rem;
}

.login-brand-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
}

.login-submit {
    min-height: 3.25rem;
}

.main-page-card-item {
    display: flex;
}

.main-page-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.main-page-card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.main-page-card-content .mud-icon-button {
    align-self: flex-start;
}

.main-page-card-text {
    flex: 1 1 auto;
}

.main-page-card-actions {
    margin-top: auto;
}

.profile-page .profile-hero,
.profile-page .profile-surface,
.account-page .account-hero,
.account-page .account-surface {
    border-radius: 20px;
}

.profile-page .profile-hero,
.account-page .account-hero {
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.profile-note,
.account-note {
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
}

.account-stat-card {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.account-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.my-plan-page .my-plan-hero,
.my-plan-page .my-plan-surface {
    border-radius: 20px;
}

.my-plan-page .my-plan-hero {
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.my-plan-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.my-plan-stat-card {
    padding: 1rem 1.1rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.my-plan-note {
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 16px;
}

.plan-service-page .plan-service-hero,
.plan-service-page .plan-service-surface {
    border-radius: 20px;
}

.plan-service-page .plan-service-hero {
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.plan-service-tabs .mud-tabs-toolbar {
    padding: 0.5rem 0.5rem 0;
}

.plan-service-card {
    width: 100%;
    min-width: 0;
    border-radius: 18px;
    border: 1px solid rgba(148, 163, 184, 0.18);
    background: #ffffff;
}

.plan-service-card-stack {
    width: 100%;
    align-items: stretch;
}

.plan-service-card .mud-grid-item {
    display: flex;
}

.plan-service-card .mud-grid-item > .plan-service-stat {
    width: 100%;
}

.plan-service-grid .mud-grid-item {
    display: flex;
    min-width: 0;
}

.plan-service-grid .mud-grid-item > .plan-service-card {
    flex: 1 1 auto;
}

.plan-service-carousel-shell {
    padding-top: 0.75rem;
}

.plan-service-carousel-stage {
    position: relative;
    padding-inline: 2.75rem;
}

.plan-service-stat {
    padding: 0.75rem 0.8rem;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.plan-service-price-stat {
    width: 100%;
    padding: 0.95rem 1rem;
}

.plan-service-carousel-card {
    max-width: 100%;
}

.plan-service-value {
    font-size: 0.95rem;
    line-height: 1.2;
    word-break: break-word;
}

.plan-service-reference-value {
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
    opacity: 0.8;
}

.plan-service-price-from,
.plan-service-price-to {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    margin: 0;
}

.plan-service-price-from {
    font-size: 0.88rem;
}

.plan-service-price-from-label {
    font-weight: 600;
    color: #64748b;
}

.plan-service-price-to {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a;
}

.plan-service-price-to-label {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1d4ed8;
}

.plan-service-price-to-value {
    line-height: 1.15;
}

.plan-service-price-stat .mud-divider {
    margin: 0.05rem 0;
}

.plan-service-price-stack {
    gap: 0.35rem;
}

.plan-service-stat-equal {
    min-width: 100%;
}

.plan-service-dots .mud-icon-button {
    padding: 0;
}

.plan-service-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.plan-service-nav-prev {
    left: 0;
}

.plan-service-nav-next {
    right: 0;
}

.plan-service-nav.mud-disabled {
    opacity: 0.45;
    background: rgba(248, 250, 252, 0.92);
}

.boleto-page .boleto-hero,
.boleto-page .boleto-surface {
    border-radius: 20px;
}

.boleto-page .boleto-hero {
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.boleto-tabs .mud-tabs-toolbar {
    padding: 0.5rem 0.5rem 0;
}

.comunicado-index-page .comunicado-index-hero,
.comunicado-index-page .comunicado-index-surface {
    border-radius: 20px;
}

.comunicado-index-page .comunicado-index-hero {
    border: 1px solid rgba(148, 163, 184, 0.18);
}

.comunicado-index-chip {
    font-weight: 600;
}

.comunicado-index-search {
    width: min(100%, 28rem);
}

.comunicado-index-count {
    text-align: right;
}

.comunicado-index-number {
    min-width: 7.5rem;
}

.comunicado-index-teor {
    max-width: 100%;
    line-height: 1.55;
    color: #1f2937;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    word-break: break-word;
}

.comunicado-index-meta-row {
    width: 100%;
}

.comunicado-index-actions {
    min-width: 13rem;
}

.comunicado-index-child-row > td {
    padding: 0 !important;
    background: #f8fafc;
}

.comunicado-index-child-surface {
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 16px;
    background: #ffffff;
}

.comunicado-index-full-text {
    line-height: 1.7;
    color: #1f2937;
    white-space: pre-wrap;
    word-break: break-word;
}

@media (max-width: 960px) {
    .login-page {
        padding: 1.25rem 0.75rem;
    }

    .login-grid {
        min-height: auto;
    }

    .login-brand-panel,
    .login-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .login-brand-title {
        font-size: 2rem;
    }

    .comunicado-index-search {
        width: 100%;
    }

    .comunicado-index-count {
        text-align: left;
    }

    .comunicado-index-actions {
        min-width: 0;
    }

    .comunicado-index-page .mud-table-cell {
        vertical-align: top;
    }
}

.process-detail-page .process-detail-hero {
    border-radius: 24px;
}

.process-detail-tabs .mud-tabs-toolbar {
    padding: 0.5rem 0.5rem 0;
}

.process-detail-tabs .mud-tab {
    min-width: 10.5rem;
    padding-right: 2.75rem;
}

.process-detail-tabs .mud-badge-root {
    overflow: visible;
}

.process-detail-tabs .mud-badge {
    right: 0.75rem;
    top: 0.55rem;
    transform: none;
}

.process-detail-subtabs .mud-tab {
    min-width: 13rem;
}

.process-detail-tramite-card {
    border-radius: 18px;
}

.process-detail-tramite-route {
    width: 100%;
    flex-wrap: nowrap !important;
    gap: 0.5rem;
}

.process-detail-tramite-place {
    flex: 1 1 40%;
    min-width: 0;
}

.process-detail-tramite-label {
    font-weight: 700;
    letter-spacing: 0.02em;
}

.process-detail-tramite-place .mud-typography-body2 {
    white-space: normal;
    word-break: break-word;
}

.process-detail-tramite-arrow {
    flex: 0 1 20%;
    max-width: 20%;
    min-width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.processual-text-content {
    line-height: 1.7;
    word-break: break-word;
}

.processual-text-content strong {
    font-weight: 700;
}

@media (max-width: 959.98px) {
    .process-detail-tabs .mud-tab,
    .process-detail-subtabs .mud-tab {
        min-width: 9rem;
        padding-right: 2.25rem;
    }
}

.infracao-page {
    background: #0f172a;
    color: #fff;
    font-size: 12px;
    font-family: Arial, sans-serif;
}

.infracao-header {
    max-width: 48rem;
    margin: 0 auto;
}

.infracao-subtitle {
    color: rgba(255, 255, 255, 0.78);
    margin-top: 0.5rem;
}

.infracao-surface {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.18);
    border-radius: 24px;
}

.infracao-page .grid-matriz {
    display: grid;
    grid-template-columns: repeat(18, 50px);
    grid-template-rows: repeat(7, 50px) repeat(1, 10px) repeat(1, 50px) repeat(1, 10px) repeat(1, 50px);
    gap: 5px;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.infracao-page .elemento {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 6px;
    padding: 4px;
    text-align: left;
    cursor: pointer;
    box-shadow: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.infracao-page .elemento:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.24);
}

    .infracao-page .elemento .numero {
        font-size: 10px;
        opacity: 1;
        text-align: left;
        width: 100%;
    }

.infracao-page .elemento .sigla {
    font-size: 13px;
    font-weight: 700;
    margin-top: 0;
    line-height: normal;
}

.infracao-legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.infracao-legend-text {
    color: rgba(255, 255, 255, 0.88);
}

.infracao-dialog-card {
    min-height: 140px;
    padding: 1rem;
    border-radius: 18px;
}

.infracao-dialog-heading {
    color: #0f172a;
    font-weight: 700;
}

.infracao-dialog-text {
    color: #334155;
    line-height: 1.6;
}

@media (max-width: 959.98px) {
    .infracao-page .grid-matriz {
        justify-content: flex-start;
    }
}

.cookie-settings-button {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1400;
    width: 3.5rem;
    height: 3.5rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #153157, #2f8fe5);
    color: #ffffff;
    font-size: 1.35rem;
    cursor: pointer;
    box-shadow: 0 18px 36px rgba(21, 49, 87, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.cookie-settings-button:hover,
.cookie-settings-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 22px 44px rgba(21, 49, 87, 0.28);
    filter: brightness(1.03);
}

.cookie-settings-button:focus-visible {
    outline: 3px solid rgba(47, 143, 229, 0.24);
    outline-offset: 3px;
}
