/* ==========================================================================
   Manifesto Tickets — igual ao Guichê Web
   ========================================================================== */

* {
    box-sizing: border-box;
}

:root {
    --gw-red:        #8e0707;
    --gw-red-dark:   #6e0505;
    --gw-green:      #11d132;
    --gw-text:       #212529;
    --gw-muted:      #898989;
    --gw-line:       #C7C7C7;
    --gw-line-soft:  #E6E9EC;
    --gw-surface:    #ffffff;
    --gw-soft:       #f8f9fa;
    --gw-radius:     8px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--gw-red);
    color: var(--gw-text);
    font-family: 'Roboto', Arial, Helvetica, sans-serif;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    line-height: 1.5;
}

/* ==========================================================================
   HEADER (barra superior)
   ========================================================================== */

.gw-header {
    background: #000;
    color: #fff;
    position: relative;
    z-index: 10;
}

.gw-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding: 8px 15px;
}

.gw-header__brand { display: inline-flex; }

.gw-header__logo {
    max-height: 34px;
    width: auto;
    filter: brightness(0) invert(1);
}

.gw-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    background: #fff;
    color: #000;
    border: 0;
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-login:hover { background: #f0f0f0; }

.user-badge--top {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);
    color: #fff;
    margin-bottom: 0;
}

.user-badge--top .logout-btn { color: #fff; }
.user-badge--top .logout-btn:hover { color: #ffdede; }

@media (max-width: 560px) {
    .btn-login span,
    .btn-login i + * { display: none; }
    .btn-login { padding: 9px 12px; }
    .gw-header__logo { max-height: 26px; }
}

img {
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button {
    cursor: pointer;
}

a {
    text-decoration: none;
}

hr {
    border: 0;
    border-top: 1px solid var(--gw-line);
    margin: 10px 0 20px;
}

h2 b { letter-spacing: -.3px; }

/* ==========================================================================
   GRID SIMPLES (estilo bootstrap)
   ========================================================================== */

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-12       { flex: 0 0 100%; max-width: 100%; padding: 0 15px; }
.col-md-8     { padding: 0 15px; }
.col-md-10    { padding: 0 15px; }
.col-lg-4     { padding: 0 15px; }
.col-lg-6     { padding: 0 15px; }

.text-center  { text-align: center; }
.text-left    { text-align: left;  }
.text-right   { text-align: right; }
.mr-2         { margin-right: .5rem; }
.ml-2         { margin-left: .5rem; }
.mt-2         { margin-top: .5rem;  }
.mt-3         { margin-top: 1rem;   }
.mb-1         { margin-bottom: .25rem; }
.mb-2         { margin-bottom: .5rem; }
.mb-3         { margin-bottom: 1rem; }
.mb-4         { margin-bottom: 1.5rem; }
.mt-4         { margin-top: 1.5rem; }
.p-1          { padding: .25rem; }
.pt-3         { padding-top: 1rem; }
.pr-2         { padding-right: .5rem; }
.justify-content-center { justify-content: center; }
.small        { font-size: 12px; }
.text-muted   { color: var(--gw-muted); }
.notranslate,
.notranslate b { letter-spacing: .2px; }

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   BACKGROUND (gw_cover) — gradiente vermelho sobre a imagem do evento
   ========================================================================== */

#gw_cover {
    min-height: 100vh;
    background:
        linear-gradient(to bottom,
            rgba(234, 234, 234, 0) 450px,
            var(--gw-red) 550px) center top,
        url('https://s3.guicheweb.com.br/imagenseventos/09-01-2026_08-01-21.jpg')
            center top / cover no-repeat;
}

/* LOGO no topo */
.top-logo {
    max-height: 220px;
    margin: 0 auto;
    padding: 18px 0 8px;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,.45));
}

/* ==========================================================================
   BORDA PICOTE (borda-ings)
   ========================================================================== */

