.infobox {
  right:5px;
  position: fixed;
  background: #eee;
  padding: 80px;
  padding-top: 10px;
  border-radius: 6px;
  color: #646464;
  clip-path: circle(24px at 92% 6%);
  transition: background 0.5s ease, clip-path 0.5s ease-in-out;
  line-height: 2;
}
.infobox__icon {
  position: absolute;
  top: 17px;
  right: 18px;
  fill: white;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.infobox__icon .fa, .fas {
	font-size: 16px;
}
.infobox__contents {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  transition-delay: 0s;
}
.categoria__title{
    font-size: 24px;
    text-align: center;
}
.infobox__title {
  font-size: 24px;
  margin-bottom: 10px;
}
.infobox__text {
  line-height: 1.3;
  margin-bottom: 10px;
}
 .categories-list {
        list-style-type: none;
        padding: 0;
        margin: 0;
    }

    .categories-list li {
        padding: 5px;
        cursor: pointer;
    }
    .categories-list li:hover {
        border-radius: 6px;   
        box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.1);
    }

    .categories-list li:last-child {
        border-bottom: none; /* Remove a borda inferior do último item */
    }
.infobox__link {
  color: white;
}
.infobox:hover {
  clip-path: circle(100% at 50% 50%);
  background: #5957b7;
}
.infobox:hover .infobox__contents {
  opacity: 1;
  transition-delay: 0.3s;
}
.infobox:hover .infobox__icon {
  opacity: 0;
}

/* Estilo para cada categoria de produtos */
.product-category {
    
    width: 100%;
    margin-bottom: 10px; /* Espaçamento entre categorias */
}
.center-text {
    text-align: center;
}
a:link {
  color: #000;
}

/* visited link */
a:visited {
  color: #000;
}

/* mouse over link */
a:hover {
  color: #000;
}

/* selected link */
a:active {
  color: #000;
}
body{
    background-color:#fff;
}
.product-list {
    display: block;
    padding: 5px;
    gap: 2px; /* Espaço entre os produtos */
}
.product:hover{   
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}
.product {
    display: inline-block;
    width: calc(23.33% - 10px);
    flex: 0 0 calc(23.33% - 10px); 
    margin: 10px;
    padding: 5px;
    text-align: left;
    box-sizing: border-box;
    background-color: #f7f1ff;
    border-radius: 10px;
}



.product img {
    max-width: 100%;
    height: auto;
    border-radius: 10px 10px 1px 1px;
}

.product h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0 0 0;
}


.product .genre {
  font-size: 14px;
}


@media screen and (max-width:1150px) {
  .product {
    width: calc(33.33% - 20px);
  }
  .product-list {

    justify-content: space-between;
    gap: 2px; 
}
}
@media (max-width: 768px) {
    .categoria__title{
    font-size: 14px;
    padding: 10px;
    font-weight: 900;
}
    .product {
        flex: 0 0 calc(33.33% - 10px); 
        width: calc(33.33% - 10px);
        margin:5px;
        padding:5px;
    }
    .product-list {

    justify-content: left;
    gap: 2px; 
}
    H3#titulo{
        font-size: 12px;
    }
    p{
        font-size:12px;
    }
    p#price{
       font-size:12px;
    }
    
}
@media screen and (max-width:400px) {
  .product {
    width: calc(33.33% - 10px);
  }
  .product-list {

    justify-content: space-between;
    gap: 2px; 
}
}

/* TABLE VIEW */
@media screen and (min-width:401px) {
  .settings {
    display: block;
  }
  #view {
    display: inline;
  }
  .products-table .product {
    display: block;
    width: auto;
    margin: 10px 10px 30px 10px;
  }
  .products-table .product .product-img {
    display: inline-block;
    margin: 0;
    width: 120px;
    height: 120px;
    vertical-align: middle;
  }
  .products-table .product img {
    width: auto;
    height: 80px;
    max-width: 80px;
  }
  
}











p#price{
       
       color:#b6127c;
       font-weight:900;
    }



