* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background: #111;
}

body.whatsapp-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, rgba(28, 28, 28, 0.88), #111 42%),
        #111;
    color: #fff;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

.wa-topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 82px;
    padding: 24px 20px 0;
}

.wa-brand {
    color: #fff;
    font-family:
        "Barlow Condensed",
        "Arial Narrow",
        Impact,
        sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.wa-main {
    flex: 1;
    width: 100%;
    display: grid;
    place-items: center;
    padding: 36px 24px 72px;
}

.wa-wrap {
    width: 100%;
    max-width: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.wa-mark {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
}

.wa-label {
    margin-bottom: 10px;
    color: #c24a24;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.35;
    text-transform: uppercase;
}

.wa-title {
    max-width: 380px;
    color: #fff;
    font-family:
        "Barlow Condensed",
        "Arial Narrow",
        Impact,
        sans-serif;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
    text-transform: uppercase;
}

.wa-copy {
    max-width: 330px;
    margin-top: 14px;
    color: #8b8b8b;
    font-size: 14px;
    line-height: 1.65;
}

.wa-progress {
    width: 100%;
    max-width: 260px;
    height: 3px;
    margin-top: 28px;
    overflow: hidden;
    border-radius: 999px;
    background: #242424;
}

.wa-progress span {
    display: block;
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: #c24a24;
    animation: wa-progress var(--redirect-delay, 2000ms) linear forwards;
}

.wa-button {
    min-width: 174px;
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 30px;
    padding: 13px 22px;
    border: 1px solid #c24a24;
    border-radius: 4px;
    background: #c24a24;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.15s ease;
}

.wa-button:hover {
    border-color: #9f351a;
    background: #9f351a;
}

.wa-button:active {
    transform: scale(0.98);
}

.wa-button:focus-visible {
    outline: 2px solid #f4f0e8;
    outline-offset: 4px;
}

.wa-button svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
}

.wa-status,
.wa-noscript {
    min-height: 18px;
    margin-top: 14px;
    color: #555;
    font-size: 12px;
    line-height: 1.5;
}

@keyframes wa-progress {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .wa-topbar {
        min-height: 74px;
        padding-top: 22px;
    }

    .wa-main {
        padding: 28px 20px 58px;
    }

    .wa-title {
        font-size: 36px;
    }

    .wa-copy {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wa-progress span {
        animation: none;
        width: 100%;
    }

    .wa-button {
        transition: none;
    }
}
