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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    background-color: #fff;
    line-height: 1.6;
}

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

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 50px;
}

.nav {
    display: flex;
    gap: 30px;
    margin-left: 50px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00D86A;
}

.nav-link span {
    font-size: 12px;
    margin-left: 5px;
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-search {
    text-decoration: none;
    color: #00D86A;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.btn-menu {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-account {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.desktop-only {
    display: block;
}

.btn-create {
    background-color: #00D86A;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-create:hover {
    background-color: #00C060;
}

/* Main Content */
.main-content {
    padding: 40px 0 0 0;
}

.breadcrumb {
    color: #666 !important;
    font-size: 22px !important;
    font-weight: 400 !important;
    margin-bottom: 15px;
    text-align: center;
}

.title {
    font-size: 25px !important;
    font-weight: 700 !important;
    color: #333 !important;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.2;
}

.campaign-id {
    text-align: center;
    color: #999 !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    margin-bottom: 40px;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin-top: 40px;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.campaign-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.campaign-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Supporters */
.supporters {
    display: flex;
    align-items: center;
    gap: 15px;
}

.supporter-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
    overflow: hidden;
    background-color: #f0f0f0;
    position: relative;
    z-index: 1;
}

.avatar:nth-child(2) {
    z-index: 2;
}

.avatar:nth-child(3) {
    z-index: 3;
}

.avatar:nth-child(4) {
    z-index: 4;
}

.avatar:nth-child(5) {
    z-index: 5;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.avatar:first-child {
    margin-left: 0;
    z-index: 1;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: 3px solid white;
    margin-left: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    position: relative;
    z-index: 10;
}

.supporter-count {
    font-size: 16px;
    color: #333;
}

/* Tabs Section */
.tabs-section {
    margin-top: 40px;
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.tabs {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid #e5e5e5;
    margin-bottom: 30px;
}

.tab {
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.tab:hover {
    color: #00D86A;
}

.tab.active {
    color: #00D86A;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #00D86A;
}

.tab-content {
    padding: 20px 0;
}

.created-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.content-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.4;
}

.content-text {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Comments Section */
.comments-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
}

.comments-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
}

.comment {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.comment-reply {
    margin-left: 60px;
    border-left: 2px solid #e5e5e5;
    padding-left: 20px;
}

.comment-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d0d0d0;
    flex-shrink: 0;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-author {
    font-size: 16px;
    font-weight: 600;
    color: #4B7BFF;
    margin-bottom: 5px;
}

.comment-text {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}

.comment-actions a {
    color: #4B7BFF;
    text-decoration: none;
    font-weight: 500;
}

.comment-actions a:hover {
    text-decoration: underline;
}

.comment-actions span {
    color: #999;
}

.comment-time {
    color: #666 !important;
}

.login-prompt {
    text-align: center;
    color: #666;
    font-size: 15px;
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: white;
}

/* Aviso Legal */
.aviso {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
}

.aviso span {
    color: #666;
    font-size: 13px;
    line-height: 1.6;
}

/* Footer Content */
.content-footer {
    padding: 50px 0 0;
}

/* Top Footer */
.topFooter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #555;
}

.logo-rodape img {
    width: 120px;
}

.sociais ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sociais li {
    display: flex;
    align-items: center;
}

.sociais a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    transition: background-color 0.3s;
    border-radius: 50%;
}

.sociais a:hover {
    background-color: #00D86A;
}

.sociais svg {
    width: 22px;
    height: 22px;
    fill: white;
}

.separador {
    width: 1px;
    height: 20px;
    background-color: #666;
}

/* Content */
.content-footer .content {
    display: flex;
    justify-content: space-between;
    padding: 40px 0 30px;
}

.aba {
    flex: 1;
}

.aba-links h4 {
    color: #00D86A;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    min-height: 24px;
    white-space: nowrap;
}

.aba-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.aba-links li {
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Diminuir espaçamento na seção Fale conosco */
.content .aba:nth-child(3) li {
    margin-bottom: 4px !important;
}

/* Evitar quebra de linha em "De Segunda à Sexta" */
.content .aba:nth-child(3) li span {
    white-space: nowrap;
}

/* App buttons side by side - only for "Baixe nosso App" section */
.content .aba:nth-child(4) ul {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
}

.content .aba:nth-child(4) li {
    margin-bottom: 0 !important;
    display: inline-block;
    flex-shrink: 0;
}

.content .aba:nth-child(4) a {
    display: inline-block;
}

.content .aba:nth-child(4) img {
    max-width: 120px;
    width: auto;
    height: auto;
    display: block;
}

.aba-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    white-space: nowrap;
}

.aba-links a:hover {
    color: #00D86A;
}

.aba-links span {
    color: #ccc;
    font-size: 14px;
}

.aba-links img {
    max-width: 140px;
    height: auto;
}


.selo-desktop img {
    width: 120px;
    margin-top: 10px;
}

.selo-mobile {
    display: none;
}

/* Copyright */
.copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #555;
    background-color: #3d3d3d;
}

