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

.hero-area {
    position: relative;
    height: 55vh;
    min-height: 350px;
    margin-top: 85px;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-area .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 900px;
}

.hero-content h1 {
    font-size: 2.8rem;
}

.hero-content p {
    margin-top: 15px;
    font-size: 1.1rem;
}


/* =========================
   SEÇÕES COM IMAGEM LATERAL
========================= */

.area-detalhe {
    padding: 80px 20px;
}

.area-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
}

.area-grid.reverse {
    flex-direction: row-reverse;
}

.area-text {
    flex: 1;
}

.area-text h2 {
    color: #2E7D32;
    margin-bottom: 20px;
    font-size: 2rem;
}

.area-text p,
.area-text ul {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

.area-text ul {
    padding-left: 20px;
}

.area-image {
    flex: 1;
}

.area-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


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

.area-projetos-section {
    padding: 80px 20px;
    text-align: center;
}

.area-projetos-section h2 {
    color: #2E7D32;
    margin-bottom: 40px;
    font-size: 2rem;
}

.area-projetos-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.area-card {
    padding: 20px 35px;
    border: 2px solid #2E7D32;
    border-radius: 12px;
    text-decoration: none;
    color: #2E7D32;
    font-weight: 600;
    transition: 0.3s ease;
}

.area-card:hover {
    background: #2E7D32;
    color: white;
}


/* =========================
   CTA FINAL
========================= */

.area-cta {
    background: #2E7D32;
    color: white;
    padding: 90px 20px;
    text-align: center;
}

.area-cta h2 {
    font-size: 2rem;
}

.area-cta p {
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-doar,
.btn-parceiro {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-doar {
    background: #00f476;
    color: #1B5E20;
}

.btn-parceiro {
    background: white;
    color: #2E7D32;
}

.btn-doar:hover {
    background: #00d466;
}

.btn-parceiro:hover {
    background: #f2f2f2;
}


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

@media (max-width: 1024px) {

    .area-grid {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}


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

@media (max-width: 768px) {

    .area-grid {
        flex-direction: column;
        gap: 30px;
    }

    .area-grid.reverse {
        flex-direction: column;
    }

    .hero-area {
        height: 45vh;
        min-height: 250px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .area-text h2 {
        font-size: 1.5rem;
    }

    .area-detalhe {
        padding: 60px 20px;
    }

    .area-cta {
        padding: 70px 20px;
    }
}
