    body {
      font-family: 'Prompt', sans-serif;
      margin: 0;
      padding: 0;
      background: #e4e4e4;
      
    }

.vtr-vitrine {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #474446c3;
  font-weight: 300;
  box-sizing: border-box;
}
/* Centralizar e ajustar layout em telas menores */
@media (max-width: 1019px) {
  .vtr-vitrine {
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    padding: 20px 5%;
  }
}

/* Para telas muito pequenas (tipo smartphone) */
@media (max-width: 600px) {
  .vtr-vitrine {
    grid-template-columns: 1fr;
    padding: 20px 10%;
  }
}

  

    .vtr-produto {
      font-family: 'Prompt', sans-serif;
      font-weight: 300;
      width: 270px;
      background: #ffffff;
      border: 1px solid #ddd;
      padding: 19px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 10, 0.177);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      text-align: center;
      height: 500px;
      cursor: pointer;
    }

 
    .vtr-produto img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 5px;
    }

    .vtr-produto h4 {
      margin: 15px 0 4px;
      color: #4a4a4a;

    }
    
    .vtr-titulo{
        color: #ff00b3;
        font-size: 15px;
    }

    .vtr-preco {
      font-weight: 600;
      color: #33a836;
      margin-top: 10px;
      font-size: 19px;
      font-family: 'Prompt', sans-serif;
    }

    .vtr-btn-detalhes {
      margin: 15px 0px 15px 0px;
      background: #8a7f50eb;
      color: white;
      padding: 13px 28px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 400;
      text-decoration: none;
      margin-bottom: 3px;
    font-size: 14px;

    }

    .vtr-btn-detalhes:hover {
      background: #59522feb;
    }

    .vtr-modal {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #000000e0;
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .vtr-modal-content {
      background: #ffffff;
      padding: 25px;
      width: 80%;
      max-width: 800px;
      max-height: 90vh;
      overflow-y: auto;
      border-radius: 8px;
      position: relative;
    }

    .vtr-close {
      position: absolute;
      top: 10px;
      right: 20px;
      font-size: 49px;
      cursor: pointer;
      color: #d71616;
    }

    .vtr-caracteristicas, .vtr-collapse {
      margin-top: 50px;
    }

    .vtr-caracteristica-item, .vtr-collapse-item {
      margin-bottom: 7px;
    }

    .vtr-collapse-item summary {
      font-weight: 500;
      cursor: pointer;
      color: #7e6f48;
      margin-left: 5px;
      font-size: 18px;
      padding-bottom: 5px;
      padding-top: 5px;
    }

    .vtr-descricao-final {
      text-align: left;
       margin-top: 50px;
       background-color: #9a83482f;
       padding: 30px;
       border-radius: 10px;
    }

    .vtr-btn-compra {
      background: #8a7f50eb;
      color: white;
      padding: 16px 40px;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      font-weight: 400;
      text-decoration: none;
      margin-bottom: 3px;
     font-size: 14px;
     width: 70%;
     margin-bottom: 20px;

       }

    .vtr-btn-compra:hover {
      background: #4e482ceb;
      color: #fff;

    }

                                        /* css do modal */

                        .vtr-modal-titulo {
                    font-size: 20px;
                    font-weight: 400;
                    margin-bottom: 10px;
                    padding-right: 50px;
                    color: #221b1feb;
                    text-align: left;
                    }

                    .vtr-modal-imagem {
                    width: 100%;
                    max-height: 300px;
                    object-fit: contain;
                    margin: 15px 0;
                    }

                    .vtr-modal-descricao {
                    font-size: 16px;
                    color: #555;
                    margin-bottom: 40px;
                    line-height: 1.6;
                    text-align: justify;
                    }

                    .vtr-modal-preco {
                    font-size: 20px;
                    color: #33a836;
                    margin: 25px 0 10px;
                    text-align: left;
                    font-weight: 600;
                      font-family: 'Open Sans', sans-serif;

                    }


                    /* Ocultar em tablets (opcional, dependendo do seu breakpoint) */
            @media (max-width: 1024px) and (min-width: 768px) {
                small.ocultar-mobile {
                    display: none !important;
                }
            }

            /* Ocultar em mobiles */
            @media (max-width: 767px) {
                small.ocultar-mobile {
                    display: none !important;
                }
            }


                /* tolltip loja */
                span[data-tooltip1] {
                    position: relative;
                }
                
                span[data-tooltip1]:hover::after {
                    content: attr(data-tooltip1);
                    position: absolute;
                    bottom: -110%;
                    right: -100px;
                    transform: translateX(-50%);
                    background: #3f1a39;
                    color: white;
                    padding: 6px 11px;
                    border-radius: 4px 0px 4px 4px;
                    font-size: 11px;
                    white-space: nowrap;
                    margin-bottom: 5px;
                }


                /* tolltip loja */
                span[data-tooltip] {
                    position: relative;
                }
                
                span[data-tooltip]:hover::after {
                    content: attr(data-tooltip);
                    position: absolute;
                    bottom: -230%;
                    right: -20px;
                    transform: translateX(-50%);
                    background: #65225a;
                    color: white;
                    padding: 7px 12px;
                    border-radius: 5px 0px 5px 5px;
                    font-size: 13px;
                    white-space: nowrap;
                    margin-bottom: 5px;
                }


 