@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&display=swap');

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

:root {
    --orange:        #f56c01;
    --orange-hover:  #ff7d1a;
    --orange-soft:   rgba(245, 108, 1, 0.15);
    --orange-glow:   rgba(245, 108, 1, 0.35);
    
    --dark:          #120e0b;
    --dark-surface:  #1c1612;
    --dark-card:     rgba(255, 255, 255, 0.04);
    --dark-card-hov: rgba(255, 255, 255, 0.07);
    
    --white:         #ffffff;
    --text-white:    #f5f5f7;
    --text-muted:    #a89f97;
    --text-dim:      #6e6761;
    
    --border:        rgba(255, 255, 255, 0.1);
    --border-orange: rgba(245, 108, 1, 0.4);
    
    --radius-sm:     6px;
    --radius-md:     10px;
    --radius-lg:     16px;
    --radius-full:   50px;
    
    --transition:    all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

button, input, select, textarea {
    font-family: 'Montserrat', sans-serif;
}

/* --------------------------------------------------------------------------
   NAVBAR (Estilo Serginho Lacerda: 3-Colunas com Logo Central)
   -------------------------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 72px;
    background: rgba(18, 14, 11, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--orange);
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(245, 108, 1, 0.25);
}

.navbar-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4vw;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
    gap: 1.8rem;
}

.nav-right {
    justify-content: flex-end;
    gap: 1.8rem;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
}

.nav-center img {
    height: 38px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}

.nav-center a:hover img {
    transform: scale(1.08);
}

.nav-link {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-white);
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
    color: var(--orange);
}

.nav-badge {
    display: inline-block;
    background: var(--orange);
    color: #0c0a08;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    margin-left: 0.3rem;
    vertical-align: middle;
}

.nav-members-btn {
    background: var(--orange-soft);
    color: var(--orange) !important;
    border: 1px solid var(--orange);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
}

.nav-members-btn:hover {
    background: var(--orange);
    color: #0c0a08 !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    position: absolute;
    right: 5vw;
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Mobile Drawer */
.mobile-menu-drawer {
    display: none;
    flex-direction: column;
    background: var(--dark-surface);
    border-bottom: 2px solid var(--orange);
    padding: 1.2rem 5vw 1.6rem;
    gap: 0.8rem;
}

.mobile-menu-drawer.open {
    display: flex;
}

.mobile-nav-link {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-white);
    padding: 0.4rem 0;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--orange);
}

.mobile-nav-members {
    margin-top: 0.4rem;
    background: var(--orange);
    color: #0c0a08 !important;
    padding: 0.7rem 1.2rem;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   HERO (Estilo Serginho Lacerda com Foto e Botão Central)
   -------------------------------------------------------------------------- */
.hero {
    min-height: 75vh;
    background: linear-gradient(180deg, #1f1610 0%, #120e0b 100%);
    position: relative;
    overflow: visible;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-top: 80px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-photo {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    max-width: 820px;
    position: relative;
}

.hero-photo img {
    width: 90%;
    max-width: 800px;
    height: auto;
    display: block;
    object-fit: contain;
}

.hero-cta-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    background: rgba(18, 14, 11, 0.85);
    backdrop-filter: blur(8px);
    color: var(--orange);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1.8rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--orange);
    box-shadow: 0 4px 20px var(--orange-glow);
    transition: all 0.2s;
    white-space: nowrap;
}

.hero-cta-btn:hover {
    background: var(--orange);
    color: #0c0a08;
    transform: translateX(-50%) translateY(-3px);
}

.hero-cta-btn svg {
    animation: bob 1.4s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(4px); }
}

/* --------------------------------------------------------------------------
   AGENDA (Estilo Serginho Lacerda)
   -------------------------------------------------------------------------- */
#agenda {
    background: var(--dark);
    padding: 4.5rem 5vw 5.5rem;
    position: relative;
    border-top: 1px solid var(--border);
}

.agenda-wrap {
    max-width: 780px;
    margin: 0 auto;
}

.agenda-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--orange);
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    line-height: 1;
}

/* Region / Category Filters */
.region-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.region-btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.15s;
}

.region-btn:hover {
    border-color: var(--white);
    color: var(--white);
}

.region-btn.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #0c0a08;
    font-weight: 900;
}

/* Month Group */
.month-block {
    margin-bottom: 2.2rem;
}

.month-header {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1.4rem;
    margin-bottom: 0.5rem;
}

.month-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--dark);
    text-align: center;
}

.shows-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Show Row */
.show-row {
    display: grid;
    grid-template-columns: 85px 1fr auto;
    align-items: center;
    gap: 0.8rem;
    padding: 0.55rem 1.2rem;
    background: var(--dark-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: background 0.15s, border-color 0.15s;
}

.show-row:hover {
    background: var(--dark-card-hov);
    border-color: var(--border-orange);
}

.show-date-txt {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.45rem;
    color: var(--orange);
    letter-spacing: 0.04em;
    line-height: 1;
}

.show-city-wrap {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.show-tag {
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
}

.show-city-txt {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-venue-txt {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.show-ticket-wrap {
    display: flex;
    justify-content: flex-end;
}

/* Ticket Button */
.tkt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.5rem 0;
    width: 120px;
    border-radius: 4px;
    white-space: nowrap;
    transition: all 0.15s;
}

.tkt-available {
    background: var(--orange);
    color: #0c0a08;
    border: 2px solid var(--orange);
}

.tkt-available::after {
    content: '';
    display: inline-block;
    width: 11px;
    height: 11px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c0a08' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3Cpolyline points='12 5 19 12 12 19'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 2px;
}

.tkt-available:hover {
    background: var(--orange-hover);
    border-color: var(--orange-hover);
    transform: scale(1.02);
}

.tkt-soon {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
    cursor: default;
}

.empty-shows-box {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

/* Waitlist Card */
.agenda-extra-box {
    margin-top: 2rem;
}

.waitlist-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--dark-card);
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    text-align: center;
    transition: var(--transition);
}

.waitlist-card-btn:hover {
    border-color: var(--orange);
    background: var(--dark-card-hov);
}

.waitlist-card-btn svg {
    color: var(--orange);
    flex-shrink: 0;
}

.waitlist-card-btn strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.waitlist-card-btn small {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--orange);
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   PRODUTOS (Carrossel Lolja)
   -------------------------------------------------------------------------- */
#produtos {
    background: var(--dark-surface);
    padding: 4rem 5vw;
    border-top: 1px solid var(--border);
}

.section-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.section-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--orange);
    letter-spacing: 0.05em;
    line-height: 1;
}

