:root {
    --vhf-sky: #58b8e7;
    --vhf-sky-soft: #d7f1fb;
    --vhf-sand: #c9a06f;
    --vhf-brown: #4d372f;
    --vhf-brown-deep: #2a1d18;
    --vhf-cream: #f7f2eb;
    --vhf-white: #ffffff;
    --vhf-border: rgba(77, 55, 47, 0.12);
    --vhf-shadow: 0 24px 60px rgba(42, 29, 24, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--vhf-brown-deep);
    background:
        radial-gradient(circle at top left, rgba(88, 184, 231, 0.18), transparent 30%),
        linear-gradient(180deg, #f9f6f0 0%, #f4fbfe 48%, #f8f2eb 100%);
    font-family: "Plus Jakarta Sans", sans-serif;
}

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

img {
    max-width: 100%;
}

.main-container {
    flex: 1 0 auto;
    min-height: 0;
}

.site-shell {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: fixed;
    z-index: 0;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(10px);
}

.site-shell::before {
    top: -120px;
    right: -100px;
    width: 340px;
    height: 340px;
    background: rgba(88, 184, 231, 0.16);
}

.site-shell::after {
    bottom: 10%;
    left: -120px;
    width: 300px;
    height: 300px;
    background: rgba(201, 160, 111, 0.14);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    backdrop-filter: blur(18px);
    background: rgba(249, 246, 240, 0.86);
    border-bottom: 1px solid rgba(77, 55, 47, 0.08);
}

.site-nav {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    border:0;
    box-shadow: 1px 1px 1px #ccc;
}

.site-subnav {
    border-top: 1px solid rgba(77, 55, 47, 0.06);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(246, 242, 236, 0.88));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.site-subnav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-subnav-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.7rem;
    padding: 0.8rem 0 0.95rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.site-subnav-row::-webkit-scrollbar {
    display: none;
}

.site-subnav-link {
    border: 0;
    white-space: nowrap;
    border-radius: 999px;
    min-height: 42px;
    padding: 0.62rem 1.05rem;
    background: rgba(255, 255, 255, 0.76);
    color: rgba(77, 55, 47, 0.86);
    border: 1px solid rgba(77, 55, 47, 0.09);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    box-shadow: 0 10px 18px rgba(42, 29, 24, 0.05);
    transition: 0.2s ease;
}

.site-subnav-link:hover {
    background: rgba(88, 184, 231, 0.12);
    color: var(--vhf-brown);
    border-color: rgba(88, 184, 231, 0.18);
}

.site-subnav-link.is-active {
    background: linear-gradient(135deg, var(--vhf-sky), #7dd2f4);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 28px rgba(88, 184, 231, 0.22);
}

.site-profile-inline {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 0 0 auto;
    margin-left: 0.5rem;
    min-width: 0;
}

.site-profile-inline-copy {
    color: rgba(77, 55, 47, 0.84);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.site-profile-inline-logout {
    color: var(--vhf-brown);
    font-size: 0.84rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
}

.site-profile-inline-logout:hover {
    color: var(--vhf-brown-deep);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 0.95rem;
}

.brand-lockup img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(88, 184, 231, 0.18));
}

.brand-eyebrow {
    display: block;
    color: rgba(77, 55, 47, 0.72);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.brand-name {
    display: block;
    margin-top: 0.1rem;
    color: var(--vhf-brown);
    font-family: "Marcellus", serif;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    position: relative;
    color: rgba(77, 55, 47, 0.78);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding-right: 1rem;
    padding-left: 1rem;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    bottom: 0.35rem;
    width: calc(100% - 2rem);
    height: 2px;
    transform: scaleX(0);
    transform-origin: center;
    background: linear-gradient(90deg, var(--vhf-sand), var(--vhf-sky));
    transition: transform 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.is-active {
    color: var(--vhf-brown);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.is-active::after {
    transform: scaleX(1);
}

.site-outline-btn,
.site-primary-btn {
    border-radius: 999px;
    padding: 0.85rem 1.35rem;
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-primary-btn {
    color: var(--vhf-white);
    background: linear-gradient(135deg, var(--vhf-brown), #765549);
    box-shadow: 0 18px 36px rgba(77, 55, 47, 0.2);
}

.site-primary-btn:hover {
    color: var(--vhf-white);
    transform: translateY(-2px);
}

.site-outline-btn {
    border: 1px solid rgba(88, 184, 231, 0.35);
    color: var(--vhf-brown);
    background: rgba(255, 255, 255, 0.72);
}

.site-outline-btn:hover {
    color: var(--vhf-brown);
    background: rgba(88, 184, 231, 0.12);
    transform: translateY(-2px);
}

.hero-section,
.site-section,
.footer-shell {
    position: relative;
    z-index: 1;
}

.hero-section {
    padding: 1.5rem 0 2rem;
}

.hero-grid {
    align-items: center;
}

.hero-copy {
    padding-right: 1.5rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--vhf-brown);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.section-eyebrow::before {
    content: "";
    width: 42px;
    height: 1px;
    background: linear-gradient(90deg, var(--vhf-sand), var(--vhf-sky));
}

.hero-title,
.section-title,
.cta-title,
.placeholder-title {
    color: var(--vhf-brown-deep);
    font-family: "Marcellus", serif;
    font-weight: 400;
    line-height: 1.08;
}

.hero-title {
    margin: 1.2rem 0 1.35rem;
    font-size: clamp(2.9rem, 6vw, 5rem);
}

.hero-text,
.section-lead,
.info-copy,
.placeholder-text {
    color: rgba(42, 29, 24, 0.75);
    font-size: 1.02rem;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.4rem;
}

.hero-note {
    padding: 1.1rem 1.15rem;
    border: 1px solid rgba(77, 55, 47, 0.08);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 40px rgba(42, 29, 24, 0.06);
}

.hero-note strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--vhf-brown);
    font-size: 1.2rem;
}

.hero-note span {
    display: block;
    color: rgba(42, 29, 24, 0.72);
    font-size: 0.85rem;
    line-height: 1.5;
}

.hero-visual {
    position: relative;
}

.hero-card,
.glass-card,
.feature-card,
.portal-card,
.info-card,
.cta-panel,
.placeholder-card {
    border: 1px solid var(--vhf-border);
    border-radius: 1.6rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--vhf-shadow);
}

.hero-card {
    position: relative;
    padding: 1rem;
    overflow: hidden;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto -40px -80px auto;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(88, 184, 231, 0.28), transparent 70%);
}

.hero-logo-wrap {
    padding: 0.95rem;
    border-radius: 1.3rem;
    background: linear-gradient(145deg, rgba(88, 184, 231, 0.1), rgba(201, 160, 111, 0.15));
}

.hero-logo-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.floating-chip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 999px;
    color: var(--vhf-brown);
    font-size: 0.88rem;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 36px rgba(42, 29, 24, 0.12);
}

.chip-top {
    top: -1rem;
    right: 1.2rem;
}

.chip-bottom {
    left: -1rem;
    bottom: 1.5rem;
}

.site-section {
    padding: 1.75rem 0;
}

.section-head {
    margin-bottom: 3rem;
}

.section-title {
    margin: 1rem 0 1.1rem;
    font-size: clamp(1.3rem, 3vw, 3rem);
}

.glass-card,
.feature-card,
.portal-card,
.info-card {
    height: 100%;
    padding: 1.8rem;
}

.glass-card {
    backdrop-filter: blur(12px);
}

.mini-icon,
.feature-icon,
.portal-icon,
.info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 1rem;
    margin-bottom: 1.25rem;
    color: var(--vhf-brown);
    background: linear-gradient(135deg, rgba(88, 184, 231, 0.24), rgba(201, 160, 111, 0.24));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.card-title {
    margin-bottom: 0.85rem;
    color: var(--vhf-brown-deep);
    font-family: "Marcellus", serif;
    font-size: 1.6rem;
    font-weight: 400;
}

.card-copy {
    margin-bottom: 0;
    color: rgba(42, 29, 24, 0.72);
    line-height: 1.8;
}

.feature-list,
.portal-list,
.info-list,
.contact-list {
    margin: 1.15rem 0 0;
    padding-left: 0;
    list-style: none;
}

.feature-list li,
.portal-list li,
.info-list li,
.contact-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.7rem;
    color: rgba(42, 29, 24, 0.76);
    line-height: 1.7;
}

