.navbar {
    width: 85%;
    margin-top: 40px;
    margin-left: 140px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    filter: blur(5px);
    transform: translateY(-100%);
    transition: all 1s
}
.logo-container {
    display: flex;
    align-items: center; /* Alinea verticalmente la imagen y el texto */
}

@media screen and (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        margin-left: 20px; /* Ajusta este valor según tus necesidades */
    }

    .text-box-logo {
        order: 1;
        margin-top: 20px; /* Ajusta este valor según tus necesidades */
        right: 0;
    }

    .navbar ul {
        margin-top: 20px; /* Ajusta este valor según tus necesidades */
        text-align: center;
    }

    .navbar ul li {
        display: block;
        margin: 10px 0;
    }

    .navbar ul li::after {
        content: none;
    }
}
.navbar.show{
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0%);
}
.logo {
    width: 100px;
    cursor: pointer;
}
.text-box-logo {
    display: flex;
    flex-direction: column;
    margin-left: 10px; /* Ajusta este valor según tus necesidades */
}
.logo-text {
    display: flex;
    color: var(--text-color);
    font-weight: 800;
    font-size: 1.2rem
}

.logo-text-second {
    margin-top: 3px;
    font-weight: 300;
    font-size: .85rem
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}
.text-logo-header{
    display: flex;
    position: relative;
    right: 360px;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0;
    background: #7c23be;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}
.navbar ul li:hover::after{
    width: 100%;
}