/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #e30613;
}

.logo img {
    width: 40px;
    height: 40px;
}

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #e30613;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e30613, #b80000);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.highlight {
    color: #fdba12;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #fdba12;
    color: #333;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #f0a500;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #e30613;
    border: 2px solid #e30613;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #e30613;
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Sections */
.white-section {
    background: white;
    padding: 80px 0;
}

.gray-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.mb-10 {
    margin-bottom: 4rem;
}

h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Projeto cards */
.projeto-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.projeto-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.projeto-content {
    padding: 2rem;
}

.projeto-content h3 {
    color: #e30613;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.projeto-stats {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: bold;
    color: #e30613;
}

/* Donation options */
.donation-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.donation-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    min-width: 250px;
    transition: transform 0.3s;
}

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

.donation-card.featured {
    border: 3px solid #e30613;
    transform: scale(1.05);
}

.donation-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.donation-card h3 {
    font-size: 2rem;
    color: #e30613;
    margin-bottom: 1rem;
}

.custom-donation {
    text-align: center;
}

.custom-donation-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.custom-donation-form input {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    width: 200px;
    text-align: center;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ddd;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 1.5rem;
    background: white;
}

.faq-plus::before {
    content: '+';
    font-size: 1.5rem;
    font-weight: bold;
}

details[open] .faq-plus::before {
    content: '−';
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 3rem 0;
}

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

.footer-mission h3 {
    color: #fdba12;
    margin-bottom: 1rem;
}

.footer-info {
    margin-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .donation-options {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-donation-form {
        flex-direction: column;
        align-items: center;
    }
    img {
    max-width: 100%;
    height: auto;
    display: block;
}
img {
    border-radius: 12px; /* ajuste o valor como preferir */
}
}