:root {
    --warm-cream: #FDF6EC;
    --deep-rust: #A0522D;
    --soft-rust: #C8764A;
    --light-peach: #F5D6BA;
    --dark-brown: #3E1F0D;
    --golden: #D4A249;
    --muted-green: #6B8F6B;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Source Sans 3', sans-serif;
    --shadow-soft: 0 4px 24px rgba(62, 31, 13, 0.06);
    --shadow-strong: 0 8px 32px rgba(62, 31, 13, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    background: var(--warm-cream);
    color: var(--dark-brown);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Accents */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

body::before {
    top: -50%;
    right: -30%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(212, 162, 73, 0.08) 0%, transparent 70%);
}

body::after {
    bottom: -40%;
    left: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(160, 82, 45, 0.06) 0%, transparent 70%);
}

.page-wrapper {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 20px;
}

/* Animations */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-subtle {
    0% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(160, 82, 45, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 48px rgba(160, 82, 45, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(160, 82, 45, 0.4);
    }
}

/* Navigation Menu */
.site-nav {
    position: sticky;
    top: 41px;
    z-index: 1999;
    background: rgba(253, 246, 236, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 214, 186, 0.9);
    box-shadow: 0 2px 16px rgba(62, 31, 13, 0.08);
}

.site-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 20px;
    max-width: 820px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
}

.site-nav-inner::-webkit-scrollbar {
    display: none;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 16px;
    border-radius: 99px;
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--deep-rust);
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
    border: 1px solid transparent;
}

.nav-link:hover {
    background: rgba(160, 82, 45, 0.08);
    border-color: rgba(160, 82, 45, 0.2);
    transform: translateY(-1px);
}

.nav-link.nav-cta {
    background: var(--deep-rust);
    color: white;
    box-shadow: 0 3px 12px rgba(160, 82, 45, 0.35);
}

.nav-link.nav-cta:hover {
    background: var(--soft-rust);
    border-color: transparent;
    box-shadow: 0 5px 18px rgba(160, 82, 45, 0.45);
    transform: translateY(-2px);
}

/* Scroll offset for sticky bars */
#historia, #custos, #quem-ajudou, #doar {
    scroll-margin-top: 100px;
}

/* Mural Contributions Badge */
.mural-count-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(107, 143, 107, 0.1);
    border: 1px solid rgba(107, 143, 107, 0.25);
    border-radius: 14px;
    padding: 10px 18px;
    margin-bottom: 18px;
}

.mural-count-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--muted-green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mural-count-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.mural-count-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark-brown);
    line-height: 1.2;
}

.mural-count-num {
    font-size: 0.78rem;
    color: var(--muted-green);
    font-weight: 500;
}

/* Urgency Bar */
.urgency-bar {
    background: linear-gradient(90deg, #d32f2f, #ef5350, #d32f2f);
    background-size: 200% auto;
    color: white;
    padding: 10px 20px;
    text-align: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    animation: gradient-scroll 3s linear infinite;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: var(--container-width);
    margin: 0 auto;
}

@keyframes gradient-scroll {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Header */
header {
    text-align: center;
    padding: 60px 20px 40px;
    animation: fadeDown 1s ease-out;
}

.heart-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    position: relative;
    animation: pulse 2.5s ease-in-out infinite;
}

.heart-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--soft-rust);
    filter: drop-shadow(0 4px 12px rgba(160, 82, 45, 0.25));
}

header h1 {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--deep-rust);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

header p.subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--soft-rust);
    max-width: 520px;
    margin: 0 auto;
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
    opacity: 0.5;
}

.divider span {
    display: block;
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, var(--golden), transparent);
}

.divider .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--golden);
}

/* Photo Section */
.photo-section {
    text-align: center;
    margin-bottom: 32px;
    animation: fadeUp 1s ease-out 0.2s both;
}

.photo-frame {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 4px solid var(--light-peach);
    background: var(--light-peach);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(160, 82, 45, 0.15);
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.photo-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(160, 82, 45, 0.25);
}

.photo-frame::after {
    content: 'Expandir';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(62, 31, 13, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition);
}

.photo-frame:hover::after {
    opacity: 1;
}

.person-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--deep-rust);
}

.person-age {
    font-size: 1rem;
    color: var(--soft-rust);
    font-weight: 300;
    margin-top: 4px;
}

