.about {
    background: url(/img/fundo-about.webp) no-repeat center center;
    background-size: cover;
    color: #fff;
    font-style: italic;
    padding: 80px 10px;
    position: relative;
    bottom: 90px;
}
.about-grid > p {
    font-weight: 600;
}
.about-grid h4 {
    font-size: 1.45rem;
    font-family: "ethnocentric", sans-serif;
}
.about span {
    color: #E9E011;
    font-weight: 700;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.09rem;
}
.text {
    background-color: #ED3232;
    padding: 20px 50px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.09rem;
}
.detran {
    display: flex;
    align-items: center;
    grid-gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

@media only screen and (min-width:471px) and (max-width:885px) {

    .about-content {
        grid-template-columns: 1fr;
        font-size: .9rem;
    }
    .text {
        padding: 20px 40px;
        font-size: .9rem;
    }
    
}
@media only screen and (min-width:370px) and (max-width:470px) {

    .about-content {
        grid-template-columns: 1fr;
        font-size: .8rem;
    }
    .about-grid h4 {
        font-size: 1.1rem;
        font-family: "ethnocentric", sans-serif;
    }
    .about-grid > p {
        font-size: .8rem;
    }
    .text {
        padding: 20px 40px;
        font-size: .8rem;
    }
    .detran {
        display: grid;
        justify-items: center;
    }
    
}
@media only screen and (min-width:0px) and (max-width:369px) {

    .about-content {
        grid-template-columns: 1fr;
        font-size: .7rem;
    }
    .about-grid h4 {
        font-size: .9rem;
        font-family: "ethnocentric", sans-serif;
    }
    .about-grid > p {
        font-size: .7rem;
    }
    .text {
        padding: 20px 20px;
        font-size: .7rem;
    }
    .detran {
        display: grid;
        justify-items: center;
    }
    
}