@font-face {
    font-family: 'Chelsea Market';
    src: url('../../fonts/ChelseaMarket-Regular.woff2') format('woff2'),
        url('../../fonts/ChelseaMarket-Regular.woff') format('woff'),
        url('../../fonts/ChelseaMarket-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

small {
    font-size: 13px;
}

body {
    background: url('../images/bg1.png') center/cover no-repeat fixed;
}

/* ─── Slider ───────────────────────────────────────── */
.previa-slider {
    position: fixed;
    inset: 0;
    overflow: hidden;
}

.previa-slider-track {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform .7s cubic-bezier(.77, 0, .18, 1);
}

.previa-slide {
    width: 50%;
    height: 100%;
    flex-shrink: 0;
    overflow-y: auto;
}

.previa-footer {
    display: flex;
    justify-content: center;
    padding: 1.5rem 0 2.5rem;
    background: white;
}

.previa-footer img {
    height: 100%;
    width: auto;
    padding: 0 10px;
}

.previa-slider-track.slide-homenageados {
    transform: translateX(-50%);
}

.previa-header {
    position: relative;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.previa-top {
    flex: 1;
    display: flex;
    align-items: center;
    min-height: 0;
}

.previa-sun {
    position: relative;
    width: min(120vh, 65vw);
    height: min(120vh, 65vw);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    left: -5vw;
    top: -4vh;
}

@keyframes spin-sun {
    to {
        transform: rotate(360deg);
    }
}

.previa-sol-rotate {
    position: absolute;
    inset: 0;
    animation: spin-sun 120s linear infinite;
}

.previa-sol-img {
    width: 100%;
    height: 100%;
    background: url('../images/sol.png') center/contain no-repeat;
    filter: drop-shadow(12px 20px 16px rgba(0, 0, 0, .55));
}

.previa-logo {
    position: relative;
    width: 45%;
    max-width: min(400px, 40vh);
    height: auto;
    z-index: 1;
}

.previa-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    padding-left: 1rem;
    padding-top: 1rem;
}

.previa-sub {
    color: #fff;
    font-size: clamp(10px, 1.2vw, 16px);
    font-weight: 400;
    text-align: left;
    letter-spacing: .02em;
    text-shadow: 0 1px 8px rgba(0, 0, 0, .7);
    position: relative;
    font-family: 'Chelsea Market';
    top: -1px;
}

.previa-titulo {
    color: #ab4201;
    font-size: clamp(12px, 1.6vw, 17px);
    font-weight: 800;
    text-align: left;
    letter-spacing: .04em;
    max-width: 60%;
    padding: 4px 0 0 0;
    font-family: 'Chelsea Market';
}

.base {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    justify-content: flex-start;
    padding: 2rem 0;
    max-width: 800px;
}

.previa-timeline {
    display: flex;
    justify-content: center;
    gap: 6rem;
    padding: 0 2rem 3rem;
    position: relative;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .6) 100%);
    flex-shrink: 0;
}

.tl-track {
    position: absolute;
    top: 46px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, .12);
    z-index: 0;
}

.tl-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .8rem;
    min-width: 120px;
    position: relative;
    z-index: 1;
}

.tl-bola {
    position: relative;
    width: 96px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-bola-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.tl-data {
    position: relative;
    z-index: 1;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-shadow: 2px 2px 6px rgb(0 0 0 / 85%);
    line-height: 1;
    font-family: 'Chelsea Market';
}

.tl-texto {
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
    max-width: 130px;
}

.tl-texto b {
    display: block;
    font-size: 14px;
    color: #fc0;
    margin-bottom: 2px;
    line-height: 1;
}

.apoio {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 2;
}

.apoio img {
    max-height: 180px;
    width: auto;
}

.deco1 {
    position: absolute;
    right: 0;
    transform: rotate(90deg);
    filter: drop-shadow(-4px 4px 8px rgba(0, 0, 0, .5));
}

.deco2 {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

img.tl-deco2 {
    width: 300px;
}

/* ─── Homenageados ──────────────────────────────────── */
.homenageados {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem 5rem;
    position: relative;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(2px);
}

.deco-hg-right {
    position: absolute;
    top: 1rem;
    right: 0;
    transform: rotate(90deg);
    filter: drop-shadow(-4px 4px 8px rgba(0, 0, 0, .5));
    pointer-events: none;
    opacity: .5;
}



.deco-hg-bottom {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    opacity: .4;
}

.deco-hg-bottom img {
    width: 200px;
}

.deco-inline {
    width: 110px;
    height: auto;
    vertical-align: middle;
    margin-right: .6rem;
}

.previa-slider .homenageados-voltar {
    position: fixed;
    top: 1.5rem;
    left: 1.5rem;
    z-index: 10;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: #fff;
    padding: .6rem 1.4rem;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: opacity .3s, background .25s, transform .25s;
    font-family: inherit;
    opacity: 0;
    pointer-events: none;
}

.previa-slider-track.slide-homenageados~.homenageados-voltar {
    opacity: 1;
    pointer-events: auto;
}

.homenageados-voltar:hover {
    background: rgba(255, 255, 255, .18);
    transform: translateX(-3px);
}

.homenageados-content {
    max-width: 980px;
    width: 100%;
    margin: 2rem auto 0;
    color: rgba(255, 255, 255, .9);
    line-height: 1.8;
    font-size: 16px;
}

.homenageados-titulo {
    font-size: 26px;
    font-weight: 800;
    color: #fc0;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
    font-family: 'Chelsea Market';
}

.homenageados-content h2 {
    font-size: 22px;
    color: #fc0;
    margin: 2rem 0 .5rem;
    font-weight: 700;
    font-family: 'Chelsea Market';
}

.homenageados-sub {
    color: rgba(255, 255, 255, .6);
    font-size: 16px;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.homenageados-content p {
    margin-bottom: 1.2rem;
}

.homenageados-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 204, 0, .4), transparent);
    margin: 2.5rem 0;
}

