﻿.maint-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: maintFadeIn .35s ease-out;
}

@keyframes maintFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.maint-card {
    background: white;
    color: #1A1A1E;
    max-width: 440px;
    width: 100%;
    border-radius: 20px;
    padding: 40px 36px 32px;
    text-align: center;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5), 0 0 0 1px rgba(255, 255, 255, .04);
    animation: maintPopIn .45s cubic-bezier(.2, .9, .25, 1);
}

@keyframes maintPopIn {
    from {
        opacity: 0;
        transform: translateY(14px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.maint-logo {
    max-width: 140px;
    max-height: 48px;
    margin: 0 auto 24px;
    display: block;
}

.maint-icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--primary1) 12%, white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.maint-icon {
    width: 34px;
    height: 34px;
    animation: maintSpin 4s linear infinite;
    transform-origin: center;
}

@keyframes maintSpin {
    to {
        transform: rotate(360deg);
    }
}

.maint-title {
    font-size: 21px;
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.maint-desc {
    font-size: 14.5px;
    line-height: 1.55;
    color: #6B7280;
    margin: 0 0 22px;
}

.maint-eta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary1);
    background: color-mix(in srgb, var(--primary1) 9%, white);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.maint-bar {
    width: 100%;
    height: 5px;
    background: #EEF0F4;
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 24px;
}

.maint-bar-fill {
    height: 100%;
    width: 40%;
    border-radius: 999px;
    background: var(--primary1);
    animation: maintBarMove 1.8s ease-in-out infinite;
}

@keyframes maintBarMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(340%);
    }
}

.maint-contact {
    font-size: 13px;
    color: #6B7280;
}

.maint-contact a {
    color: #6C4EF5;
    font-weight: 600;
    text-decoration: none;
}

.maint-contact a:hover {
    text-decoration: underline;
}

.maint-whatsapp {
    color: var(--primary1) !important;
    font-weight: 600;
    text-decoration: none;
}

.maint-whatsapp:hover {
    text-decoration: underline;
}

@media (max-width: 420px) {
    .maint-card {
        padding: 32px 24px 26px;
        border-radius: 16px;
    }
}