.reloadCont{
    position: fixed;
    right: 1rem;
    bottom: 2rem;
    z-index: 10;
}

@media(max-width:480px){
    .reloadCont{
        display: none;
    }
}

.reloadCont .fullReload{
    font-size: 1.2rem;
    cursor: pointer;
    background: rgb(82, 82, 82);
    border-radius: 50%;
    padding: .3rem;
    box-shadow: 0 5px 8px rgba(0,0,0, .580);
    border:2px solid #7fffd4;
    outline: 1px solid #949494;
    color: #7fffd4;
}
.reloadCont .fullReload:hover i{
    rotate: 360deg;
}



/*ShortCuts Empieza*/


.shortCutsCont{
    display: flex;
    flex-direction: column;
    row-gap:1rem;
    width: 100%;
    background: url(/images/resources/pollo.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 40vh;
}
.shortCutsCont::before{
    background: rgba(0,0,0, .7);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    content: '';
    backdrop-filter: blur(3px);
}

.shortCutsCont h1{
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    z-index: 5;
    padding:.2rem .5rem;
    border-radius: 25px;
    backdrop-filter: blur(3px);
    background: rgba(116, 116, 116, 0.247);
    color: #ffffff;
    width: max-content;
    border: 2px solid rgba(182, 182, 182, 0.5);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.418);
    text-shadow: 1px 1px 2px #000;
}

.shortCutsCont .container{
    padding:3rem 1rem 1rem 1rem;
    border-radius: 1rem;
    background: #444;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    row-gap: 2.5rem;
    border-top: 2px solid #555;
    border-bottom: 2px solid #303030;
    box-shadow: 0 8px 15px rgba(0,0,0, .580);
}

.shortCutsCont .container a{
    flex: 1 1 7rem;
    background: #222;
    padding: .5rem;
    border-radius: 5px;
    width: max-content;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.380);
    font-size: clamp(.6rem, 2vw, 1rem);
    color: #aaa;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    border-top: 1px solid #555;
    border-bottom: 2px solid #363636;
    text-align: center;
}

.shortCutsCont .container a:hover{
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.580);
    color: #c8ff00;
    background: #111;
    border-bottom: 2px solid #2c2c2c;
}

.shortCutsCont .container a:hover img{
    background: #0498b3;
    box-shadow: 0 0 10px #0498b3;
    border: 3px solid #0077ff;
}

.shortCutsCont .container a img{
    width: 3rem;
    height: 3rem;
    padding: .2rem;
    border-radius: 50%;
    transform: translateY(-75%);
    border: 3px solid #333;
    background: #00497a;
}
/*ShortCuts Termina*/


/*Info US Empieza*/
.infoUs{
   display: flex;
   align-items: center;
   justify-content: center;
   background: #f0f0f0; 
}
.infoUs .container{
    padding: 1rem;
    border-radius: 1rem;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 8px 15px rgba(0,0,0, .080),
                0 -5px 15px #ffff;
}

.infoUs .container h1{
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-block: .5rem;
}
.infoUs .container p{
    font-size: clamp(.8rem, 2vw, 1rem);
}
/*Info US Termina*/
