





/*Footer Empieza*/
.footer{
    min-height: 50vh;
    background: #f0f0f0;
    width: 100%;
    gap: 1rem;
    cursor: default;
    font-family: "Quicksand", sans-serif;
    padding: 2rem 4% !important;
}

.footer .contFoot{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #f5f5f5;
    width: 100%;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: 0 8px 15px rgba(0,0,0, .1);
    border-top: 2px solid #fff;
    border-bottom: 2px solid #ffffff;
}
.footer .contFoot .contactContainer{
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
    gap: .2rem;
}

.footer .contFoot .contactContainer a{
    background: #f0f0f0;
    padding: .3rem;
    border-radius: 8px;
    color: #888;
    box-shadow: 0 6px 10px rgba(0,0,0, .170);
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #e0e0e0;
    font-size: clamp(.6rem, 2vw, .9rem);
    font-weight: 600;
}
.footer .contFoot .contactContainer a:hover{
    color: #000;
}

.footer .contFoot .horarioText{
    width: 100%;
    font-weight: 400;
    color: #888;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-decoration-color: #ddd;
    text-underline-offset: 2px;
    margin-top: .5rem;
    margin-bottom: .2rem;
}

.footer .contFoot .horarioCont{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    gap: .3rem;
    margin-bottom: .5rem;
}
.footer .contFoot .horarioCont p{
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 6px 10px rgba(0,0,0, .170);
    font-size: clamp(.6rem, 2vw, .9rem);
    padding: .5rem;
    color: #888;
    width: 100%;
}

.footer .contFoot .horarioCont .day.today{
    background: linear-gradient(0, #000, #444);
    color: #fff;
    box-shadow: 0 6px 10px rgba(0,0,0, .7);
    border-top: 2px solid #cacaca;
    border-bottom: 2px solid #8f8f8f;
}

.footer .contFoot .horarioCont .day.today span{
    color: #fff;
}


.footer .contFoot .horarioCont p span{
    color: #666;
    font-weight: 600;
}
.footer .contFoot .rightsContainer{
    width: 100%;
    margin-block: .5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
    flex-wrap: wrap;
}
.footer .contFoot .rightsContainer a{
    background: #f0f0f0;
    padding: .3rem;
    border-radius: 8px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 6px 10px rgba(0,0,0, .170);
    color: #888;
    font-weight: 500;
    font-size: clamp(.6rem, 2vw, .9rem);
}
.footer .contFoot .rightsContainer a:hover{
    color: #000;
}

.footer .contFoot .rightsContainer a span{
    color: #3d3d3d;
    font-weight: 700;
}

.footer .contFoot .rightsContainer .ubicacion{
    background: #f0f0f0;
    padding: .3rem;
    border-radius: 8px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 6px 10px rgba(0,0,0, .170);
    color: #1d9999;
    font-weight: 500; 
    font-size: clamp(.6rem, 2vw, .9rem);  
}

.footer .contFoot .legal{
    margin-top: 1rem;  
    margin-bottom: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;  
    background: #f0f0f0;
    padding: .3rem;
    border-radius: 8px;
    border-top: 2px solid #ffffff;
    border-bottom: 2px solid #e0e0e0;
    box-shadow: 0 6px 10px rgba(0,0,0, .170);
    font-weight: 500;
    font-size: clamp(.6rem, 2vw, .9rem);
}
.footer .contFoot .legal a{
    color: #888;
}
.footer .contFoot .legal a:hover{
    color: #000;
}
.footer .contFoot .legal span{
    padding:.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.footer .contFoot .legal span i{
    color: #888;
    font-size: clamp(.9rem, 2vw, 1rem);
}

.footer .contFoot .legal span:hover i{
    rotate: 90deg;
    color: #000;
    cursor: pointer;
}
/*Footer Termina*/