:root {
    --primary-color: #F3475E;
    --background-color: #FCEAEA;
    --hover-color: #D63D57;
    --text-color: #3A3A3A;
    --white-color: #FFF9F9;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.navbar {
    background-color: var(--white-color) !important;
    padding: 0.25rem 0;
    height: 100px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.btn-primary:hover {
    background-color: var(--hover-color) !important;
    border-color: var(--hover-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}

/* Projects Section */
.project-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Impact Section */
.impact-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

/* Testimonials Section */
.testimonial-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background-color: var(--white-color);
}

/* Estilos do Blog */
.blog-header {
    background-color: var(--white-color);
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.post-card {
    background-color: var(--white-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.post-card:hover {
    transform: translateY(-5px);
    color: inherit;
}

.post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-date {
    color: #666;
    font-size: 0.9rem;
}

.pagination .active .page-link {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    z-index: 2;
}

.pagination .page-link {
    color: #0d6efd;
}

.pagination .page-link:focus, .pagination .page-link:hover {
    color: #0056b3;
    background-color: #e9ecef;
    border-color: #dee2e6;
}

/* Estilos do Footer */
footer {
    margin-top: auto;
}

footer a {
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

footer .social-icons a {
    font-size: 1.5rem;
    margin-right: 1rem;
}

footer hr {
    border-color: rgba(0,0,0,0.1);
}

/* Estilos do Dashboard */
.dashboard {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    min-height: 100vh;
}

.dashboard .navbar {
    background-color: var(--white-color) !important;
    padding: 0.5rem 1rem;
    height: 70px;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.dashboard .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.dashboard .sidebar {
    width: 280px;
    background-color: var(--white-color);
    position: fixed;
    top: 70px;
    left: 0;
    bottom: 0;
    z-index: 1020;
    overflow-y: auto;
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.dashboard .main-content {
    margin-left: 280px;
    margin-top: 70px;
    padding: 2rem;
    min-height: calc(100vh - 70px);
}

/* Melhorias nas Tabelas */
.dashboard .table {
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.dashboard .table thead th {
    background-color: rgba(243, 71, 94, 0.1);
    border-bottom: none;
    padding: 1rem;
}

.dashboard .table tbody td {
    padding: 1rem;
    vertical-align: middle;
}

.dashboard .table tbody tr:hover {
    background-color: rgba(243, 71, 94, 0.05);
}

/* Links de Navegação */
.dashboard .nav-link {
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.dashboard .nav-link:hover,
.dashboard .nav-link.active {
    background-color: rgba(243, 71, 94, 0.1);
    color: var(--primary-color);
}

.dashboard .nav-link i {
    width: 24px;
    font-size: 1.1rem;
}

/* Formulários */
.dashboard .form-control,
.dashboard .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    border: 1px solid #dee2e6;
}

.dashboard .form-control:focus,
.dashboard .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(243, 71, 94, 0.25);
}

/* Editor */
.dashboard .ck-editor__editable {
    min-height: 300px;
    max-height: 500px;
}

.dashboard .ck-content {
    font-size: 1rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .dashboard .logo-img {
        height: 50px;
    }

    .dashboard .sidebar {
        transform: translateX(-100%);
        width: 100%;
        max-width: 280px;
    }

    .dashboard .sidebar.show {
        transform: translateX(0);
    }

    .dashboard .main-content {
        margin-left: 0;
    }

    .dashboard.menu-open {
        overflow: hidden;
    }

    .navbar-collapse {
        background-color: var(--white-color) !important;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        margin-top: 0.5rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1030;
    }

    .navbar-nav .nav-item {
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(243, 71, 94, 0.1);
    }

    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-nav .btn {
        margin-top: 0.5rem;
        width: 100%;
    }
}

@media (min-width: 992px) {
    .dashboard .main-content {
        max-width: 1350px;
        margin-left: 280px;
        margin-right: auto;
    }
}

/* Status Badges */
.dashboard .status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.dashboard .status-badge.pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.dashboard .status-badge.approved {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.dashboard .status-badge.rejected {
    background-color: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

/* --- Estilos Modernos para Nova Página de Doação --- */
.donation-section {
    max-width: 700px;
    margin: 2.5rem auto 2rem auto;
    padding: 2.2rem 1.2rem 1.5rem 1.2rem;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(243,71,94,0.10);
}
.donation-section h1 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 2.2rem;
    letter-spacing: -1px;
    text-align: center;
}
.payment-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.payment-card {
    background: #fff9f9;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(243,71,94,0.06);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    margin-bottom: 1.5rem;
    flex: 1 1 260px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.payment-card:hover {
    box-shadow: 0 4px 16px rgba(243,71,94,0.13);
    transform: translateY(-4px) scale(1.02);
}
.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    background: #fff;
    border: 1.5px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.icon-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
.mp-bg {
    background: #e3f6fd;
}
.pix-bg {
    background: #e0f7f3;
}
.payment-card h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-align: center;
}
.payment-card p {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 1.2rem;
}
.qr-code img {
    max-width: 120px;
    margin: 0 auto 0.5rem auto;
    display: block;
}
.pix-key-box {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.copy-pix {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.4rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 0.5rem;
    transition: background 0.2s;
}
.copy-pix:hover {
    background-color: var(--hover-color);
}
@media (max-width: 900px) {
    .payment-options {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .donation-section {
        padding: 1.2rem 0.2rem;
    }
}

/* Ajuste para o conteúdo principal */
main {
    margin-top: 100px;
    min-height: calc(100vh - 100px);
} 