/* HERO */

.hero-areas {
    position: relative;
    height: 55vh;
    margin-top: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

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

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


/* SEÇÃO PRINCIPAL */

.areas-section {
    padding: 100px 20px;
}

.areas-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}


/* CARD DE ÁREA */

.area-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.area-img {
    flex: 1;
}

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

.area-info {
    flex: 1;
}

.area-info h2 {
    color: #2E7D32;
    margin-bottom: 20px;
}

.area-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}


/* BOTÃO */

.btn-area {
    padding: 12px 30px;
    background: #2E7D32;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
}

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


/* CTA FINAL */

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

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

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

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

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


/* RESPONSIVO */

@media (max-width: 900px) {

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

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

    .hero-areas {
        height: 45vh;
    }

}
