/*===================
  Section INICIATIVAS
=====================*/
#iniciativas{
    width:100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    text-align: center;
    
    padding:4em 6em;
}

#iniciativas h4{
    padding-top: 1em;
    padding-bottom: 3em;
}

#div-iniciativas{
    width:100%;

    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: center;

    gap: 6em;
}

.iniciativa{
    display:grid;
    grid-template-rows: 500px 100px 150px 100px;
    justify-content: center;
    align-items: center;
    
    width:500px;
    
    opacity: 0.3;
    
}

.iniciativa:hover{
    opacity: 1;
    transition: 1s;
}

.iniciativa img{
    border-radius: 50%;

    width:500px;
    height:500px;
}

.iniciativa h3{
    font-weight: 700;

    font-size: 32px;
    line-height: 29px;
}

.iniciativa p{
    font-weight: 600px;
    font-size: 24px;
    align-self: flex-start;

    /* height:200px; */
}

/* Links */
.btn-saiba-mais{
    color: #600B08;
    font-weight: 700;
    text-decoration: none;

    font-size: 24px;
    line-height: 20px;
}

/*alterando as cores dos elementos*/
.red{
    color:#A61A0D;
}
.green{
    color:#80A848;
}
.yellow{
    color:#CC750D;
}

/* setas mobile */
#arrows-div-iniciativas{
    color:#600B08;
    
    display: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    font-weight: 600;
    font-size: 13px;
    line-height: 13px;
    
    gap:20px;
    padding-top:20px;
}

    /*==============================
    carrossel INICIATIVAS
    =================================*/

    #iniciativas #div-iniciativas{  
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: 0;
    }
    
    /*SOME COM A SCROLLBAR*/
    #div-iniciativas::-webkit-scrollbar{
        display: none;
    }
    
    #div-iniciativas .iniciativa{
        scroll-snap-align:start;
        list-style: none;
        cursor:pointer;
    }

    