@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;
}

/* Layout base */
section{
  padding: 2rem 3%;
  min-height: 100dvh;
  cursor: default;
}
html{
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 6rem;
}



/*Banner Pizzas 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, #002903, #318500);
    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: 60%;
    height: 60rem;
    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: #1eff00;
    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: #fffb00;
    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: #ff0000;
    color: #ffffff;
    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 Pizzas Termina*/





/* Sección Veggies */
.sectionVeggies{
  background: #f9f9f9;
  border-bottom: 1px solid #333;
}
.sectionVeggies .container{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: .6rem;
  row-gap: 2rem;
}

.sectionVeggies .cardVeggie{
  display: flex;
  flex-direction: column;
  gap: .2rem;
  overflow: hidden;
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 2px 9px rgba(0,0,0, .2);
}

.sectionVeggies .cardVeggie .nameVeggie{
  background: #0d9c90; /* distinto al rojo de pizzas: acento verde-azulado */
  padding: .2rem .5rem;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
}

.sectionVeggies .cardVeggie .imageVeggie{
  width: 100%;
  height: 15rem;
  object-fit: contain;
  padding: 0 .5rem;
}

.sizesContainerVeggies{
  text-align: end;
  padding: 0 .5rem;
}
.sizesContainerVeggies p{
  font-weight: 600;
  color: #5a5a5a;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  border-bottom: 1px solid #cfcfcf;
  padding: .3rem;
  border-radius: 5px;
  margin-bottom: .2rem;
}
.sizesContainerVeggies span{
  font-size: 1.3rem;
  color: #357777;
  font-family: var(--fontTilt);
  margin-left: auto;
}
.sizesContainerVeggies strong{
  font-weight: 600;
  font-size: 1.1rem;
}

.sectionVeggies .cardVeggie .descriptionVeggie{
  margin-bottom: auto;
  padding: .5rem;
  font-style: oblique;
  color: #818181;
  font-weight: 500;
  font-family: var(--fontTilt);
  font-size: .85rem;
}

.btnsContainerVeggie{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  border-top: 1px solid #e0e0e0;
  padding: .5rem;
}
.btnsContainerVeggie .btnShareVeggie{
  background: #475f75;
  color: #ffffff;
  width: max-content;
  margin-right: auto;
  font-weight: 500;
  padding: .5rem;
  border-radius: 3px;
  cursor: pointer;
}
.btnsContainerVeggie .btnShareVeggie:hover{
  background: #0d9c90;
}
.btnsContainerVeggie .call{
  background: #464646;
  color: greenyellow;
  padding: .5rem;
  width: 100%;
  border-radius: 3px;
  text-align: center;
  font-weight: 700;
}
.btnsContainerVeggie .call:hover{
  background: #0d9c90; color: #fff;
}

/* Reutiliza este botón redondo si lo quieres en algún sitio */
.shareBtn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: #475f75; color: #fff; font-size: 1.1rem;
  cursor: pointer; transition: all .25s ease; box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.shareBtn:hover { background: #0d9c90; transform: scale(1.1); box-shadow: 0 4px 10px rgba(0,0,0,.3); }
.shareBtn i { pointer-events: none; }


@media(max-width:1200px){
    .headingPizzas .container{
        height: 13rem;
    }
    .headingPizzas .container img{
        left: 53%;
        height: 25rem;
    }
    .headingPizzas .links{
    justify-content: center;
}

}