.feature-list li::before,
.portal-list li::before,
.info-list li::before,
.contact-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vhf-sand), var(--vhf-sky));
}

.showcase-panel {
    padding: 2rem;
    border-radius: 1.8rem;
    background:
        linear-gradient(135deg, rgba(77, 55, 47, 0.96), rgba(65, 46, 39, 0.9)),
        linear-gradient(135deg, rgba(88, 184, 231, 0.16), rgba(201, 160, 111, 0.14));
    color: #f9f6f0;
    box-shadow: var(--vhf-shadow);
}

.showcase-panel h3 {
    margin-bottom: 0.9rem;
    color: #ffffff;
    font-family: "Marcellus", serif;
    font-size: 2rem;
    font-weight: 400;
}

.showcase-panel p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
}

.institutional-hero {
    position: relative;
    z-index: 1;
    padding: 1.25rem 0 0.75rem;
}

.institutional-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(220px, 380px);
    gap: 1.5rem;
    align-items: center;
    min-height: min(430px, calc(100vh - 190px));
}

.institutional-copy {
    max-width: 680px;
}

.institutional-logo-panel {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(1.25rem, 3vw, 2.2rem);
    border: 1px solid rgba(77, 55, 47, 0.1);
    border-radius: 2rem;
    background:
        radial-gradient(circle at 24% 18%, rgba(88, 184, 231, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 236, 225, 0.78));
    box-shadow: 0 30px 80px rgba(42, 29, 24, 0.14);
}

