

:root{
    --script:"Dancing Script", cursive;
    --TextTitle:"Winky Sans", sans-serif;
    --softBlack:#3a3a3a;
    --grayfooter:#808080;
    --orange:#ff9114;
    --red:#ff0000;
    --darkRed:#cb0000;
    --green:#9acd32;
    --white:#fff;
    --textDesc:#eee;
    --black:#000;
    --violet:#8a2be2;
    --Oswald:"Oswald", sans-serif;
}


body{
    overflow-x: hidden !important;
}


/*Banner Veggie Empieza*/
.bannerVeggie{
    background: linear-gradient(45deg, rgb(34, 43, 41), rgb(74, 143, 162));
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .5rem;
    margin-top: 5.5rem;
    min-height: 10vh;
    height: 100%;
}

.bannerVeggie .imgLeaf{
    flex: 1 1 25rem;
    width: 100%;
}
.bannerVeggie .imgLeaf img{
    box-shadow: -3px 3px 7px rgba(37, 139, 8, 0.559);
    padding: 2rem;
    border-radius: 45rem;
    border: .5rem solid rgb(1, 186, 72);
    outline: 5px solid #1eff00;
    width: 100%;
}

.bannerVeggie .textCont{
    flex: 1 1 40rem;
    height: 100%;
}

.bannerVeggie .textCont h1{
    font-size: clamp(2.5rem, 5vw, 5rem);
    color: var(--orange);
    text-shadow: -3px 3px 5px #000;
}
.bannerVeggie .contacContainerVeggie{
    width: 100%;
    margin-bottom: 3rem;
}

.bannerVeggie .contacContainerVeggie span .phoneLink{
    padding: .5rem;
    border-radius: 7px;
    background: var(--orange);
    font-weight: 900;
    color: var(--black);
    margin-right: .2rem;
    font-size: clamp(.9rem, 2vw, 1.1rem);
}

.bannerVeggie .contacContainerVeggie span .webLinkVeggie{
    color:var(--white);
    font-weight: 700;
    margin-right:.2rem;
    font-size: clamp(.7rem, 2vw, 1rem);
}

.bannerVeggie .contacContainerVeggie .justCall{
    padding: .3rem 1rem;
    border-radius: 15rem;
    background: var(--black);
    color: var(--green);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.bannerVeggie .contacContainerVeggie .justCall:hover{
    background: var(--green);
    color: var(--black);
}
/*Banner Veggie Termina*/





.pizzas .gridVeggies{
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(40rem, 1fr)) !important;
}

.pizzas .gridVeggies .card .textdescript .title{
    background: linear-gradient(45deg, #008000, #08e331) !important;
    color: var(--white);
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    text-shadow: -2px 2px 5px #000;
}










/*Media*/

@media(max-width:1200px){
    .pizzas .gridVeggies{
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr)) !important;
}

}