* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background:
        radial-gradient(circle at top, rgba(199, 143, 50, 0.18), transparent 30%),
        linear-gradient(180deg, rgb(26, 32, 39) 0%, rgb(86, 77, 68) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
    color: #f6efe6;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(216, 183, 108, 0.95);
    outline-offset: 4px;
}

.menu-topbar {
    position: sticky;
    top: 0;
    z-index: 1200;
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0;
    padding: 14px;
    background: rgba(24, 23, 22, 0.94);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.28);
}

.menu-mobile-header {
    display: none;
}

.menu-mobile-brand {
    color: #fff;
    font-weight: 800;
    text-decoration: none;
}

.menu-mobile-toggle {
    display: none;
}

.menu-topbar-utility {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: calc(100vw - 16px);
}

.menu-topbar-utility > * {
    min-width: 0;
}

.menu-topbar-link {
    appearance: none;
    white-space: nowrap;
    text-decoration: none;
    color: rgba(245, 240, 232, 0.9);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    padding: 10px 10px;
    background: linear-gradient(180deg, rgba(72, 69, 66, 0.94) 0%, rgba(45, 43, 41, 0.94) 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

@media (max-width: 520px) {
    .menu-topbar-link {
        padding-inline: 6px;
        font-size: 11px;
    }
}

.menu-topbar-link:hover,
.menu-topbar-link:focus-visible {
    background: linear-gradient(180deg, rgba(98, 92, 84, 1) 0%, rgba(61, 57, 53, 1) 100%);
    border-color: rgba(255,255,255,0.28);
    color: #fff;
    transform: translateY(-1px);
}

.menu-topbar-link.is-active {
    background: linear-gradient(180deg, rgb(207, 170, 23) 0%, rgb(171, 135, 11) 100%);
    color: #111;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(171, 135, 11, 0.28);
}

.menu-topbar-dropdown {
    position: relative;
}

.menu-topbar-button {
    cursor: pointer;
    font: inherit;
}

.menu-topbar-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 220px;
    max-width: calc(100vw - 24px);
    max-height: min(70vh, 520px);
    overflow-y: auto;
    display: none;
    padding: 10px;
    border-radius: 18px;
    background: rgba(24, 23, 22, 0.98);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 20px 45px rgba(0,0,0,0.32);
    transform-origin: top center;
    animation: menu-panel-in 0.18s ease both;
    z-index: 2000;
}

.menu-topbar-dropdown.is-open .menu-topbar-panel {
    display: grid;
    gap: 8px;
}

.menu-topbar-panel-link {
    white-space: nowrap;
    text-decoration: none;
    color: rgba(245, 240, 232, 0.92);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.menu-topbar-panel-link:hover,
.menu-topbar-panel-link:focus-visible {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: translateY(-1px);
}

.menu-topbar-panel-link.is-active {
    background: linear-gradient(180deg, rgb(207, 170, 23) 0%, rgb(171, 135, 11) 100%);
    color: #111;
    border-color: transparent;
}

.cover {
    width: min(980px, calc(100vw - 36px));
    margin: 20px auto 28px;
    padding: 0;
    border-radius: 30px;
    background: rgba(24, 18, 14, 0.88);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 30px 80px rgba(0,0,0,0.32);
    overflow: hidden;
}

.cover-sheet {
    position: relative;
    min-height: min(820px, calc(100svh - 110px));
}

.cover-art,
.cover-overlay {
    position: absolute;
    inset: 0;
}

.cover-art {
    background:
        linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.38)),
        url("../../img/optimized/menu1-1600.jpg") center/cover no-repeat;
    transform: none;
    transform-origin: center center;
}

