/* ============ TOURS HERO (estilo era) ============ */
.era-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tours-hero .tours-hero-text {
    margin-top: 22px;
    font-size: clamp(16px, 4vw, 20px);
    font-weight: 300;
    color: var(--fg-dim);
    max-width: 540px;
    line-height: 1.5;
}

.tours-map-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 26px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.16);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--fg);
    text-decoration: none;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.tours-map-cta:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.34);
    transform: translateY(-2px);
}
.tours-map-cta-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ff7a59, #e02f2f);
    box-shadow: 0 0 8px rgba(224, 47, 47, 0.6);
    animation: show-bubble-pulse 2.8s ease-in-out infinite;
}
.tours-map-cta-arrow { transition: transform 0.3s var(--ease); }
.tours-map-cta:hover .tours-map-cta-arrow { transform: translateX(4px); }

@keyframes show-bubble-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(224, 47, 47, 0.5); }
    50%      { box-shadow: 0 0 14px rgba(224, 47, 47, 0.8); }
}

/* ============ TOURS LIST ============ */
.tours-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 24px 80px;
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.tour-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.tour-head {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 22px;
}

.tour-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.tour-title-copy {
    min-width: 0;
}

.tour-year {
    display: inline-block;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.28em;
    color: var(--fg-faint);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.tour-name {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 9vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
    overflow-wrap: anywhere;
    text-transform: uppercase;
}

.tour-meta {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fg-faint);
}

.tour-toggle {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--fg);
    cursor: pointer;
    transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.tour-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.42);
    background: rgba(255,255,255,0.12);
}

.tour-toggle:focus-visible {
    outline: 2px solid rgba(255,255,255,0.78);
    outline-offset: 3px;
}

.tour-toggle-icon {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 30px;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-1px);
}

.tour-block.is-collapsed {
    gap: 0;
}

.tour-block.is-collapsed .show-grid {
    display: none;
}

/* ============ SHOW GRID ============ */
.show-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

/* ============ SHOW CARD ============ */
.show-card {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    background: var(--bg-2);
    isolation: isolate;
    box-shadow: 0 14px 32px rgba(0,0,0,0.4);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.show-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 48px rgba(0,0,0,0.55);
}

.show-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s var(--ease);
    z-index: 1;
}

.show-card:hover .show-image {
    transform: scale(1.04);
}

.show-shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(180deg, rgba(0,0,0,0.05) 0%, transparent 30%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%);
    pointer-events: none;
}

.show-info {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 3;
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.show-city {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 6.5vw, 32px);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 2px;
}

.show-venue {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.78);
    line-height: 1.35;
}

.show-date {
    margin-top: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--fg);
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

/* ============ SOLD OUT BADGE ============ */
.show-soldout {
    position: absolute;
    top: 18px;
    right: 18px;
    width: clamp(78px, 22%, 110px);
    height: auto;
    z-index: 4;
    transform: rotate(8deg);
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
    pointer-events: none;
    animation: stamp-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.show-card.sold-out .show-image {
    filter: saturate(0.85) brightness(0.85);
}

@keyframes stamp-in {
    0% { opacity: 0; transform: rotate(8deg) scale(1.6); }
    60% { opacity: 1; transform: rotate(8deg) scale(0.92); }
    100% { opacity: 1; transform: rotate(8deg) scale(1); }
}

/* ============ RESPONSIVE ============ */
@media (min-width: 640px) {
    .show-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}

@media (max-width: 520px) {
    .tour-title-row {
        gap: 12px;
    }
    .tour-toggle {
        width: 40px;
        height: 40px;
    }
    .tour-toggle-icon {
        font-size: 27px;
    }
}

@media (min-width: 1000px) {
    .tours-main {
        padding: 60px 48px 120px;
        gap: 100px;
    }
    .show-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    .show-info {
        padding: 26px 26px 28px;
    }
}

@media (min-width: 1300px) {
    .show-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (prefers-reduced-motion: reduce) {
    .show-soldout { animation: none; }
}
