/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rawline', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container-lg {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* Header Gov.br */
.br-header {
    background: #ffffff;
    color: #ffffff;
    padding: 1rem 0;
}

.br-header.simple {
    padding: 0.5rem 0;
    margin-bottom: -30px;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    height: 40px;
}

.checkout-title h1 {
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.breadcrumb-list li::after {
    content: '>';
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb-list li:last-child::after {
    display: none;
}

.breadcrumb-list a {
    color: #1351b4;
    text-decoration: none;
}

/* Buttons */
.br-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-align: center;
    margin: 5px;
}

.br-button.primary {
    background: #1351b4;
    color: white;
}

.br-button.primary:hover {
    background: #0d3f8c;
}

.br-button.secondary {
    background: transparent;
    color: #1351b4;
    border: 2px solid #1351b4;
    font-weight: 600;
}

.br-button.secondary:hover {
    background: #1351b4;
    color: white;
}

.br-button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: #1351b4;
    color: white;
    font-weight: 600;
}

.br-button.large:hover {
    background: #0d3f8c;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(19, 81, 180, 0.3);
}

.br-button:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1351b4 0%, #0d3f8c 100%);
    color: white;
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ffd700;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-icon {
    background: #28a745;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.cta-info {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Sections */
.info-section,
.requirements-section {
    padding: 4rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1351b4;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: #1351b4;
    transform: translateY(-5px);
}

.step-number {
    background: #1351b4;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: #1351b4;
    margin-bottom: 1rem;
}

/* Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.requirement-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #1351b4;
}

.requirement-card h3 {
    color: #1351b4;
    margin-bottom: 1rem;
}

.requirement-card ul {
    list-style: none;
}

.requirement-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.requirement-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Final CTA */
.final-cta {
    background: #1351b4;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.br-footer {
    background: #333;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo img {
    height: 30px;
    filter: brightness(0) invert(1);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

/* CHECKOUT STYLES */
.checkout-page {
    background: white;
}

.checkout-main {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

.checkout-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Progress Bar */
.progress-bar {
    display: flex;
    background: #f8f9fa;
    padding: 1rem;
}

.progress-step {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    position: relative;
}

.progress-step::after {
    content: '';
    position: absolute;
    right: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background: #ddd;
}

.progress-step:last-child::after {
    display: none;
}

.progress-step.active {
    color: #1351b4;
    font-weight: 600;
}

.step-number {
    background: #ddd;
    color: #666;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.progress-step.active .step-number {
    background: #1351b4;
    color: white;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 2rem;
}

.form-step.active {
    display: block;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-header h2 {
    color: #1351b4;
    margin-bottom: 0.5rem;
}

.step-header p {
    color: #666;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1351b4;
}

.form-group input[readonly] {
    background: #f8f9fa;
    color: #666;
}

/* Address Section */
.address-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.address-section h3 {
    color: #1351b4;
    margin-bottom: 1rem;
}

/* Email Suggestions */
.email-suggestions {
    position: relative;
}

#emailSuggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.email-suggestion {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.email-suggestion:hover {
    background-color: #f0f8ff;
}

.email-suggestion:last-child {
    border-bottom: none;
}

/* Loading States */
.loading-cep, .loading-agencies {
    color: #1351b4;
    font-size: 0.9rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.loading-cep::before, .loading-agencies::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #1351b4;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Agency Cards */
.agencies-container {
    margin: 2rem 0;
}

.agencies-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agency-card {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.agency-card:hover {
    border-color: #1351b4;
    box-shadow: 0 2px 8px rgba(19, 81, 180, 0.1);
}

.agency-card.selected {
    border-color: #1351b4;
    background-color: #f0f8ff;
}

.agency-info h4 {
    color: #1351b4;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.agency-address {
    color: #666;
    margin-bottom: 0.25rem;
}

.agency-distance {
    color: #28a745;
    font-weight: 500;
    font-size: 0.9rem;
}

.select-agency {
    min-width: 120px;
}

.agency-card.selected .select-agency {
    background-color: #28a745;
    color: white;
}

.agency-card.selected .select-agency::after {
    content: ' ✓';
}

/* Error Messages */
.error-message {
    color: #dc3545;
    text-align: center;
    padding: 2rem;
    background-color: #f8d7da;
    border-radius: 4px;
    border: 1px solid #f5c6cb;
}

/* Form Improvements */
.form-group {
    position: relative;
}

.form-group input:focus {
    border-color: #1351b4;
    box-shadow: 0 0 0 2px rgba(19, 81, 180, 0.1);
}

.form-group input[readonly] {
    background-color: #f8f9fa;
    color: #6c757d;
}

/* Responsive Design Improvements */
@media (max-width: 1200px) {
    .container-lg {
        padding: 0 1rem;
    }
    
    .checkout-container {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .steps-grid,
    .requirements-grid,
    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .requirement-card {
        min-width: auto;
        padding: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .progress-bar {
        flex-direction: column;
        gap: 0.5rem;
        align-items: stretch;
    }
    
    .progress-step {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem;
        background: #f8f9fa;
        border-radius: 4px;
    }
    
    .progress-step::after {
        display: none;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .br-button {
        width: 100%;
        justify-content: center;
    }
    
    .agency-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .agency-info {
        width: 100%;
    }
    
    .select-agency {
        width: 100%;
    }
    
    .payment-content {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-actions, .success-actions {
        flex-direction: column;
    }
    
    .pix-code-input {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .pix-code-input input {
        font-size: 0.8rem;
        padding: 0.75rem;
    }
    
    .summary-card {
        padding: 1rem;
    }
    
    .payment-summary {
        margin-bottom: 1.5rem;
    }
    
    .payment-instructions ol {
        padding-left: 1.2rem;
    }
    
    .payment-timer {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .checkout-title h1 {
        font-size: 1.5rem;
    }
    
    .step-header h2 {
        font-size: 1.5rem;
    }
    
    .step-header p {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .container-lg {
        padding: 0 0.75rem;
    }
    
    .checkout-container {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .step-card,
    .requirement-card,
    .summary-card {
        padding: 0.75rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.9rem;
    }
    
    .br-button {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .progress-step {
        padding: 0.5rem;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
    
    .header-logo img {
        max-height: 40px;
    }
    
    .checkout-title h1 {
        font-size: 1.25rem;
    }
    
    .payment-instructions {
        padding: 0.75rem;
    }
    
    .payment-instructions ol {
        font-size: 0.9rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .info-item span:first-child {
        font-weight: 600;
        color: #666;
        font-size: 0.85rem;
    }
    
    .info-item span:last-child {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .checkout-container {
        padding: 0.75rem;
        margin: 0.5rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .step-header h2 {
        font-size: 1.25rem;
    }
    
    .summary-item,
    .summary-total {
        font-size: 0.9rem;
    }
    
    .total-price {
        font-size: 1.1rem;
    }
    
    .pix-code-input input {
        font-size: 0.75rem;
        word-break: break-all;
    }
}

/* Landscape orientation for mobile devices */
@media (max-width: 768px) and (orientation: landscape) {
    .progress-bar {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .progress-step {
        flex: 0 1 auto;
        min-width: 120px;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Progress Bar Mobile - Com margem e bordas arredondadas */
@media (max-width: 768px) {
    .checkout-container .progress-bar {
        margin: 0 5px;
        padding: 1rem 20px;
        width: calc(100% - 10px);
        border-radius: 12px;
        background: #f8f9fa;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1.2rem;
    }
    
    .progress-step {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        flex: 0 0 auto;
        min-width: 70px;
    }
    
    .progress-step::after {
        display: none;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        font-weight: 600;
    }
    
    .step-label {
        font-size: 0.85rem;
        font-weight: 500;
        text-align: center;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    /* Melhorar espaçamento dos botões */
    .form-actions {
        gap: 1rem;
        margin-top: 2rem;
    }
    
    .payment-actions,
    .success-actions {
        gap: 1rem;
        margin-top: 2rem;
    }
}

@media (max-width: 576px) {
    .checkout-container .progress-bar {
        margin: 0 5px;
        padding: 0.9rem 20px;
        width: calc(100% - 10px);
        gap: 1rem;
    }
    
    .progress-step {
        min-width: 65px;
    }
    
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .step-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .checkout-container .progress-bar {
        margin: 0 5px;
        padding: 0.8rem 20px;
        width: calc(100% - 10px);
        gap: 0.8rem;
    }
    
    .progress-step {
        min-width: 60px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
}
/* Print styles */
@media print {
    .br-header,
    .progress-bar,
    .form-actions,
    .payment-actions {
        display: none;
    }
    
    .checkout-container {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .summary-card {
        border: 1px solid #ddd;
        box-shadow: none;
    }
}

/* Estilos para seleção de modalidade */
.legitimacy-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h4 {
    margin: 0 0 0.5rem 0;
    color: #2c3e50;
    font-size: 1rem;
    font-weight: 600;
}

.info-content p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

.modality-selection {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.modality-card {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.modality-card:hover {
    border-color: #1351b4;
    box-shadow: 0 2px 8px rgba(19, 81, 180, 0.1);
}

.modality-card.selected {
    border-color: #1351b4;
    background-color: #f0f8ff;
}

.modality-card.popular {
    border-color: #ffc107;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #ffc107;
    color: #212529;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.modality-info {
    flex: 1;
}

.modality-info h4 {
    color: #1351b4;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.modality-description {
    color: #666;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.modality-price {
    color: #28a745;
    font-weight: 600;
    font-size: 1.1rem;
}

.select-modality-btn {
    min-width: 120px;
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #1351b4;
    border: 2px solid #1351b4;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.select-modality-btn:hover {
    background: #1351b4;
    color: white;
}

.modality-card.selected .select-modality-btn {
    background: #28a745;
    color: white;
    border-color: #28a745;
}

.modality-card.selected .select-modality-btn:hover {
    background: #1e7e34;
    border-color: #1e7e34;
}

@media (max-width: 768px) {
    .legitimacy-info {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .modality-selection {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .modality-card {
        padding: 1rem;
    }

    .vehicle-icon {
        font-size: 2.5rem;
    }
}

/* Success Page Styles */
.success-page {
    background-color: #ffffff;
}

.success-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
}

.success-status {
    text-align: center;
    margin-bottom: 3rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #d4edda;
    border: 4px solid #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 3rem;
}

.success-info {
    margin-bottom: 3rem;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.next-steps {
    margin-bottom: 3rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1351b4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1351b4;
    margin-bottom: 0.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-content {
        grid-template-columns: 1fr;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-actions, .success-actions {
        flex-direction: column;
    }
    
    .pix-code-input {
        flex-direction: column;
    }
}

/* Centralizar botões na página de pagamento PIX */
.form-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .br-button {
    min-width: 150px;
}

/* Centralizar botão de copiar PIX */
.pix-code-input {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.pix-code-input input {
    flex: 1;
    max-width: 400px;
}

.pix-code-input .br-button {
    min-width: 120px;
}