@charset "utf-8";
.sector-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 250px;
  padding: 12px 16px;
  margin: 8px 0;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.2s;
}

.sector-btn:hover { opacity: 0.85; }

.violeta { background-color: #6A0DAD; }
.fucsia  { background-color: #C71586; }
.plateado { background-color: #808080; }
.vip     { background-color: #D4AF37; }

.disponibles {
  background: rgba(255,255,255,0.25);
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 0.85em;
}


/* Sector grid */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    padding: 20px;
}

.sector-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    border-radius: 12px;
    border: 2px solid transparent;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
}

.sector-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.sector-btn.selected {
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #000;
}

.sector-btn.sector-soldout {
    opacity: 0.5;
    cursor: not-allowed;
}

.sector-btn.violeta { background-color: #6A0DAD; }
.sector-btn.fucsia { background-color: #C71586; }
.sector-btn.plateado { background-color: #808080; }
.sector-btn.vip { background-color: #D4AF37; }

.color-indicador {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    margin-bottom: 8px;
}

.sector-info {
    text-align: center;
}

.sector-name {
    display: block;
    font-size: 0.95rem;
}

.sector-price {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.disponibles {
    display: block;
    font-size: 0.8rem;
    margin-top: 6px;
    background: rgba(255,255,255,0.2);
    padding: 3px 8px;
    border-radius: 12px;
}

/* VIP seats */
.vip-seat-container {
    padding: 16px;
}

.vip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.btn-back-to-sectors {
    background: #333;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}

.vip-rows-wrapper {
    max-height: 300px;
    overflow-y: auto;
}

.vip-row {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.vip-row-label {
    width: 60px;
    font-size: 0.8rem;
    color: #666;
    text-align: right;
    padding-right: 10px;
}

.vip-seats-row {
    display: flex;
    gap: 4px;
}

.vip-seat {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: #e0e0e0;
}

.vip-seat.available {
    background: #4CAF50;
    color: white;
}

.vip-seat.selected {
    background: #2196F3;
    color: white;
}

.vip-seat.occupied {
    background: #f44336;
    color: white;
    cursor: not-allowed;
}

/* Quantity selector */
.quantity-selector-vip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
}

.quantity-selector-vip input {
    width: 50px;
    text-align: center;
    font-size: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px;
}

.quantity-selector-vip .qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #333;
    color: white;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
}
