@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --primary: #2596be;
    --secondary: #FFF313;
    --accent: #a7f9e3;
    --text-main: #2C3E50;
    --text-muted: #7F8B9E;
    --bg-light: #F0FAF9; /* Inspired by #a7f9e3 */
    --white: #FFFFFF;
    --gray-200: #EDEDF3;
    --green-success: #27AE60;
    --font-family: 'Mukta', sans-serif;
    --radius-lg: 12px;
    --radius-md: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.05);
}

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

body {
    font-family: var(--font-family);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.4; /* Mukta looks better with a slightly tighter line-height */
    -webkit-font-smoothing: antialiased;
}

input, button, select, textarea {
    font-family: var(--font-family); /* Forçando a fonte em elementos de formulário */
}

/* Header */
header {
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.logo img {
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-login {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-trigger, .menu-trigger {
    display: none; /* Hidden on desktop */
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f8f9fa;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .search-trigger, .menu-trigger {
        display: flex;
    }
    
    header {
        padding: 0.5rem 0;
    }

    .header-container {
        padding: 0 0.75rem;
    }

    .logo img {
        height: 32px;
    }
}

/* Main Layout */
main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    main {
        grid-template-columns: 1fr;
    }
}

/* Content Area */
.content-header h1 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

.hero-media {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 2rem;
}

.hero-media img {
    width: 100%;
    display: block;
}

.badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    color: var(--green-success);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Tabs */
.tabs {
    display: flex;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 2rem;
    overflow-x: auto;
}

.tab {
    padding: 0.75rem 0.5rem;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.tab.active {
    border-bottom-color: var(--primary);
    color: var(--primary);
}

.tab-count {
    margin-left: 0.5rem;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.875rem;
}

/* Story */
.story-content {
    font-size: 1.125rem;
    color: var(--text-main);
}

.story-content p {
    margin-bottom: 1.25rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    margin: 2rem 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.progress-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
}

.amount-raised {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

.label-raised {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.value-raised {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}

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

.progress-bar-bg {
    height: 12px;
    background: var(--gray-200);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 6px;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.btn-donate {
    width: 100%;
    background: var(--secondary);
    color: #000; /* Yellow needs dark text */
    border: none;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 1rem;
    box-shadow: 0 4px 0px #d4cc10;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0px #d4cc10;
}

.btn-donate:active {
    transform: translateY(2px);
    box-shadow: none;
}

.btn-follow {
    width: 100%;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background 0.2s;
}

.social-icon:hover {
    background: rgba(255,255,255,0.2);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    font-size: 0.875rem;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

.cnpj-info {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

/* Campaign Meta & Pix */
.campaign-meta {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.meta-badges {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #27AE60;
}

.meta-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.meta-separator {
    color: var(--gray-200);
}

.pix-info {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 2rem;
    font-size: 0.9375rem;
}

.pix-info p:first-child {
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

/* Tabs Display */
.tabs-display {
    margin-top: 3rem;
}

.tab-content {
    margin-bottom: 3rem;
}

.tab-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tab-title .count {
    background: var(--gray-200);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
}

.empty-state {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
}

.btn-message {
    margin-top: 1rem;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
}

/* Donors List */
.donors-shared-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.donor-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.donor-avatar {
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.donor-details .donor-name {
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 0.125rem;
}

.donor-details .donor-meta {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.btn-view-more {
    margin-top: 2rem;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--secondary);
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

/* Trust Section */
.trust-section {
    margin-top: 5rem;
    padding: 4rem 0;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 1rem;
    text-align: center;
}

@media (max-width: 768px) {
    .trust-container {
        grid-template-columns: 1fr;
    }
}

.trust-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.trust-item h4 {
    color: var(--text-main);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.trust-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Related Campaigns */
.related-campaigns {
    margin-top: 5rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.campaign-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.campaign-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.card-image img {
    width: 100%;
    height: 180px;
    object-fit: crop;
}

.card-content {
    padding: 1.25rem;
}

.card-content h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    height: 3rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-progress-bar {
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.card-progress-bar div {
    height: 100%;
    background: var(--secondary);
}

.card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    font-weight: 700;
}

/* Auth Modals Refined */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-overlay.active {
    display: flex;
    opacity: 1;
}

.auth-container {
    background: var(--white);
    width: 100%;
    max-width: 1000px;
    min-height: 550px;
    border-radius: 28px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 70px -12px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.auth-overlay.active .auth-container {
    transform: scale(1);
}

.auth-image {
    background: linear-gradient(rgba(37, 150, 190, 0.2), rgba(37, 150, 190, 0.4)), 
                url('Homem mais alto do Brasil precisa de ajuda para voltar a andar_files/76842dad-c511-41cd-9ab5-deda1633a3ff.png') center/cover;
    position: relative;
}

.auth-image::after {
    content: "Sua doação transforma vidas.";
    position: absolute;
    bottom: 3rem;
    left: 2rem;
    right: 2rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.auth-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
}

.auth-header {
    margin-bottom: 2.5rem;
}

.auth-header img {
    height: 32px;
    margin-bottom: 1.5rem;
}

.auth-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.auth-header p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    padding-left: 0.25rem;
}

.auth-input {
    background: #F1F5F9;
    border: 2px solid transparent;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.auth-input:focus {
    background: white;
    border-color: var(--primary);
    box-shadow: 0 10px 20px -5px rgba(37, 150, 190, 0.15);
    outline: none;
}

.btn-auth {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 14px;
    padding: 1.125rem;
    font-size: 1.125rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(37, 150, 190, 0.25);
    margin-top: 0.5rem;
}

.btn-auth:hover {
    background: #1a7494;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 150, 190, 0.3);
}

.registration-container {
    grid-template-columns: 1fr;
    max-width: 600px;
}

.close-auth {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    z-index: 100;
    transition: all 0.2s;
}

.close-auth:hover {
    transform: scale(1.1);
    color: var(--primary);
}

/* User Profile in Header */
.user-profile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 2px solid var(--white);
    box-shadow: var(--shadow-sm);
}

.user-name {
    font-weight: 600;
    color: var(--text-main);
}

@media (max-width: 768px) {
    .auth-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .auth-container {
        grid-template-columns: 1fr;
        border-radius: 28px 28px 0 0;
        transform: translateY(100%);
        min-height: auto;
        max-height: 85vh;
        margin-bottom: 0;
        transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
    }

    .auth-overlay.active .auth-container {
        transform: translateY(0);
        scale: 1;
    }

    .auth-image {
        display: none;
    }

    .auth-content {
        padding: 2rem 1.5rem 3rem;
    }

    .auth-header h2 {
        font-size: 1.5rem;
    }

    /* Adicionar um 'handle' visual no topo do drawer mobile */
    .auth-container::before {
        content: "";
        position: absolute;
        top: 0.75rem;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: var(--gray-200);
        border-radius: 10px;
    }
}

/* Mobile Sticky Footer Styles Refined */
.mobile-sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
    z-index: 1500;
    padding: 1rem 1rem env(safe-area-inset-bottom);
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid #f0f0f0;
}

.footer-stats-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 0.25rem;
}

.stats-header .label {
    font-size: 0.6rem;
    font-weight: 700;
    color: #8E96A4;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.stats-header .goal {
    font-size: 0.875rem;
    font-weight: 600;
    color: #8E96A4;
}

.stats-value-row {
    margin-bottom: 0.25rem;
}

.stats-value-row .value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.5px;
}

.mini-progress-bar {
    height: 4px;
    background: #EAECEF;
    border-radius: 100px;
    overflow: hidden;
    margin: 0.25rem 0;
}

.mini-progress-bar .fill {
    height: 100%;
    background: var(--primary);
}

.stats-footer-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 500;
    color: #949BAB;
}

.footer-actions-mobile {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-share-mobile {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F8F1F9; /* Subtle tint from image */
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-doar-mobile {
    flex: 1;
    height: 48px;
    background: var(--primary); /* Image shows pink, but palette is blue */
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .mobile-sticky-footer {
        display: flex;
    }
    
    body {
        padding-bottom: 160px; /* Space for footer */
    }

    .sidebar {
        display: none;
    }
}

/* Donation Selector (Sidebar) */
.donation-selector {
    margin-top: 1.5rem;
}

.selector-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 0.75rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    background: transparent;
    font-weight: 700;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn:hover, .amount-btn.active {
    border-color: var(--primary);
    background: var(--accent);
    color: var(--primary);
}

.custom-amount-wrapper {
    grid-column: span 2;
    position: relative;
    display: flex;
    align-items: center;
}

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

.custom-amount-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 1rem;
}

.btn-donate-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.125rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(37, 150, 190, 0.2);
    transition: all 0.2s;
}

.btn-donate-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 150, 190, 0.3);
}

/* Donation Steps In Modal */
.amount-grid-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

@media (max-width: 600px) {
    .amount-grid-large {
        grid-template-columns: 1fr 1fr;
    }
}

.amount-btn-large {
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    background: #F8FAFC;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn-large:hover, .amount-btn-large.active {
    border-color: var(--primary);
    background: var(--accent);
    color: var(--primary);
}

.custom-amount-wrapper-large {
    grid-column: 1 / -1;
    position: relative;
    display: flex;
    align-items: center;
}

.custom-amount-wrapper-large .custom-amount-input {
    padding: 1.25rem 1.25rem 1.25rem 3rem;
    font-size: 1.25rem;
    background: #F1F5F9;
}

.donation-notice {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .donation-selection-container {
        border-radius: 28px 28px 0 0;
    }
}
