.page-title{
    text-transform: uppercase;
}
article.chuvs{
    width: 100%;
}
.card-1{
    width: 100%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
.card-1 img{
    height: 200px;
    object-fit: cover;
}
.card-1__body{
    padding: 16px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.card-1__title{
    font-size: 16px;
    text-align: center;
    height: 50px;
}
.card-1__subtitle{
    display: inline-block;
    height: 50px;
    font-size: 14px;
    text-align: center;
}
.card-1__btn{
    padding: 16px 24px;
    background-color: #DA251C;
    color: #fff;
    display: inline-block;
    margin: 20px auto;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.4s ease-out;
}
.card-1__btn:hover{
    transform: translateX(2px) translateY(2px) scale(0.98);
}

.produto{
    box-shadow: rgba(136, 165, 191, 0.48) 2px 2px 10px 0px, rgba(255, 255, 255, 0.8) 5px -2px 16px 0px;
    padding: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap:12px;
    margin: 20px 0;
}
.produto__title{
    font-size: 20px;
    position: relative;
}
.produto__title::after{
    position: absolute;
    content: '';
    bottom: -6px;
    left: 0;
    width: 65px;
    height: 2px;
    background: #DA251C;
}
.produto__thumb{
    width: 100%;
    height: 200px;
}
.produto__thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.produto__btn{
    display: block;
    color: #fff;
    background: #DA251C;
    padding: 16px 32px;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 4px; 
    transition: all 0.4s ease-out;
    margin: 20px 0;
}
.produto__btn--whats{
    background: #25D366;
}
.produto__btn:hover{
    transform: scale(0.95);
}
.gallery-mod-1{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}
.gallery-item{
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
.gallery-item img{
  width: 100%;
  height: 200px;
  object-fit: cover;
}
@media only screen and (max-width: 959px){
    .gallery-mod-1{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media only screen and (max-width: 576px){
    .gallery-mod-1{
        display: block;
    }
    .gallery-item{
        margin: 20px 0;
    }
}