* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 30px;
    width: auto;
    max-width: 120px;
}

.breadcrumb {
    color: #666;
    font-size: 0.85rem;
}

/* Main Container */
.main-container {
    min-height: calc(100vh - 160px);
    padding: 30px 0;
}

.content-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    padding: 40px;
    margin-bottom: 30px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    text-align: center;
    background: #fff;
}

.hero-title {
    color: #2d5a27;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #4CAF50;
    color: white;
    min-width: 150px;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-1px);
}

.hero-section h1 {
    color: #2d5a27;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.action-button-container {
    text-align: center;
    margin: 40px 0;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 180px;
}

.btn-primary {
    background: linear-gradient(135deg, #4CAF50, #2d5a27);
    color: white;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #45a049, #1e3f1a);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
    border: 2px solid #ddd;
}

.btn-secondary:hover {
    background: #e9e9e9;
    border-color: #ccc;
}

/* Info Section */
.info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.section-title {
    color: #2d5a27;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.info-text {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.info-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.info-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    background: #e8f5e8;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    min-width: 120px;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-3px);
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.info-card h4 {
    color: #2d5a27;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-card p {
    color: #666;
    font-size: 0.85rem;
    margin: 0;
}

/* Etapa 3 - Data Summary Cards */
.data-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.data-group {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.data-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.data-group h3 {
    color: #2d5a27;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-group h3:before {
    content: '📋';
    font-size: 1.1rem;
}

.data-group:last-child h3:before {
    content: '👤';
}

.data-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s ease;
}

.data-item:last-child {
    border-bottom: none;
}

.data-item:hover {
    background: #f8f9fa;
    margin: 0 -15px;
    padding: 12px 15px;
    border-radius: 6px;
}

.data-item strong {
    color: #555;
    font-weight: 600;
    font-size: 0.95rem;
    min-width: 140px;
    text-align: left;
}

.data-item strong:after {
    content: '';
    margin-left: 5px;
}

/* Price Summary */
.price-summary {
    background: linear-gradient(135deg, #4CAF50, #2d5a27);
    color: white;
    padding: 25px;
    border-radius: 12px;
    margin: 30px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
}

.price-item strong {
    font-size: 1.8rem;
    font-weight: 700;
}

/* Verification Section */
.verification-section h2 {
    color: #2d5a27;
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.verification-section > p {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* PIX Payment Section */
.pix-payment-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pix-payment-section h2 {
    color: #2d5a27;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.pix-payment-section > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.pix-container {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.qr-code {
    margin-bottom: 25px;
}

.qr-placeholder {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.pix-code {
    margin-bottom: 25px;
}

.pix-code label {
    display: block;
    color: #555;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1rem;
}

.pix-code-container {
    display: flex;
    gap: 10px;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.pix-code-container input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    background: #f8f9fa;
    color: #333;
}

.pix-code-container button {
    padding: 12px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.pix-code-container button:hover {
    background: #45a049;
}

.payment-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.payment-info p {
    margin: 8px 0;
    color: #555;
}

.payment-instructions {
    text-align: left;
    background: #e8f5e8;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.payment-instructions h3 {
    color: #2d5a27;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.payment-instructions ol {
    color: #555;
    line-height: 1.6;
}

.payment-instructions li {
    margin-bottom: 8px;
}

/* Error Section */
.error-section {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px;
    background: #fff3f3;
    border: 1px solid #ffc0c0;
    border-radius: 12px;
}

.error-section h2 {
    color: #d32f2f;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.error-section p {
    color: #666;
    margin-bottom: 25px;
}

.info-section h2 {
    color: #2d5a27;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    color: #555;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.info-item h3 {
    color: #2d5a27;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.info-item p {
    font-size: 1rem;
    color: #666;
    text-align: left;
}

.info-item ul {
    text-align: left;
    padding-left: 20px;
}

.info-item li {
    margin-bottom: 8px;
    color: #666;
}

/* Step Header */
.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h1 {
    color: #2d5a27;
    font-size: 2.2rem;
    margin-bottom: 30px;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.progress-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-step.active {
    background: #4CAF50;
    color: white;
}

.progress-step.completed {
    background: #2d5a27;
    color: white;
}

.progress-line {
    width: 60px;
    height: 2px;
    background: #e9ecef;
}

.progress-line.completed {
    background: #4CAF50;
}

/* Forms */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:disabled {
    background-color: #f8f9fa;
    color: #6c757d;
    border-color: #dee2e6;
    cursor: not-allowed;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.help-text {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #666;
}

.help-text input[type="checkbox"],
.help-text input[type="radio"] {
    width: auto;
    margin-right: 8px;
    margin-left: 0;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

/* Verification Screen */
.verification-container {
    text-align: center;
    padding: 40px;
}

.verification-container h2 {
    color: #2d5a27;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.verification-steps {
    max-width: 400px;
    margin: 0 auto 30px;
}

.verification-step {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

.status-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.status-icon.loading {
    background: #ffc107;
    animation: pulse 1.5s infinite;
}

.status-icon.completed {
    background: #4CAF50;
    color: white;
}

.status-icon.pending {
    background: #e9ecef;
    color: #6c757d;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}

.loading-progress {
    height: 100%;
    background: linear-gradient(135deg, #4CAF50, #2d5a27);
    width: 0%;
    transition: width 0.3s ease;
    animation: loading 3s ease-in-out;
}

.loading-text {
    color: #666;
    font-style: italic;
}

/* Result Screen */
.result-container {
    max-width: 700px;
    margin: 0 auto;
}

.result-header {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.result-header.success {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: #155724;
    border: 1px solid #c3e6cb;
}

.result-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.result-data h3 {
    color: #2d5a27;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.data-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.data-item strong {
    color: #333;
}

.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.active {
    background: #d4edda;
    color: #155724;
}

/* Payment Section */
.payment-section {
    border-top: 2px solid #e9ecef;
    padding-top: 30px;
    margin-top: 30px;
}

.payment-info {
    text-align: center;
    margin-bottom: 30px;
}

.payment-info h3 {
    color: #2d5a27;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.price-display {
    margin: 20px 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5a27;
    display: block;
}

.price-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 5px;
}

.payment-deadline {
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ffeaa7;
    margin: 20px 0;
}

.payment-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.important-info {
    margin-top: 30px;
    padding: 20px;
    background: #e7f3ff;
    border-radius: 8px;
    border: 1px solid #b8daff;
}

.important-info h4 {
    color: #004085;
    margin-bottom: 15px;
}

.important-info ul {
    padding-left: 20px;
}

.important-info li {
    margin-bottom: 8px;
    color: #004085;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.footer p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.disclaimer {
    text-align: center;
    margin-bottom: 20px;
}

.disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
}

.footer-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-info p {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 5px;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .content-card {
        padding: 20px;
        margin: 0 10px 20px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .step-header h1 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .progress-bar {
        flex-direction: column;
        gap: 10px;
    }
    
    .progress-line {
        width: 2px;
        height: 30px;
    }
    
    .form-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .payment-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .info-cards {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    
    .info-card {
        min-width: 100px;
        padding: 15px;
    }
    
    .data-summary {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .data-group {
        padding: 20px;
    }
    
    .data-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        text-align: left;
    }
    
    .data-item strong {
        min-width: auto;
        font-size: 0.9rem;
    }
    
    .price-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .pix-container {
        padding: 20px;
    }
    
    .pix-code-container {
        flex-direction: column;
        max-width: 100%;
    }
    
    .pix-code-container input {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .pix-code-container button {
        width: 100%;
    }
    
    .header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .breadcrumb {
        text-align: center;
    }
    
    .data-grid {
        grid-template-columns: 1fr;
    }
    
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .breadcrumb {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .info-cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .info-card {
        min-width: 90px;
        padding: 12px;
    }
    
    .info-card h4 {
        font-size: 0.9rem;
    }
    
    .info-card p {
        font-size: 0.8rem;
    }
    
    .data-group {
        padding: 15px;
    }
    
    .data-group h3 {
        font-size: 1.1rem;
    }
    
    .data-item strong {
        font-size: 0.85rem;
    }
    
    .price-summary {
        padding: 20px;
    }
    
    .price-item strong {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
    }
    
    .step-header h1 {
        font-size: 1.5rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .verification-container {
        padding: 20px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .form-actions,
    .payment-actions {
        display: none;
    }
    
    .content-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    color: #2d5a27;
    font-size: 1.4rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
}

.modal-body {
    padding: 25px;
}

.payment-details {
    margin-bottom: 25px;
}

.payment-details h4 {
    color: #2d5a27;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f8f9fa;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .amount {
    font-weight: 700;
    color: #2d5a27;
    font-size: 1.1rem;
}

.qr-code-section {
    text-align: center;
    margin-bottom: 25px;
}

.qr-code-section h4 {
    color: #2d5a27;
    margin-bottom: 15px;
}

.qr-code-container {
    margin-bottom: 20px;
}

.qr-code-container img {
    max-width: 200px;
    height: auto;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4CAF50;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.pix-code-section h5 {
    color: #2d5a27;
    margin-bottom: 10px;
    font-size: 1rem;
}

.pix-code-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.pix-code-container input {
    flex: 1;
    padding: 10px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-family: monospace;
    font-size: 0.9rem;
    background: #f8f9fa;
}

.copy-btn {
    padding: 10px 15px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.copy-btn:hover {
    background: #45a049;
}

.payment-status {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-dot.pending {
    background: #ffc107;
}

.status-dot.completed {
    background: #4CAF50;
}

.status-dot.expired {
    background: #dc3545;
}

.countdown {
    font-weight: 600;
    color: #666;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.modal-footer .btn-secondary,
.modal-footer .btn-primary {
    min-width: 120px;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .pix-code-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .pix-code-container input {
        width: 100%;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn-secondary,
    .modal-footer .btn-primary {
        width: 100%;
    }
}

/* Payment Status Styles */
.payment-status {
    margin: 20px 0;
    padding: 15px;
    border-radius: 8px;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.status-indicator.pending .status-dot {
    background: #ffc107;
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
}

.status-indicator.completed .status-dot {
    background: #28a745;
    animation: none;
}

.status-indicator.expired .status-dot {
    background: #dc3545;
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

.payment-success,
.payment-expired {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.payment-success h2 {
    color: #28a745;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.payment-expired h2 {
    color: #dc3545;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.payment-success p,
.payment-expired p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 15px;
}