/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #2b3036;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

/* Header styles */
.header {
    padding: 16px;
    border-bottom: 1px solid #e1e4e8;
}

.header-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-size: 14px;
    font-weight: 700;
    color: #0072CE;
    line-height: 1.1;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    transition: background-color 0.2s;
}

.share-btn:hover {
    background-color: #f3f4f6;
}

/* Main Content Styles */
.content {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 16px;
    padding-bottom: 120px; /* Space for sticky footer */
}

/* Campaign Progress Styles */
.campaign-progress {
    margin-bottom: 24px;
}

.progress-bar-container {
    height: 12px;
    background-color: #e5e7eb;
    border-radius: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background-color: #2f6fed; /* Azul da pagina */
    border-radius: 6px;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
}

.stat-left {
    text-align: left;
}

.stat-right {
    text-align: right;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #004c8f;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 16px;
    color: #004c8f;
}

.page-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    color: #1f2937;
    margin: 0 0 20px 0;
}

.hero-image {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 24px;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}

.article-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 32px;
}

.article-text p {
    margin: 0 0 16px 0;
}

/* Donations section */
.section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 16px 0;
    color: #1f2937;
}

.donation-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.donation-card {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    background-color: #ffffff;
}

.donation-amount {
    font-weight: 700;
    font-size: 15px;
    color: #374151;
    margin-bottom: 6px;
}

.donation-details {
    font-size: 14px;
    color: #6b7280;
}

.donation-details strong {
    color: #374151;
    font-weight: 600;
}

.load-more-btn {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: transparent;
    font-weight: 600;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    margin-top: 8px;
    margin-bottom: 40px;
    transition: background-color 0.2s;
}

.load-more-btn:hover {
    background-color: #f9fafb;
}

/* Page Footer Styles */
.page-footer {
    background-color: #2f6fed;
    color: #c8d3de;
    padding: 32px 16px 100px;
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
}

.page-footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.footer-org-name {
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
    margin: 0 0 4px;
}

.footer-ein {
    margin: 0 0 12px;
    color: #a0aebb;
}

.footer-contact-name {
    margin: 0 0 2px;
    color: #c8d3de;
}

.footer-address {
    margin: 0 0 14px;
    color: #c8d3de;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c8d3de;
}

.footer-dot {
    color: #4a5a6a;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.footer-link {
    color: #6bbfb5;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #8fd4cc;
}

.footer-copyright {
    margin: 0;
    font-size: 12px;
    color: #5a6a7a;
}

/* Sticky Footer Styles */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px;
    border-top: 1px solid #f3f4f6;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.03);
    z-index: 100;
}

.sticky-footer-inner {
    max-width: 600px;
    margin: 0 auto;
}

.donate-btn {
    width: 100%;
    padding: 16px;
    background-color: #2f6fed;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.donate-btn:hover {
    background-color: #255ec4;
}

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