.sobre-content-scroll {
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    grid-gap: 10px;
    padding-left: 40px;
    padding-right: 20px;
    max-width: 450px;
    transition: .3s ease-out;
}

.sobre-content-scroll::-webkit-scrollbar {
    margin: 5px;
    height: 15px;
    margin-top: 10px;
    background: #000000;
    border-radius: 10px;
    transition: .3s ease-out;
}

.sobre-content-scroll::-webkit-scrollbar-thumb{
    background: #E30613;
    box-shadow: 0px 0px 0px 8px #E30613 inset;
    border-radius: 10px;
    transition: .3s ease-out;
}
.sobre-content-scroll::-webkit-scrollbar-thumb:hover {
    box-shadow: 0px 0px 0px 8px #ff0000 inset;
    transition: .3s ease-out;
}
.sobre-content-scroll::-webkit-scrollbar-thumb:active {
    box-shadow: 0px 0px 0px 8px #ffea00 inset;
    transition: .3s ease-out;
}

.sobre-content-grid {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    transition: .3s ease-out;
}


.sobre-content-scroll > div {
    flex: 1;
    background-size: cover;
    min-width: 390px;
    border-radius: 5px;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 30px 10px;
    align-items: center;
    color: #fff;
    justify-items: center;
    background-color: #000000;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    border-radius: 60px;
}
.sobre-grid > div:nth-child(1) img{
    border-radius: 45px;
}
.sobre {
    padding: 60px 10px;
}
.sobre-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 500;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3em;
    margin-bottom: 20px;
}
.sobre-title span {
    color: #E30613;
    font-weight: 600;
}
.sobre > a {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
    margin-top: 20px;
    gap: 8px;
    color: #E30613;
    font-size: 1.25rem;
    font-weight: 900;
    transition: .3s ease-in-out;
    padding: 5px 10px;
}
.sobre > a:hover {
    box-shadow: 0px 0px 0px 5px #E30613;
    color: #ffea00;
    background-color: #E30613;
    border-radius: 25px;
}

@media only screen and (min-width:386px) and (max-width:801px) {

    .sobre-grid {
        display: grid;
        grid-template-columns: 1fr;
        max-width: 100%;
        padding: 30px 10px;
    }
    .sobre-grid > div:nth-child(1) img{
        border-radius: 35px;
        max-width: 100%;
    }

    .sobre-content-scroll {
        max-width: 330px;
        transition: .3s ease-out;
        padding-left: 0px;
    }
    .sobre-content-scroll > div p{
        padding-right: 50px;
    }
    
}
@media only screen and (min-width:0px) and (max-width:385px) {

    .sobre-grid {
        display: grid;
        grid-template-columns: 1fr;
        padding: 30px 10px;
        border-radius: 30px;
    }
    .sobre-grid > div:nth-child(1) img{
        border-radius: 10px;
        max-width: 150px;
    }

    .sobre-content-scroll {
        max-width: 220px;
        transition: .3s ease-out;
        padding-left: 10px;
    }
    .sobre-content-scroll > div p{
        padding-right: 170px;
        font-size: .75rem;
    }

    .sobre-title {
        font-size: 1.5rem;
    }
    .sobre > a {
        font-size: .95rem;
    }
    
}