/* Progress Bar */
.progress-section {
    margin-bottom: 32px;
    animation: fadeUp 1s ease-out 0.4s both;
}

.progress-bar-bg {
    height: 28px;
    background: var(--light-peach);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--golden), var(--soft-rust));
    transition: width 1.5s ease-out;
}

.progress-percent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--deep-rust);
    letter-spacing: 0.03em;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--soft-rust);
}

.progress-labels strong {
    color: var(--deep-rust);
    font-weight: 700;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 36px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(245, 214, 186, 0.5);
    animation: fadeUp 1s ease-out 0.5s both;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--golden), var(--soft-rust), var(--golden));
}

.card-label {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--deep-rust);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-label .icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light-peach);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-label .icon svg {
    width: 14px;
    height: 14px;
    fill: var(--deep-rust);
}

.story-text {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--dark-brown);
    font-weight: 300;
}

.story-text p {
    margin-bottom: 16px;
}

/* Instagram Link */
.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: white;
    text-decoration: none;
    border-radius: 99px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.3);
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(225, 48, 108, 0.4);
}

/* Pix Card */
.pix-card {
    background: linear-gradient(135deg, var(--deep-rust), #7B3A1E);
    border-radius: 20px;
    padding: 40px 36px;
    margin-bottom: 28px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-strong);
    animation: fadeUp 1s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.pix-logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 99px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

.pix-key-box {
    background: rgba(255, 255, 255, 0.12);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    padding: 24px;
    margin-bottom: 20px;
}

.pix-key-value {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    word-break: break-all;
    color: var(--white);
    text-decoration: none;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--golden);
    color: var(--dark-brown);
    border: none;
    border-radius: 99px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(212, 162, 73, 0.4);
}

.copy-btn:hover {
    transform: translateY(-2px);
    background: #e0b155;
}

.copy-feedback {
    font-size: 0.85rem;
    margin-top: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--light-peach);
}

.copy-feedback.show {
    opacity: 1;
}

/* Share Buttons */
.share-section {
    text-align: center;
    padding: 20px 0 60px;
    animation: fadeUp 1s ease-out 0.8s both;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 99px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    color: white;
    border: none;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #000000;
}

.share-btn.instagram {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
}

.share-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

.modal.show {
    display: flex;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 32px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--golden);
    color: var(--dark-brown);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    transform: rotate(90deg);
}

.update-timestamp {
    font-size: 0.8rem;
    color: var(--soft-rust);
    text-align: center;
    margin-top: 8px;
    opacity: 0.8;
}

/* Timeline Section */
.timeline-section {
    padding: 60px 0;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--deep-rust);
    text-align: center;
    margin-bottom: 50px;
}

.timeline-container {
    position: relative;
    padding: 20px 0;
}

/* Central Line */
.timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--light-peach);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Markers */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background: var(--white);
    border: 3px solid var(--golden);
    top: 24px;
    border-radius: 50%;
    z-index: 10;
}

.timeline-left {
    left: 0;
    text-align: right;
}

.timeline-right {
    left: 50%;
}

.timeline-right::after {
    left: -8px;
}

.timeline-content {
    background: var(--white);
    padding: 20px 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid rgba(245, 214, 186, 0.3);
}

.timeline-date {
    font-family: var(--font-serif);
    font-weight: 700;
    color: var(--deep-rust);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

.timeline-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-brown);
    font-weight: 300;
}

/* Horizontal connectors */
.timeline-left .timeline-content::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -40px;
    width: 40px;
    height: 2px;
    background: var(--light-peach);
}

.timeline-right .timeline-content::after {
    content: '';
    position: absolute;
    top: 28px;
    left: -40px;
    width: 40px;
    height: 2px;
    background: var(--light-peach);
}

.donation-anchor-btn {
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    background: var(--deep-rust);
    color: white;
    padding: 16px 40px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(160, 82, 45, 0.3);
    border: none;
    cursor: pointer;
}

.donation-anchor-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 30px rgba(160, 82, 45, 0.4);
    background: var(--soft-rust);
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 0.85rem;
    color: #b5977a;
    border-top: 1px solid rgba(245, 214, 186, 0.5);
}

