#hero{
    width: 100%;
    height: 100vh;
    
    background-image: url("../../../img/home/hero-desktop.png");
    background-size:100%;
    background-size:cover;
    background-repeat: no-repeat;
    background-position: 0% 0%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;

    gap:2em;

    padding-left: 8em;
}

/*Mulheres Potentes e organizadas*/
#hero-title-container{
    width:50%;

    color:var(--white);
    font-weight: 900;
}
#mulheres{
    font-size: 130px;
}
#potentes{
    font-size: 135px;
}
#organizadas{
    font-size: 85px;
}

/* A OSC MULHERES DA PARADA...*/
#hero-subtitle-container{
    color: var(--white);
    width: 30%;
    font-weight: 500;

    font-size: 24px;
}

/*botoes de CTA*/
#hero-ctas{
    width: 40%;

    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    
    gap:1em;

    font-size: 24px;
    font-weight: bold;
}

#hero-ctas a{
    background-color: transparent;
    border:3px solid var(--white);
    text-align: center;
    color:var(--white);

    border-radius: 12px;
    padding:0.5em 1.5em;

    text-decoration: none;    
}

#hero-ctas a:first-child{
    color:var(--dark-red);
    background-color: var(--white);
}