@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    transition: all .2s linear;
    list-style: none;
    font-family: "Quicksand", sans-serif;
    outline: none;
    border: none;
}


:root{
    --fontTilt:"Tilt Neon", sans-serif;
}




section{
    padding: 2rem 3%;
    min-height: 100dvh;
    cursor: default;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
}



html::-webkit-scrollbar{
    width: .8rem;
}
 html::-webkit-scrollbar-track{
    background:linear-gradient(0, #b3a5a5, #3a2f2f);
}
 html::-webkit-scrollbar-thumb{
    background:linear-gradient(0, #cacaca, #797979);
    border-radius: 17px;
    cursor:grab;
}

body{
  background: #eee;
}






/*Banner parapicar Empieza*/
.headingPizzas{
    background: #f7f7f7;
    min-height: 20dvh;
    width: 100%;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem;
    gap: 1rem;
    cursor: default;
}
.headingPizzas .container{
    display: flex;
    background: linear-gradient(0, #000000, #222b24);
    flex-direction: column;
    position: relative;
    padding: 1rem;
    overflow: hidden;
    border-radius: 20px;
    height: 15rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, .3);
}
.headingPizzas .container img{
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    left: 75%;
    height: 27rem;
    filter: drop-shadow(0 -15px 17px #000);
}


.headingPizzas .container h1{
    font-size: .9rem;
    color: #fff;
    font-weight: 500;
}
.headingPizzas .container h2{
    color: #fff;
    font-size: clamp(2rem, 3vw, 3.5rem);
    font-weight: bolder;
    text-shadow: 0 2px 3px #000;
}
.headingPizzas .container p{
    color: #ffa500;
    font-size: clamp(1.1rem, 1vw, 1.5rem);
    display: flex;
    align-items: center;
    gap: .5rem;

}

.headingPizzas .container p i{
    font-size: clamp(1.5rem, 3vw, 1.7rem);
    color: #ff9900;
    transform: rotatey(180deg);
}

.headingPizzas .container .btnCont{
    width: 100%;
    margin-top: auto;
    margin-bottom: 1rem;
}

.headingPizzas .container .btnCont a{
    padding: .5rem 1rem;
    border-radius: 15rem;
    background: #BCEB01;
    color: #000;
    font-weight: 700;
}





.headingPizzas .links{
    display: flex;
    align-items: center;
    gap: .5rem;
    min-height: 10dvh;
}
.headingPizzas .links a{
    background: #fff;
    border-radius: 10px;
    height: 4.5rem;
    width: 4rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    padding: .3rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.075);
}
.headingPizzas .links a img{
    width: 90%;
}
.headingPizzas .links a p{
    font-size: .6rem;
    margin-top: auto;
    color: #333;
    font-weight: 600;
}
/*Banner parapicar Termina*/



.sectionPicar{
  margin-top: 6rem;
  padding: 2rem 9%;
}
.sectionPicar .container{
  display:grid;
  gap:1rem;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
}

.sectionPicar .container .picarCard{
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  border-radius: 12px;
  padding: .5rem;
  background: #fff;
  box-shadow: 0 5px 8px rgba(102, 102, 102, 0.082); 
}
.sectionPicar .container .picarCard .imagePicar{
  width: 100%;
  height: 12rem;
  object-fit: contain;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.sectionPicar .container .picarCard .namePicar{
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-family: var(--fontTilt);
  color: #4e4e4e;
  border-bottom: 1px solid #eee;
}

.sectionPicar .container .picarCard .descriptionPicar{
  color: rgb(105, 105, 105);
  margin-bottom: auto;
  font-weight: 500;
  font-style: oblique;
  margin-bottom: .5rem;
  border-bottom: 1px solid #eee;
}
.sectionPicar .container .picarCard .priceTag{
  background: #0E9FE1;
  color: #fff;
  padding: .5rem ;
  border-radius: 5px;
  width: max-content;
  margin-top: auto;
  font-weight: 500;
}
.sectionPicar .container .picarCard .priceTag span{
  font-weight: 900;
  font-size: 1.3rem;
}

.sectionPicar .container .picarCard .actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .2rem;
  padding: .3rem;
}

.sectionPicar .container .picarCard .actions .btnSharePicar{
  background: #101726;
  padding: .5rem 1rem;
  border-radius: 7px;
  color: #fff;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
}
.sectionPicar .container .picarCard .actions .call{
  background:#159D47 ;
  padding: .4rem;
  width: 100%;
  color: #fff;
  border-radius: 7px;
  font-weight: 600;
}
.sectionPicar .container .picarCard .actions .call:hover{
  background: #12da00;
}





/* Responsive tweaks */
@media (max-width: 480px){
  .sectionPicar{
    padding:1.2rem 4%;
  }
  .sectionPicar .container{
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  }
  
}

@media(max-width:1200px){
    .headingPizzas .container{
        height: 13rem;
    }
    .headingPizzas .container img{
        left: 50%;
        height: 15rem;
        top: 50%;
    }
    .headingPizzas .links{
    justify-content: center;
}

}