@media (max-width: 600px) {
    .timeline-container::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 23px;
    }

    .timeline-left {
        text-align: left;
    }

    .timeline-right {
        left: 0;
    }

    .timeline-left .timeline-content::after,
    .timeline-right .timeline-content::after {
        left: -40px;
    }

    .card,
    .pix-card {
        padding: 32px 20px;
    }

    header {
        padding: 40px 16px;
    }

    header h1 {
        font-size: 2.2rem;
    }
}

/* Costs Section */
.costs-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(245, 214, 186, 0.3);
}

.cost-item:last-of-type {
    border-bottom: none;
}

.cost-name {
    font-weight: 400;
    color: var(--dark-brown);
}

.cost-value {
    font-weight: 700;
    color: var(--deep-rust);
}

.cost-value.pending {
    font-weight: 400;
    font-style: italic;
    opacity: 0.7;
    font-size: 0.9rem;
}

.cost-note {
    font-size: 0.85rem;
    opacity: 0.7;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
}

/* Mural Section */
.mural-container {
    height: 300px;
    overflow: hidden;
    position: relative;
    margin-top: 20px;
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    background: rgba(245, 214, 186, 0.1);
    border-radius: 12px;
}

.mural-scroll {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 0;
    animation: scroll-credits 20s linear infinite;
}

.mural-scroll:hover {
    animation-play-state: paused;
}

.mural-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 30px;
    color: var(--dark-brown);
    border-bottom: 1px solid rgba(160, 82, 45, 0.05);
}

.mural-avatar {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-rust), var(--deep-rust));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.03em;
    box-shadow: 0 2px 8px rgba(160, 82, 45, 0.25);
}

.mural-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mural-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-brown);
    line-height: 1.2;
}

.mural-label {
    font-size: 0.82rem;
    color: var(--soft-rust);
    font-weight: 400;
    opacity: 0.85;
}

@keyframes scroll-credits {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); } /* Half of the content (duplicated) */
}

@media (max-width: 600px) {
    .mural-item {
        padding: 8px 15px;
    }
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
        border-width: 2px;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
        border-width: 1px;
    }
}

/* Laudo Button */
.laudo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 20px;
    background: rgba(160, 82, 45, 0.1);
    color: var(--deep-rust);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--deep-rust);
    transition: var(--transition);
}

.laudo-btn:hover {
    background: var(--deep-rust);
    color: white;
}

.transparency-note {
    font-size: 0.8rem;
    color: var(--dark-brown);
    opacity: 0.7;
    margin-top: 15px;
    font-style: italic;
    line-height: 1.4;
    border-top: 1px solid rgba(160, 82, 45, 0.1);
    padding-top: 15px;
}

/* PIX QR Code */
.pix-qr-container {
    background: white;
    padding: 20px;
    border-radius: 16px;
    margin: 20px auto;
    width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pix-qr-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.pix-qr-hint {
    font-size: 0.75rem;
    color: var(--deep-rust);
    margin-top: 10px;
    opacity: 0.8;
}

/* Sticky Donate Button */
.sticky-donate-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--deep-rust);
    color: white;
    padding: 16px 32px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(160, 82, 45, 0.4);
    z-index: 1000;
    transition: var(--transition);
    opacity: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sticky-donate-btn::before,
.sticky-donate-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: transparent;
    border: 2px solid var(--golden);
    border-radius: 99px;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: ripple 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    pointer-events: none;
}

.sticky-donate-btn::after {
    animation-delay: 2s;
}

.sticky-donate-btn:hover {
    transform: translateY(-5px) scale(1.05);
    background: var(--soft-rust);
    box-shadow: 0 12px 40px rgba(160, 82, 45, 0.5);
}

.sticky-donate-btn:hover::before,
.sticky-donate-btn:hover::after {
    border-color: var(--light-peach);
}

.sticky-donate-btn:hover::before,
.sticky-donate-btn:hover::after {
    background: var(--soft-rust);
}

.sticky-donate-btn:active {
    transform: translateY(-2px) scale(0.98);
}

.sticky-donate-btn:active {
    transform: translateY(-2px) scale(0.98);
}

@media (max-width: 600px) {
    .sticky-donate-btn {
        bottom: 20px;
        left: 20px;
        right: 20px;
        justify-content: center;
        padding: 14px 20px;
        font-size: 1rem;
        box-shadow: 0 4px 24px rgba(160, 82, 45, 0.5);
    }
}