@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 9%;
    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;
}





/*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, #002044);
    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: 50%;
    transform: translateY(-50%);
    left: 70%;
    height: 55rem;
    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*/




.sectionBebidas {
  background: #f2f9ff;
  border-bottom: 1px solid #ccc;
}

.sectionBebidas .container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 1rem;
  row-gap: 2rem;
}

.cardBebida {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

.cardBebida .nameBebida {
  background: #000000;
  color: #fff;
  font-weight: 700;
  padding: .5rem;
  font-size: 1.1rem;
}

.cardBebida .imageBebida {
  width: 100%;
  height: 12rem;
  object-fit: contain;
  background: #eee;
  margin-bottom: .5rem;
}

.cardBebida .priceBebida {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-left: auto;
  margin-top: auto;
  margin-right: .5rem;
  padding: .3rem .6rem;
  background: #0096db;
  width: max-content;
  border-radius: 7px;
  box-shadow: 0 0 7px rgba(0, 152, 199, 0.747);
}
.cardBebida .priceBebida span{
  font-weight: 500;
  font-size: 1rem;
}

.cardBebida .descriptionBebida {
  padding: .5rem;
  font-size: .9rem;
  color: #555;
  font-style: italic;
  flex-grow: 1;
  font-weight: 600;
}

.cardBebida .btnsContainerBebida {
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  padding: .5rem;
  gap: .3rem;
}

.cardBebida .btnShareBebida {
  background: #475f75;
  color: #fff;
  border-radius: 3px;
  cursor: pointer;
  width: 100%;
  padding: .3rem;
  font-size: .8rem;
}

.cardBebida .btnShareBebida:hover {
  background: #0d9c90;
}

.cardBebida .call {
  background: #222;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  width: 100%;
  padding: .3rem;
  font-size: .8rem;
}



@media(max-width:1200px){
    .headingPizzas .container{
        height: 13rem;
    }
    .headingPizzas .container img{
        left: 60%;
        height: 17rem;
        top: 50%;
    }
    .headingPizzas .links{
    justify-content: center;
}

}