@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');

/* Reset & Global */
* {
    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;
}

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;
}

section {
    min-height: 100dvh;
    cursor: default;
    padding: 2rem 6%;
}



/*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, #44003e);
    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*/





/* Postres */
.sectionPostres {
    background: #f0f0f0;
}

.sectionPostres .container{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
  gap: 1rem;
}

.sectionPostres .container .cardPostre{
  overflow: hidden;
  border-radius: 7px;
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  background: #fff;
  box-shadow: 0 5px 10px rgba(17, 17, 17, 0.080);
}
.sectionPostres .container .cardPostre .namePostre{
  background:#F7C1CA ;
  width: 100%;
  padding: .5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: .2rem;
}
.sectionPostres .container .cardPostre .pic-thumb{
  display: flex;
  align-items: center;
  justify-content: center;
}
.sectionPostres .container .cardPostre .pic-thumb img{
  width: 100%;
  height: 12rem;
  object-fit: contain;
  margin-bottom: .5rem;
  border-radius: 5px;
}

.sectionPostres .container .cardPostre .descriptionPostre{
  margin-bottom:auto ;
  color: #5a5a5a;
  font-weight: 500;
  padding: .5rem;
  font-style: oblique;
}
.sectionPostres .container .cardPostre .priceTag{
  padding: .5rem 1rem;
  background:#F7B0BB ;
  border-radius: 5px;
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: .5rem;
  margin-right: auto;
  margin-left: .5rem;
}
.sectionPostres .container .cardPostre .priceTag .pricePostre{
  font-weight:bolder;
  font-size: 1.2rem;
}

.sectionPostres .container .cardPostre .actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .5rem;
  gap: .3rem;
}
.sectionPostres .container .cardPostre .actions .btnSharePostre{
  background: #383838;
  color: #fff;
  padding: .3rem;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}
.sectionPostres .container .cardPostre .actions .btnSharePostre:hover{
  background: #000086;
}
.sectionPostres .container .cardPostre .actions .call{
  background: #21BF5B;
  color: #fff;
  padding: .3rem;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
}



@media(max-width:1200px){
    .headingPizzas .container{
        height: 13rem;
    }
    .headingPizzas .container img{
        left: 60%;
        height: 17rem;
        top: 50%;
    }
    .headingPizzas .links{
    justify-content: center;
}

}

