.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;

    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
}

.navbar-logo img {
    height: 40px;
    width: auto;
    max-width: none;
    display: block;
}

.navbar-top {
    display: flex;
    align-items: center;
}

.navbar-logo a {
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
}

.navbar-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
}

.navbar-links a {
    color: inherit;
    text-decoration: none;
    font-size: 15px;
}

.navbar-links a:hover {
    text-decoration: underline;
}

.install-btn {
    display: none;
    cursor: pointer;
}

/* HAMBURGUESA */
.navbar-toggle {
    display: none;
    width: 38px;
    height: 38px;
    border: none;
    background: none;
    cursor: pointer;
}

.navbar-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: #222;
    border-radius: 3px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggle.open span:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* MOBILE */

/* MOBILE */
@media (max-width: 700px) {

    .navbar {
        display: block;
    }

    .navbar-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 38px;
    }



    .navbar-toggle {
        display: block;
    }

    .navbar-links {
        position: absolute;
        z-index: 1001;

        top: 100%;
        left: 50%;
        width: 100vw;
        height: calc(100dvh - 59px);

        z-index: 9999;
        background: white;

        padding: 0 5px 20px;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;

        opacity: 0;
        pointer-events: none;

        transform: translateX(-50%) translateY(-8px);

        transition:
            opacity 0.2s ease,
            transform 0.2s ease;
    }

    .navbar-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .navbar-links a {
        padding: 16px 4px;
        border-top: 1px solid #eee;
        font-size: 18px;
    }

    .navbar-links a:hover {
        background: #f7f7f7;
        text-decoration: none;
    }
}