.black-bg{
    background-color: var(--preto);
    color: var(--branco);
}

.gray-bg{
    background-color: var(--cinza);
    color: var(--preto);
}

.golden-bg{
    background-color: var(--amarelo);
    color: var(--preto);
}

.section{
    min-height:100dvh;
}

.section-doble{
    min-height:220dvh;
}

.section-half{
    display: flex;
    min-height:20dvh;
    width: 100%;
}

.main-content{
    max-width: 120rem;
    min-height: 100dvh;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    padding: 3rem;
}

.main-content-doble{
    max-width: 120rem;
    min-height: 220dvh;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    padding: 3rem;
    gap: 10rem;
}

.main-content-half{
    min-height: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden;
    justify-items: center;
}

.center-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;    
}

.center-content ul li{
    list-style: none;
    padding: 1rem;
}

.grid{
    display: grid;
}

.text-justify{
    text-align: justify;
}

.button{
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    min-width: 38rem;
    width: 90%;
    gap: 2rem;
    overflow: hidden;
    transition:ease-in-out 300ms;
}

.button:hover{
   cursor: pointer;
   transform: scale(1.05);
}

.whatsapp-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    width: 5rem;
    height: 5rem;
    background-color: var(--preto);
    border-radius: 100%;
}

.button .whatsapp-icon img{
    width: 3rem;
} 

.shadow{
    box-shadow: 0rem 0rem 1rem rgba(0, 0, 0, 0.2);
}
