/* =========================================================
   MOTIVACIÓN SALSERA
   Navigation
========================================================= */


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    border-bottom: 1px solid #eee4dd;
}

.navbar {
    width: min(1180px, calc(100% - 40px));

    min-height: 76px;

    margin: 0 auto;

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

    gap: 25px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.logo img {
    width: 145px;
    height: auto;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 27px;

    margin-left: auto;
}

.nav-links a {
    position: relative;

    color: #453c38;

    font-size: 0.86rem;
    font-weight: 600;

    transition: var(--transition);
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--red);

    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--red);
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    gap: 12px;
}

.desktop-lang,
.mobile-lang select {
    border: 1px solid #ddd0c7;

    background: white;

    color: var(--text);

    padding: 8px 10px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 0.75rem;
    font-weight: 700;
}


/* =========================================================
   NAVIGATION CTA
========================================================= */

.nav-cta {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    background: var(--red);

    color: white;

    padding: 12px 17px;

    border-radius: 25px;

    font-size: 0.75rem;
    font-weight: 700;

    transition: var(--transition);

    white-space: nowrap;
}

.nav-cta:hover {
    background: var(--red-dark);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(169, 0, 32, 0.22);
}

.nav-cta span {
    font-size: 0.8rem;
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 10px;

    background: var(--cream);

    cursor: pointer;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 5px;
}

.hamburger span {
    display: block;

    width: 20px;
    height: 2px;

    background: var(--red);

    border-radius: 5px;

    transition: var(--transition);
}

.mobile-lang {
    display: none;
}
