/* --- RESET & BASE --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cream:     #f7f4ef;
    --off-white: #fdfcfa;
    --charcoal:  #1a1a18;
    --mid:       #6b6b67;
    --light:     #c8c5be;
    --accent:    #8b6f47;
    --accent-dk: #6b5235;
    --white:     #ffffff;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', sans-serif;

    --container: 1200px;
    --header-h:  80px;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--off-white);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

/* --- CONTAINER --- */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
}

/* --- LABEL (eyebrow text) --- */
.label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--charcoal); /* corrigido: var(--black) não existia */
    margin-bottom: 16px;
}

.label-light {
    color: var(--light);
}

/* =========================================
   HEADER 
   ========================================= */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    z-index: 9000;
    background-color: rgb(124, 121, 121); /* corrigido: rgba() exigia 4 valores, o fundo não renderizava */
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(200, 197, 190, 0.4);
    transition: box-shadow 0.3s ease;
}

#header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.header-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.header-logo-sep {
    opacity: 0.6;
}

.navbar {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-menu li a {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--white);
}

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

.nav-cta {
    border: 1px solid var(--white) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    letter-spacing: 0.1em !important;
    transition: background-color 0.3s ease, color 0.3s ease !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background-color: var(--white) !important;
    color: var(--charcoal) !important; 
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 1px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
}

/* =========================================
   HERO
   ========================================= */
.hero {
    margin-top: var(--header-h);
    position: relative;
    height: calc(100vh - var(--header-h));
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrap {
    position: absolute;
    inset: 0;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(20, 18, 15, 0.6) 0%,
        rgba(20, 18, 15, 0.2) 60%,
        transparent 100%
    );
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 0;
    padding: 0 80px;
    max-width: 680px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 36px;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
}

.hero-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 4px;
    transition: border-color 0.3s ease, opacity 0.3s ease;
}

.hero-btn:hover {
    border-color: var(--white);
    opacity: 0.8;
}

/* =========================================
   SOBRE
   ========================================= */
.sobre {
    padding: 120px 0;
    background-color: var(--off-white);
}

.sobre-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.sobre-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.sobre-text p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 440px;
}

.sobre-img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--cream);
    border: 1px solid var(--light);
}

/* =========================================
   AMBIENTES
   ========================================= */
.ambientes {
    padding: 100px 0 120px;
    background-color: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    color: var(--charcoal);
}

.ambientes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.ambiente-card {
    background-color: var(--off-white);
    overflow: hidden;
    cursor: pointer;
}

.ambiente-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background-color: #dedad3;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.ambiente-card:hover .ambiente-img-placeholder {
    transform: scale(1.03);
}

.ambiente-info {
    padding: 28px 28px 32px;
}

.ambiente-info h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.ambiente-info p {
    font-size: 13px;
    color: var(--mid);
    margin-bottom: 16px;
    line-height: 1.6;
}

.ambiente-info a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: opacity 0.3s ease;
}

.ambiente-info a:hover {
    opacity: 0.7;
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
    padding: 120px 0;
    background-color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    color: var(--charcoal); 
    line-height: 1.2;
    margin-bottom: 44px;
}

.btn-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--mid);
    padding: 18px 48px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--mid); 
    transform: translateY(-4px);
}

/* =========================================
   FOOTER
   ========================================= */
#footer {
    background-color: rgb(124, 121, 121);
    padding: 60px 0;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: 0.12em;
}

.footer-logo .logo-rs {
    color: var(--white);
}

.footer-logo .logo-ambientes {
    color: var(--white);
}

#footer .footer-logo .logo-sep {
    color: #ffffff !important;
    opacity: 1 !important;
}

.footer-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu li a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--white);
}

.footer-copy {
    font-size: 11px;
    color: var(--white);
    letter-spacing: 0.05em;
}

.insta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1;
}

.insta-icon svg {
    display: block;
    stroke: var(--white);
}

.insta-icon svg circle:last-child {
    fill: var(--white);
    stroke: none;
}

/* =========================================
   WHATSAPP FLUTUANTE 
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 36px;
    right: 28px;
    width: 56px;
    height: 56px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
}

/* =========================================================
   NOSSA HISTÓRIA
   ========================================================= */

.historia {
    background-color: var(--off-white);
    padding-bottom: 40px;
}

/* --- Faixa de abertura --- */
.historia-intro {
    margin-top: var(--header-h);
    padding: 100px 0 80px;
    background-color: var(--cream);
    border-bottom: 1px solid var(--light);
    text-align: center;
}

.historia-intro .label {
    color: var(black);
}