.institutional-logo-panel::before {
    content: "";
    position: absolute;
    inset: auto -18% -24% 22%;
    z-index: -1;
    height: 52%;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(88, 184, 231, 0.18), rgba(201, 160, 111, 0.2), rgba(77, 55, 47, 0.12));
    transform: rotate(-8deg);
}

.institutional-logo-panel::after {
    content: "";
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    width: min(42%, 170px);
    height: 0.5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--vhf-sky), var(--vhf-sand), var(--vhf-brown));
    opacity: 0.86;
}

.institutional-logo-panel img {
    position: relative;
    z-index: 1;
    width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(42, 29, 24, 0.12));
}

.institutional-summary .section-head {
    margin-bottom: 1.6rem;
}

.institutional-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.institutional-item {
    min-height: 220px;
    padding: 1.35rem;
    border: 1px solid rgba(77, 55, 47, 0.09);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 16px 36px rgba(42, 29, 24, 0.06);
}

.institutional-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    margin-bottom: 1rem;
    border-radius: 0.95rem;
    color: var(--vhf-brown);
    background: linear-gradient(135deg, rgba(88, 184, 231, 0.22), rgba(201, 160, 111, 0.22));
}

.institutional-item h3 {
    margin-bottom: 0.55rem;
    color: var(--vhf-brown-deep);
    font-family: "Marcellus", serif;
    font-size: 1.35rem;
}

.institutional-item p {
    margin: 0;
    color: rgba(42, 29, 24, 0.72);
    line-height: 1.7;
}

.institutional-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.8rem;
    border-radius: 1.2rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(42, 29, 24, 0.96), rgba(77, 55, 47, 0.9)),
        linear-gradient(135deg, rgba(88, 184, 231, 0.2), rgba(201, 160, 111, 0.18));
    box-shadow: var(--vhf-shadow);
}

.institutional-band .section-title,
.institutional-band .section-lead,
.institutional-band .section-eyebrow {
    color: #fff;
}

.laundry-page {
    position: relative;
    z-index: 1;
    padding: 1.25rem;
}

.laundry-shell {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 1rem;
    align-items: stretch;
}

.laundry-status-panel,
.laundry-action-panel {
    min-height: auto;
    border: 1px solid rgba(77, 55, 47, 0.1);
    border-radius: 1.35rem;
    box-shadow: var(--vhf-shadow);
}

.laundry-status-panel {
    position: relative;
    overflow: hidden;
    padding: 1.35rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(42, 29, 24, 0.94), rgba(77, 55, 47, 0.88)),
        linear-gradient(135deg, rgba(88, 184, 231, 0.24), rgba(201, 160, 111, 0.18));
}

.laundry-status-panel.is-free {
    background:
        linear-gradient(135deg, rgba(34, 91, 91, 0.94), rgba(77, 55, 47, 0.86)),
        linear-gradient(135deg, rgba(88, 184, 231, 0.24), rgba(201, 160, 111, 0.18));
}

.laundry-status-panel::after {
    content: "\f553";
    position: absolute;
    right: -0.6rem;
    bottom: -2.4rem;
    color: rgba(255, 255, 255, 0.08);
    font-family: "Font Awesome 6 Free";
    font-size: 10rem;
    font-weight: 900;
    line-height: 1;
}

