/* Configuración general */
body {
    font-family: 'Space Grotesk', sans-serif;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -105%;
    width: min(90vw, 390px);
    height: 100vh;
    z-index: 50;
    background: #121212;
    border-left: 4px solid #f2f20d;
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
    transition: right 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem;
}

.mobile-menu.active {
    right: 0;
}

/* Mobile Menu Button */
.mobile-menu-button {
    position: relative;
    width: 44px;
    height: 44px;
    color: #181811;
}

/* Hamburger Lines */
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 9999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hamburger-line:not(:last-child) {
    margin-bottom: 5px;
}

.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-18px);
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(242, 242, 13, 0.12);
}

/* Mobile Menu Close Button */
.mobile-menu-close-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f2f20d;
    border-radius: 9999px;
    color: #f2f20d;
    background: rgba(242, 242, 13, 0.08);
    transition: background 0.2s ease, transform 0.2s ease;
}

.mobile-menu-close-button:hover {
    background: rgba(242, 242, 13, 0.12);
    transform: scale(1.05);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

/* Mobile Menu Item */
.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1rem;
    border-left: 4px solid transparent;
    color: #f8f8f5;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    transition: all 0.25s ease;
}

.mobile-menu-item:hover {
    border-left-color: #f2f20d;
    background: rgba(242, 242, 13, 0.08);
    padding-left: 1.25rem;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-footer img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* Responsive */
@media (min-width: 768px) {
    .mobile-menu-button,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}