.historia-intro h1 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(38px, 5.5vw, 68px);
    line-height: 1.15;
    color: var(--charcoal);
}

.historia-intro h1 em {
    font-style: italic;
    color: var(black);
}

.historia-intro-sub {
    margin-top: 22px;
    font-size: 15px;
    color: var(--mid);
    letter-spacing: 0.02em;
}

/* --- Section headers dentro da história --- */
.historia .section-header {
    text-align: center;
    margin: 100px 0 56px;
}

.historia .section-header .label {
    color: var(--accent-dk);
}

.historia .section-header h2 {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: clamp(26px, 3vw, 38px);
    color: var(--charcoal);
    margin-top: 10px;
}

/* --- A Empresa --- */
.historia-origem {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
    padding-top: 90px;
}

.historia-img-placeholder {
    position: relative;
}

.historia-img-placeholder img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border: 1px solid var(--light);
}

.historia-img-caption {
    display: block;
    margin-top: 14px;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
}

.historia-texto .label {
    color: var(--accent-dk);
}

.historia-texto p {
    color: var(--mid);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 20px;
    max-width: 480px;
}

.historia-texto p:last-child {
    margin-bottom: 0;
}

/* --- Linha do tempo --- */
.historia-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 10px;
}

.historia-timeline::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 10px;
    right: 10px;
    height: 1px;
    background-color: var(--light);
}

.timeline-item {
    position: relative;
    text-align: center;
    flex: 0 0 33.333%;
    padding: 0 12px;
}

.timeline-item::before {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.4px solid var(--accent);
    background-color: var(--off-white);
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.timeline-item h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 6px;
}

.timeline-item p {
    font-size: 13px;
    color: var(--mid);
    letter-spacing: 0.02em;
}

/* --- Valores --- */
.historia-valores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.valor-item {
    background-color: var(black);
    border: 1px solid var(--light);
    padding: 40px 28px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.valor-item:hover {
    border-color: var(black);
    transform: translateY(-6px);
}

.valor-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(black);
}

.valor-icone svg {
    width: 100%;
    height: 100%;
}

.valor-item h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(black);
    margin-bottom: 10px;
}

.valor-item p {
    font-size: 13px;
    color: var(black);
    line-height: 1.7;
}

/* --- CTA final --- */
.historia-cta {
    text-align: center;
    margin: 90px 0 60px;
}

.btn-outline {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    background-color: var(--mid);
    padding: 16px 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--mid);
    transform: translateY(-4px);
}

/* =========================================
   RESPONSIVO
   ========================================= */
@media (max-width: 900px) {
    .sobre-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sobre-img-placeholder {
        aspect-ratio: 16/9;
    }

    .ambientes-grid {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .historia-origem {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .historia-img-placeholder img {
        aspect-ratio: 16/9;
    }

    .historia-valores {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .header-inner {
        padding: 0 24px;
    }

    /* Mobile nav */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-h);
        left: 0;
        width: 100%;
        background-color: var(--off-white);
        border-top: 1px solid rgba(200,197,190,0.4);
        padding: 24px 0;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu li a {
        display: block;
        padding: 14px 24px;
        font-size: 13px;
        color: var(--charcoal);
    }

    .nav-menu li a::after {
        display: none;
    }

    .nav-cta {
        border: none !important;
        margin: 8px 24px !important;
        padding: 14px !important;
        background-color: rgb(124, 121, 121) !important;
        color: var(--white) !important;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        background-color: var(--white);
    }

    .hero-content {
        padding: 0 24px;
        bottom: 48px;
    }

    .sobre {
        padding: 80px 0;
    }

    .cta-section {
        padding: 80px 0;
    }

    .footer-menu {
        gap: 20px;
    }

    .historia-intro {
        padding: 72px 0 56px;
    }

    .historia .section-header {
        margin: 72px 0 40px;
    }

    .historia-timeline {
        max-width: 100%;
    }
}

/* =========================================
   VITRINE DE AMBIENTES (showcase)
   ========================================= */
.showcase {
    background-color: var(--off-white);
    padding: 100px 0 120px;
}

.showcase-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.35fr;
    gap: 0;
    min-height: 560px;
    border: 1px solid var(--light);
}

/* ---- MENU LATERAL ---- */
.showcase-nav {
    background-color: var(--cream);
    padding: 56px 44px 44px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-right: 1px solid var(--light);
}

.showcase-nav-item {
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 20px 0;
    border-bottom: 1px solid var(--light);
    display: flex;
    align-items: baseline;
    gap: 16px;
    transition: padding 0.35s ease;
}

.showcase-nav-item:first-child {
    padding-top: 0;
}

.showcase-nav-num {
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.08em;
    color: var(--light);
    transition: color 0.35s ease;
}

.showcase-nav-name {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 19px;
    color: var(--mid);
    transition: color 0.35s ease, font-size 0.35s ease, font-style 0.35s ease;
}

.showcase-nav-item.active {
    padding-left: 6px;
}

.showcase-nav-item.active .showcase-nav-num {
    color: var(--accent);
}

.showcase-nav-item.active .showcase-nav-name {
    color: var(--charcoal);
    font-style: italic;
    font-size: 23px;
}

.showcase-nav-item:hover .showcase-nav-name {
    color: var(--charcoal);
}

.showcase-nav-count {
    font-family: var(--font-body);
    font-size: 10px;
    color: var(--light);
    margin-left: auto;
    letter-spacing: 0.05em;
}

.showcase-nav-item.active .showcase-nav-count {
    color: var(--mid);
}

.showcase-cta {
    margin-top: auto;
    padding-top: 32px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--charcoal);
    transition: opacity 0.3s ease;
}