.copyright span {
    color: #999;
    font-size: 14px;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .content-footer {
        padding: 30px 0 0;
    }

    .topFooter {
        padding-bottom: 20px;
    }

    .logo-rodape img {
        width: 100px;
    }

    .sociais svg {
        width: 20px;
        height: 20px;
    }

    .content-footer .content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        gap: 0 3%;
        padding: 30px 0 20px;
    }

    .aba {
        margin-bottom: 30px;
    }

    /* Coluna 1 - Links rápidos */
    .aba:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }

    /* Coluna 2 - Dúvidas frequentes */
    .aba:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    /* Coluna 1 - Fale conosco */
    .aba:nth-child(3) {
        grid-column: 1;
        grid-row: 2;
    }

    /* Coluna 1 - Baixe nosso App (abaixo de Fale conosco) */
    .aba:nth-child(4) {
        grid-column: 1;
        grid-row: 3;
        margin-top: 0;
    }

    /* Selo mobile ao lado de Fale conosco */
    .aba:nth-child(5) {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .selo-desktop {
        display: none !important;
    }

    .selo-mobile {
        display: flex !important;
        align-items: flex-start;
    }

    .selo-mobile img {
        width: 86px !important;
        max-width: 86px !important;
    }
    
    .selo-mobile ul {
        margin: 0;
        padding: 0;
    }
    
    .selo-mobile li {
        margin: 0 !important;
        padding: 0 !important;
    }

    .aba-links h4 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .aba-links a,
    .aba-links span {
        font-size: 12px;
    }
    
    .aba-links li {
        margin-bottom: 6px;
    }
    
    /* Diminuir espaçamento na seção Fale conosco no mobile */
    .content .aba:nth-child(3) li {
        margin-bottom: 3px !important;
    }
    
    .aba-links h4 {
        white-space: nowrap;
    }
    
    /* App buttons side by side on mobile */
    .content .aba:nth-child(4) ul {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px;
        flex-wrap: nowrap !important;
    }
    
    .content .aba:nth-child(4) li {
        display: inline-block !important;
        margin-bottom: 0 !important;
    }
    
    .content .aba:nth-child(4) img {
        max-width: 100px;
        width: auto;
        height: auto;
        display: block;
    }

    .aba-links img {
        max-width: 130px;
    }

    .copyright {
        padding: 15px 0;
    }

    .copyright span {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .aviso {
        padding: 15px;
    }

    .aviso span {
        font-size: 11px;
    }

    .topFooter {
        flex-direction: row;
    }

    .logo-rodape img {
        width: 90px;
    }

    .aba {
        width: 48%;
    }

    .aba-links img {
        max-width: 120px;
    }
}

/* Donation Card */
.donation-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    position: sticky;
    top: 100px;
}

.donation-header {
    margin-bottom: 10px;
}