.borda-ings {
    height: 0;
    margin: 6px 0 0;
    border-top: 0;
    background-image: radial-gradient(circle, #fff 4px, transparent 5px);
    background-size: 22px 14px;
    background-repeat: repeat-x;
    background-position: top center;
    position: relative;
}

/* ==========================================================================
   CONTEÚDO PRINCIPAL
   ========================================================================== */

.conteudo {
    background: #ffffff;
    border-radius: 10px 10px 0 0;
    margin-top: 14px;
    padding: 22px 0 40px;
    box-shadow: 0 -2px 18px rgba(0,0,0,.18);
}

.box-gw {
    background: #fff;
}

/* IMAGEM DESTAQUE */
.img-destaque {
    margin-bottom: 12px;
}

.img-destaque-img {
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
}

.share-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.share-link i {
    font-size: 18px;
    color: #6c757d;
}

.share-link:hover i { color: var(--gw-red); }

/* DESCRIÇÃO DO EVENTO */
.col-infoevento h2 {
    margin: 0 0 6px;
    font-size: 26px;
    font-weight: 700;
}

.col-infoevento h4 {
    margin: 0 0 8px;
    font-weight: 500;
    color: var(--gw-text);
}

.col-infoevento h5 {
    margin: 0 0 14px;
    font-size: 16px;
    font-weight: 400;
    color: #444;
}

.col-infoevento h5 i { color: var(--gw-red); margin-right: 6px; }

.btn-instagram {
    background: #f1f1f1;
    color: #000;
    border-radius: 6px;
    padding: 8px 14px;
}
.btn-instagram:hover { background: #e6e6e6; }

/* ==========================================================================
   BOTÕES DE INFO
   ========================================================================== */

.btn-infos-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 15px;
}

.btn-infos {
    background: #f1f1f1;
    color: #212529;
    border: 1px solid #e2e6ea;
    border-radius: 6px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 500;
    transition: background .15s ease;
}

.btn-infos:hover { background: #e6e6e6; }

.d-none { display: none; }

@media (min-width: 768px) {
    .d-md-inline { display: inline !important; }
}

/* ==========================================================================
   MAPA DE SETORES
   ========================================================================== */

.img-mapa-gw {
    border-radius: 6px;
    box-shadow: 0 2px 12px rgba(0,0,0,.12);
    margin-bottom: 12px;
}

.pg-3 { padding: 0 15px; }

/* ==========================================================================
   TÍTULOS DE SEÇÃO
   ========================================================================== */

.titulo-setores,
#video_evento h2,
#infos_evento h2,
#localizacao_evento h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

.infoweb-evento p {
    margin: 0 0 10px;
}

/* VÍDEO */
.yt-video {
    width: 100%;
    max-width: 100%;
    border-radius: 6px;
}

/* ==========================================================================
   INGRESSOS
   ========================================================================== */

.ticket-list {
    display: block;
    padding: 0 15px;
    gap: 12px;
}

.ticket {
    background: var(--gw-surface);
    border: 1px solid var(--gw-line);
    border-radius: var(--gw-radius);
    padding: 18px 22px;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ticket:hover {
    border-color: #b9b9b9;
    box-shadow: 0 8px 22px rgba(0,0,0,.07);
    transform: translateY(-1px);
}

.ticket__info { min-width: 0; }

.ticket__name {
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}

.ticket__details {
    color: var(--gw-muted);
    font-size: 13px;
}

.ticket__price {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
}

.ticket__price small {
    color: var(--gw-muted);
    font-size: 12px;
    font-weight: 400;
}

/* CONTADOR */
.counter {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.counter__button {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #222;
    font-size: 20px;
    line-height: 1;
    transition: .2s ease;
}

.counter__button:hover {
    border-color: var(--gw-red);
    color: var(--gw-red);
    background: #fff5f5;
}

.counter__value {
    width: 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}

/* ==========================================================================
   RESUMO / CARRINHO
   ========================================================================== */

.summary-card {
    background: #fff;
    border: 1px solid var(--gw-line-soft);
    border-radius: var(--gw-radius);
    padding: 22px 24px;
    box-shadow: 0 6px 22px rgba(0,0,0,.05);
}

.summary-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

.resumo-cart1 { margin: 0 0 4px; font-size: 13px; }
.resumo-cart2 { margin: 0; font-size: 22px; font-weight: 700; }
.resumo-cart3 { margin: 0; color: var(--gw-muted); font-size: 13px; }

.summary-head-action { text-align: right; }
.summary-head-action i { font-style: italic; color: var(--gw-muted); font-size: 13px; }

.btn-continuar {
    margin-top: 8px;
    background: var(--gw-green) !important;
    color: #fff !important;
    border: 0;
    border-radius: 6px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}
.btn-continuar:hover:not(:disabled) { background: #0fb82c !important; }
.btn-continuar:disabled {
    background: #cfcfcf !important;
    color: #fff !important;
    cursor: not-allowed;
}

.btn-continuar i { margin-left: 6px; }

.summary-items {
    margin: 18px 0;
    padding: 14px 0;
    border-top: 1px solid var(--gw-line-soft);
    border-bottom: 1px solid var(--gw-line-soft);
    min-height: 30px;
}

.empty { margin: 0; color: var(--gw-muted); font-size: 13px; }

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 8px;
    font-size: 13px;
}

.summary-item:last-child { margin-bottom: 0; }
.summary-item span:last-child { white-space: nowrap; font-weight: 700; }

.summary__note,
.demo-note {
    display: block;
    margin-top: 12px;
    color: var(--gw-muted);
    font-size: 12px;
    line-height: 1.5;
}

.exibe-ingressos { padding: 0 15px; }

/* ==========================================================================
   ACCORDION REGRAS
   ========================================================================== */

.accordion-gw {
    border: 0.5px solid var(--gw-line-soft);
    background: var(--gw-line-soft);
    border-radius: 6px;
    overflow: hidden;
}

.accordion-gw__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gw-line-soft);
    border: 0;
    padding: 14px 18px;
    font-size: 17px;
    font-weight: 600;
    color: var(--gw-text);
    text-align: left;
}

.accordion-gw__icon { font-size: 22px; }

.accordion-gw__body {
    background: #fff;
    padding: 18px 22px;
}

.accordion-gw__body p {
    margin: 0 0 12px;
    text-align: start;
    font-size: 14px;
}

.accordion-gw__body[hidden] { display: none; }

/* ==========================================================================
   BOTÕES PADRÃO
   ========================================================================== */

.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    border-radius: 6px;
    border: 1px solid transparent;
    padding: 9px 16px;
    font-size: 14px;
    transition: .15s ease;
}

.btn-light {
    background: #f8f9fa;
    color: #212529;
    border-color: #e2e6ea;
}

.btn-primary-gw {
    width: 100%;
    background: var(--gw-red);
    color: #fff;
    border: 0;
    padding: 13px 16px;
    border-radius: 6px;
    font-weight: 600;
}
.btn-primary-gw:hover { background: var(--gw-red-dark); }

.btn-secondary-gw {
    width: 100%;
    background: #fff;
    color: #212529;
    border: 1px solid #d8d8d8;
    padding: 13px 16px;
    border-radius: 6px;
    font-weight: 600;
}
.btn-secondary-gw:hover { background: #f7f7f7; }

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    outline: none;
    background: #fff;
}
.form-control:focus { border-color: var(--gw-red); }

.input-group {
    display: flex;
    align-items: stretch;
}
.input-group .form-control { flex: 1; }
.input-group .btn { margin-left: 6px; }

/* ==========================================================================
   MODAL LOGIN
   ========================================================================== */

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 100;
}

