/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #2ecc71;
    --green-dark: #27ae60;
    --green-light: #d5f5e3;
    --text-dark: #1a1a2e;
    --text-medium: #555;
    --text-light: #888;
    --bg-white: #ffffff;
    --bg-light: #f5f7fa;
    --bg-card: #ffffff;
    --border: #e8e8e8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== HEADER ===== */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon-fa {
    font-size: 1.8rem;
    color: var(--green-primary);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--green-dark);
    letter-spacing: -0.5px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-medium);
    transition: color 0.2s;
}

.header-link:hover {
    color: var(--green-dark);
}

.btn-create {
    background: var(--green-primary);
    color: white !important;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: background 0.2s, transform 0.2s;
}

.btn-create:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

/* ===== BANNER ===== */
.banner {
    background: #ffffff;
}

.banner-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-img {
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    padding-bottom: 100px;
}

.content-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Campaign Info */
.campaign-info {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    margin-top: -30px;
    position: relative;
    box-shadow: var(--shadow-md);
}

.campaign-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 6px;
}

.campaign-id {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Progress */
.progress-section {
    margin-top: 24px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.progress-values {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.progress-current {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--green-dark);
}

.progress-goal {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green-primary), var(--green-dark));
    border-radius: 50px;
    transition: width 1.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-stats {
    display: flex;
    gap: 20px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-medium);
}

.stat i {
    color: var(--green-primary);
    font-size: 0.8rem;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-donate {
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: white;
    flex: 1;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.5);
}

.btn-share {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border);
    padding: 14px 24px;
}

.btn-share:hover {
    border-color: var(--green-primary);
    color: var(--green-dark);
    background: var(--green-light);
}

/* About Section */
.about-section {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}

.about-section h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.campaign-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.campaign-date i {
    color: var(--green-primary);
}

.campaign-description p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.8;
}

.campaign-description strong {
    color: var(--text-dark);
}

/* Organizer */
.organizer-section {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.organizer-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.8rem;
}

.organizer-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.organizer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-dark);
    font-size: 1.2rem;
}

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

.organizer-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.organizer-location {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 12px 20px;
    z-index: 99;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-buttons.visible {
    bottom: 0;
}

.floating-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.btn-floating-donate {
    flex: 1;
    padding: 12px 24px;
}

.btn-floating-share {
    padding: 12px 18px;
    min-width: auto;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a2e;
    color: #ccc;
    padding: 48px 0 0;
    margin-top: 40px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: white;
}

.footer-logo-icon {
    font-size: 1.6rem;
    color: var(--green-primary);
}

.footer-security {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
}

.security-badge i {
    font-size: 1.4rem;
    color: var(--green-primary);
}

.security-badge div {
    display: flex;
    flex-direction: column;
}

.security-badge strong {
    font-size: 0.8rem;
    color: white;
}

.security-badge span {
    font-size: 0.7rem;
    color: #999;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 32px 0;
}

.footer-col h4 {
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--green-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
}

/* ===== DONATE PAGE ===== */
.donate-main {
    padding: 32px 20px 100px;
}

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

.donate-campaign-summary {
    text-align: center;
    margin-bottom: 32px;
}

.donate-campaign-summary h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.donate-campaign-summary h2 i {
    color: var(--green-primary);
}

.donate-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 6px;
}

/* Steps */
.donate-step {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.step-number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-light);
    border: 2px solid var(--border);
}

.step-number.active {
    background: var(--green-primary);
    color: white;
    border-color: var(--green-primary);
}

.step-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
}

/* Form */
.donate-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-group label i {
    color: var(--green-primary);
    font-size: 0.8rem;
}

.form-group input {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--bg-light);
}

.form-group input:focus {
    outline: none;
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
    background: white;
}

/* Value Presets */
.value-presets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.preset-btn {
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    color: var(--text-dark);
}

.preset-btn:hover,
.preset-btn.active {
    border-color: var(--green-primary);
    background: var(--green-light);
    color: var(--green-dark);
}

/* Value Input */
.value-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-prefix {
    position: absolute;
    left: 16px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-medium);
}

.value-input-wrapper input {
    padding-left: 46px;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Contribute Button */
.btn-contribute {
    width: 100%;
    margin-top: 20px;
    padding: 16px;
    background: linear-gradient(135deg, var(--green-primary), var(--green-dark));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

.btn-contribute:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.btn-contribute:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.5);
}

