/* _content/FlyTicket/Components/Layout/FlowLayout.razor.rz.scp.css */
body[b-p5u5x6xohs] {
    margin: 0;
    overflow: hidden; /* Evita a barra de rolagem durante a animação */
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background-color: var(--gray-100);
}

.content[b-p5u5x6xohs] {
    /*ox-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);*/
    transform: translateY(100%); /* Posição inicial: 100% abaixo da tela */
    opacity: 0; /* Começa invisível */
}

/* Animação que faz o conteúdo subir */
.page-transition[b-p5u5x6xohs] {
    position: relative;
    overflow: hidden;
}

.slide-in[b-p5u5x6xohs] {
    animation: slideUp-b-p5u5x6xohs 1s ease-out forwards;
}

@keyframes slideUp-b-p5u5x6xohs {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
/* _content/FlyTicket/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-rpdof4dfvr] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-rpdof4dfvr] {
    flex: 1;
}

.sidebar[b-rpdof4dfvr] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-rpdof4dfvr] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-rpdof4dfvr]  a, .top-row[b-rpdof4dfvr]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-rpdof4dfvr]  a:hover, .top-row[b-rpdof4dfvr]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-rpdof4dfvr]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-rpdof4dfvr] {
        justify-content: space-between;
    }

    .top-row[b-rpdof4dfvr]  a, .top-row[b-rpdof4dfvr]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-rpdof4dfvr] {
        flex-direction: row;
    }

    .sidebar[b-rpdof4dfvr] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-rpdof4dfvr] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-rpdof4dfvr]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-rpdof4dfvr], article[b-rpdof4dfvr] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-rpdof4dfvr] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-rpdof4dfvr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/FlyTicket/Components/Pages/Home.razor.rz.scp.css */
.pricing[b-ibc2opkeq4] {
    background: #f1f2f4; /* cor da página principal */
    padding: 1rem 0;
}

.plan-card[b-ibc2opkeq4] {
    background: #ffffff;
    border-radius: 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.plan-card:hover[b-ibc2opkeq4] {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.plan-card.popular[b-ibc2opkeq4] {
    border: 2px solid #007bff;
    background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
    box-shadow: 0 16px 36px rgba(0, 123, 255, 0.15);
}

.price[b-ibc2opkeq4] {
    font-size: 2.2rem;
    font-weight: 700;
    color: #007bff;
}

.period[b-ibc2opkeq4] {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 4px;
}

.badge-popular[b-ibc2opkeq4] {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #007bff, #4da3ff);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (prefers-color-scheme: dark) {
    .pricing[b-ibc2opkeq4] {
        background: #1e2a36;
    }
    .plan-card[b-ibc2opkeq4] {
        background: #263544;
        border-color: rgba(255, 255, 255, 0.1);
        color: #dee2e6;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }
    .plan-card.popular[b-ibc2opkeq4] {
        background: linear-gradient(180deg, #2c3c50 0%, #1e2a36 100%);
        border-color: #4da3ff;
    }
    .price[b-ibc2opkeq4] {
        color: #4da3ff;
    }
    .badge-popular[b-ibc2opkeq4] {
        background: linear-gradient(90deg, #4da3ff, #007bff);
    }
}

.screenshot[b-ibc2opkeq4] {
    width: 300px;
    border-radius: 1rem;
    border: 2px solid rgba(0,0,0,0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    margin-right: 1rem;
    padding: 0.5rem;
}

/* _content/FlyTicket/Components/Pages/VisualizaNFCe.razor.rz.scp.css */
.modal-content[b-n0trgsuhu9] {
    background: #ffffff;
    border-top: 4px solid #007bff;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem 1.5rem 0 0;
    animation: slideUp-b-n0trgsuhu9 0.4s ease-out forwards;
}

@keyframes slideUp-b-n0trgsuhu9 {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (prefers-color-scheme: dark) {
    .modal-content[b-n0trgsuhu9] {
        background: #1f2a38;
        color: #f8f9fa;
        border-top-color: #4da3ff;
    }
}

.spinner-border[b-n0trgsuhu9] {
    width: 3rem;
    height: 3rem;
}

.btn-outline-danger:hover[b-n0trgsuhu9] {
    background-color: #dc3545;
    color: #fff;
}
/* _content/FlyTicket/Components/Shared/ConfirmDialog.razor.rz.scp.css */
.dialog-backdrop[b-xphxkp5iim] {
    position: fixed;
    inset: 0;
    background-color: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5000;
    animation: fadeIn-b-xphxkp5iim 0.2s ease-out;
}

.dialog-container[b-xphxkp5iim] {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
    padding: 1.5rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    animation: slideUp-b-xphxkp5iim 0.25s ease-out;
}

.dialog-title[b-xphxkp5iim] {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.dialog-message[b-xphxkp5iim] {
    color: #555;
    margin-bottom: 1.5rem;
}

.dialog-buttons[b-xphxkp5iim] {
    display: flex;
    justify-content: end;
    gap: 1rem;
}

@keyframes fadeIn-b-xphxkp5iim {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp-b-xphxkp5iim {
    from { transform: translateY(25px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* _content/FlyTicket/Components/Shared/CookieConsent.razor.rz.scp.css */
.cookie-banner[b-ee6ujxzl3h] {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #f8f9fa;
    color: #333;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    z-index: 9999;
    animation: slideUp-b-ee6ujxzl3h 0.3s ease-out;
}

.cookie-text[b-ee6ujxzl3h] {
    flex: 1;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.cookie-text .link[b-ee6ujxzl3h] {
    color: var(--bs-success);
    text-decoration: underline;
}

.cookie-actions[b-ee6ujxzl3h] {
    white-space: nowrap;
}

@keyframes slideUp-b-ee6ujxzl3h {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.cookie-banner[b-ee6ujxzl3h] {
    transition: opacity 0.4s ease;
}
.cookie-banner[style*="display:none"][b-ee6ujxzl3h] {
    opacity: 0;
}
/* _content/FlyTicket/Components/Shared/ToastContainer.razor.rz.scp.css */


/* respeita o notch/safe-area no iOS */
.toast-container[b-2nvdz7ct7l] {
    top: calc(env(safe-area-inset-top, 0px) + 0.5rem) !important;
}

/* garante que cada toast fique centralizado e com largura agradável no mobile */
.toast-container .toast[b-2nvdz7ct7l] {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 420px;
}