.modal.is-open { display: flex; }

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.62);
}

.modal__card {
    position: relative;
    width: min(430px, 100%);
    background: #fff;
    border-radius: 12px;
    padding: 30px 32px;
    box-shadow: 0 25px 80px rgba(0,0,0,.25);
    z-index: 1;
}

.modal__close {
    position: absolute;
    top: 8px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #777;
    font-size: 28px;
    line-height: 1;
}
.modal__close:hover { color: #111; }

.modal__eyebrow {
    color: var(--gw-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.modal__card h2 {
    margin: 8px 0 6px;
    font-size: 26px;
    letter-spacing: -.5px;
}

.modal__description {
    margin: 0 0 22px;
    color: var(--gw-muted);
    font-size: 13px;
    line-height: 1.5;
}

.auth-form label {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 600;
}

.auth-form input {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    outline: none;
    background: #fff;
}

.auth-form input:focus {
    border-color: var(--gw-red);
    box-shadow: 0 0 0 3px rgba(142,7,7,.08);
}

.form-error {
    min-height: 18px;
    margin: -4px 0 10px;
    color: #c62828;
    font-size: 12px;
}

.auth-divider {
    height: 12px;
    margin: 18px 0 22px;
    text-align: center;
    border-bottom: 1px solid var(--gw-line-soft);
}

.auth-divider span {
    padding: 0 12px;
    background: #fff;
    color: #999;
    font-size: 12px;
}

.auth-tab[hidden] { display: none; }

/* ===================== BADGE USUÁRIO LOGADO ===================== */

.user-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #eafbef;
    border: 1px solid #b9ebc7;
    color: #0a7a26;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.user-badge i.fa-user-circle { font-size: 16px; }

#userBadgeName {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.logout-btn {
    margin-left: auto;
    border: 0;
    background: transparent;
    color: #0a7a26;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    padding: 0;
}
.logout-btn:hover { color: #064f18; }

#guestHint i { font-style: italic; color: var(--gw-muted); font-size: 13px; }

/* ==========================================================================
   TOAST
   ========================================================================== */

.toast {
    position: fixed;
    left: 50%;
    bottom: 25px;
    transform: translate(-50%, 30px);
    background: #181818;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    z-index: 200;
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* ==========================================================================
   MODAL DE CHECKOUT / PIX
   ========================================================================== */

.modal__card--pix { max-width: 480px; }

.mt-2 { margin-top: 10px; }

.checkout-summary {
    background: var(--gw-soft);
    border: 1px solid var(--gw-line-soft);
    border-radius: var(--gw-radius);
    padding: 12px 14px;
    margin-bottom: 16px;
}

.checkout-summary .summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 3px 0;
}

.checkout-summary .summary-item--tax { color: var(--gw-muted); font-size: 13px; }

.checkout-summary .summary-item--total {
    border-top: 1px dashed var(--gw-line);
    margin-top: 6px;
    padding-top: 8px;
    font-weight: 600;
    color: var(--gw-red);
}

.pix-result { text-align: center; }

.pix-qr {
    display: flex;
    justify-content: center;
    margin: 14px 0 12px;
}

.pix-qr img {
    width: 220px;
    height: 220px;
    background: #fff;
    padding: 8px;
    border: 1px solid var(--gw-line-soft);
    border-radius: var(--gw-radius);
}

.pix-code-box {
    background: var(--gw-soft);
    border: 1px dashed var(--gw-line);
    border-radius: var(--gw-radius);
    padding: 12px;
    margin: 12px 0 16px;
    max-height: 120px;
    overflow-y: auto;
}

.pix-code-box code {
    font-family: 'Roboto Mono', Consolas, monospace;
    font-size: 13px;
    word-break: break-all;
    color: var(--gw-text);
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (min-width: 992px) {
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-6 { flex: 0 0 50%;      max-width: 50%; }
}

@media (min-width: 768px) {
    .col-md-8  { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
}

@media (max-width: 768px) {
    .ticket {
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
    }
    .counter { align-self: flex-start; }
    .col-infoevento { text-align: center; }
    .col-infoevento h2 { font-size: 22px; }
    .summary-head { flex-direction: column; }
    .summary-head-action { text-align: left; }
}

@media (max-width: 560px) {
    .top-logo { max-height: 150px; }
    #gw_cover {
        background:
            linear-gradient(to bottom,
                rgba(234,234,234,0) 280px,
                var(--gw-red) 360px) center top,
            url('https://s3.guicheweb.com.br/imagenseventos/09-01-2026_08-01-21.jpg')
                center top / cover no-repeat;
    }
    .modal__card { max-height: calc(100vh - 30px); overflow-y: auto; padding: 26px 22px; }
}

/* ==========================================================================
   SALA DE ESPERA / FILA DE ACESSO
   ========================================================================== */

.queue {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: #212529;
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    z-index: 9999;
    overflow: hidden;
}

.queue__brand {
    margin-bottom: 6px;
}

.queue__brand img {
    max-height: 46px;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
}

.queue__eyebrow {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gw-red);
    font-weight: 600;
}

.queue__title {
    font-size: 22px;
    font-weight: 700;
    margin: 6px 0 4px;
    color: var(--gw-text);
}

.queue__subtitle {
    font-size: 14px;
    color: var(--gw-muted);
    margin-bottom: 26px;
    max-width: 460px;
}

.queue__card {
    width: 100%;
    max-width: 460px;
    background: #fff;
    border: 1px solid var(--gw-line-soft);
    border-radius: 14px;
    padding: 22px 20px 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,.06);
}

.queue__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed var(--gw-line-soft);
}

.queue__row:last-child { border-bottom: 0; }

.queue__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gw-text);
    font-weight: 500;
}