@keyframes menu-panel-in {
    from {
        opacity: 0;
        transform: translateY(-6px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.cover-overlay {
    background:
        linear-gradient(180deg, rgba(18, 14, 10, 0.14) 0%, rgba(18, 14, 10, 0.18) 48%, rgba(18, 14, 10, 0.78) 100%),
        linear-gradient(90deg, rgba(18, 14, 10, 0.22) 0%, rgba(18, 14, 10, 0.05) 26%, rgba(18, 14, 10, 0.2) 100%);
}

.cover-editorial {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 670px;
    padding: 50px 40px 30px;
    color: #fffaf4;
    text-align: center;
}

.cover-badge {
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.logo {
    width: min(210px, 42%);
    height: auto;
    margin: 18px 0 26px;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.28));
}

.cover-kicker {
    margin-bottom: 12px;
    color: rgba(255,255,255,0.78);
    font-size: 22px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cover-editorial h1 {
    font-size: clamp(72px, 10vw, 122px);
    line-height: 0.9;
    margin-bottom: 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-weight: 600;
    text-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.cover-subtitle {
    max-width: 460px;
    font-size: 24px;
    line-height: 1.4;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

.cover-highlight-label,
.cover-card-label {
    display: inline-block;
    margin-bottom: 10px;
    color: #d8b76c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wifi-img {
    width: 20px;
    height: auto;
}

.cover-bottom-band {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    padding: 22px 28px 26px;
    background: linear-gradient(180deg, rgba(22, 17, 13, 0.2), rgba(22, 17, 13, 0.88));
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cover-bottom-copy {
    display: grid;
    gap: 8px;
    font-size: 16px;
    color: rgba(255,248,239,0.9);
}

.cover-whatsapp {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cover-whatsapp:hover,
.cover-whatsapp:focus-visible {
    background: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}

.cover-whatsapp img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.cover-bottom-meta {
    display: grid;
    gap: 12px;
    justify-items: end;
}

.cover-wifi-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255,248,239,0.85);
}

.redes {
    width: min(190px, 100%);
    height: auto;
}

.nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(18, 17, 16, 0.75);
    backdrop-filter: blur(8px);
    color: #f6efe6;
    font-size: 22px;
    cursor: pointer;
    z-index: 1100;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-btn.left {
    left: 24px;
}

.nav-btn.right {
    right: 24px;
}

.nav-btn:hover,
.nav-btn:focus-visible {
    background: linear-gradient(180deg, rgb(207, 170, 23) 0%, rgb(171, 135, 11) 100%);
    border-color: transparent;
    color: #111;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 40px rgba(207, 170, 23, 0.4);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

.menu-scroll-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(180deg, rgb(207, 170, 23) 0%, rgb(171, 135, 11) 100%);
    color: #111;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    box-shadow: 0 16px 30px rgba(0,0,0,0.24);
    z-index: 1200;
}

.menu-scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 480px) {
    .menu-topbar {
        display: block;
        width: 100%;
        padding: 0;
        background: rgba(18, 17, 16, 0.97);
        overflow: visible;
    }

    .menu-mobile-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        width: 100%;
        max-width: 600px;
        min-height: 62px;
        margin: 0 auto;
        padding: 10px 18px;
    }

    .menu-mobile-brand {
        min-width: 0;
        padding-right: 0;
        font-size: 18px;
        letter-spacing: 0.02em;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .menu-mobile-toggle {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        left: auto;
        z-index: 1300;
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 999px;
        background: rgba(255,255,255,0.06);
        color: #fff;
        cursor: pointer;
    }

    .menu-mobile-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-mobile-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .menu-mobile-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .menu-topbar-utility {
        display: none;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 18px 18px;
        gap: 8px;
    }

    .menu-topbar.is-open .menu-topbar-utility {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .menu-topbar-link {
        width: 100%;
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 8px;
        font-size: 12px;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-topbar-dropdown {
        min-width: 0;
    }

    .menu-topbar-button {
        width: 100%;
    }

    .menu-topbar-panel {
        width: calc(100vw - 24px);
        min-width: 0;
        max-width: 340px;
        border-radius: 16px;
    }

    .cover {
        width: calc(100% - 36px);
        max-width: 600px;
        margin: 18px auto 34px;
        border-radius: 18px;
    }

    .cover-sheet {
        min-height: calc(100svh - 112px);
    }

    .cover-editorial {
        min-height: 430px;
        padding: 28px 18px 22px;
    }

    .logo {
        width: min(120px, 38%);
        height: auto;
        margin: 14px 0 20px;
    }

    .cover-kicker {
        font-size: 15px;
    }

    .cover-editorial h1 {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 42px);
        overflow-wrap: anywhere;
    }

    .cover-subtitle {
        width: min(100%, calc(100vw - 56px));
        font-size: 14px;
        overflow-wrap: anywhere;
    }

    .cover-bottom-band {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px 20px;
    }

    .cover-bottom-copy {
        font-size: 12px;
        gap: 6px;
    }

    .cover-bottom-meta {
        justify-items: start;
    }

    .cover-wifi-inline {
        font-size: 11px;
    }

    .redes {
        width: 132px;
    }

    .nav-btn {
        display: none;
    }

    .menu-scroll-top {
        right: 18px;
        left: auto;
        bottom: 84px;
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .menu-topbar {
        display: block;
        width: 100%;
        padding: 0;
        background: rgba(18, 17, 16, 0.97);
        overflow: visible;
    }

    .menu-mobile-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        width: 100%;
        max-width: 600px;
        min-height: 62px;
        margin: 0 auto;
        padding: 10px 18px;
    }

    .menu-mobile-brand {
        min-width: 0;
        padding-right: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .menu-mobile-toggle {
        position: absolute;
        right: 18px;
        top: 50%;
        transform: translateY(-50%);
        left: auto;
        z-index: 1300;
        display: inline-flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid rgba(255,255,255,0.18);
        border-radius: 999px;
        background: rgba(255,255,255,0.06);
        color: #fff;
        cursor: pointer;
    }

    .menu-mobile-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-mobile-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

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

    .menu-mobile-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .menu-topbar-utility {
        display: none;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 12px 12px;
        gap: 8px;
    }

    .menu-topbar.is-open .menu-topbar-utility {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .menu-topbar-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-width: 0;
        padding: 10px 8px;
        font-size: 12px;
        text-align: center;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .menu-topbar-dropdown {
        min-width: 0;
    }

    .menu-topbar-button {
        width: 100%;
    }

    .menu-topbar-panel {
        width: calc(100vw - 24px);
        min-width: 0;
        max-width: 340px;
        border-radius: 16px;
    }

    .cover-editorial h1 {
        max-width: 100%;
        font-size: clamp(34px, 10vw, 42px);
        overflow-wrap: anywhere;
    }

    .cover-subtitle {
        width: min(100%, calc(100vw - 56px));
        font-size: clamp(14px, 4vw, 18px);
        overflow-wrap: anywhere;
    }

    .cover {
        width: calc(100% - 36px);
        max-width: 600px;
        margin: 18px auto 34px;
        border-radius: 18px;
    }

    .nav-btn {
        display: flex;
        width: 42px;
        height: 42px;
        font-size: 16px;
        background: rgba(18, 17, 16, 0.85);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    }

    .nav-btn.left {
        left: 8px;
    }

    .nav-btn.right {
        right: 8px;
    }

    /* PAGINATION DOTS */
    .menu-pagination-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin: 24px auto 8px;
        width: 100%;
    }

    .menu-pagination-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        transition: all 0.25s ease;
        text-decoration: none;
    }

    .menu-pagination-dot:hover {
        background: rgba(207, 170, 23, 0.6);
        transform: scale(1.2);
    }

    .menu-pagination-dot.is-active {
        background: rgb(207, 170, 23);
        width: 24px;
        border-radius: 999px;
        box-shadow: 0 2px 8px rgba(207, 170, 23, 0.4);
    }
}
