.acessorios {
    padding: 60px 10px;
    padding-top: 20px;
    position: relative;
    z-index: 10;
}
.acessorios-grid {
    display: grid;
    grid-template-columns: max-content max-content max-content;
    justify-content: center;
    justify-items: center;
    align-items: baseline;
    align-content: center;
    text-align: center;
    gap: 60px;
}
.acessorios a {
    display: grid;
    gap: 10px;
}
.acessorios a:hover img {
    transform: translateY(-10px);
}
.acessorios a img {
    transition: .3s ease-out;
}
.acessorios a h2 {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 900;
    padding: 8px 12px;
    border-radius: 20px;
    transition: .3s;
}
.acessorios a:hover h2 {
    background-color: #E30613;
    border-radius: 20px;
    color: #FFED00;
}

.acessorios-title p {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 500;
    margin-left: auto;
    margin-right: auto;
    max-width: 850px;
    margin-bottom: 100px;
    margin-top: 20px;
}
.acessorios-title p span {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
}

@media only screen and (min-width: 690px) and (max-width: 975px) {

    .acessorios-grid {
        grid-template-columns: max-content max-content;
    }
    .acessorios-title p {
        font-size: 1.5rem;
        max-width: 850px;
    }
    .acessorios-title p span {
        font-size: 2rem;
    }
    
}

@media only screen and (min-width: 0px) and (max-width: 689px) {

    .acessorios-grid {
        grid-template-columns: 1fr;
    }
    
}

@media only screen and (min-width: 470px) and (max-width: 689px) {

    .acessorios-title p {
        font-size: 1.2rem;
        margin-bottom: 40px;
        max-width: 850px;
    }
    .acessorios-title p span {
        font-size: 1.5rem;
    }
    
}
@media only screen and (min-width: 340px) and (max-width: 469px) {

    .acessorios-title p {
        font-size: 1rem;
        margin-bottom: 40px;
        max-width: 850px;
    }
    .acessorios-title p span {
        font-size: 1.2rem;
    }
    
}
@media only screen and (min-width: 0px) and (max-width: 339px) {

    .acessorios-title p {
        font-size: .9rem;
        margin-bottom: 40px;
        max-width: 850px;
    }
    .acessorios-title p span {
        font-size: 1rem;
    }
    
}