.section-link-more {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-link-more:hover {
    color: var(--orange);
}

.products-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.prod-card {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 155px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 640px) {
    .prod-card {
        width: 180px;
    }
}

.prod-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #140f0c;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.prod-card:hover .prod-thumb {
    border-color: var(--orange);
    transform: scale(1.03);
}

.prod-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumb-placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.prod-meta {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.prod-tag {
    font-size: 0.58rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-dim);
}

.prod-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prod-price {
    font-size: 0.82rem;
    font-weight: 900;
    color: var(--orange);
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   VÍDEOS (Estilo Serginho Lacerda)
   -------------------------------------------------------------------------- */
#videos {
    background: var(--dark);
    padding: 4.5rem 5vw;
    text-align: center;
    border-top: 1px solid var(--border);
}

.video-single {
    max-width: 780px;
    margin: 0 auto;
}

.video-facade-box {
    position: relative;
    padding-bottom: 56.25%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #000;
    border: 3px solid var(--orange);
    cursor: pointer;
}

.video-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-facade-box:hover .video-thumb {
    transform: scale(1.02);
}

.video-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.video-play-btn svg {
    width: 58px;
    height: 58px;
    color: var(--white);
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.8));
    transition: transform 0.2s;
}

.video-facade-box:hover .video-play-btn svg {
    transform: scale(1.1);
    color: var(--orange);
}

.video-caption-bar {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-caption-title {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-white);
    text-align: left;
    flex: 1;
    min-width: 200px;
}

.video-sub-btn {
    background: var(--orange);
    color: #0c0a08;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
}

.video-sub-btn:hover {
    background: var(--orange-hover);
    transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   CONTATO (Estilo Serginho Lacerda)
   -------------------------------------------------------------------------- */
#contato {
    background: var(--dark-surface);
    padding: 4.5rem 5vw 5.5rem;
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.contact-heading {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--orange);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 1rem;
}

.contact-text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.contact-email {
    display: inline-block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--orange);
    text-decoration: none;
    margin-bottom: 1.8rem;
}

.contact-email:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-white);
    border-radius: 50%;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--orange);
    color: #0c0a08;
    border-color: var(--orange);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.form-g {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-g label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.form-g input,
.form-g textarea,
.form-g select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-g input::placeholder,
.form-g textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-g input:focus,
.form-g textarea:focus,
.form-g select:focus {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
}

.form-g textarea {
    resize: vertical;
    min-height: 100px;
}

.form-g select option {
    background: var(--dark);
    color: var(--white);
}

.form-submit {
    background: var(--orange);
    color: #0c0a08;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.95rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 0.4rem;
}

.form-submit:hover {
    background: var(--orange-hover);
    transform: translateY(-2px);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-feedback {
    display: none;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 700;
}

.form-feedback.success {
    display: block;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid #10b981;
    color: #34d399;
}

.form-feedback.error {
    display: block;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid #ef4444;
    color: #f87171;
}

/* --------------------------------------------------------------------------
   FOOTER (Estilo Serginho Lacerda)
   -------------------------------------------------------------------------- */
.footer {
    background: #090705;
    padding: 2rem 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo img {
    height: 1.8rem;
    width: auto;
    display: block;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-copy a {
    color: var(--orange);
    text-decoration: none;
}

.footer-links {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links a:hover {
    color: var(--orange);
}

/* --------------------------------------------------------------------------
   RESPONSIVO MOBILE (Estilo Serginho Lacerda)
   -------------------------------------------------------------------------- */
@media (max-width: 860px) {
    .nav-left, .nav-right {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .navbar-inner {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .contact-heading, .contact-text, .contact-email {
        text-align: center;
    }
    .contact-email {
        display: block;
    }
    .social-links {
        justify-content: center;
    }
    .footer {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: auto;
        padding-top: 72px;
    }
    .hero-photo img {
        width: 100%;
        max-width: 100%;
    }
    .hero-cta-btn {
        font-size: 0.72rem;
        padding: 0.6rem 1.4rem;
        bottom: 16px;
    }

    #agenda {
        padding: 3rem 4vw 4rem;
    }
    .agenda-title {
        font-size: 2.3rem;
        margin-bottom: 1.5rem;
    }

    .region-filters {
        gap: 0.35rem;
    }
    .region-btn {
        font-size: 0.58rem;
        padding: 0.35rem 0.75rem;
    }

    .month-header {
        padding: 0.6rem 0.9rem;
    }
    .month-name {
        font-size: 0.75rem;
        letter-spacing: 0.12em;
    }

    .show-row {
        grid-template-columns: 68px 1fr auto;
        padding: 0.45rem 0.75rem;
        gap: 0.4rem;
    }

    .show-date-txt {
        font-size: 1.15rem;
    }

    .show-city-txt {
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }

    .tkt {
        font-size: 0.58rem;
        letter-spacing: 0.06em;
        width: 90px;
        padding: 0.45rem 0.6rem;
    }
}