.homenageados-lista {
    list-style: none;
    margin: 1.5rem 0;
}

.homenageados-lista li {
    padding: .6rem 0 .6rem 1.5rem;
    border-left: 3px solid rgba(255, 204, 0, .3);
    margin-bottom: .8rem;
    line-height: 1.6;
}

.homenageados-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, .05);
    border-radius: 8px;
    border-left: 3px solid rgba(255, 204, 0, .4);
    font-size: 14px;
}

/* ─── Hamburger ─────────────────────────────────────── */
.previa-hamburger {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 9999;
    width: 36px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    padding: 4px 0;
}

.previa-hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #fc0;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}

.previa-hamburger.ativo span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.previa-hamburger.ativo span:nth-child(2) {
    opacity: 0;
}

.previa-hamburger.ativo span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ─── Drawer ────────────────────────────────────────── */
.previa-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 40;
    background: rgba(0, 0, 0, .6);
    backdrop-filter: blur(3px);
    opacity: 0;
    transition: opacity .3s;
}

.previa-drawer-overlay.visivel {
    opacity: 1;
}

.previa-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 50;
    width: 300px;
    max-width: 80vw;
    background: #111;
    padding: 4rem 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.77, 0, .18, 1);
}

.previa-drawer.aberto {
    transform: translateX(0);
}

.previa-drawer-fechar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, .5);
    font-size: 1.4rem;
    cursor: pointer;
    padding: .3rem;
    line-height: 1;
}

.previa-drawer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    width: 100%;
}

.previa-drawer-menu li a {
    display: block;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: .7rem 0;
    line-height: 1.2;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    transition: color .25s, padding-left .25s;
}

.previa-drawer-menu li a span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    opacity: .7;
    margin-top: 2px;
}

.previa-drawer-menu li a:hover {
    color: #fc0;
    padding-left: .5rem;
}

.drawer-apoio {
    margin-top: auto;
    padding-top: 1.5rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.drawer-apoio img {
  max-height: 310px;
  width: 65%;
  max-width: 310px;
  height: auto;
  opacity: .95;
  position: absolute;
  bottom: 10px;
  left: 0;
}

.previa-slide {
    scrollbar-width: thin;
    scrollbar-color: #fc0 transparent;
}

.previa-slide::-webkit-scrollbar {
    width: 6px;
}

.previa-slide::-webkit-scrollbar-track {
    background: transparent;
}

.previa-slide::-webkit-scrollbar-thumb {
    background: #fc0;
    border-radius: 4px;
}

#y2-day-fab,
.y2-day-fab {
    display: none !important;
}

.menu1 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    padding-left: 0;
}

.menu1 li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: padding .25s;
}

.menu1 li:hover {
    padding-left: .8rem;
}

.btn-menu {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform .3s, filter .3s;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
}

.menu1 li:hover .btn-menu {
    opacity: 1;
    transform: scale(1.2) rotate(-4deg);
    filter: drop-shadow(3px 4px 6px rgba(0, 0, 0, 0.9));
}

.menu1 a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font-size: 20px;
    line-height: 1.15;
    transition: color .25s;
    font-family: Chelsea Market;
    text-shadow: 2px 1px 5px black;
}

.menu1 a span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    transition: opacity .3s;
    color: #5d3100;
    text-shadow: none;
}

.menu1 li:hover a {
    color: #fff;
}

.menu1 li:hover a span {
    opacity: .7;
}

/* ─── Telas grandes (>1500px) ──────────────────────── */
@media (min-width: 1500px) {
    .previa-sun {
        width: min(110vh, 60vw);
        height: min(110vh, 60vw);
        left: -4vw;
        top: -4vh;
    }

    .base {
        max-width: 700px;
    }

    .menu1 a {
        font-size: 20px;
    }

    .menu1 a span {
        font-size: 15px;
    }

    .btn-menu {
        width: 42px;
        height: 42px;
    }
}

