.banner{
    height: auto;
    position: relative;
    background: var(--white);
    padding-bottom: 40px;
    margin-top: 20px;
}
.banner .grid{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}
.banner .grid .right{
    width: 25%;
    border-left: 1px solid var(--orange);
    padding-left: 10px;
}

.banner .grid .right p{
    padding-right: 80px;
}

.banner .grid .center{
    width: 50%;
}
.banner .grid .left{
    width: 25%;
}

.banner .grid .left img{
    width: 100%;
}

/** Button **/

.buttons{
    display: flex;
    margin-top: 40px;
}
.button{
    font-size: 16px;
    font-weight: 600;
    height: 55px;
    padding: 0 31px;
    border-radius: 32px;
    background-color: var(--darkpurple);
    color: var(--white);
    display: flex;
    align-items: center;
}
.insreva-se:hover{
    background-color: var(--orange);
}
.button-play:hover{
    color: var(--orange);
}
.button img{
    max-width: 40px;
    max-height: 40px;
}
.button-play{
    color: var(--grey);
    background: none;
    gap: 8px;
    padding-right: 0;
}