body {
    background-color: #0d274b;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    box-sizing: border-box;
    padding: 2rem;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #1c3b70, #3a7bd5);
    min-height: 100vh;
}

.card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.header img {
    max-width: 80px;
    margin-bottom: 10px;
}

.header .company-name {
    color: #333;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
}

.amount {
    font-size: 42px;
    font-weight: bold;
    color: #1a202c;
    margin-bottom: 25px;
}

.qr-code-image {
    width: 220px;
    height: 220px;
    margin: 0 auto 25px auto;
    display: block;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    background-color: #0056b3;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #004494;
}

.payment-confirmed-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.payment-confirmed-text {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 30px;
}

.pix-code-display {
    padding: 10px 0;
}

.pix-code-display input {
    width: 100%;
    padding: 8px;
    border: 1px dashed #ccc;
    background-color: #f4f4f4;
    font-family: monospace;
    font-size: 14px;
    box-sizing: border-box;
}

.btn:active {
    transform: scale(0.98);
}

.btn.copied {
    background-color: #28a745;
    cursor: default;
}

.btn:disabled {
    background-color: #28a745;
    opacity: 1;
    cursor: default;
}

.back-button {
    text-align: left;
    margin-bottom: 10px;
}

.back-link {
    color: #1c3b70;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #3a7bd5;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f3f4f6;
    height: 100vh;
}

.pix-container {
    background-color: #ff035b;
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.pix-container h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.pix-container p {
    font-size: 1em;
    margin: 10px 0;
}

.pix-container img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
}

.copy-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #ffffff;
    color: #ff035b;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.copy-button:hover {
    background-color: #e5e5e5;
}

.copy-button.copied {
    background-color: #28a745;
    color: #ffffff;
}

@media (max-width: 768px) {
    .pix-container {
        padding: 15px;
    }
}
.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.25rem;
    gap: 1rem;
}

.header-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
}

.logo {
    max-height: 48px;
}

.store-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.client-info {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    display: inline-block;
}

.store-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.store-details {
    flex: 1;
    min-width: 200px;
}

.store-name-card {
    font-weight: bold;
    font-size: 1.25rem;
    color: #1c3b70;
    margin-bottom: 0.3rem;
}

.store-info {
    font-size: 0.95rem;
    color: #374151;
    margin-bottom: 0.25rem;
}

.store-link a {
    background-color: #0052cc;
    color: #ffffff;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
}

.store-link a:hover {
    background-color: #003f99;
}
.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.25rem;
    gap: 1rem;
}

.header-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 800px;
    padding: 0 1rem;
}

.logo {
    max-height: 48px;
}

.store-name {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.client-info {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 1rem;
    display: inline-block;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
}


.totalizador {
    background-color: rgba(255, 255, 255, 0.9);
    color: #111827;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 1rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    text-align: right;
    margin-top: 2rem;
}

#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#notification-box {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 25px;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, top 0.3s ease;
}

#notification-box.notification-visible {
    top: 40px;
    opacity: 1;
    visibility: visible;
}

#notification-box.notification-error {
    background-color: #e74c3c;
}

#notification-box.notification-success {
    background-color: #2ecc71;
}

.payment-card {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: 1rem;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}

.payment-card:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.pix-icon {
    width: 36px;
    height: auto;
    margin-right: 1rem;
}

.row.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.row.details,
.row.valores {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
}

.info {
    flex: 1 1 180px;
    min-width: 160px;
}

.label {
    font-size: 0.75rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-weight: 500;
}

.value {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.value.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: #dc2626;
}

.badge {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    background-color: #9ca3af;
    text-transform: uppercase;
}

.badge.pending {
    background-color: #10b981;
}

.badge.failed {
    background-color: #ef4444;
}

@media (max-width: 768px) {
    .row.details,
    .row.valores {
        flex-direction: column;
    }

    .info {
        flex: 1 1 100%;
    }
}
body {
    margin: 0;
    padding: 2rem;
    font-family: 'Inter', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #1c3b70, #3a7bd5);
    color: #f9fafb;
    min-height: 100vh;
}

.container {
    max-width: 960px;
    margin: 0 auto;
}

.alert {
    background-color: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #f59e0b;
    color: #92400e;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", sans-serif;
    background: linear-gradient(135deg, #1c3b70, #3a7bd5);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.logo img:first-child {
    max-height: 60px;
    width: auto;
}

.logo img:last-child {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}

h1 {
    font-size: 1.3rem;
    color: #003366;
    margin-bottom: 2rem;
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input[type="text"],
input[type="date"],
.btn {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    box-sizing: border-box;
}

.btn {
    background-color: #0052cc;
    color: white;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

.btn:hover {
    background-color: #003f99;
}

.recaptcha-wrapper {
    display: flex;
    justify-content: center;
    transform: scale(1.12);
    transform-origin: top center;
}

.error-container {
    background-color: white;
    padding: 1rem;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

.error-container h1 {
    color: #e80300;
    margin-bottom: 0.5rem;
}

.error-container p {
    color: #555;
}
/*


 */

