/* ══════════════════════════════════════════════════
   MOBILE NAVBAR — Studio J3D
   White bar (matches desktop sidebar feel).
   Collapse panel: white, clean, editorial.
   ══════════════════════════════════════════════════ */

/* ── Navbar bar ── */
#menu-mobile .navbar {
    background: #ffffff !important;
    padding: 10px 16px;
    box-shadow: 0 2px 8px rgba(7, 6, 63, 0.10);
}

/* ── Logo ── */
#logo-deitado {
    height: 42px;
    width: auto;
    margin: 0;
}

/* ── Hamburger button ── */
.hamburguer-button-height {
    height: 44px;
    width: 44px;
    padding: 8px;
    border: none;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.hamburguer-button-height:focus {
    box-shadow: none;
    outline: none;
}

/* ── Animated icon ── */
.animated-icon1 {
    width: 26px;
    height: 18px;
    position: relative;
    margin: 0;
    transform: rotate(0deg);
    transition: 0.5s ease-in-out;
    cursor: pointer;
}

.animated-icon1 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 26px;
    background: #597694;
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.25s ease-in-out;
}

.animated-icon1 span:nth-child(1) { top: 0; }
.animated-icon1 span:nth-child(2) { top: 8px; }
.animated-icon1 span:nth-child(3) { top: 16px; }

.animated-icon1.open span:nth-child(1) {
    top: 9px;
    transform: rotate(135deg);
}
.animated-icon1.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}
.animated-icon1.open span:nth-child(3) {
    top: 9px;
    transform: rotate(-135deg);
}

/* ── Collapse panel ── */
#menu-mobile .navbar-collapse {
    background: #ffffff;
    border-top: 1px solid #edf0f3;
}

/* ── Nav links ── */
#menu-mobile .navbar-nav {
    padding: 8px 0 4px;
}

#menu-mobile .mobile-options-font-size {
    font-size: 22px;
}

#menu-mobile .nav-item .nav-link {
    font-size: 22px;
    font-weight: 300;
    color: #597694 !important;
    padding: 14px 24px;
    border-bottom: 1px solid #f2f4f7;
    line-height: 1;
    display: block;
    transition: color 0.15s ease, padding-left 0.15s ease;
}

#menu-mobile .nav-item .nav-link:hover {
    color: #5a7694 !important;
    padding-left: 28px;
}

#menu-mobile .nav-item.active .nav-link {
    color: #3d5f7a !important;
    font-weight: 600;
    border-left: 3px solid #b47d5f;
    padding-left: 21px;
}

/* ── Language switcher — full-width equal thirds ── */
.mobile-lang-switcher {
    display: flex;
    padding: 0;
    gap: 0;
    border-bottom: 1px solid #f2f4f7;
}

.language-options-mb {
    flex: 1;
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5a7694 !important;
    padding: 14px 0;
    min-height: 44px; /* WCAG touch target minimum */
    border: none;
    border-right: 1px solid #f2f4f7;
    text-decoration: none !important;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.language-options-mb:last-child {
    border-right: none;
}

.language-options-mb.lang-active,
.language-options-mb:hover {
    background-color: #5a7694;
    color: #ffffff !important;
}

/* ── Social icons — full-width equal thirds ── */
.mobile-social {
    display: flex;
    border-bottom: 1px solid #f2f4f7;
}

.mobile-social a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    font-size: 20px;
    color: #5a7694;
    border-right: 1px solid #f2f4f7;
    transition: color 0.15s ease, background-color 0.15s ease;
}

.mobile-social a:last-child {
    border-right: none;
}

.mobile-social a:hover {
    color: #3d5f7a;
    background-color: #f7f9fb;
}
