main{
    background-color: #f7f7f7;
}

.section.introduction.programas-banner{
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%), url(../img/programas-banner.jpg);
    background-position-x: center;
    background-position-y: center;
}

.section.aviso{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.section.programas{
    display: grid;
    min-height: 300px;
    background-color: #f7f7f7;
    padding: 30px 7%;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 20px 2%;
    align-items: start;
}

.section.projetos{
    display: flex;
    flex-direction: column;
    padding: 80px 7%;
    gap: 15px;
}

.section.projetos h3{
    color: #20512E;
    font-family: 'Jumper';
}

.projetos .projetos-container{
    display: grid;
    min-height: 300px;
    background-color: #f7f7f7;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    gap: 20px;
    align-items: start;
}

.programa{
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    cursor: pointer;
    transition: 0.2s all ease;
    padding: 20px;
    border-radius: 15px;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    box-shadow: -2px 5px 33px 6px rgba(0, 0, 0, 0.2);
    min-height: 150px;
    text-decoration: none;
    background-repeat: no-repeat;
    background-size: cover;
}

.programa h4{
    font-family: 'Jumper';
    font-weight: 500;
    text-decoration: none;
}

.programa:hover{
    color: #259460;
    box-shadow: rgba(0, 0, 0, 0.25) 0 30px 70px 0;
}

.programa-intro{
    padding: 80px 7% 50px;
}

.programa-info .text{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 80px 7%;
}

.programa-info .text .sobre{
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 15px;
}

.programa-info .text img{
    width: 40%;
    height: auto;
}

.programa-info .text .sobre h3{
    color: #259460;
    font-family: 'Jumper';
    font-weight: 500;
}

.programa-info .text p{
    text-align: justify;
}

.areas{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 7%;
    background-color: #259460;
    gap: 15px;
}

.areas h3{
    font-family: 'jumper';
    font-weight: 500;
    color: #fff;
}

.areas .areas-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, 200px);
    width: 100%;
    justify-content: space-around;
    box-sizing: border-box;
    gap: 30px;
}

.area{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.area img{
    max-width: 100px;
}

.area p{
    font-weight: 700;
    color: #fff;
}