.label {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

/* Progress Section */
.progress-section {
    display: none;
}

.progress-info {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.progress-percentage {
    font-size: 24px;
    font-weight: 700;
    color: #00D86A;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .progress-bar {
        margin-bottom: 0;
    }
}

.progress-fill {
    height: 100%;
    background-color: #00D86A;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.amount-raised {
    font-size: 48px;
    font-weight: 700;
    color: #00D86A;
    line-height: 1;
}

.amount-goal {
    display: none;
    font-size: 14px;
    font-weight: 400;
    color: #666;
}

.donation-meta {
    border-top: 1px solid #e5e5e5;
    padding-top: 0;
    margin-top: 8px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.meta-label {
    color: #666;
    font-size: 20px;
}

.meta-value {
    color: #333;
    font-weight: 600;
    font-size: 20px;
}

.btn-donate {
    width: 100%;
    background-color: #00D86A;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 25px;
}

.btn-donate:hover {
    background-color: #00C060;
}

/* Modal de Doação */
.donation-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    border-radius: 20px;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
    margin: 20px;
}

/* Modal de Verificação */
.verification-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.verification-modal-content {
    background-color: white;
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.verification-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #E5E7EB;
    border-top-color: #10B981;
    border-radius: 50%;
    margin: 0 auto 30px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.verification-checkmark {
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: checkmarkPop 0.5s ease;
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.verification-title {
    font-size: 22px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.verification-subtitle {
    font-size: 16px;
    color: #6B7280;
    margin: 0;
}

.welcome-footer-text {
    font-size: 12px;
    color: #9CA3AF;
    margin-top: 20px;
    margin-bottom: 0;
}

/* Modal de Boas-vindas */
#welcomeModal {
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.welcome-modal-content {
    max-width: 600px;
    border-radius: 20px;
    position: relative;
    animation: fadeIn 0.3s ease;
    margin: 20px;
    max-height: 85vh;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.welcome-banner {
    width: 100%;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.welcome-banner img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}

.welcome-content {
    padding: 30px 25px;
    text-align: center;
}

.welcome-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.welcome-text {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.btn-welcome-donate {
    width: 100%;
    background-color: #00D86A;
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-welcome-donate:hover {
    background-color: #00C060;
}

.btn-welcome-donate:active {
    background-color: #00B050;
}

.welcome-modal-content .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Banner da Campanha no Modal de Doação */
.modal-campaign-banner {
    width: 100%;
    overflow: hidden;
    margin: 0;
}

.modal-campaign-banner img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}

/* Banner do Modal */
.modal-banner {
    background-color: #E3F2FD;
    padding: 15px 20px;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    padding-right: 40px;
}

.banner-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex-shrink: 0;
}

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

.banner-logo-text {
    font-size: 10px;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.banner-text {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0;
    padding-top: 4px;
    text-align: center;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* Corpo do Modal */
.modal-body {
    padding: 30px 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}

.modal-instruction {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
    text-align: center;
}

/* Campo de Valor */
.value-input-section {
    margin-bottom: 25px;
}

.input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 14px 15px;
    margin-bottom: 8px;
    flex-wrap: nowrap;
    background-color: white;
}

.currency-symbol {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-right: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.donation-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    min-width: 0;
    width: 100%;
}

.donation-input::placeholder {
    color: #999;
}

.min-value {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Botão Gerar PIX */
.btn-generate-pix {
    width: 100%;
    background-color: #00D86A;
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 25px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-generate-pix:hover {
    background-color: #00C060;
}

.btn-generate-pix:active {
    background-color: #00B050;
}

.payment-security-text {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Separador */
.separator {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.separator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e5e5e5;
}

.separator span {
    background-color: white;
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 12px;
}

/* Valores Fixos */
.fixed-values {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    position: relative;
}

.fixed-value-btn {
    flex: 1;
    background-color: white;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px 12px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 80px;
}

.fixed-value-btn:hover {
    border-color: #00D86A;
    background-color: #f0fff4;
}

.fixed-value-btn .value-text {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.fixed-value-btn .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    color: #00D86A;
    background-color: #f0fff4;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    z-index: 1;
}

.fixed-value-btn.recommended {
    border-color: #00D86A;
}

/* Modal QR Code PIX */
.pix-qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pix-qr-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    position: relative;
    text-align: center;
}

.close-qr-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.pix-qr-content h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
}

.qr-code-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 2px solid #e5e5e5;
}

.qr-code-container img {
    width: 100%;
    max-width: 300px;
    height: auto;
}

.pix-amount {
    font-size: 24px;
    font-weight: 700;
    color: #00D86A;
    margin-bottom: 20px;
}

.pix-copy-section {
    margin-top: 20px;
}

.pix-code-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.pix-code-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.pix-code-wrapper input {
    flex: 1;
    padding: 12px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 12px;
}

.pix-code-wrapper button {
    padding: 12px 20px;
    background-color: #00D86A;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.pix-code-wrapper button:hover {
    background-color: #00C060;
}

.pix-expires {
    font-size: 12px;
    color: #999;
    margin-top: 10px;
}

.payment-status-container {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}

.payment-status-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.status-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e5e5e5;
    border-top-color: #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.status-text {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    margin: 0;
    text-align: center;
}

.status-subtext {
    font-size: 13px;
    color: #666;
    margin: 0;
    text-align: center;
    line-height: 1.4;
}

/* Botão Fixo Mobile */
.btn-donate-fixed {
    display: none;
}

@media (max-width: 768px) {
    .input-wrapper {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }

    .currency-symbol {
        white-space: nowrap !important;
        flex-shrink: 0 !important;
        margin-right: 8px !important;
    }

    .donation-input {
        flex: 1 !important;
        min-width: 0 !important;
        width: auto !important;
    }

    .btn-donate-fixed {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 15px 20px;
        background-color: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .btn-donate-fixed-btn {
        width: 100%;
        background-color: #00D86A;
        color: white;
        border: none;
        padding: 15px 30px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 700;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .btn-donate-fixed-btn:hover {
        background-color: #00C060;
    }

    .btn-donate-fixed-btn:active {
        background-color: #00B050;
    }
}

/* Campaign Info */
.campaign-info {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.info-header {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.heart-icon {
    font-size: 40px;
    flex-shrink: 0;
}

    .info-text strong {
        display: block;
        font-size: 16px;
        color: #333;
        margin-bottom: 5px;
    }

    .info-text p {
        font-size: 13px;
        color: #666;
        margin-bottom: 3px;
    }

.campaigns-info {
    font-size: 13px;
}

.link-more {
    color: #00D86A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.link-more:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 968px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .donation-card {
        position: relative;
        top: 0;
        order: -1;
    }

    .content-left {
        order: 1;
    }

    .title {
        font-size: 28px;
    }

    .nav {
        display: none;
    }
}

@media (max-width: 768px) {
    .welcome-modal-content {
        max-width: 95%;
        margin: 10px;
    }

    .welcome-title {
        font-size: 20px;
    }

    .welcome-text {
        font-size: 14px;
    }

    .welcome-content {
        padding: 20px 15px;
    }

    .modal-content {
        max-width: 95%;
        margin: 10px;
        max-height: 95vh;
    }

    body {
        background-color: #f5f5f5;
        padding-bottom: 80px;
    }

    .main-content {
        padding-bottom: 0;
    }

    .header {
        padding: 12px 0;
    }

    .logo img {
        height: 35px;
    }
    
    .nav {
        display: none;
    }

    .header-actions {
        gap: 15px;
    }

    .desktop-only {
        display: none !important;
    }

    .btn-search, .btn-menu {
        display: flex !important;
        font-size: 24px;
    }

    .btn-search svg {
        width: 28px;
        height: 28px;
    }

    .btn-create {
        display: none;
    }

    .breadcrumb {
        font-size: 22px !important;
        font-weight: 400 !important;
        text-align: center;
        margin-bottom: 15px;
        color: #666 !important;
    }

    .title {
        font-size: 25px !important;
        font-weight: 700 !important;
        text-align: center;
        margin-bottom: 10px;
        line-height: 1.2;
        color: #333 !important;
    }

    .campaign-id {
        text-align: center;
        font-size: 20px !important;
        font-weight: 300 !important;
        margin-bottom: 20px;
        color: #999 !important;
    }

    .content-grid {
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    /* Ordem dos elementos no mobile */
    .main-content .container {
        display: flex;
        flex-direction: column;
    }

    .breadcrumb, .title, .campaign-id {
        order: 0;
    }

    .content-grid {
        order: 1;
        display: flex;
        flex-direction: column;
    }

    /* Reorganizar elementos no mobile: imagem primeiro, depois card */
    .content-left {
        display: contents;
    }

    .content-left .campaign-image {
        order: 1;
        margin-bottom: 20px;
    }

    .content-right {
        order: 2;
    }

    .content-left .supporters {
        order: 3;
    }

    .content-left .tabs-section {
        order: 4;
    }

    .donation-card {
        background: white;
        border: none;
        border-radius: 0;
        padding: 20px;
        margin: 0 -20px 20px -20px;
        box-shadow: none;
    }

    .campaign-image {
        border-radius: 0;
        margin: 0 -20px 20px -20px;
        width: calc(100% + 40px);
    }
    
    .campaign-image img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .supporters {
        background: white;
        padding: 15px 20px;
        margin: 0 -20px 20px -20px;
    }

    .donation-header {
        margin-bottom: 10px;
    }

    .label {
        display: none;
    }

    .progress-section {
        display: block !important;
        margin-bottom: 10px;
    }

    .progress-info {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .progress-percentage {
        font-size: 26px;
        font-weight: 700;
        color: #00D86A;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .progress-bar {
        flex: 1;
        margin-bottom: 0;
        height: 8px;
    }

    .amount-raised {
        font-size: 42px;
        font-weight: 700;
        color: #00D86A;
        line-height: 1.2;
        margin-bottom: 0;
    }

    .amount-goal {
        display: inline;
        font-size: 16px;
        color: #333;
        font-weight: 400;
        margin-left: 5px;
    }

    .donation-meta {
        border-top: none;
        padding-top: 0;
        display: flex;
        justify-content: flex-start;
        gap: 25px;
        margin-bottom: 20px;
        margin-top: 0;
    }

    .meta-item {
        flex-direction: row;
        align-items: center;
        gap: 5px;
    }

    .meta-label {
        font-size: 18px;
        color: #666;
    }

    .meta-value {
        font-size: 18px;
        font-weight: 700;
        color: #333;
    }

    .campaign-info {
        background: white;
        padding: 0;
        border-radius: 0;
        border-top: none;
        margin-bottom: 20px;
        border-left: none;
        margin-top: 0;
    }
    
    .campaign-info .info-header {
        margin-bottom: 0;
        gap: 12px;
        align-items: flex-start;
    }
    
    .campaign-info .heart-icon {
        font-size: 24px;
        flex-shrink: 0;
    }
    
    .campaign-info .info-text {
        flex: 1;
    }
    
    .campaign-info .info-text strong {
        font-size: 16px;
        margin-bottom: 4px;
        display: block;
        color: #333;
    }
    
    .campaign-info .info-text .ativo {
        font-size: 13px;
        margin-bottom: 3px;
        line-height: 1.4;
        color: #666;
        display: block;
    }
    
    .campaign-info .info-text .campaigns-info {
        font-size: 13px;
        margin-bottom: 0;
        line-height: 1.4;
        color: #666;
    }
    
    .campaign-info .bullet {
        margin: 0 5px;
    }
    
    .campaign-info .link-more {
        display: none;
    }
    
    .btn-donate {
        margin-bottom: 0;
        margin-top: 20px;
    }

    .info-header {
        gap: 10px;
    }

    .heart-icon {
        font-size: 30px;
    }

    .btn-donate {
        font-size: 16px;
        padding: 12px 25px;
    }

    .tabs-section {
        background: white;
        padding: 0 20px 20px 20px;
        margin: 0 -20px 15px -20px;
    }

    .tabs {
        border-bottom: 1px solid #e5e5e5;
        padding-top: 0;
        margin-bottom: 20px;
        gap: 20px;
    }

    .tab {
        font-size: 15px;
        padding: 12px 0;
    }

    .tab-content {
        padding: 0;
    }

    .content-title {
        font-size: 20px;
    }

    .comments-section {
        background: white;
        padding: 20px;
        margin: 0 -20px 15px -20px;
    }

    .comment {
        margin-bottom: 20px;
    }

    .comment-reply {
        margin-left: 40px;
        padding-left: 15px;
    }

    .footer-disclaimer {
        margin-top: 0;
        padding: 15px;
    }

    .footer-disclaimer p {
        font-size: 11px;
    }
}

@media (max-width: 640px) {
    .header-actions {
        flex-wrap: wrap;
        gap: 10px;
    }

    .title {
        font-size: 18px;
        line-height: 1.3;
    }

    .amount-raised {
        font-size: 28px;
    }

    .amount-goal {
        font-size: 13px;
    }

    .meta-label, .meta-value {
        font-size: 18px;
    }

    .content-title {
        font-size: 18px;
    }

    .content-text {
        font-size: 15px;
    }
}

/* Notificações de Doações */
.notifications-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.donation-notification {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    min-width: 200px;
    max-width: 300px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease-in-out;
    pointer-events: auto;
}

.donation-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.donation-notification.hide {
    opacity: 0;
    transform: translateX(400px);
}

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

.notification-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.notification-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

/* Responsive para mobile */
@media (max-width: 640px) {
    .notifications-container {
        top: 10px;
        right: 10px;
        left: 10px;
    }

    .donation-notification {
        min-width: auto;
        max-width: 100%;
        padding: 10px 15px;
    }

    .notification-text {
        font-size: 13px;
    }
}

