html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
}

body:has(.asm-maintenance) {
    margin: 0 !important;
    padding: 0 !important;
}

body:has(.asm-maintenance) header,
body:has(.asm-maintenance) footer,
body:has(.asm-maintenance) .wp-site-blocks>header,
body:has(.asm-maintenance) .wp-site-blocks>footer,
body:has(.asm-maintenance) .wp-block-post-title,
body:has(.asm-maintenance) h1.wp-block-post-title,
body:has(.asm-maintenance) .entry-title {
    display: none !important;
}

body:has(.asm-maintenance) .wp-site-blocks,
body:has(.asm-maintenance) .wp-block-group,
body:has(.asm-maintenance) .wp-block-post-content,
body:has(.asm-maintenance) .entry-content,
body:has(.asm-maintenance) main,
body:has(.asm-maintenance) article {
    max-width: none !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.asm-maintenance {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-image: url("novo_fundo.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-y: auto;
}

.asm-maintenance__overlay {
    min-height: 100vh;
    background: rgba(0, 0, 0, 0.38);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 60px 7vw;
    box-sizing: border-box;
}

.asm-maintenance__card {
    width: 100%;
    max-width: 720px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: left;
    box-shadow: none;
    color: #fff;
}

.asm-maintenance__logo {
    max-width: 150px;
    margin-bottom: 32px;
}

.asm-maintenance h1 {
    margin: 0 0 24px;
    font-size: clamp(38px, 5vw, 72px);
    line-height: 1.05;
    color: #fff;
}

.asm-maintenance__lead {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
    max-width: 650px;
}

.asm-maintenance p {
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
    max-width: 650px;
}

.asm-maintenance__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
    margin: 34px 0;
}

.asm-maintenance__button {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 999px;
    background: #8b1e1e;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.asm-maintenance__button:hover {
    background: #6f1717;
    color: #fff;
}

.asm-maintenance__button--dark {
    background: #222;
}

.asm-maintenance__button--dark:hover {
    background: #000;
}

.asm-maintenance__contacts {
    display: grid;
    gap: 6px;
    margin-top: 28px;
    color: #fff;
    font-size: 16px;
}

.asm-maintenance__contacts span,
.asm-maintenance__contacts strong {
    color: #fff;
}

@media (max-width: 640px) {
    .asm-maintenance {
        position: fixed;
        inset: 0;
    }

    .asm-maintenance__overlay {
        padding: 32px 22px;
        align-items: center;
    }

    .asm-maintenance__logo {
        max-width: 110px;
        margin-bottom: 24px;
    }

    .asm-maintenance h1 {
        font-size: 36px;
    }

    .asm-maintenance__lead {
        font-size: 19px;
    }

    .asm-maintenance p {
        font-size: 16px;
    }

    .asm-maintenance__buttons {
        flex-direction: column;
    }

    .asm-maintenance__button {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
}