@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 7% !important;
    min-height: 0dvh !important;
    cursor: default !important;
}

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: var(--backgroundNavbar);
}






/*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, #000000, #353535);
    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: orange;
    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: #fff;
    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: #C4F501;
    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 Pizzas Termina*/








/*Sección Pizza Empieza*/
.sectionPizzas{
    background: #f9f9f9;
    border-bottom: 1px solid #333;
    background: var(--backgroundNavbar);
}

.sectionPizzas .container{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
    gap: .6rem;
    row-gap: 2rem;
}

.sectionPizzas .container .cardPizza{
    display: flex;
    flex-direction: column;
    gap: .2rem;
    overflow: hidden;
    border-radius: 7px;
    background: #041622;
    box-shadow: 0 2px 9px rgba(0,0,0, .2);
}
.sectionPizzas .container .cardPizza .namePizza{
    background: #cc1111;
    padding: .2rem .5rem;
    color: #fff;
    font-weight: 600;
    font-size: 1.3rem;
}

.sectionPizzas .container .cardPizza .imagePizza{
    width: 100%;
    height: 15rem;
    object-fit: contain;
    padding: 0 .5rem;
}

.sectionPizzas .container .cardPizza .sizesContainerPizzas{
    text-align: end;
    padding: 0 .5rem;
}
.sectionPizzas .container .cardPizza .sizesContainerPizzas p{
    font-weight: 600;
    color: #afcad4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #4c6480;
    padding: .3rem;
    gap: .2rem;
    background: #202c35;

}

.sectionPizzas .container .cardPizza .sizesContainerPizzas p:nth-child(1){
    border-radius: 7px 7px 0 0 ;
}
.sectionPizzas .container .cardPizza .sizesContainerPizzas p:nth-child(3){
    border-radius: 0 0 7px 7px;
}


.sectionPizzas .container .cardPizza .sizesContainerPizzas p span{
    font-size: 1.3rem;
    color: rgb(255, 136, 0);
    font-family: var(--fontTilt);
    margin-left: auto;
    letter-spacing: 1px;
}

.sectionPizzas .container .cardPizza .sizesContainerPizzas p strong{
    font-weight: 400;
    font-size: .8rem;
    margin-top: auto;
    color: #00ffff;
}
.sectionPizzas .container .cardPizza .descriptionPizza{
    margin-bottom: auto;
    padding: .5rem;
    font-style: oblique;
    color: #ffffff;
    font-weight: 400;
    font-family: var(--fontTilt);
    font-size: .9rem;
}

.sectionPizzas .container .cardPizza .btnsContainerPizza{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .2rem;
    border-top: 1px solid #e0e0e0;
    padding: .5rem;
}

.sectionPizzas .container .cardPizza .btnsContainerPizza span{
    padding: .5rem;
    width: 100%;
    border-radius: 3px;
    text-align: center;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
.sectionPizzas .container .cardPizza .btnsContainerPizza .btnSharePizza{
    color: #ffffff;
    width: max-content;
    margin-right: auto;
    font-weight: 500;
    background: #0d9c90;
}
.sectionPizzas .container .cardPizza .btnsContainerPizza .btnSharePizza:hover{
    background: rgb(255, 102, 0);
}


.sectionPizzas .container .cardPizza .btnsContainerPizza .call{
    background: #000000;
    color: greenyellow;
    padding: .5rem;
    width: 100%;
    border-radius: 3px;
    text-align: center;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid #009765;
}
.sectionPizzas .container .cardPizza .btnsContainerPizza .call:hover{
    background: #0d9c90;
    color: #fff;
    
}
/*Sección Pizza Termina*/










@media(max-width:1200px){
    .headingPizzas .container{
        height: 13rem;
    }
    .headingPizzas .container img{
        left: 53%;
        height: 25rem;
    }
    .headingPizzas .links{
    justify-content: center;
}

}







