.pulseCont{
    position: fixed;
    top: 4.5rem;
    right: 1rem;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.144);
    padding: 1rem .2rem;
    border-radius: .3rem;
    border: 1px solid #eee;
    backdrop-filter: blur(3px);
    box-shadow: 0 5px 8px rgba(0,0,0, .180);
}

@media (max-width:1200px){
    .pulseCont{
        top: 3.8rem;
        right: .5rem;
    }
}
.pulseCont .pulseLink{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: .1rem;
}
.pulseCont .pulseLink .imgCont{
    height: 2.5rem;
    width: 2.5rem;
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: red;
    border-radius: 100%;

}

.pulseCont .pulseLink .imgCont img{
    height: 100%;
    width: 100%;
    background: #000000;
    border-radius: 50%;
    z-index: 7;
}

.pulseCont .pulseLink .imgCont::after{
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width:100%;
    background: rgb(89, 240, 1);
    content: '';
    border-radius: 100%;
    z-index: 3;
    scale: 1.2;
    animation: 2s pulseEnvasadas infinite;

}

@keyframes pulseEnvasadas{
    0%{
        scale: 1;
        opacity: 1;
    }


    100%{
        opacity: 0;
        scale: 1.3;
    }
}






.pulseCont .pulseLink span{
    font-size: clamp(.6rem, 2vw, .8rem);
    color: #fff;
    padding: 2px 5px;
    border-radius: 3px;
    background: #076997;
    font-weight: 700;
}



/*Sección Envasadas Empieza*/
.envasadasPizza{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10vh;
    background: #161a24;
}

.envasadasPizza .main{
    padding: 1rem;
    border-radius: 1rem;
    display: flex;
    flex-wrap:wrap;
    justify-content: center;
    gap: .5rem;
    background: #282d33;
    width: 100%;
    box-shadow: 0 8px 15px #000;
    border: 1px solid #334049;
}

.envasadasPizza .main .imgAndName{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 20rem;
    gap: .5rem;
    background: #2a3742;
    padding: .5rem;
    border-radius: .5rem;
    width: 50%;
    box-shadow: 0 8px 15px rgba(0,0,0, .780);
    border: 1px solid #43575f;
}
.envasadasPizza .main .imgAndName img{
    width: 50%;
    box-shadow: 0 5px 10px #00162c;
    border-radius: 50%;
    border: 1px solid #013d58;
}

@media(max-width:1200px){
    .envasadasPizza .main .imgAndName img{
    width: 70%;
} 
}
.envasadasPizza .main .imgAndName span{
    font-size: clamp(.8rem, 2vw, 1.2rem);
    font-weight: 600;
    color: #eee;
}
.envasadasPizza .main .textMain{
    flex: 1 1 40rem;
    padding: .5rem;
    border-radius: .5rem;
    background:linear-gradient(0,#832300, #e26600);
    box-shadow: 0 8px 15px rgba(0,0,0, .780);
    border: 1px solid #eb5b08;
    display: flex;
    flex-direction: column;
}
.envasadasPizza .main .textMain h1{
    font-size: clamp(1.2rem, 3vw, 3rem);
    color: #fff;
    text-shadow: 0 3px 3px #641b00;
}
.envasadasPizza .main .textMain h2{
    font-size: clamp(.6rem, 2vw, 1.2rem);
    color: #ffffff;
}
.envasadasPizza .main .textMain p{
    color: #eee;
    font-size: clamp(.6rem, 2vw, 1rem);
}
.envasadasPizza .main .textMain p a{
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    font-style: oblique;
}

.envasadasPizza .main .textMain .moreInfo{
    padding: .3rem 2rem;
    border-radius: 30px;
    background: #ffffff;
    margin-top: auto;
    width: max-content;
    color: #000;
    font-weight:bolder;
    font-size: .8rem;
    box-shadow: 0 0 5px #fff2d8;
}
.envasadasPizza .main .textMain .moreInfo:hover{
    background: #ff9900;
    color: #fff;
    box-shadow: 0 0 5px #ffaa00;
}

@media(max-width:1200px){
    .envasadasPizza .main .textMain .moreInfo{
        margin-top: 3rem;
    }
}
/*Sección Envasadas Termina*/