.produtos {
    position: relative;
}
.produtos a:hover img {
    transform: translateY(-10px);
}
.produtos a img {
    transition: .3s ease-out;
}
.produtos-title {
    position: relative;
    z-index: 10;
}
.produtos a h2 {
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.produtos a h2::after {
    content: "";
    width: 0px;
    height: 4px;
    display: block;
    background-color: #000;
    border-radius: 10px;
    transition: .3s ease-out;
}
.produtos a:hover h2::after {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.produtos-title h4 {
    color: #E30613;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
}
.produtos-title h5 {
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
}
.produtos-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: .5fr .25fr;
    justify-items: center;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 10;
}
.produtos-content1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}
.produtos-content1 a {
    text-align: center;
    display: grid;
    justify-items: center;
}
#rastroenorme {
    position: absolute;
    right: 0;
    top: -100px;
}
#rastro4 {
    position: absolute;
    z-index: 1;
}

@media only screen and (min-width:500px) and (max-width:840px) {

    .produtos-grid {
        grid-template-columns: 1fr;
    }
    .produtos-content1 {
        gap: 40px;
    }
    
}
@media only screen and (min-width:0px) and (max-width:499px) {

    .produtos-grid {
        grid-template-columns: 1fr;
    }
    .produtos-content1 {
        gap: 40px;
        grid-template-columns: 1fr;
    }
    .produtos-title h4 {
        color: #E30613;
        font-size: 1.5rem;
    }
    .produtos-title h5 {
        font-size: 1rem;
    }
    
}