body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.evento-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.evento-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.navbar-brand {
    font-size: 1.4rem;
}

.navbar-dark .nav-link,
.navbar-dark .navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-dark .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:hover {
    color: #e0e0e0 !important;
}

@media print {
    nav, footer, .btn, .navbar { display: none !important; }
    .card { border: 2px solid #000; }
}

.table th { white-space: nowrap; }

.seat-map {
    overflow-x: auto;
    padding-bottom: 5px;
}
.seat-row {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    gap: 4px;
}
.seat-row-label {
    width: 22px;
    font-weight: 700;
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    flex-shrink: 0;
}
.seat-row-seats {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}
.seat-btn {
    width: 36px;
    height: 36px;
    border: 2px solid transparent;
    border-radius: 6px 6px 3px 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.65rem;
    padding: 1px;
    position: relative;
    transition: all 0.15s ease;
}
.seat-btn .seat-num {
    font-size: 0.6rem;
    line-height: 1;
    margin-top: -1px;
}
.seat-btn.seat-disponivel {
    background: #e8f5e9;
    border-color: #66bb6a;
    color: #2e7d32;
}
.seat-btn.seat-disponivel:hover {
    background: #c8e6c9;
    border-color: #43a047;
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(76,175,80,0.3);
}
.seat-btn.seat-selecionado {
    background: #1976d2;
    border-color: #1565c0;
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(25,118,210,0.4);
}
.seat-btn.seat-vendido {
    background: #f5f5f5;
    border-color: #e0e0e0;
    color: #bdbdbd;
    cursor: not-allowed;
}
.seat-icon {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 3px 3px 2px 2px;
    vertical-align: middle;
    margin-right: 3px;
    border: 1px solid;
}
.seat-disponivel-demo {
    background: #e8f5e9;
    border-color: #66bb6a;
}
.seat-selecionado-demo {
    background: #1976d2;
    border-color: #1565c0;
}
.seat-vendido-demo {
    background: #f5f5f5;
    border-color: #e0e0e0;
}
.seat-map-legend small {
    font-size: 0.72rem;
    color: #555;
}
