.header{
    position: fixed;
    top: 0;
    left: 0;
    padding: .3rem .5rem;
    display: flex;
    align-items: center;
    width: 100%;
    gap: .5rem;
    background: #f5f5f5;
    box-shadow: 0 8px 15px rgba(0,0,0, .080);
    border-bottom: 1px solid #fff;
    z-index: 100;
}

.header .logoImg{
    margin-right: auto;
}
.header .logoImg img{
    height: 3rem;
}


.navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .3rem;
}

.navbar a{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: .3rem .8rem;
    row-gap: .3rem;
    box-shadow: 0 3px 5px rgba(0,0,0, .080);
    border-radius: .5rem;
    width: max-content;
    background: #fff;
    border: 2px solid #dfeee5;
}
.navbar a.active{
    background: linear-gradient(0, #333, #555);
}
.navbar a.active i{
    color: #ff9900;
}
.navbar a.active span{
    color: #fff;
}
.navbar a.active:hover span{
    color: #fff;
}
.navbar a:hover{
    box-shadow: 0 3px 5px rgba(0,0,0, .280);
}




.navbar a:hover span{
    color: #000;
}
.navbar a i{
    font-size: clamp(.7rem, 2vw, 1.2rem);
    color: #ff9900;
}
.navbar a span{
    font-size: clamp(.6rem, 2vw, .750rem);
    color: #555;
}


.gSCont{
    display: flex;
    align-items: center;
    margin-left: 1rem;
    gap: .5rem;
    height: 100%;
    padding: .5rem 0;
}
.gSCont label{
    color: #777;
    cursor: pointer;
    font-size: clamp(.7rem, 2vw, 1.3rem);
}
.gSCont input{
    border-radius: 15rem;
    border: 1px solid #eee;
    height: 100%;
    width: 100%;
    padding: .4rem 1rem;
    font-style: oblique;
    color: #555;
    font-size: .8rem;
    font-weight: 600;
    background: #fff;
}

.btnResp{
    display: none;
    font-size: 1.3rem;
    color: #555;
    cursor: pointer;
}

.respNav{
    display:none;
    flex-direction: column;
    row-gap: .4rem;
    position: absolute;
    top: 100%;
    right: -100%;
    visibility: hidden;
    pointer-events: none;
    padding: 1rem;
    min-height: 100svh;
    background: #f9f9f9;
    border-top: 1px solid #fff;
    border-left: 1px solid #eee;
    width: calc(100% - 50%);
    box-shadow: 0 5px 8px rgba(0,0,0, .080);
    transition: right .5s ease;
}

.respNav.active{
    right: 0;
    pointer-events: all;
    visibility: visible;
}

.respNav a{
    padding:.5rem 1rem;
    border-radius: 5rem;
    background: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 3px 8px rgba(0,0,0, .030);
    gap: 1rem;
}
.respNav a i{
    color: #ff9900;
    font-size: 1.2rem;
}
.respNav a:hover{
    background: #666;
}
.respNav a:hover span{
    color: #fff;
}
.respNav a span{
    font-size: .8rem;
    color: #333;
}

.btnRespFoot{
    display: none;
    pointer-events: none;
    visibility: hidden;
}

.floatIMG{
    position: fixed;
    top: .5rem;
    left: .5rem;
    height: 2.5rem;
    pointer-events: none;
    z-index: 40;
    display: none;
}


/*Buscador Móvil*/
.movSearch{
    position: fixed;
    top: .5rem;
    left: .5rem;
    display: none;
    align-items: center;
    padding: .5rem 1rem;
    right: .5rem;
    height: 2.5rem;
    background: #fff;
    gap: 1rem;
    border-radius: 10rem;
    box-shadow: 0 5px 8px rgba(0,0,0, .080);
    border: 1px solid #eee;
    z-index: 20;
    visibility: hidden;
    pointer-events: none;
}
.movSearch label{
    font-size: 1.3rem;
    color: #999;
}
.movSearch input{
    padding:.5rem 1rem;
    width: 80%;
    margin-left: auto;
    background: #fff;
    font-weight: 800;
    color: #555;
}


@media(max-width:500px){
    .movSearch{
        display: flex;
        visibility: visible;
        pointer-events: all;
    }
}
/*Buscador Móvil*/



/*Botón Top Empieza*/
.to-top{
    position: fixed;
    bottom:4rem ;
    right: .5rem;
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffff;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #999;
    outline: 2px solid #cbd8d3;
    pointer-events: none;
    opacity: 0;
    z-index: 20;
    transition: 300ms ease;
    visibility: hidden;
    transform: rotate(180deg);
    box-shadow: 0 5px 8px #3d4441;
}
.to-top.active{
    transform: rotate(0);
    pointer-events: all;
    opacity: 1;
    visibility: visible;
}
/*Botón Top Termina*/


 .footNavCont{
    visibility: hidden;
    pointer-events: none;
 }


 .bar {
  width: 50%;
  height: 2px;
  background-color: #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 2px;
}
.bar::before {
  content: "";
  width: 2px;
  height: 2px;
  background-color: rgb(87, 133, 127);
  position: absolute;
  border-radius: 50%;
  border: 2px solid white;
  transition: all 0.3s;
  box-shadow: 0px 0px 5px white;
}
.bar1::before {
  transform: translateX(-4px);
}
.bar2::before {
  transform: translateX(4px);
}
.btnRespFoot:hover .bar1::before {
  transform: translateX(4px);
}
.btnRespFoot:hover .bar2::before {
  transform: translateX(-4px);
}







@media(max-width:1200px){
    .btnResp{
        display: block;
    }
    .navbar{
        display: none;
    }
    .respNav{
        display: flex;
    }


    .footNavCont{
    visibility: hidden;
    pointer-events: none;
 }
}

@media(max-width:500px){


    .header{
        display: none;
        pointer-events: none;
        visibility: hidden;
    }
    .floatIMG{
        display: block;
    }




    .footNavCont{
        position: fixed;
        bottom: -100%;
        visibility: hidden;
        pointer-events: none;
        left: 0;
        width: 100%;
        z-index: 100;
        background: linear-gradient(0, #e9eeec, #e7ecea);
        border-top: 1px solid #729e72;
        padding: 1rem .3rem;
    }
    .footNavCont.active{
        visibility: visible;
        pointer-events: all;
        bottom: 0;
    }
    .btnRespFoot{
        position: fixed;
        right: .5rem;
        bottom: .5rem;
        border: 1px solid #eee;
        box-shadow: 0 5px 8px rgba(0,0,0, .080);
        display: flex;
        z-index: 101;
        visibility: visible;
        pointer-events: all;
        transition: transform 320ms ease-in-out;
        width: 45px;
        height: 45px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        background-color: rgb(99, 151, 135);
        border-radius: .8rem;
        cursor: pointer;
    }

    .btnRespFoot.active{
        transform: translateY(-23rem);
    }

    .footNavCont .footNav{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: .5rem;
        flex-wrap: wrap;
    }
    .footNavCont .footNav a{
        background:linear-gradient(0, #f0f0f0, #f5f5f5);
        padding: .3rem .5rem;
        border-radius: 2rem;
        flex: 1 1 7rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        box-shadow:0 2px 3px rgba(0,0,0, .180);
        color: #ff9900;
        row-gap: .3rem;
        border: 1px solid #fff;
        transition: .3s ease-in-out;
    }
    .footNavCont .footNav a i{
        font-size: 1.4rem;
    }
    .footNavCont .footNav a span{
        font-size: .8rem;
    }


}