

/* Estilos header */


.nav-bar{
    z-index: 200;
    top: 0%;
    position: fixed;
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    opacity: 1;
    transition: 1.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.nav-bar::before{
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    background-color: var(--header-color);
}

.nav-bar .logo{
    display: flex;
    align-items: center;
    justify-content: left;
}
.nav-bar .logo .godog-logo{
    z-index: 10;
    position: relative;
    height: 80px;
    width: 20vh;
}
.nav-bar .logo .godog-logo::after{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(/images/GoDog.png);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.nav-bar ul{
    display: flex;
    list-style: none;
}
.nav-bar ul li{
    margin: 0 15px;
}
.nav-bar ul li a{
    color: var(--texto-header);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 20px;
    padding: 8px 10px;
    transition: all 0.3s ease;
    border: solid transparent;
}
.nav-bar ul li a:hover{
    background-color: var(--texto-header-back-active);
    color: var(--texto-header-active);
}
.nav-bar ul li .active{
    background-color: var(--texto-header-back-active);
    color: var(--texto-header-active);
}
.nav-bar .menu-btn i{
    color: var(--texto-header);
    font-size: 7vmin;
    cursor: pointer;
    display: none;
}

#nav-bar-button{
    display: none;
}

#nav-bar-button:checked ~ .nav-bar ul{
    bottom: 0%;
}
#nav-bar-button:checked ~ .nav-bar #social{
    bottom: 40%;
}
#nav-bar-button:checked ~ .nav-bar{
    background-color: #000000;
}
.nav-bar #social{
    display: none;
}

@media (max-width: 1000px) {
    .nav-bar .logo, .nav-bar .menu-btn{
        z-index: 100;
    }
    .nav-bar{
        padding: 0px 20px 0px 20px;
        transition: all 0.8s ease-in-out;
    }
    .nav-bar .menu-btn i{
        display: block;
    }
    .nav-bar ul{
        padding-top: 10vmin;
        position: fixed;
        left: 0;
        bottom: -100%;
        background-color: black;
        height: 100%;
        width: 100%;
        display: block;
        text-align: left;
        transition: all 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
        overflow-y: scroll;
    
    }
    .nav-bar ul li:nth-child(1) a{
        margin-top: 10vmin;
    }
    .nav-bar ul li a{
        margin-top: 5vmin;
        color: rgb(149, 149, 149);
    }
    .nav-bar ul li a:hover{
        border: transparent;
        color: var(--texto-header);
    }
    .nav-bar ul li .active{
        border: transparent;
        color: var(--texto-header);
    }
    .nav-bar ul li{
        margin: 1vmin 20px;
    }
    .nav-bar ul li a {
        letter-spacing: 0.2vh;
        font-weight: 800;
        font-size: 5vmax;
        display: block;
    }
}

@media (max-width: 600px) {
    .nav-bar ul{
        padding-top: 20vmin;
    }
}

