/* Configurable business cover shared by every menu theme. */
body.informative-welcome-open {
    overflow: hidden;
}

.informative-welcome {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    overflow-y: auto;
    padding: 24px;
    background:
        radial-gradient(circle at 50% 0, color-mix(in srgb, var(--brand) 19%, transparent) 0, transparent 44%),
        var(--body-bg);
    transition: opacity .24s ease, visibility .24s ease;
}

.informative-welcome.is-leaving {
    visibility: hidden;
    opacity: 0;
}

.informative-welcome-card {
    position: relative;
    width: min(100%, 560px);
    padding: 34px;
    overflow: hidden;
    display: grid;
    justify-items: center;
    gap: 20px;
    color: var(--app-ink);
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--app-line);
    border-radius: calc(var(--hero-radius) + 6px);
    box-shadow: 0 28px 80px rgba(15, 23, 42, .16);
}

.informative-welcome-card::before {
    position: absolute;
    inset: 0 0 auto;
    height: 6px;
    content: '';
    background: var(--brand);
}

.informative-welcome-brand {
    display: grid;
    justify-items: center;
    gap: 9px;
}

.informative-welcome-brand img {
    width: 180px;
    height: auto;
    max-height: 138px;
    object-fit: contain;
}

.informative-welcome-brand h1 {
    margin: 0;
    font-size: clamp(26px, 5vw, 38px);
    line-height: 1.08;
}

.informative-welcome-brand p {
    max-width: 440px;
    margin: 0;
    color: var(--app-muted);
    line-height: 1.55;
}

.informative-welcome-details {
    width: 100%;
    padding: 15px 17px;
    display: grid;
    gap: 10px;
    color: var(--app-muted);
    text-align: left;
    background: var(--surface-soft);
    border: 1px solid var(--app-line);
    border-radius: 16px;
}

.informative-welcome-details > div {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.informative-welcome-details i {
    flex: 0 0 auto;
    color: var(--brand);
    font-size: 18px;
}

.informative-welcome-services,
.informative-welcome-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.informative-welcome-services span {
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 800;
    background: color-mix(in srgb, var(--brand) 10%, var(--surface));
    border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--app-line));
    border-radius: 999px;
}

.informative-welcome-socials .social-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    background: var(--surface-soft);
    border: 1px solid var(--app-line);
    border-radius: 50%;
    text-decoration: none;
}

.informative-welcome-button {
    width: min(100%, 360px);
    min-height: 52px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--button-text);
    font: inherit;
    font-weight: 900;
    background: var(--button-bg);
    border: 0;
    border-radius: 15px;
    box-shadow: 0 12px 28px color-mix(in srgb, var(--brand) 25%, transparent);
    cursor: pointer;
}

.informative-welcome-button:hover {
    transform: translateY(-1px);
}

.informative-welcome-button:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--brand) 35%, transparent);
    outline-offset: 3px;
}

@media (max-width: 560px) {
    .informative-welcome {
        align-items: start;
        padding: 14px;
    }

    .informative-welcome-card {
        min-height: calc(100dvh - 28px);
        padding: 26px 18px 22px;
        align-content: center;
        gap: 16px;
        border-radius: 22px;
    }

    .informative-welcome-brand img {
        width: 148px;
        max-height: 108px;
    }

    .informative-welcome-brand h1 {
        font-size: clamp(25px, 8vw, 32px);
    }

    .informative-welcome-brand p,
    .informative-welcome-details {
        font-size: 14px;
    }

    .informative-welcome-details {
        padding: 13px 14px;
    }
}
