/* =========================
   HERO PROJETOS
========================= */

.hero-projetos {
    padding: 140px 20px 80px 20px;
    text-align: center;
    background: #2E7D32;
    color: white;
}

.hero-projetos h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}


/* =========================
   SEÇÕES
========================= */

.secao-projetos {
    padding: 80px 20px;
}

.secao-projetos h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #2E7D32;
}

.bg-light {
    background: #f4f6f5;
}


/* =========================
   GRID DE PROJETOS
========================= */

.projetos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.projeto-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    border: 2px solid #2E7D32;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

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

.projeto-card h3 {
    margin-bottom: 15px;
    color: #2E7D32;
    font-size: 1.2rem;
}

.projeto-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.btn-projeto {
    display: inline-block;
    padding: 8px 20px;
    background: #2E7D32;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
}

.btn-projeto:hover {
    background: #1B5E20;
}


/* =========================
   RESPONSIVO
========================= */

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

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

    .hero-projetos h1 {
        font-size: 2rem;
    }
}