.queue__label i { color: var(--gw-red); }

.queue__val {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    font-variant-numeric: tabular-nums;
    color: var(--gw-text);
}

.queue__val--big {
    font-size: 26px;
    color: var(--gw-red);
}

.queue__val--lote {
    color: #b8860b;
    font-size: 20px;
}

.queue__progress {
    margin-top: 18px;
    height: 8px;
    background: var(--gw-line-soft);
    border-radius: 99px;
    overflow: hidden;
}

.queue__progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #8e0707, #ff5a5a);
    border-radius: 99px;
    transition: width .9s linear;
}

.queue__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gw-line-soft);
    border-top-color: var(--gw-red);
    border-radius: 50%;
    animation: queue-spin 1s linear infinite;
    margin: 0 auto 4px;
}

@keyframes queue-spin {
    to { transform: rotate(360deg); }
}

.queue__foot {
    margin-top: 18px;
    font-size: 11px;
    color: var(--gw-muted);
    line-height: 1.5;
    max-width: 460px;
}

.queue__pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gw-green);
    margin-right: 6px;
    animation: queue-pulse 1.4s ease-in-out infinite;
    vertical-align: middle;
}

@keyframes queue-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .3; transform: scale(.7); }
}

@media (max-width: 480px) {
    .queue__title { font-size: 19px; }
    .queue__val--big { font-size: 22px; }
    .queue__val { font-size: 16px; }
    .queue__card { padding: 18px 14px; }
}