.laundry-status-top,
.laundry-user-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.laundry-status-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.laundry-status-icon {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.85rem;
    color: #fff;
    font-size: 1.05rem;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.laundry-status-panel .section-eyebrow,
.laundry-status-panel .hero-title,
.laundry-status-panel .hero-text {
    color: #fff;
}

.laundry-status-panel .hero-title {
    margin: 0;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.laundry-status-panel .hero-text {
    max-width: 520px;
    margin-top: 0.65rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.laundry-status-pill {
    display: inline-flex;
    flex: none;
    align-items: center;
    justify-content: center;
    min-height: 2.1rem;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.laundry-current-use {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.35rem;
    max-width: 360px;
    margin-top: 1rem;
    padding: 0.95rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.laundry-current-use span,
.laundry-current-use small,
.laundry-user-line span,
.laundry-user-line small {
    color: rgba(255, 255, 255, 0.76);
}

.laundry-current-use strong {
    color: #fff;
    font-size: 1.25rem;
}

.laundry-action-panel {
    padding: 0.85rem;
    background: rgba(255, 255, 255, 0.78);
}

.laundry-login-card {
    height: 100%;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(77, 55, 47, 0.08);
}

.laundry-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.laundry-compact-form {
    display: grid;
    grid-template-columns: minmax(100px, 0.75fr) minmax(150px, 1fr) auto;
    gap: 0.75rem;
    align-items: end;
}

.laundry-compact-form .site-primary-btn {
    min-height: 48px;
    padding-inline: 1.35rem;
}

.laundry-user-line {
    padding: 1rem;
    border-radius: 1rem;
    color: #fff;
    background: linear-gradient(135deg, var(--vhf-brown), #765549);
}

.laundry-user-line strong {
    display: block;
    color: #fff;
    font-size: 1.35rem;
}

.laundry-start-btn,
.laundry-finish-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    min-height: 4.4rem;
    border: 0;
    border-radius: 1rem;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 900;
    box-shadow: 0 18px 36px rgba(42, 29, 24, 0.16);
}

.laundry-start-btn {
    background: linear-gradient(135deg, #1f8a70, var(--vhf-sky));
}

.laundry-finish-btn {
    background: linear-gradient(135deg, #b5473e, var(--vhf-sand));
}

.laundry-blocked {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    color: var(--vhf-brown-deep);
    background: rgba(201, 160, 111, 0.16);
    border: 1px solid rgba(201, 160, 111, 0.24);
}

.laundry-blocked i {
    color: var(--vhf-brown);
    font-size: 1.5rem;
}

.laundry-blocked span {
    display: block;
    margin-top: 0.2rem;
    color: rgba(42, 29, 24, 0.72);
}

.laundry-log-panel {
    margin-top: 1.25rem;
    padding: 1.25rem;
    border: 1px solid rgba(77, 55, 47, 0.1);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--vhf-shadow);
}

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

.laundry-log-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.3rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    color: var(--vhf-brown);
    font-size: 0.82rem;
    font-weight: 900;
    background: rgba(88, 184, 231, 0.12);
    border: 1px solid rgba(88, 184, 231, 0.2);
}

.laundry-log-table th {
    color: rgba(77, 55, 47, 0.68);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.laundry-log-table td {
    color: rgba(42, 29, 24, 0.78);
}

/* Estilos para a lista de histÃ³rico mobile */
.laundry-log-mobile {
    display: grid;
    gap: 0.75rem;
}

.laundry-mobile-item {
    padding: 0.85rem;
    border-radius: 0.85rem;
    background: rgba(249, 246, 240, 0.75);
    border: 1px solid rgba(77, 55, 47, 0.08);
}

.laundry-mobile-apto {
    font-weight: 800;
    color: var(--vhf-brown-deep);
    font-size: 0.95rem;
}

.laundry-mobile-duracao {
    font-size: 0.82rem;
    color: var(--vhf-brown);
}

.laundry-mobile-times {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(42, 29, 24, 0.72);
}

.laundry-mobile-times small {
    color: rgba(77, 55, 47, 0.6);
    font-weight: 700;
}

.laundry-log-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.laundry-log-status.is-running {
    color: #7a322c;
    background: rgba(181, 71, 62, 0.12);
}

.laundry-log-status.is-done {
    color: #1f6b56;
    background: rgba(31, 138, 112, 0.12);
}

.schedule-grid {
    display: grid;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.schedule-item strong {
    display: block;
    color: #ffffff;
    font-size: 1rem;
}

.schedule-item span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.88rem;
}

.status-badge {
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.status-free {
    color: #173b2b;
    background: #d6f5e3;
}

.status-busy {
    color: #f9f6f0;
    background: rgba(201, 160, 111, 0.8);
}

.registration-preview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.registration-field {
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(77, 55, 47, 0.1);
}

.registration-field span {
    display: block;
    margin-bottom: 0.32rem;
    color: rgba(77, 55, 47, 0.72);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.registration-field strong {
    color: var(--vhf-brown);
    font-size: 0.95rem;
}

.cta-panel {
    padding: 2.25rem;
    background:
        linear-gradient(140deg, rgba(88, 184, 231, 0.14), rgba(255, 255, 255, 0.9)),
        rgba(255, 255, 255, 0.9);
}

.cta-title {
    margin-bottom: 0.75rem;
    font-size: clamp(1.9rem, 4vw, 3rem);
}

.cta-copy {
    margin-bottom: 0;
    color: rgba(42, 29, 24, 0.74);
    line-height: 1.85;
}

.footer-shell {
    flex-shrink: 0;
    padding: 10px;
}

.footer-bar {
    /*display: flex;*/
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(77, 55, 47, 0.1);
}

.footer-note {
    color: rgba(42, 29, 24, 0.68);
    font-size: 0.94rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links a {
    color: rgba(77, 55, 47, 0.78);
    font-size: 0.9rem;
    font-weight: 700;
}

.placeholder-section {
    padding: 5rem 0;
}

.placeholder-card {
    padding: 2.4rem;
}

.placeholder-title {
    margin-bottom: 1rem;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.access-page {
    padding: 1.5rem 0 3rem;
}

.access-card {
    padding: 2.2rem;
}

.access-card .form-control {
    min-height: 56px;
    border: 1px solid rgba(77, 55, 47, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
}

.access-card .form-control:focus {
    border-color: rgba(88, 184, 231, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(88, 184, 231, 0.12);
}

.access-meta {
    margin-top: 1rem;
    color: rgba(42, 29, 24, 0.68);
    line-height: 1.8;
}

.access-hero {
    margin-bottom: 1rem;
}

.access-panel {
    padding: 1.8rem;
}

.access-panel .form-control,
.access-panel .form-select,
.access-panel textarea {
    min-height: 54px;
    border: 1px solid rgba(77, 55, 47, 0.12);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.94);
}

.access-panel textarea {
    min-height: 120px;
}

.access-panel .form-control:focus,
.access-panel .form-select:focus,
.access-panel textarea:focus {
    border-color: rgba(88, 184, 231, 0.5);
    box-shadow: 0 0 0 0.2rem rgba(88, 184, 231, 0.12);
}

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

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    margin-top: 1rem;
}

.dashboard-grid .info-card {
    display: grid;
    grid-template-columns: 2rem 1fr;
    grid-template-areas:
        "icon title"
        "icon value";
    align-items: center;
    gap: 0.15rem 0.65rem;
    padding: 0.72rem 0.82rem;
    border-radius: 1rem;
}

.dashboard-grid .info-icon {
    grid-area: icon;
    width: 2rem;
    height: 2rem;
    margin: 0;
    border-radius: 0.7rem;
}

.dashboard-grid .card-title {
    grid-area: title;
    margin: 0;
    font-size: 0.84rem;
    line-height: 1.2;
}

.dashboard-grid .card-copy {
    grid-area: value;
    font-size: 0.78rem;
    line-height: 1.25;
}

.dashboard-grid .dashboard-number {
    grid-area: value;
    font-size: 1.18rem;
    line-height: 1;
}

.access-section {
    display: none;
}

.access-section.is-active {
    display: block;
}

.dashboard-number {
    margin: 0;
    color: var(--vhf-brown);
    font-family: "Marcellus", serif;
    font-size: 1.65rem;
    line-height: 1;
}

.resource-grid,
.finance-stack {
    display: grid;
    gap: 1rem;
}

.resource-board,
.finance-card {
    padding: 1.25rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(77, 55, 47, 0.08);
}

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

.resource-head h3,
.finance-head h3 {
    margin: 0;
    color: var(--vhf-brown-deep);
    font-family: "Marcellus", serif;
    font-size: 1.35rem;
}

.resource-head span,
.finance-head span,
.finance-head strong {
    color: rgba(42, 29, 24, 0.72);
}

.finance-head-report {
    align-items: center;
}

.finance-head-side {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.finance-head strong {
    color: var(--vhf-brown);
    font-size: 1.2rem;
}

.booking-list,
.timeline-list {
    display: grid;
    gap: 0.85rem;
}

.booking-rule-note {
    display: none;
    margin-top: 0.2rem;
    padding: 0.85rem 0.95rem;
    border-radius: 0.95rem;
    background: rgba(88, 184, 231, 0.08);
    border: 1px solid rgba(88, 184, 231, 0.12);
    color: rgba(42, 29, 24, 0.74);
    font-size: 0.88rem;
    line-height: 1.5;
}

.booking-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(88, 184, 231, 0.1), rgba(255, 255, 255, 0.95));
    border: 1px solid rgba(88, 184, 231, 0.14);
}

.booking-item strong,
.timeline-item strong {
    display: block;
    color: var(--vhf-brown-deep);
}

.booking-item span,
.timeline-item span,
.timeline-item small {
    display: block;
    color: rgba(42, 29, 24, 0.68);
}

.booking-item small {
    color: var(--vhf-brown);
    font-weight: 700;
}

.access-table th,
.access-table td {
    white-space: nowrap;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 0.35rem 0.8rem;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.status-chip-ok {
    background: #d7f5e5;
    color: #1a6541;
}

.status-chip-muted {
    background: #ece7e1;
    color: #73584c;
}

.status-chip-warning {
    background: #fff1d8;
    color: #93620b;
}

.status-chip-action {
    text-decoration: none;
    background: var(--vhf-sky);
    color: #0f4560;
    box-shadow: 0 10px 18px rgba(88, 184, 231, 0.18);
}

.status-chip-action:hover {
    color: #0f4560;
    transform: translateY(-1px);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 1rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vhf-sand), var(--vhf-sky));
    box-shadow: 0 0 0 6px rgba(88, 184, 231, 0.1);
}

.timeline-item p,
.finance-summary {
    margin: 0.65rem 0 0;
    color: rgba(42, 29, 24, 0.76);
    line-height: 1.75;
}

.finance-totals {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.finance-totals div {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(88, 184, 231, 0.08);
    border: 1px solid rgba(88, 184, 231, 0.1);
}

.finance-group + .finance-group {
    margin-top: 1.4rem;
}

.finance-group-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.finance-group-head h3 {
    margin: 0;
    color: var(--vhf-brown-deep);
    font-family: "Marcellus", serif;
    font-size: 1.15rem;
}

.finance-group-head span {
    color: rgba(42, 29, 24, 0.62);
    font-size: 0.85rem;
}

.boleto-card {
    gap: 1rem;
}

.boleto-head {
    margin-bottom: 0.85rem;
}

.boleto-tag-row {
    margin-bottom: 0.55rem;
}

.boleto-breakdown {
    margin: 0.2rem 0 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(249, 246, 240, 0.95);
    border: 1px solid rgba(77, 55, 47, 0.08);
}

.boleto-breakdown ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.boleto-breakdown li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(77, 55, 47, 0.08);
    color: rgba(42, 29, 24, 0.76);
}

.boleto-breakdown li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.boleto-breakdown strong {
    white-space: nowrap;
    color: var(--vhf-brown-deep);
}

.boleto-head-side {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.65rem;
}

.boleto-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.3rem;
}

.boleto-code {
    margin-top: 1rem;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    background: rgba(88, 184, 231, 0.08);
    border: 1px solid rgba(88, 184, 231, 0.14);
}

.boleto-code small,
.boleto-code strong {
    display: block;
}

.boleto-code small {
    margin-bottom: 0.35rem;
    color: rgba(42, 29, 24, 0.62);
}

.boleto-code strong {
    color: var(--vhf-brown-deep);
    font-size: 0.92rem;
    line-height: 1.6;
    word-break: break-word;
}

.boleto-pix-qr {
    display: inline-flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.9rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(77, 55, 47, 0.1);
}

.boleto-pix-qr small {
    color: rgba(42, 29, 24, 0.62);
}

.boleto-pix-qr img {
    width: 160px;
    max-width: 100%;
    height: auto;
    border-radius: 0.8rem;
}

.finance-totals span {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(42, 29, 24, 0.66);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.finance-totals strong {
    color: var(--vhf-brown-deep);
    font-size: 1rem;
}

.finance-groups {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.2rem;
}

.finance-group {
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(249, 246, 240, 0.95);
    border: 1px solid rgba(77, 55, 47, 0.08);
}

.finance-group h4 {
    margin: 0 0 0.75rem;
    color: var(--vhf-brown);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.finance-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.finance-group li {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(77, 55, 47, 0.08);
    color: rgba(42, 29, 24, 0.76);
}

.finance-group li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.finance-group li strong {
    white-space: nowrap;
    color: var(--vhf-brown-deep);
}

.finance-group .empty-line {
    display: block;
    color: rgba(42, 29, 24, 0.52);
}

.receipt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.85rem;
    margin-top: 1.2rem;
}

.doc-library {
    display: grid;
    gap: 0.85rem;
}

.doc-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(77, 55, 47, 0.08);
    overflow: hidden;
}

.doc-card-wide {
    align-items: flex-start;
}

.doc-card-copy {
    display: grid;
    gap: 0.25rem;
    min-width: 0;
}

.doc-card-copy strong {
    color: var(--vhf-brown-deep);
}

.doc-card-copy span {
    color: rgba(42, 29, 24, 0.62);
    font-size: 0.88rem;
    line-height: 1.55;
}

.doc-pill-col {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    align-items: flex-start;
    min-width: 0;
    max-width: 100%;
}

.doc-pill-col .file-pill {
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
    text-align: left;
    word-break: break-word;
}

.receipt-item {
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(77, 55, 47, 0.1);
    background: rgba(255, 255, 255, 0.92);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.receipt-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(42, 29, 24, 0.1);
}

.receipt-item img {
    display: block;
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.receipt-file {
    display: grid;
    place-items: center;
    gap: 0.5rem;
    min-height: 140px;
    padding: 1rem;
    text-align: center;
    color: var(--vhf-brown);
}

.receipt-file i {
    font-size: 1.8rem;
}

.receipt-file span {
    font-size: 0.82rem;
    line-height: 1.5;
    word-break: break-word;
}

.file-pill {
    display: inline-flex;
    align-items: center;
    margin-top: 0.8rem;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    color: var(--vhf-brown);
    font-size: 0.82rem;
    font-weight: 700;
    background: rgba(88, 184, 231, 0.12);
}

.file-pill-button {
    border: 0;
    cursor: pointer;
}

.file-pill-muted {
    color: rgba(42, 29, 24, 0.56);
    background: rgba(236, 231, 225, 0.9);
}

.finance-head-side .file-pill,
.doc-card .file-pill {
    margin-top: 0;
}

.report-page {
    padding: 1.5rem 0 3rem;
}

.report-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.report-sheet {
    padding: 1.5rem;
    border-radius: 1.4rem;
    background: #fff;
    border: 1px solid rgba(77, 55, 47, 0.08);
    box-shadow: 0 22px 50px rgba(42, 29, 24, 0.08);
}

.document-viewer-frame {
    width: 100%;
    min-height: 72vh;
    border: 1px solid rgba(77, 55, 47, 0.1);
    border-radius: 1rem;
    background: #fff;
}

.report-sheet-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(77, 55, 47, 0.08);
}

.report-sheet-head h2 {
    margin: 0;
    color: var(--vhf-brown-deep);
    font-family: "Marcellus", serif;
    font-size: 2rem;
}

.report-sheet-head p {
    margin: 0.35rem 0 0;
    color: rgba(42, 29, 24, 0.6);
}

.report-balance {
    text-align: right;
}

.report-balance span {
    display: block;
    color: rgba(42, 29, 24, 0.58);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.report-balance strong {
    color: var(--vhf-brown);
    font-family: "Marcellus", serif;
    font-size: 1.7rem;
}

.report-attachments {
    margin-top: 1.5rem;
}

.empty-copy {
    color: rgba(42, 29, 24, 0.58);
    line-height: 1.7;
}

.placeholder-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.rounded-4 {
    border-radius: 1rem !important;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
}

.dropdown-item {
    border-radius: 8px;
    margin: 0 5px;
    width: auto;
}

.table thead th {
    border-top: none;
}

#liveToast {
    min-width: 200px;
}

.toast-body i {
    font-size: 1.2rem;
}

@media (max-width: 991px) {
    .site-nav {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        border: 1px solid rgba(77, 55, 47, 0.08);
        border-radius: 1.25rem;
        background: rgba(255, 255, 255, 0.92);
        box-shadow: 0 18px 40px rgba(42, 29, 24, 0.08);
    }

    .hero-section {
        padding-top: 1rem;
    }

    .institutional-hero-inner,
    .laundry-shell {
        grid-template-columns: 1fr;
    }

    .laundry-compact-form {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .laundry-compact-form .site-primary-btn {
        grid-column: 1 / -1;
        width: 100%;
    }

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

    .institutional-band {
        align-items: flex-start;
        flex-direction: column;
    }

    .laundry-status-panel,
    .laundry-action-panel {
        min-height: auto;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero-notes,
    .registration-preview {
        grid-template-columns: 1fr;
    }

    .dashboard-grid,
    .finance-totals,
    .finance-groups {
        grid-template-columns: 1fr 1fr;
    }

    .report-toolbar,
    .report-sheet-head,
    .finance-head-side {
        align-items: flex-start;
        flex-direction: column;
    }

    .doc-card {
        grid-template-columns: 1fr;
    }

    .doc-pill-col {
        width: 100%;
    }

    .site-profile-inline {
        margin-left: 0;
        flex-wrap: wrap;
        width: 100%;
        gap: 0.45rem 0.75rem;
    }

    .site-subnav-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-subnav-row {
        gap: 0.55rem;
        padding: 0.65rem 0 0.8rem;
        padding-bottom: 0.85rem;
        width: 100%;
    }

    .site-subnav-link {
        flex: 0 0 auto;
        padding: 0.56rem 0.92rem;
        font-size: 0.82rem;
    }

    .floating-chip {
        position: static;
        margin-top: 1rem;
    }

    .footer-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .laundry-page .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .dashboard-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .dashboard-grid .info-card {
        padding: 0.82rem 0.88rem;
    }

    .dashboard-grid .card-title {
        font-size: 0.82rem;
    }

    .dashboard-grid .dashboard-number {
        font-size: 1.22rem;
    }

    .site-subnav {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .site-subnav-row {
        gap: 0.5rem;
        padding-top: 0.6rem;
    }

    .site-profile-inline {
        width: 100%;
        justify-content: space-between;
    }

    .site-profile-inline-copy {
        white-space: normal;
    }

    .site-subnav-link {
        min-height: 40px;
        padding: 0.5rem 0.88rem;
        font-size: 0.8rem;
    }

    .brand-lockup img {
        width: 50px;
        height: 50px;
    }

    .brand-name {
        font-size: 1.3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .site-section {
        padding: 4.5rem 0;
    }

    .institutional-hero {
        padding-top: 1rem;
    }

    .institutional-hero-inner {
        min-height: auto;
        gap: 1rem;
    }

    .institutional-grid {
        grid-template-columns: 1fr;
    }

    .institutional-item {
        min-height: auto;
    }

    .institutional-band,
    .laundry-status-panel,
    .laundry-action-panel,
    .laundry-log-panel {
        padding: 1.15rem;
        border-radius: 1rem;
    }

    .laundry-compact-form {
        grid-template-columns: 1fr !important;
        gap: 0.65rem;
    }

    .laundry-compact-form .form-label {
        margin-bottom: 0.3rem;
        font-size: 0.8rem;
    }

    .laundry-compact-form .form-control {
        min-height: 2.5rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
        border-radius: 0.65rem;
    }

    .laundry-compact-form .site-primary-btn {
        width: 100%;
        min-height: 2.6rem;
        margin-top: 0.15rem;
        font-size: 0.9rem;
    }

    .laundry-status-top {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .laundry-user-line {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .laundry-status-panel::after {
        font-size: 10rem;
    }

    /* Layout mobile mais minimalista da lavanderia */
    .laundry-page {
        padding: 0.85rem 0.7rem;
    }

    .laundry-shell {
        gap: 0.65rem;
    }

    .laundry-status-panel {
        padding: 1rem 1.05rem;
        border-radius: 1rem;
    }

    .laundry-status-panel::after {
        right: -0.8rem;
        bottom: -1.6rem;
        font-size: 6.5rem;
    }

    .laundry-status-icon {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 0.85rem;
        border-radius: 0.65rem;
    }

    .laundry-status-heading {
        gap: 0.55rem;
    }

    .laundry-status-pill {
        min-height: 1.6rem;
        padding: 0.28rem 0.55rem;
        font-size: 0.7rem;
    }

    .laundry-status-panel .hero-title {
        font-size: 1.3rem !important;
    }

    .laundry-status-panel .hero-text {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .laundry-current-use {
        margin-top: 0.75rem;
        padding: 0.7rem 0.8rem;
    }

    .laundry-current-use strong {
        font-size: 1.05rem;
    }

    /* Remove o efeito de "caixa dentro de caixa": o painel de ação
       vira só um espaçador transparente, o card interno é o único visível */
    .laundry-action-panel {
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .laundry-login-card {
        padding: 0.95rem 1rem;
        border-radius: 1rem;
    }

    .laundry-card-head {
        gap: 0.6rem;
        margin-bottom: 0.75rem;
    }

    .laundry-card-head .mini-icon,
    .laundry-login-card > .mini-icon {
        width: 2.2rem;
        height: 2.2rem;
        margin-bottom: 0;
        border-radius: 0.65rem;
        font-size: 0.85rem;
    }

    .laundry-card-head .card-title {
        margin-bottom: 0;
        font-size: 1.1rem;
    }

    .laundry-user-line {
        padding: 0.85rem 0.95rem;
    }

    .laundry-user-line strong {
        font-size: 1.1rem;
    }

    .laundry-start-btn,
    .laundry-finish-btn {
        min-height: 3.6rem;
        font-size: 1rem;
        border-radius: 0.85rem;
    }

    .laundry-blocked {
        padding: 0.85rem;
    }

    /* Histórico de uso mais enxuto no mobile */
    .laundry-log-panel {
        margin-top: 0.65rem;
        padding: 0.9rem 0.85rem;
        border-radius: 1rem;
    }

    .laundry-log-head {
        margin-bottom: 0.65rem;
    }

    .laundry-log-count {
        min-height: 1.85rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }

    .laundry-log-mobile {
        gap: 0.5rem;
    }

    .laundry-mobile-item {
        padding: 0.55rem 0.65rem;
        border-radius: 0.65rem;
    }

    .laundry-mobile-item .mb-2 {
        margin-bottom: 0.3rem !important;
    }

    .laundry-mobile-apto {
        font-size: 0.92rem;
    }

    .laundry-mobile-duracao {
        font-size: 0.82rem;
    }

    .laundry-mobile-times {
        font-size: 0.82rem;
    }

    .laundry-mobile-times small {
        font-size: 0.78rem;
    }

    .hero-card,
    .glass-card,
    .feature-card,
    .portal-card,
    .info-card,
    .cta-panel,
    .placeholder-card {
        padding: 1.2rem;
    }

    .dashboard-grid,
    .finance-totals,
    .finance-groups {
        grid-template-columns: 1fr;
    }

    .schedule-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-item,
    .resource-head,
    .finance-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .report-page {
        padding-top: 1rem;
    }

    .report-sheet {
        padding: 1.2rem;
    }

    .access-panel,
    .access-card {
        padding: 1.25rem;
    }
}

@media (max-width: 420px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .site-header,
    .footer-shell,
    .report-toolbar {
        display: none !important;
    }

    .main-container,
    .report-page {
        padding: 0 !important;
    }

    .report-sheet {
        border: 0;
        box-shadow: none;
        padding: 0;
    }
}