/* HERO ENTRADAS */

.tickets-hero {
    position: relative;
    width: 100%;
    background-color: #000;
    color: #fff;
    overflow: hidden;
    font-family: var(--font-main);
}

.tickets-hero-bg {
    position: relative;
    width: 100%;
    height: min(40vh, 300px);
    min-height: 220px;
    background-color: #000;
}

.tickets-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

.tickets-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.4) 0%,
            rgba(0,0,0,0.6) 60%,
            rgba(0,0,0,0.8) 100%
    );
}

.tickets-title-badge {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: var(--color-accent-orange);
    padding: 16px 24px;
    max-width: 90%;
    color: #fff;
}

.tickets-heading {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: clamp(20px, 1vw + 1rem, 32px);
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .02em;
}

/* LISTA / CARRUSEL DE ENTRADAS */

.tickets-list-section {
    background-color: #fff;
    color: #000;
    font-family: var(--font-main);
}

.tickets-list-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 16px 80px;
    position: relative;
    display: flex;
    align-items: flex-start;
    column-gap: 16px;
}

.tickets-arrow {
    flex: 0 0 auto;
    background: none;
    border: 0;
    font-family: inherit;
    font-size: 32px;
    line-height: 1;
    font-weight: 400;
    width: 32px;
    height: 32px;
    color: #4a4a4a;
    cursor: pointer;
    align-self: center;
    user-select: none;
}

.tickets-arrow-left {
    order: 0;
}

.tickets-row {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    column-gap: 24px;
    padding-bottom: 8px;
    scrollbar-width: thin;
}

.tickets-row::-webkit-scrollbar {
    height: 6px;
}
.tickets-row::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
    border-radius: 3px;
}
.tickets-row::-webkit-scrollbar-thumb {
    background: rgba(0,0,0,0.3);
    border-radius: 3px;
}

.tickets-arrow-right {
    order: 2;
}

/* CARD DE ENTRADA */

.ticket-card {
    flex: 0 0 260px;
    min-width: 260px;
    max-width: 260px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    font-family: var(--font-main);
}

.ticket-thumb {
    position: relative;
    width: 100%;
    background-color: #000;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.ticket-thumb img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center 40%;
}

.ticket-badge {
    position: absolute;
    left: 12px;
    top: 12px;
    background-color: var(--color-accent-yellow);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    padding: 4px 8px;
    border-radius: 2px;
    text-transform: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.ticket-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.ticket-meta {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #000;
}

.ticket-meta-line {
    display: flex;
    align-items: flex-start;
    column-gap: 8px;
}

.ticket-meta-icon {
    font-size: 14px;
    line-height: 1.2;
}

.ticket-meta-text {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    color: #000;
}

.ticket-price-row {
    display: flex;
    justify-content: flex-start;
    align-items: baseline;
    column-gap: 8px;
}

.ticket-price {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;
    color: #000;
}

.ticket-cta {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-accent-yellow);
    color: #000;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px;
    border-radius: 2px;
    border: 2px solid #8a9400;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    cursor: pointer;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .tickets-hero-bg {
        height: 220px;
    }

    .tickets-title-badge {
        padding: 12px 16px;
    }

    .tickets-heading {
        font-size: clamp(18px, 1vw + 1rem, 28px);
    }

    .tickets-list-inner {
        padding: 32px 16px 64px;
        column-gap: 8px;
    }

    .tickets-arrow {
        font-size: 28px;
        width: 28px;
        height: 28px;
    }

    .tickets-row {
        column-gap: 16px;
    }

    .ticket-card {
        flex: 0 0 240px;
        min-width: 240px;
        max-width: 240px;
    }

    .ticket-price {
        font-size: 15px;
    }

    .ticket-cta {
        font-size: 13px;
        padding: 10px;
    }
}
