:root {
    --primary-color: #ce7d14;
    --primary-hover: #b56b0f;
    --bg-color: #f9fafb;
    --text-color: #1f2937;
    --text-muted: #4b5563;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --green-bg: #ecfdf5;
    --green-text: #065f46;
    --red-bg: #fef2f2;
    --red-text: #991b1b;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --radius: 0.5rem;
    --font-sans: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

.app-container {
    max-width: 480px;
    margin: 0 auto;
    background-color: var(--white);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-bottom: 80px;
    /* Space for sticky button */
}

/* Header */
.header {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--white);
}

.logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

/* Main Content */
main {
    padding: 1rem;
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

/* Campaign Card */
.tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.tag {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

.tag-green {
    background-color: var(--green-bg);
    color: var(--green-text);
}

.tag-red {
    background-color: var(--red-bg);
    color: var(--red-text);
}

.title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* Progress Bar */
.progress-container {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.progress-bar-bg {
    width: 100%;
    height: 0.75rem;
    background-color: #e5e7eb;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 9999px;
    transition: width 1s ease-in-out;
}

.progress-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.amount-raised {
    font-weight: 700;
    color: #111827;
}

.progress-missing {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Institution Info */
.institution-info {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.institution-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.institution-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.institution-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.detail-item:last-child {
    margin-bottom: 0;
}

.icon-orange {
    color: #f97316;
    width: 1rem;
    height: 1rem;
    margin-top: 0.25rem;
}

.detail-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.detail-value {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.link-button {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 900;
    text-decoration: underline;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 1rem;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

/* Appeal Section */
.appeal-section {
    margin: 1.5rem 0;
}

.appeal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.image-container {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.appeal-section p,
.about-section p,
.goals-section p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* About Section */
.about-section {
    margin: 1.5rem 0;
}

.about-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.image-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background-color: #f97316;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.impact-card {
    padding: 0.75rem;
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.impact-card.red {
    background-color: #fef2f2;
    border: 1px solid #fecaca;
}

.impact-card.green {
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.impact-card.full-width {
    grid-column: span 2;
    flex-direction: row;
    align-items: center;
}

.impact-icon {
    font-weight: 700;
    font-size: 1.125rem;
}

.red .impact-icon {
    color: #ef4444;
}

.green .impact-icon {
    color: #22c55e;
}

.impact-text {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
}

.red .impact-text {
    color: #b91c1c;
}

.green .impact-text {
    color: #15803d;
}

/* FAQ Accordion */
.faq-section h2 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: none;
    border: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    text-align: left;
}

.accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.accordion-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-bottom: 1rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* Approximate max height */
}

.accordion-header i {
    transition: transform 0.3s;
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Tabs */
.tabs-section {
    margin-top: 0.5rem;
}

.tabs-header {
    border-bottom: 1px solid var(--border-color);
    display: flex;
}

.tab-btn {
    flex: 1;
    padding: 0.75rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    border-bottom-color: #111827;
}

.tab-content {
    padding: 1rem;
}

.tab-content h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tab-content h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.5rem 0 0.75rem;
}

.donation-tiers {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tier-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    border: 1px solid transparent;
}

.tier-amount {
    font-weight: 700;
    font-size: 1rem;
    min-width: 3.5rem;
}

.tier-info {
    flex: 1;
}

.tier-title {
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.tier-desc {
    font-size: 0.75rem;
}

/* Tier Colors */
.tier-card.green {
    background: linear-gradient(to right, #f0fdf4, #dcfce7);
    border-color: #bbf7d0;
}

.tier-card.green .tier-amount {
    color: #16a34a;
}

.tier-card.green .tier-title {
    color: #166534;
}

.tier-card.green .tier-desc {
    color: #15803d;
}

.tier-card.blue {
    background: linear-gradient(to right, #eff6ff, #dbeafe);
    border-color: #bfdbfe;
}

.tier-card.blue .tier-amount {
    color: #2563eb;
}

.tier-card.blue .tier-title {
    color: #1e40af;
}

.tier-card.blue .tier-desc {
    color: #1d4ed8;
}

.tier-card.purple {
    background: linear-gradient(to right, #faf5ff, #f3e8ff);
    border-color: #e9d5ff;
}

.tier-card.purple .tier-amount {
    color: #9333ea;
}

.tier-card.purple .tier-title {
    color: #6b21a8;
}

.tier-card.purple .tier-desc {
    color: #7e22ce;
}

.tier-card.orange {
    background: linear-gradient(to right, #fff7ed, #ffedd5);
    border-color: #fed7aa;
}

.tier-card.orange .tier-amount {
    color: #ea580c;
}

.tier-card.orange .tier-title {
    color: #9a3412;
}

.tier-card.orange .tier-desc {
    color: #c2410c;
}

.tier-card.red {
    background: linear-gradient(to right, #fef2f2, #fee2e2);
    border-color: #fecaca;
}

.tier-card.red .tier-amount {
    color: #dc2626;
}

.tier-card.red .tier-title {
    color: #991b1b;
}

.tier-card.red .tier-desc {
    color: #b91c1c;
}

.tier-card.pink {
    background: linear-gradient(to right, #fdf2f8, #fce7f3);
    border-color: #fbcfe8;
}

.tier-card.pink .tier-amount {
    color: #db2777;
}

.tier-card.pink .tier-title {
    color: #9d174d;
}

.tier-card.pink .tier-desc {
    color: #be185d;
}

.tier-footer {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: var(--radius);
    padding: 0.75rem;
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: #1e40af;
    text-align: center;
}

/* Recent Donations */
.recent-donations {
    margin-top: 1.5rem;
}

.donations-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 12rem;
    overflow-y: auto;
}

.donation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background-color: rgba(206, 125, 20, 0.05);
    border: 1px solid #dcfce7;
    border-radius: var(--radius);
}

.donation-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.donation-icon {
    width: 2rem;
    height: 2rem;
    background-color: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.donation-icon svg {
    width: 1rem;
    height: 1rem;
    color: #b91c1c;
}

.donation-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #111827;
}

.donation-amount {
    font-size: 0.875rem;
    font-weight: 700;
    color: #111827;
}

/* Store Info */
.store-info {
    padding: 1.5rem 1rem;
}

.store-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.store-header img {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
}

.store-header h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
}

.verified-badge {
    margin-left: auto;
    width: 1.5rem;
    height: 1.5rem;
    background-color: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.store-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.store-links button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    background: none;
    border: none;
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
}

.store-links button:hover {
    background-color: #f9fafb;
}

.security-note {
    background-color: #f9fafb;
    border-radius: var(--radius);
    padding: 1rem;
    margin-top: 1rem;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.security-note p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: #111827;
    color: white;
    padding: 1.5rem 1rem;
    margin-top: 0.5rem;
}

.footer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-header img {
    width: 48px;
    height: 48px;
    border-radius: 0.25rem;
}

.footer-header h3 {
    font-size: 1rem;
    font-weight: 600;
}

.footer-header p {
    font-size: 0.875rem;
    color: #d1d5db;
}

.footer-links {
    list-style: none;
    margin-bottom: 1rem;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    border-top: 1px solid #374151;
    padding-top: 0.75rem;
    text-align: center;
}

.footer-copyright p {
    font-size: 0.75rem;
    color: #9ca3af;
}

/* Sticky Bottom */
.sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 40;
    display: flex;
    justify-content: center;
}

.sticky-bottom .btn-primary {
    max-width: 480px;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 50;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.open {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: white;
    border-radius: var(--radius);
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-md);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
}

.close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #9ca3af;
    padding: 0.25rem;
}

.close-btn:hover {
    color: #111827;
}

.modal-body {
    padding: 1.5rem;
}

.modal-body.scrollable {
    overflow-y: auto;
}

/* Donation Modal Specifics */
.donation-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}

.donation-opt {
    background-color: white;
    border: 1px solid var(--border-color);
    padding: 0.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.donation-opt:hover,
.donation-opt.selected {
    border-color: var(--primary-color);
    background-color: #fff7ed;
    /* orange-50 */
    color: var(--primary-color);
}

.full-width {
    width: 100%;
}

.mt-4 {
    margin-top: 1rem;
}

/* Image Modal */
.image-modal {
    background: transparent;
    box-shadow: none;
    padding: 0;
    max-width: 90vw;
}

.image-modal img {
    width: 100%;
    border-radius: var(--radius);
}

.close-btn-floating {
    position: absolute;
    top: -2rem;
    right: 0;
    background: white;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Transparency Modal Info Cards */
.info-card {
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-card p,
.info-card ul {
    font-size: 0.875rem;
}

.info-card ul {
    list-style: none;
}

.info-card.blue {
    background-color: #eff6ff;
    border-color: #bfdbfe;
}

.info-card.blue h3 {
    color: #1e3a8a;
}

.info-card.blue p {
    color: #1e40af;
}

.info-card.green {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.info-card.green h3 {
    color: #14532d;
}

.info-card.green ul {
    color: #166534;
}

.info-card.purple {
    background-color: #faf5ff;
    border-color: #e9d5ff;
}

.info-card.purple h3 {
    color: #581c87;
}

.info-card.purple p,
.info-card.purple ul {
    color: #6b21a8;
}

.info-card.orange {
    background-color: #fff7ed;
    border-color: #fed7aa;
}

.info-card.orange h3 {
    color: #7c2d12;
}

.info-card.orange p {
    color: #9a3412;
}

/* How We Help Colors */
.info-card.green-light {
    background-color: rgba(206, 125, 20, 0.05);
    border-color: #bbf7d0;
}

.info-card.green-light h3 {
    color: #14532d;
}

.info-card.green-light p {
    color: #166534;
}

.info-card.blue-light {
    background-color: rgba(206, 125, 20, 0.05);
    border-color: #bfdbfe;
}

.info-card.blue-light h3 {
    color: #1e3a8a;
}

.info-card.blue-light p {
    color: #1e40af;
}

.info-card.purple-light {
    background-color: rgba(206, 125, 20, 0.05);
    border-color: #e9d5ff;
}

.info-card.purple-light h3 {
    color: #581c87;
}

.info-card.purple-light p {
    color: #6b21a8;
}

.info-card.orange-light {
    background-color: rgba(206, 125, 20, 0.05);
    border-color: #fed7aa;
}

.info-card.orange-light h3 {
    color: #7c2d12;
}

.info-card.orange-light p {
    color: #9a3412;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #10B981;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow-md);
    z-index: 100;
    min-width: 300px;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-content {
    display: flex;
    flex-direction: column;
}

.toast-title {
    font-size: 0.75rem;
    font-weight: 600;
}

.toast-message {
    font-size: 0.75rem;
}

/* Modal Updates */
.modal-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    text-align: center;
}

.donation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.donation-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 0.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    opacity: 0.9;
}

.donation-btn:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.donation-btn.selected {
    opacity: 1;
    box-shadow: 0 0 0 2px white, 0 0 0 4px var(--primary-color);
    z-index: 1;
}

.custom-amount-container {
    margin-bottom: 1.5rem;
}

/* Remove arrows/spinners */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#customAmount {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #d1d5db;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: #111827;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

#customAmount:focus {
    border-color: var(--primary-color);
}

.error-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    text-align: center;
    min-height: 1.25rem;
    font-weight: 500;
}

.banking-info {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 0.75rem;
    color: #4b5563;
}

.info-row {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-weight: 600;
    margin-bottom: 0.125rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    vertical-align: text-bottom;
}

.btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pix Page Styles */
.pix-card {
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.title-lg {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.amount-box {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.amount-label {
    color: #f97316;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.amount-value {
    color: #f97316;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.divider {
    height: 1px;
    background-color: #dbeafe;
    margin: 1rem 0;
}

.banking-details {
    text-align: left;
    font-size: 0.775rem;
    color: #4b5563;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.detail-row strong {
    color: #1f2937;
    font-weight: 600;
}

.pix-input-group {
    margin-bottom: 1.5rem;
}

.pix-input-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    background-color: #f9fafb;
    font-family: monospace;
    font-size: 0.875rem;
    color: #111827;
}

.copy-icon-btn {
    position: absolute;
    right: 0.5rem;
    background: none;
    border: none;
    color: #f97316;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.copy-icon-btn:hover {
    color: #ea580c;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.btn-copy {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
}

.btn-qr {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: 2px solid #f97316;
    color: #f97316;
    font-weight: 600;
    background: white;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-qr:hover {
    background-color: #fff7ed;
}

.instructions-box {
    background-color: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.instructions-box h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1rem;
}

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

.step {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.step-number {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #f97316;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step p {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.4;
    margin: 0;
}

.timer-status {
    text-align: center;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ea580c;
    font-weight: 600;
    font-size: 0.875rem;
    background-color: #fff7ed;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.expiry-text {
    font-size: 0.75rem;
    color: #6b7280;
}

.qr-code-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
}

/* Pix Page Utilities */
.bg-blue-50 {
    background-color: #eff6ff;
}

.border-blue-200 {
    border-color: #bfdbfe;
}

.text-orange-500 {
    color: #f97316;
}

.text-orange-600 {
    color: #ea580c;
}

.border-orange-500 {
    border-color: #f97316;
}

.bg-orange-500 {
    background-color: #f97316;
}

.hover-bg-orange-50:hover {
    background-color: #fff7ed;
}

.text-green-500 {
    color: #22c55e;
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.border-green-200 {
    border-color: #bbf7d0;
}

.text-green-800 {
    color: #166534;
}

.font-mono {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.border-2 {
    border-width: 2px;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.space-y-3>*+* {
    margin-top: 0.75rem;
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.qr-code-container {
    display: flex;
    justify-content: center;
    margin: 1.5rem 0;
    padding: 1rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
}