/* ==========================================================================
   BANNER DO LOTE (contador 24h no site)
   ========================================================================== */

.lote-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 6px;
    padding: 8px 14px;
    background: linear-gradient(90deg, #fff5e6, #fff);
    border: 1px solid #f0c98a;
    border-radius: 99px;
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.lote-banner__pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ff9800;
    animation: lote-pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes lote-pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,152,0,.5); }
    50%      { opacity: .5; transform: scale(.85); box-shadow: 0 0 0 8px rgba(255,152,0,0); }
}

.lote-banner__text {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gw-text);
    flex-wrap: wrap;
}

.lote-banner__clock {
    font-weight: 700;
    color: #b8860b;
    font-variant-numeric: tabular-nums;
    letter-spacing: 1px;
    font-size: 16px;
    background: #fff;
    padding: 2px 10px;
    border-radius: 99px;
    border: 1px solid #f0c98a;
}

/* ==========================================================================
   TELA DE CONFIRMAÇÃO DE PAGAMENTO (loading + sucesso)
   ========================================================================== */

.btn-success-gw {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    background: var(--gw-green);
    color: #fff;
    border: 1px solid #0fb82c;
    padding: 12px 16px;
    border-radius: var(--gw-radius);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background .15s ease, transform .1s ease;
}

.btn-success-gw:hover { background: #0fb82c; }
.btn-success-gw:active { transform: scale(.99); }

.pay-loading {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 14px;
}

.pay-loading__spinner {
    width: 44px;
    height: 44px;
    border: 4px solid var(--gw-line-soft);
    border-top-color: var(--gw-green);
    border-radius: 50%;
    animation: pay-spin 1s linear infinite;
}

@keyframes pay-spin { to { transform: rotate(360deg); } }

.pay-loading__title {
    margin: 4px 0 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--gw-text);
}

.pay-loading__sub {
    margin: 0;
    font-size: 13px;
    color: var(--gw-muted);
}

.pay-success {
    margin-top: 20px;
    text-align: center;
    padding: 22px 16px;
    border: 1px solid #b9ebc7;
    background: #eafbef;
    border-radius: 12px;
    animation: pay-pop .4s ease;
}

@keyframes pay-pop {
    from { opacity: 0; transform: scale(.95); }
    to   { opacity: 1; transform: scale(1); }
}

.pay-success__check {
    width: 56px;
    height: 56px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gw-green);
    color: #fff;
    font-size: 26px;
}

.pay-success__check i { animation: pay-check .5s ease; }

@keyframes pay-check {
    from { transform: scale(0) rotate(-20deg); opacity: 0; }
    to   { transform: scale(1) rotate(0);   opacity: 1; }
}

.pay-success h2 {
    font-size: 19px;
    margin: 0 0 8px;
    color: #0a7a26;
}

.pay-success__msg {
    margin: 0 0 16px;
    font-size: 14px;
    color: var(--gw-text);
    line-height: 1.5;
}