.chamada {
    background-image: url(../img/crescimento.png) ;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 50vh;
}


.chamada-text-area {
    display: flex;
    flex-direction: column;
    gap: 3em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;

}

.section-title.bolder {
    font-size: 2em;
    width: 100%;
    font-weight: 600;
}

.chamada-button-link {
    background-color: var(--highlight);
    padding: 1em 0;
    color: var(--background);
    border-radius: 1em;
    text-align: center;
    width: 100%;
    margin: 0 auto;
  
 
    
     
 }

 .chamada-button-link:hover {
    cursor: pointer;
    background-color: var(--background);
    border: solid 1px var(--highlight);
    color: white;
    
   }
 
 .chamada-button {
     background-color: transparent;
     border: none;
     color: inherit;
    
     font-family: 'Outfit', sans-serif;
     font-size: .85em;
     letter-spacing: .25em;
     font-weight: 800;
     text-transform: uppercase;
 }

 .chamada-button:hover {
    cursor: pointer;
 }


 @media (min-width: 800px) {

    .chamada {
        padding: 5em 0;
    }
    .chamada-text-area {
        width: 80%;
        max-width: 800px;
        margin: 0 auto;
    }

    .section-title.bolder {
        font-size: 3em;
    }

    .chamada-button-link {
        max-width: 500px;
    }

 }