/* Payment */
.payment-step {
    border: 2px solid var(--green-primary);
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.payment-card {
    text-align: center;
}

.payment-value {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    border: 1px solid var(--border);
}

.payment-value span {
    font-size: 0.85rem;
    color: var(--text-medium);
}

.payment-value strong {
    font-size: 1.2rem;
    color: var(--green-dark);
}

.payment-divider {
    height: 1px;
    background: var(--border);
    margin: 10px 0;
}

.qrcode-section {
    padding: 10px 0;
}

.qr-instruction {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.qrcode-placeholder {
    display: inline-block;
    padding: 16px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* PIX Copy */
.pix-copy-section {
    margin-top: 14px;
    text-align: left;
}

.pix-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pix-label i {
    color: var(--green-primary);
}

.pix-key-box {
    display: flex;
    gap: 8px;
}

.pix-key-box input {
    flex: 1;
    padding: 12px 14px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-family: monospace;
    background: var(--bg-light);
    color: var(--text-medium);
}

.btn-copy {
    padding: 12px 20px;
    background: var(--green-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    font-family: inherit;
}

.btn-copy:hover {
    background: var(--green-dark);
}

.copy-feedback {
    font-size: 0.8rem;
    color: var(--green-dark);
    margin-top: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.copy-feedback.show {
    opacity: 1;
}

.payment-info {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.payment-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.payment-info i {
    color: var(--green-primary);
}

/* PIX Instructions */
.pix-instructions {
    margin-top: 16px;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.pix-instructions h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pix-instructions h4 i {
    color: var(--green-primary);
}

.pix-instructions ol {
    margin: 0 0 0 18px;
    font-size: 0.82rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.pix-instructions li {
    margin-bottom: 2px;
}

/* Payment Confirmation */
.payment-confirmed {
    text-align: center;
    padding: 30px 20px;
    animation: fadeInUp 0.5s ease;
}

.confirmed-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.8rem;
    color: var(--green-dark);
}

.confirmed-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 8px;
}

.confirmed-message {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.confirmed-details {
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 14px;
    font-size: 0.85rem;
    color: var(--text-medium);
    border: 1px solid var(--border);
}

.confirmed-details strong {
    color: var(--green-dark);
}

/* Value validation message */
.value-warning {
    font-size: 0.8rem;
    color: #e74c3c;
    margin-top: 6px;
    display: none;
    align-items: center;
    gap: 4px;
}

.value-warning.show {
    display: flex;
}

.value-warning i {
    font-size: 0.75rem;
}

/* Payment Loading */
.payment-loading {
    text-align: center;
    padding: 24px 20px;
}

.loading-spinner {
    font-size: 2.5rem;
    color: var(--green-primary);
    margin-bottom: 16px;
}

.payment-loading p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.loading-sub {
    font-size: 0.85rem !important;
    font-weight: 400 !important;
    color: var(--text-light) !important;
}

/* Payment Error */
.payment-error {
    text-align: center;
    padding: 40px 20px;
}

.error-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 16px;
}

.error-message {
    font-size: 0.95rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.btn-retry {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.btn-retry:hover {
    border-color: var(--green-primary);
    color: var(--green-dark);
}

/* ===== INTERNAL PAGES ===== */
.page-main {
    padding: 32px 20px 60px;
}

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

.page-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.page-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.page-content {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.page-section {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.page-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.page-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-section h2 i {
    color: var(--green-primary);
}

.page-section h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 16px 0 8px;
}

.page-section p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 10px;
}

.page-section ul {
    margin: 10px 0 10px 20px;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.8;
}

.page-section li {
    margin-bottom: 6px;
}

.legal-content .page-section h2 {
    font-size: 1.05rem;
}

/* Values Grid (Quem Somos) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 16px;
}

.value-card {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
}

.value-card i {
    font-size: 1.6rem;
    color: var(--green-primary);
    margin-bottom: 10px;
}

.value-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 8px 0;
}

.value-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Impact Stats (Quem Somos) */
.impact-stats {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.impact-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: var(--green-light);
    border-radius: var(--radius-md);
}

.impact-item strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--green-dark);
}

.impact-item span {
    font-size: 0.8rem;
    color: var(--text-medium);
}

/* Steps Flow (Como Funciona) */
.steps-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-step {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 28px;
    width: 100%;
    text-align: center;
    position: relative;
}

.flow-step-final {
    background: var(--green-light);
    border: 2px solid var(--green-primary);
}

.flow-step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    margin: 0 auto 12px;
}

.flow-step-icon {
    font-size: 2rem;
    color: var(--green-primary);
    margin-bottom: 12px;
}

.flow-step h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.flow-connector {
    padding: 10px 0;
    color: var(--green-primary);
    font-size: 1.2rem;
}

.cta-section {
    text-align: center;
    margin-top: 32px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-container {
        height: 56px;
    }

    .header-nav .header-link:first-child {
        display: none;
    }

    .banner-img {
        max-height: 280px;
    }

    .campaign-info {
        padding: 24px 20px;
        margin-top: -20px;
        border-radius: var(--radius-md);
    }

    .campaign-title {
        font-size: 1.2rem;
    }

    .progress-current {
        font-size: 1.4rem;
    }

    .progress-goal {
        font-size: 0.85rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-donate, .btn-share {
        width: 100%;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-security {
        flex-direction: column;
        width: 100%;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Donate page */
    .donate-step {
        padding: 20px 16px;
    }

    .value-presets {
        grid-template-columns: repeat(2, 1fr);
    }

    .pix-key-box {
        flex-direction: column;
    }

    .donate-campaign-summary h2 {
        font-size: 1rem;
    }

    .payment-value {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }

    /* Internal pages */
    .page-content {
        padding: 24px 18px;
    }

    .page-title {
        font-size: 1.4rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats {
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .campaign-title {
        font-size: 1.05rem;
    }

    .progress-current {
        font-size: 1.2rem;
    }

    .progress-stats {
        flex-direction: column;
        gap: 8px;
    }
}