/* ─── Tablet (768-1024px) ──────────────────────────── */
@media (max-width: 1050px) {
    .apoio img {
        max-height: 100px;
        width: auto;
    }
}

@media (max-width: 1200px) {
    .previa-sun {
        width: min(90vh, 60vw);
        height: min(90vh, 60vw);
        left: -3vw;
        top: -3vh;
    }

    .previa-logo {
        width: 42%;
        max-width: min(200px, 24vh);
    }

    .previa-side {
        padding-left: .6rem;
        padding-top: .4rem;
    }

    .previa-sub {
        font-size: clamp(11px, 1.4vw, 14px);
    }

    .previa-titulo {
        font-size: clamp(13px, 1.8vw, 18px);
        max-width: 420px;
    }

    .base {
        max-width: 500px;
        padding: 1rem 0;
    }

    .menu1 {
        gap: .4rem;
    }

    .menu1 li {
        gap: .8rem;
    }

    .menu1 a {
        font-size: 17px;
    }

    .menu1 a span {
        font-size: 12px;
    }

    .btn-menu {
        width: 30px;
        height: 30px;
    }

    .previa-timeline {
        gap: 2.5rem;
        padding: 1.2rem 1.5rem 2rem;
    }

    .tl-item {
        min-width: 100px;
    }

    .tl-bola {
        width: 90px;
        height: 90px;
    }

    .tl-track {
        top: 60px;
    }

    .tl-data {
        font-size: 20px;
    }

    .tl-texto {
        font-size: 11px;
        max-width: 100px;
    }

    .tl-texto b {
        font-size: 13px;
    }

    img.tl-deco2 {
        width: 160px;
    }

    .homenageados {
        padding: 2rem 1.5rem 4rem;
    }

    .homenageados-titulo {
        font-size: 22px;
    }

    .homenageados-content {
        font-size: 15px;
    }

    .homenageados-content h2 {
        font-size: 18px;
    }

    .deco-inline {
        width: 80px;
    }
}

/* ─── Mobile (480-768px) ───────────────────────────── */
@media (max-width: 768px) {
    .previa-slider {
        position: relative;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .previa-slider-track {
        width: 100%;
        height: auto;
        display: block;
        transform: none !important;
        transition: none;
    }

    .previa-slide {
        width: 100%;
        height: auto;
        overflow-y: visible;
    }

    .previa-header {
        height: auto;
        min-height: 100dvh;
    }

    .previa-top {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 0;
        padding: .5rem 0 0;
    }

    .previa-sun {
        width: 480px;
        height: 480px;
        left: auto;
        top: auto;
        margin: 0;
        margin-left: calc(50% - 240px);
        flex-shrink: 0;
    }

    .previa-logo {
        width: 40%;
        max-width: 180px;
    }

    .previa-side {
        padding: .2rem 0 0;
        align-items: center;
        width: 100%;
        position: relative;
        top: -30px;
    }

    .previa-sub {
        text-align: center;
        font-size: clamp(12px, 2.8vw, 15px);
        top: 0;
        padding: 0 .8rem;
    }

    .previa-titulo {
        text-align: center;
        font-size: clamp(14px, 3.2vw, 18px);
        padding: 8px 1rem 0;
        max-width: 60%;
    }

    .base {
        display: none;
    }

    .previa-hamburger,
    .previa-drawer,
    .previa-drawer-overlay {
        display: flex;
    }

    .previa-timeline {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: .5rem;
        padding: 1rem;
        justify-items: center;
        background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .4) 100%);
    }

    .tl-item:last-child {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 100%;
    }

    .tl-item {
        display: flex;
        align-items: center;
        gap: .5rem;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 6px;
        padding: .4rem .6rem;
        width: 100%;
    }

    .tl-bola {
        width: 0;
        height: 30px;
        flex-shrink: 0;
    }

    .tl-bola-img {
        display: none;
    }

    .tl-bola::after {
        content: '';
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #fc0;
    }

    .tl-track {
        display: none;
    }

    .tl-data {
        font-size: 18px;
        font-weight: 700;
        white-space: nowrap;
    }

    .tl-texto {
        text-align: left;
        font-size: 11px;
        max-width: none;
        line-height: 1.3;
        text-align: center;
    }

    .tl-texto b {
        font-size: 12px;
        margin-bottom: 1px;
    }

    .apoio {
        display: none;
    }

    .deco1,
    .deco2,
    .deco-hg-right,
    .deco-hg-bottom {
        display: none;
    }

    .homenageados {
        padding: 5rem;
    }

    .homenageados-titulo {
        font-size: 18px;
        margin-bottom: 1.2rem;
    }

    .homenageados-content {
        font-size: 17px;
        line-height: 1.4;
    }

    .homenageados-content h2 {
        font-size: 16px;
    }

    .homenageados-lista li {
        font-size: 16px;
        padding: .4rem 0 .4rem 1rem;
    }

    .homenageados-footer {
        font-size: 16px;
        padding: 1rem;
    }

    .deco-inline {
        width: 60px;
    }
}