* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background-color: #0f172a;
    background-position: center;
    background-size: cover;
    color: #1f2937;
    font-family: Raleway, Roboto, Arial, sans-serif;
}

.pagar-cafe-logo {
    position: fixed;
    top: 22px;
    left: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 168px;
    min-height: 72px;
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 16px 34px rgba(15, 23, 42, .18);
}

.pagar-cafe-logo img {
    max-width: 100%;
    max-height: 44px;
}

.pagar-cafe-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 120px 8vw 80px;
}

.pagar-cafe-card {
    width: min(100%, 460px);
    border-radius: 8px;
    background: #fff;
    padding: 34px;
    text-align: center;
    box-shadow: 0 22px 56px rgba(15, 23, 42, .2);
}

.pagar-cafe-cup {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: rgba(62, 142, 208, .1);
    font-size: 36px;
}

.pagar-cafe-card h1 {
    margin: 20px 0 10px;
    color: #1f2937;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.15;
}

.pagar-cafe-card p {
    margin: 0 auto 22px;
    color: #475569;
    font-size: 16px;
    line-height: 1.55;
}

.pagar-cafe-counter {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.pagar-cafe-counter button {
    width: 44px;
    height: 44px;
    border: 1px solid #dbe3ef;
    border-radius: 50%;
    background: #fff;
    color: #1f2937;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.pagar-cafe-counter strong {
    min-width: 58px;
    color: #1f2937;
    font-size: 24px;
}

.pagar-cafe-total {
    margin-bottom: 22px;
    color: #475569;
    font-size: 17px;
}

.pagar-cafe-total strong {
    color: #1f2937;
}

.pagar-cafe-qr {
    width: 244px;
    height: 244px;
    margin: 0 auto 14px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .12);
}

.pagar-cafe-result[hidden],
.pagar-cafe-choose[hidden] {
    display: none;
}

.pagar-cafe-link-label {
    display: block;
    margin: 4px 0 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
}

.pagar-cafe-result textarea {
    display: block;
    width: 100%;
    min-height: 86px;
    margin-bottom: 14px;
    padding: 11px 12px;
    resize: vertical;
    border: 1px solid #dbe3ef;
    border-radius: 8px;
    background: #f8fafc;
    color: #1f2937;
    font-size: 12px;
    line-height: 1.45;
    word-break: break-all;
}

.pagar-cafe-copy {
    width: 100%;
    height: 42px;
    margin-bottom: 14px;
    border: 1px solid #dbe3ef;
    border-radius: 999px;
    background: #fff;
    color: #1f2937;
    font-size: 15px;
    cursor: pointer;
}

.pagar-cafe-qr img {
    display: block;
    width: 220px;
    height: 220px;
}

.pagar-cafe-code {
    display: block;
    margin-bottom: 20px;
    color: #64748b;
    font-size: 13px;
}

.pagar-cafe-done {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    height: 52px;
    border-radius: 999px;
    background: var(--pagar-cafe-color, #3e8ed0);
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.pagar-cafe-done:disabled {
    opacity: .72;
    cursor: wait;
}

.pagar-cafe-thanks {
    padding-top: 46px;
    padding-bottom: 46px;
}

@media (max-width: 640px) {
    .pagar-cafe-logo {
        top: 14px;
        left: 14px;
        width: 146px;
        min-height: 62px;
    }

    .pagar-cafe-page {
        justify-content: center;
        padding: 100px 18px 36px;
    }

    .pagar-cafe-card {
        padding: 26px 20px;
    }

    .pagar-cafe-card h1 {
        font-size: 26px;
    }

    .pagar-cafe-qr {
        width: 224px;
        height: 224px;
    }

    .pagar-cafe-qr img {
        width: 200px;
        height: 200px;
    }
}
