
/* css/slide_23.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    height: 100vh;
    overflow: hidden;
    background-color: #0B0C10;
    font-family: sans-serif;
}
.main_23 {
    position: relative;
    width: 100vw;
    height: 100vh;
    transition: height 0.5s ease-in-out;
}

/* --- BARRA DE PROGRESSO --- */
.progress-bar-container_23 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 11;
}

.progress-bar-fill_23 {
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
}

/* --- ESTRUTURA DO SLIDER --- */
.slider_23 {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
    overflow: hidden;
}

.item_23 {
    width: 124px;
    height: 180px;
    position: absolute;
    top: 70%;
    transform: translateY(-50%);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.5);
    transition: left 0.75s, top 0.75s, width 0.75s, height 0.75s, opacity 0.75s;
}

/* --- POSICIONAMENTO --- */
.item_23:first-child, .item_23:nth-child(2) {
    left: 0; top: 0; width: 100%; height: 100%;
    transform: none; border-radius: 0; box-shadow: none;
    pointer-events: none;
}
.item_23:first-child { z-index: 1; }
.item_23:nth-child(2) { z-index: 2; }
.item_23:nth-child(3) { z-index: 3; left: 60%; }
.item_23:nth-child(4) { z-index: 4; left: calc(60% + 136px); }
.item_23:nth-child(5) { z-index: 5; left: calc(60% + 272px); }
.item_23:nth-child(6) { z-index: 6; left: calc(60% + 408px); }
.item_23:nth-child(n+7) { left: calc(60% + 544px); opacity: 0; }

/* --- CONTEÚDO DO SLIDE --- */
.content_23 {
    width: min(40%, 500px);
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    color: white;
    text-shadow: 0 3px 8px rgba(0,0,0,0.5);
    opacity: 0;
    display: none;
    z-index: 3;
    pointer-events: auto;
}
.item_23:nth-of-type(2) .content_23 {
    display: block;
    animation: showContent_23 0.75s ease-in-out 0.3s forwards;
}
@keyframes showContent_23 {
    from { opacity: 0; filter: blur(5px); transform: translateY(calc(-50% + 75px)); }
    to { opacity: 1; filter: blur(0); transform: translateY(-50%); }
}
.title_23 { font-size: 1.2rem; text-transform: uppercase; }
.description_23 { line-height: 1.7; margin: 1rem 0 1.5rem; font-size: 1rem; }
.content_23 button { background-color: rgba(255,255,255,0.2); color: white; border: 2px solid white; border-radius: 0.25rem; padding: 0.75rem 1.5rem; cursor: pointer; font-weight: bold; font-size: 1rem; transition: background-color 0.3s, color 0.3s; }
.content_23 button:hover { background-color: white; color: #000; }

/* --- NAVEGAÇÃO --- */
.nav_23 {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    user-select: none;
}
.nav_23 .btn_23 {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    margin: 0 1rem;
    cursor: pointer;
    font-size: 2.5rem;
    transition: transform 0.2s, color 0.2s;
}
.nav_23 .btn_23:hover { transform: scale(1.2); color: white; }

/* --- DESIGN RESPONSIVO --- */
@media (max-width: 1024px) {
    .item_23 { width: 100px; height: 145px; }
    .item_23:nth-child(3) { left: 60%; }
    .item_23:nth-child(4) { left: calc(60% + 110px); }
    .item_23:nth-child(5) { left: calc(60% + 220px); }
    .item_23:nth-child(6) { left: calc(60% + 330px); }
    .item_23:nth-child(n+7) { left: calc(60% + 440px); }
    .content_23 { left: 2rem; }
    .title_23 { font-size: 1.1rem; }
    .description_23 { font-size: 0.9rem; }
}
@media (max-width: 780px) {
    .main_23 { height: 75vh; }
    .item_23 { width: 80px; height: 116px; }
    .item_23:nth-child(3) { left: 55%; }
    .item_23:nth-child(4) { left: calc(55% + 90px); }
    .item_23:nth-child(5) { left: calc(55% + 180px); }
    .item_23:nth-child(6) { left: calc(55% + 270px); }
    .item_23:nth-child(n+7) { left: calc(55% + 360px); }
    .content_23 { left: 1.5rem; right: 1.5rem; width: auto; }
    .title_23 { font-size: 1rem; }
    .description_23 { font-size: 0.8rem; }
    .nav_23 .btn_23 { font-size: 2rem; }
}
@media (max-width: 500px) {
    .main_23 { height: 50vh; }
    .item_23 { width: 60px; height: 87px; }
    .item_23:nth-child(3) { left: 55%; }
    .item_23:nth-child(4) { left: calc(55% + 70px); }
    .item_23:nth-child(5) { left: calc(55% + 140px); }
    .item_23:nth-child(6) { left: calc(55% + 210px); }
    .item_23:nth-child(n+7) { left: calc(55% + 280px); }
}
