*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
body{
    font-family: Arial, Helvetica, sans-serif  
}

.our-products{
    text-align: center;
    max-width: 65%;
    margin: 20px auto;
    padding: 0 20px 20px;
    line-height: 1.6;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.2);
}

.our-products h1{
    font-size: 45px;
    font-weight: 700;
    padding: 25px 0 0 0;
}
.our-products h2{
    font-size: 30px;
    margin-bottom: 20px;
}

.our-products p{
    font-size: 20px;
    margin: 30px auto 30px;
    max-width: 70%;

}

.description{
    margin-bottom: 50px;
}

.categories {
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.categories a {
    margin: 0 10px 20px; 
    padding: 12px 20px;
    color: #000;
    background: #f1f1f1;
    font-size: 20px;
    border-radius: 5px;
    border: 3px solid #000;
}

.container{
    position: relative;
    max-width: 1350px;
    width: 100%;
    padding: 20px;
    margin: 50px auto;
}
.filter_buttons{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.container button{
    padding: 10px 20px;
    font-size: 18px;
    background: #f1f1f1;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin: 5px 5px;
}

button.actived{
    background: #000;
    color: #fff;
}

.filterable-card-product{
    display: flex;
    margin-top: 25px;
    gap: 15px;
    flex-wrap: wrap;
}

.card-product{
    flex-grow: 1;
    flex-basis: 300px;
    background-color: #f1f1f1;
    border-radius: 8px;
}
.card-product:hover{
	box-shadow: 5px 5px 20px rgba(0,0,0,0.4);
	transform: translateY(-3%);
}
.hide{
    display: none;
}
.card-product img{
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center top;
    border-radius: 8px 8px 0 0;
}

.card-product-body{
    padding: 15px 20px 20px;
}

.card-product-title{
    font-size: 20px;
    font-weight: 500;
    color: #000;
}

.card-product-text{
    font-size: 18px;
    color: #000;
}

@media (max-width: 1300px) {
    .our-products{
        max-width: 100% !important;
    }
    .our-products p{
        font-size: 20px;
        margin: 0 auto 20px;
        max-width: 75%;
    }
}

.popup {
    display: none; /* Inicialmente oculto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 9999;
}

.popup-content {
    background-color: #fefefe;
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