.showcase-cta:hover {
    opacity: 0.6;
}

/* ---- PALCO DA IMAGEM ---- */
.showcase-stage {
    position: relative;
    overflow: hidden;
    background-color: var(--charcoal);
}

.showcase-stage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.05), transparent 60%);
    z-index: 0;
}

.showcase-slide {
    position: absolute;
    inset: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease;
}

.showcase-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.showcase-bg {
    display: none;
}

.showcase-fg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    z-index: 1;
    transform: scale(0.97);
    opacity: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.showcase-slide.active .showcase-fg {
    transform: scale(1);
    opacity: 1;
}

.showcase-frame-index {
    position: absolute;
    top: 32px;
    right: 40px;
    z-index: 2;
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.65);
}

#showcaseCurrent {
    font-size: 16px;
    color: var(--white);
}

.showcase-frame-sep {
    margin: 0 3px;
    color: rgba(255,255,255,0.4);
}

.showcase-progress-bar {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 28px;
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    z-index: 2;
}

.showcase-progress-fill {
    display: block;
    height: 100%;
    width: 0%;
    background-color: var(--white);
}

@media (max-width: 900px) {
    .showcase-inner {
        grid-template-columns: 1fr;
    }
    .showcase-stage {
        aspect-ratio: 4/5;
        order: -1;
    }
    .showcase-nav {
        padding: 40px 28px;
        border-right: none;
    }
}

/* =========================================
   MURAL INFINITO
   ========================================= */
.marquee-section {
    background-color: var(--cream);
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 16px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-row {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: marqueeLeft 46s linear infinite;
}

.marquee-row-reverse {
    animation-name: marqueeRight;
    animation-duration: 54s;
}

.marquee-section:hover .marquee-row {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    width: 300px;
    height: 210px;
    overflow: hidden;
    position: relative;
    filter: grayscale(60%);
    opacity: 0.85;
    transition: filter 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
}

.marquee-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-4px);
}

.marquee-item:nth-child(3n) {
    width: 220px;
}

.marquee-item:nth-child(5n) {
    width: 360px;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes marqueeLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

@keyframes marqueeRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

@media (max-width: 768px) {
    .marquee-item {
        width: 200px;
        height: 150px;
    }
    .marquee-item:nth-child(3n) { width: 160px; }
    .marquee-item:nth-child(5n) { width: 240px; }
}
/* =========================================
   RESPONSIVO — (showcase + mural)
   ========================================= */
@media (max-width: 768px) {
    .showcase {
        padding: 60px 0 80px;
    }

    .showcase-nav {
        padding: 32px 24px 28px;
    }

    .showcase-nav-item {
        padding: 16px 0;
    }

    .showcase-nav-name {
        font-size: 17px;
    }

    .showcase-nav-item.active .showcase-nav-name {
        font-size: 20px;
    }

    .showcase-frame-index {
        top: 20px;
        right: 24px;
        font-size: 11px;
    }

    .showcase-progress-bar {
        left: 24px;
        right: 24px;
        bottom: 20px;
    }

    .showcase-slide {
        inset: 16px;
    }

    .marquee-section {
        padding: 40px 0;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .showcase-stage {
        aspect-ratio: 3/4;
    }

    .showcase-nav {
        padding: 28px 20px 24px;
    }

    .showcase-nav-item {
        gap: 10px;
    }

    .showcase-nav-count {
        display: none; 
    }

    .marquee-item {
        width: 150px;
        height: 110px;
    }

    .marquee-item:nth-child(3n) { width: 120px; }
    .marquee-item:nth-child(5n) { width: 180px; }
}