#intro {
    padding: 100px 0 60px 0;
}

#intro .container {
    padding: 0px 65px;
}

#intro .titulo {
    font-size: 56px;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #1A1A1A;
    margin: 0 0 40px 0;
}

#intro .texto {
    font-size: 18px;
    line-height: 132%;
    letter-spacing: -0.01em;
    color: #010101;
    opacity: 0.8;
    margin: 0 0 25px 0;
}

#sobre {
    padding: 0 0 100px 0;
}

#sobre .container {
    padding: 0px 65px;
}

#sobre .bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    gap: 15px;
}

#sobre .bottom .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #838383;
    flex: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px;
    text-decoration: none;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    position: relative;
    overflow: hidden;
}

#sobre .bottom.tamanho .box{
    width: calc(33.333% - 10px);
    flex: none;
}

#sobre .bottom.tamanho{
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
}

#sobre .bottom .box::before {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 50%;
    top: -126px;
    z-index: -1;
    border-radius: 50%;
    -webkit-transition: all 650ms ease-in-out;
    -o-transition: all 650ms ease-in-out;
    transition: all 650ms ease-in-out;
    background: var(--roxo-claro);
}

#sobre .bottom .box:hover::before {
    width: 200%;
    height: 230%;
    left: -50%;
    top: -126px;
    -webkit-transition: all 650ms ease-in-out;
    -o-transition: all 650ms ease-in-out;
    transition: all 650ms ease-in-out;
    z-index: -1;
}

#sobre .bottom .box .content .titulo-box {
    font-size: 22px;
    line-height: 28px;
    letter-spacing: -0.05em;
    color: #1A1A1A;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
    margin: 0 0 15px 0;
}

#sobre .bottom .box .content .texto-box {
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    letter-spacing: -0.01em;
    color: #1A1A1A;
    -webkit-transition: .3s ease all;
    -o-transition: .3s ease all;
    transition: .3s ease all;
}

#sobre .bottom .box:hover .titulo-box,
#sobre .bottom .box:hover .texto-box {
    color: #012B2A;
}

@media only screen and (max-width:1024px) {
    #sobre {
        padding: 40px 0;
    }

    #sobre .bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    #sobre .bottom .box,
    #sobre .bottom.tamanho .box {
        background-color: #f3f3f3;
        width: 100%;
        height: auto;
        padding: 30px 20px;
    }

    #sobre .container,
    #intro .container {
        padding: 0 15px;
    }

    #intro {
        padding: 80px 0 10px 0;
    }

    #intro .titulo {
        font-size: 36px;
    }

    #intro .texto {
        font-size: 16px;
    }
}

@media only screen and (max-width:600px) {
    #intro .titulo {
        font-size: 30px;
    }
}