:root{	
	--cc-bg-p: #032b44!Important;
	--cc-ft: #032b44;
	--cc-bg-br: #f2f2f2;
	--cc-c-br: #fff;
	--cc-cS: #032540;
	--cc-yellow: #f9d608;
}


.custom-height{
	margin-top: 5rem;
}

.custom-title{
	text-align: center;
}

.custom_container{
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;

    min-width:100%;
    min-height: 75rem;
    padding: 1rem;
    padding-top:0;
    padding-bottom: 0;

    position: relative;
  

}

/* Estilize a página de acordo com suas preferências */

/* 
.searc-bar{
    margin:0 auto;
}

.search-bar-input{
    border: none;
    width: 50rem;
    height: 4rem;
    margin-top: 1rem;
    padding: 2rem;
    background-color: var(--cc-bg-br);
    font-size: 2rem;
    border-radius: 5px;
    color: var(--cc-bg-p);
} */
/* 
.search-bar-input:textarea {
    color:var(--cc-bg-p);
    
}

.search-img{
    width: 3.5rem;
    margin: 0.5rem;
    margin-top: -9px;
    transform: rotate(344deg);
    cursor: pointer;
    filter: contrast(120%);
}

 */
.section-container{
	width: 100%;
	


}

.product-container {
    display: grid;
	grid-template-columns: 23% 23% 23% 23%;	
	gap: 1rem;
	justify-content: center;

}

.product {
	display:grid;
	
	width: 100%;
	/* height: 50rem; */
	
	padding: 1rem;	
	border: 1px solid black;
	

}

.product a:active, .product a:link{
	border:none;
}

.product img{
	width:100%;

}

.product h1{
    width: 100%;
    padding: 0;
	text-align: left;
 
}

.product h2{
	text-align: right;
	align-self: end;	
}

.product h1, .product h2{
	display:grid;
}

.product p{	

	display:none;
}

.custom-btn{
   display:none;
	margin: 0 auto;
	width: 0 auto!Important;
	height: 2.5rem;
	text-align: center;
	
	padding: 0.25rem!Important;

    visibility: hidden;
}


.modal{
    display: grid;
    grid-template-columns: 1fr;
    width: 90%;
    max-height: 34rem;
    margin: 0 auto;
    position: relative;

    z-index: 1;
    box-shadow: 5px 5px 10px #032540;
    border-radius: 12px;
    border: 2px solid var(--cc-bg-p);
    visibility: hidden;
}

.modal h1, .modal h2, .modal p{
    display:inherit;
}

.modal-content {
    display: grid!Important;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* grid-template-rows: 1fr 1fr 1fr; */
    grid-template-areas:
        "img  h1 h1  h1"
        "h2   p   p   p "
        "btn  p   p   p "
        ;
    width: 100%;
	height:70%;
    position: fixed;
    left: 0;
    top: 217px;
    padding: 1rem;
    color: var(--cc-bg-p);
}


.img-close{
    position: absolute;
    width: 1.75rem;
    right: 1rem;
    top: 1rem;
    cursor: pointer;
}

.pop-img{
    grid-area: img;
    justify-self: start;
    width: 100%;
    max-width: 42rem;
    padding: 1rem;
    border-radius: 5px;
    background-color: var(--cc-bg-br);
}

.pop-name {
    grid-area: h1;
    width: 100%;
    height: 16rem;
    padding: 2.5rem;
    word-break: break-word;
    text-align: left;
    font-size: 2.5em;
 

}


.pop-p{
	grid-area: p;
    width: 100%;
    padding: 1rem;
    margin-top: -9rem;
	
    word-break: break-word;
    text-align: left;
    font-size: 2rem;
    font-style: italic;
    line-height: 2.25rem;

}

.pop-p::before{
    content:'Descrição: ';
	margin-top: ;
    font-style: initial;
    font-size: 2.5rem;
    font-weight: 700;
    color:var(--cc-yellow);

}

.pop-price{
	grid-area: h2;
    width: 34rem;
	
    word-break: break-word;
    text-align: right;
    font-size: 3rem;
    line-height: 2rem;


 
}	

.pop-btn{
	
    grid-area: btn;
    width: 10rem;
    /* bottom: 4rem;
    right: 4rem; */
    border-radius: 4px;
	align-self: self-start;
	align-content: end;

}

.pop-btn:hover{
    color: var(--cc-yellow);
}

/* Media Query */
@media (max-width: 3000px ){
	

	
}


@media (max-width: 2560px ){
		
}

@media (max-width: 1900px)  {
	
}


@media (max-width: 1440px) {
	.product-container {

		grid-template-columns: 30% 30% 30%;	

	}
		
	.pop-img{
		width: 70%;
	}
	
	.pop-price{
		width: 33rem;
		font-size: 2.5rem;
		text-align: left;
	}
	
	.pop-name{
		padding: 0.5rem;
		font-size: 2rem;
	}
	
	.pop-p{
		font-size: 1.5rem;
		line-height: 2.2rem;
	}
	
	
/* 		
	.product{
		width: 45%;
		height: 48rem;
	} */
}



@media (max-width: 1024px) {
	.product-container{
		    grid-template-columns: 45% 45%;
	}
	
/* 	.product{
		width: 45%;
		height:57rem
	} */
}



@media (max-width: 768px) {
	.product-container{
		/* grid-template-columns: 45% 45%; */
		
		
	}
	
	.product{
		width: 100%;
		height: 30rem;
		
	}
	
	.product h1{
		font-size: 1.5rem;
	}
}

@media (max-width: 480px) {
	
	.product-container {
		grid-template-columns: 100% ;
	}
	


}

